/* ==========================================================================
   Preneurs Theme - Main Stylesheet
   Version: 2.0.0
   ========================================================================== */

/* ======================
   CSS VARIABLES
   ====================== */
:root {
    /* Colors */
    --primary-purple: #6B5AED;
    --primary-dark: #5a4ad8;
    --light-purple: #E9E5FF;
    --text-black: #111111;
    --text-gray: #6e6e6e;
    --white: #FFFFFF;
    --light-gray: #f8f9fa;
    --border-gray: #f0f0f0;
    --success: #4CAF50;
    --warning: #FF9800;
    --error: #f44336;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    /* Effects */
    --shadow: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 15px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* ======================
   RESET & BASE
   ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-black);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ======================
   TYPOGRAPHY
   ====================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-black);
}

h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p {
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-black);
}

/* ======================
   HEADER
   ====================== */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    width: 100%;
}

.site-header.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.site-branding {
    display: flex;
    align-items: center;
}

.site-logo img,
.custom-logo {
    height: 45px;
    width: auto;
    max-height: 45px;
    transition: var(--transition);
}

.site-title {
    margin: 0;
}

.site-title a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-purple);
    text-decoration: none;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.primary-menu a {
    color: var(--text-black);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.primary-menu a:hover {
    color: var(--primary-purple);
}

.primary-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-purple);
    transition: width 0.3s ease;
}

.primary-menu a:hover:after,
.primary-menu .current-menu-item a:after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.header-cart,
.header-user,
.header-login {
    position: relative;
    color: var(--text-black);
    font-size: 18px;
    transition: var(--transition);
}

.header-cart:hover,
.header-user:hover,
.header-login:hover {
    color: var(--primary-purple);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-purple);
    color: white;
    font-size: 11px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-black);
    margin: 5px 0;
    transition: var(--transition);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ======================
   HERO SLIDER - IMPROVED WITH FIXED ARROWS
   ====================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #8a7bef 100%);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slide-content {
    flex: 1;
    max-width: 550px;
    color: white;
    z-index: 2;
    padding-right: 30px;
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.slide-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slide-btn {
    display: inline-block;
    background: white;
    color: var(--primary-purple);
    padding: 15px 35px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.slide-btn:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.slide-image {
    flex: 1;
    max-width: 550px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    z-index: 2;
}

.slide-image img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active,
.slider-dot:hover {
    background: white;
    transform: scale(1.2);
}

/* ======================
   SERVICES / INFO BOXES
   ====================== */
.services-section {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px 25px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-gray);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    margin-bottom: 25px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 60px !important;
    color: var(--primary-purple) !important;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-button {
    margin-top: auto;
}

.service-link {
    background-color: var(--primary-purple) !important;
    color: var(--white) !important;
    padding: 12px 25px !important;
    border-radius: var(--border-radius) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: var(--transition) !important;
    font-size: 15px !important;
    min-width: 150px !important;
}

.service-link:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 12px rgba(107, 90, 237, 0.3) !important;
}

/* ======================
   FEATURED PRODUCTS
   ====================== */
.featured-products-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-gray);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.onsale,
.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--error);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.featured-badge {
    background: var(--warning);
    left: 15px;
    right: auto;
}

.product-content {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-title a {
    color: var(--text-black);
    text-decoration: none;
}

.product-title a:hover {
    color: var(--primary-purple);
}

.product-price {
    color: var(--primary-purple);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-price del {
    color: var(--text-gray);
    font-size: 16px;
    margin-right: 8px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.add-to-cart-btn,
.details-btn {
    flex: 1;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.add-to-cart-btn {
    background: var(--primary-purple);
    color: white;
}

.add-to-cart-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.details-btn {
    background: var(--light-gray);
    color: var(--text-black);
}

.details-btn:hover {
    background: var(--primary-purple);
    color: white;
}

.view-all-container {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    background: var(--primary-purple);
    color: white;
    padding: 15px 35px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.view-all-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(107, 90, 237, 0.3);
}

/* ======================
   CLIENTS SECTION
   ====================== */
.clients-section {
    padding: 60px 0;
    background-color: var(--white);
}

.clients-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.clients-slider {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scrollClients 30s linear infinite;
}

@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.clients-slider:hover {
    animation-play-state: paused;
}

.client-logo {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px 40px;
    box-shadow: var(--shadow);
    flex-shrink: 0;
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    color: var(--text-black);
    width: 220px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ======================
   BLOG GRID
   ====================== */
.blog-grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

.blog-grid-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-grid-post {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-gray);
}

.blog-grid-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-grid-thumbnail {
    height: 200px;
    overflow: hidden;
}

.blog-grid-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-grid-post:hover .blog-grid-thumbnail img {
    transform: scale(1.05);
}

.blog-grid-content {
    padding: 25px;
}

.post-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.post-category {
    background: var(--light-purple);
    color: var(--primary-purple);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.post-category:hover {
    background: var(--primary-purple);
    color: white;
}

.entry-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.entry-title a {
    color: var(--text-black);
    text-decoration: none;
}

.entry-title a:hover {
    color: var(--primary-purple);
}

.entry-meta {
    display: flex;
    gap: 15px;
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 15px;
}

.entry-meta i {
    margin-right: 5px;
    color: var(--primary-purple);
}

.entry-excerpt {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.read-more-btn:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* ======================
   SINGLE POST
   ====================== */
.single-post-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

.post-thumbnail {
    margin-bottom: 30px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.post-tags {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

.post-tags i {
    color: var(--primary-purple);
    margin-right: 10px;
}

.post-share {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-weight: 600;
    color: var(--text-black);
}

.post-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--text-gray);
    transition: var(--transition);
    text-decoration: none;
}

.post-share a:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-3px);
}

.similar-posts {
    margin: 50px 0;
}

.similar-posts-title {
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.similar-posts-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-purple);
}

.similar-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.similar-post-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--light-gray);
    padding: 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.similar-post-item:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.similar-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.similar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-post-title {
    font-size: 14px;
    margin: 0 0 5px 0;
}

.similar-post-title a {
    color: var(--text-black);
    text-decoration: none;
}

.similar-post-title a:hover {
    color: var(--primary-purple);
}

.similar-post-date {
    font-size: 12px;
    color: var(--text-gray);
}

/* ======================
   COMMENTS
   ====================== */
.comments-area {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-gray);
}

.comment-list {
    list-style: none;
    margin: 0 0 50px 0;
}

.comment {
    margin-bottom: 30px;
}

.comment-body {
    background: var(--light-gray);
    padding: 25px;
    border-radius: var(--border-radius-lg);
    position: relative;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.comment-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.comment-author .fn {
    font-weight: 600;
    color: var(--text-black);
}

.comment-author .fn a {
    color: var(--primary-purple);
    text-decoration: none;
}

.comment-metadata {
    font-size: 12px;
    color: var(--text-gray);
}

.comment-content {
    margin-bottom: 15px;
}

.reply {
    position: absolute;
    top: 25px;
    right: 25px;
}

.reply a {
    background: var(--primary-purple);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.reply a:hover {
    background: var(--primary-dark);
}

/* ======================
   PAGE HEADER
   ====================== */
.page-header {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #8a7bef 100%);
    text-align: center;
    color: white;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.page-description {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

/* ======================
   ERROR PAGE
   ====================== */
.error-404-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    font-size: 100px;
    color: var(--primary-purple);
    margin-bottom: 30px;
}

.error-title {
    font-size: 120px;
    font-weight: 800;
    color: var(--primary-purple);
    line-height: 1;
    margin-bottom: 20px;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-purple);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(107, 90, 237, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--light-purple);
    transform: translateY(-2px);
}

/* ======================
   THEMES PREMIUM SECTION (Featured Products Slider)
   ====================== */
.themes-premium-section {
    padding: 60px 0;
    background-color: var(--light-purple);
}

.premium-container {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.premium-content {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.premium-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-black);
}

.premium-description {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.theme-slider-container {
    position: relative;
    margin: 25px 0 15px 0;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 15px 20px;
    box-shadow: var(--shadow);
    min-height: 200px;
}

.theme-slider {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.theme-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.theme-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.theme-preview-card {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.theme-preview {
    width: 120px;
    height: 120px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.theme-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.theme-preview i {
    font-size: 48px;
    color: var(--primary-purple);
}

.theme-info {
    flex: 1;
}

.theme-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-black);
}

.theme-excerpt {
    color: var(--text-gray);
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.theme-price {
    color: var(--primary-purple);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.theme-details-btn,
.theme-demo-btn {
    display: inline-block;
    background-color: var(--primary-purple);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 14px;
    margin-right: 10px;
}

.theme-demo-btn {
    background-color: var(--light-gray);
    color: var(--text-black);
}

.theme-details-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.theme-demo-btn:hover {
    background-color: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.theme-slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.theme-slider-prev,
.theme-slider-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    color: var(--text-black);
}

.theme-slider-prev:hover,
.theme-slider-next:hover {
    background-color: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
}

.theme-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.theme-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.theme-slider-dot.active,
.theme-slider-dot:hover {
    background-color: var(--primary-purple);
    transform: scale(1.2);
}

.view-all-themes-btn {
    background-color: var(--primary-purple);
    color: var(--white);
    padding: 10px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 20px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    align-self: flex-start;
}

.view-all-themes-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(107, 90, 237, 0.2);
}

.hosting-card {
    flex: 1;
    background-color: var(--primary-purple);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 30px rgba(107, 90, 237, 0.2);
    display: flex;
    flex-direction: column;
}

.hosting-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.hosting-card p {
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.hosting-features {
    list-style: none;
    margin-bottom: 30px;
}

.hosting-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.hosting-features i {
    color: #9d93f0;
    font-size: 14px;
}

.hosting-get-started-btn {
    background-color: var(--white);
    color: var(--primary-purple);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: auto;
}

.hosting-get-started-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.no-themes-message {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: 2px dashed #ddd;
}

.no-themes-message i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 15px;
}

.no-themes-message h4 {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.no-themes-message p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* ======================
   USER ACCOUNT STYLES
   ====================== */
.preneurs-account-wrapper {
    padding: 40px 0;
    min-height: 60vh;
}

.account-header {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #8a7bef 100%);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    color: white;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.user-welcome {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-avatar {
    position: relative;
}

.user-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
}

.online-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 15px;
    height: 15px;
    background-color: #4CAF50;
    border-radius: 50%;
    border: 2px solid white;
}

.user-info h1 {
    color: white;
    margin-bottom: 5px;
    font-size: 28px;
}

.user-email {
    opacity: 0.9;
    margin-bottom: 5px;
}

.user-join-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.profile-completion {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.completion-bar {
    width: 150px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
}

.completion-progress {
    height: 100%;
    background: #4CAF50;
    border-radius: 4px;
}

.completion-percentage {
    font-size: 14px;
    font-weight: 600;
}

.account-stats {
    display: flex;
    gap: 30px;
    background: rgba(255,255,255,0.1);
    padding: 20px 30px;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.stat-label {
    font-size: 13px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.account-navigation {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    overflow: hidden;
}

.account-nav-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
}

.account-nav-tabs li {
    flex: 1;
    min-width: 120px;
}

.account-nav-tabs a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.account-nav-tabs a:hover {
    color: var(--primary-purple);
    background-color: var(--light-gray);
}

.account-nav-tabs li.active a {
    color: var(--primary-purple);
    border-bottom-color: var(--primary-purple);
    background-color: var(--light-purple);
}

.account-nav-tabs i {
    font-size: 18px;
}

.account-content {
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow);
    overflow: hidden;
    width: 100%;
}

.account-tab {
    display: none;
    padding: 40px;
    width: 100%;
}

.account-tab.active {
    display: block;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dashboard-card {
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    border: 1px solid var(--border-gray);
}

.dashboard-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--text-black);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-gray);
}

.dashboard-card h3 i {
    color: var(--primary-purple);
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.action-btn.secondary {
    background: white;
    color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.action-btn.secondary:hover {
    background: var(--primary-purple);
    color: white;
}

.cart-items-list {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-gray);
}

.item-name {
    flex: 2;
    font-weight: 500;
}

.item-quantity {
    flex: 1;
    text-align: center;
    color: var(--text-gray);
}

.item-price {
    flex: 1;
    text-align: right;
    color: var(--primary-purple);
    font-weight: 600;
}

.cart-total {
    padding: 15px 0;
    text-align: right;
    font-size: 18px;
    border-top: 2px solid var(--border-gray);
}

.profile-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-black);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(107, 90, 237, 0.1);
}

.form-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--border-gray);
    text-align: right;
}

.btn-update-profile {
    background: var(--primary-purple);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-update-profile:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(107, 90, 237, 0.2);
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    border: 1px solid var(--border-gray);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-gray);
    flex-wrap: wrap;
    gap: 10px;
}

.order-header h3 {
    margin: 0;
    font-size: 18px;
}

.order-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.order-status.status-completed {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.order-status.status-processing {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.order-items {
    margin-top: 15px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-gray);
}

.order-item:last-child {
    border-bottom: none;
}

.item-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.item-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-download {
    background: var(--primary-purple);
    color: white;
    padding: 5px 12px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-download:hover {
    background: var(--primary-dark);
}

.item-expiry {
    font-size: 12px;
    color: var(--text-gray);
}

/* ======================
   HELP DESK STYLES
   ====================== */
.preneurs-help-desk {
    padding: 40px 0;
}

.help-desk-header {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #8a7bef 100%);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    color: white;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-content h1 {
    color: white;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subtitle {
    opacity: 0.9;
    margin: 0;
}

.btn-new-ticket-large {
    background: white;
    color: var(--primary-purple);
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-new-ticket-large:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.new-ticket-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    margin-bottom: 30px;
    border-top: 5px solid var(--primary-purple);
}

.ticket-card-icon {
    font-size: 60px;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.ticket-card-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.ticket-card-content p {
    color: var(--text-gray);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-new-ticket-prominent {
    background: var(--primary-purple);
    color: white;
    padding: 16px 35px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-new-ticket-prominent:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 90, 237, 0.2);
}

.existing-tickets-section {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 30px;
    box-shadow: var(--shadow);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-gray);
    flex-wrap: wrap;
    gap: 20px;
}

.section-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.ticket-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-select,
.search-input {
    padding: 10px 15px;
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    font-size: 14px;
    min-width: 150px;
}

.tickets-table-container {
    overflow-x: auto;
    width: 100%;
}

.tickets-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    min-width: 800px;
}

.tickets-table th {
    background: var(--light-purple);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--text-black);
    border-bottom: 3px solid var(--primary-purple);
}

.tickets-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-gray);
}

.tickets-table tr:last-child td {
    border-bottom: none;
}

.tickets-table tr:hover {
    background: var(--light-gray);
}

.ticket-id {
    font-weight: 600;
    color: var(--primary-purple);
}

.ticket-subject {
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticket-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.status-open {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.status-in-progress {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.status-resolved {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.status-closed {
    background: rgba(158, 158, 158, 0.1);
    color: #9E9E9E;
}

.priority-badge {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.priority-low {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.priority-normal {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.priority-high {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.priority-urgent {
    background: rgba(244, 67, 54, 0.1);
    color: #F44336;
}

.ticket-actions {
    text-align: right;
}

.btn-view-ticket {
    background: var(--primary-purple);
    color: white;
    padding: 6px 15px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.btn-view-ticket:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.no-tickets {
    text-align: center;
    padding: 60px 20px;
}

.no-tickets i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-tickets h3 {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.no-tickets p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* ======================
   SUBMIT TICKET STYLES
   ====================== */
.preneurs-ticket-page {
    padding: 40px 0;
}

.ticket-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.header-icon {
    font-size: 60px;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.ticket-page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.page-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.ticket-form-wrapper {
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.ticket-progress {
    background: var(--light-gray);
    padding: 30px 40px;
    border-bottom: 1px solid var(--border-gray);
    display: flex;
    justify-content: center;
    gap: 80px;
    position: relative;
}

.progress-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 10px;
    transition: var(--transition);
}

.progress-step.active .step-number {
    background: var(--primary-purple);
    color: white;
    border-color: var(--primary-purple);
}

.step-label {
    font-weight: 600;
    color: var(--text-gray);
    font-size: 14px;
}

.progress-step.active .step-label {
    color: var(--primary-purple);
}

.ticket-form-card {
    padding: 50px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-gray);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 20px;
}

.form-section h3 i {
    color: var(--primary-purple);
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-label i {
    color: var(--primary-purple);
    margin-right: 8px;
}

.form-hint {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 5px;
}

.file-upload-area {
    border: 2px dashed #ddd;
    border-radius: var(--border-radius);
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    background: var(--light-gray);
}

.file-upload-area:hover {
    border-color: var(--primary-purple);
    background: var(--light-purple);
}

.file-upload-area i {
    font-size: 40px;
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-hint {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

.file-list {
    margin-top: 15px;
}

.file-item {
    background: var(--light-gray);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    margin-bottom: 8px;
    border-left: 3px solid var(--primary-purple);
}

.file-name i {
    color: var(--primary-purple);
    margin-right: 8px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-gray);
}

.btn-cancel {
    background: white;
    color: var(--text-gray);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #ddd;
    transition: var(--transition);
}

.btn-cancel:hover {
    background: #f5f5f5;
    color: var(--text-black);
}

.btn-submit-ticket {
    background: var(--primary-purple);
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-submit-ticket:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(107, 90, 237, 0.2);
}

.ticket-help-tips {
    background: var(--light-gray);
    border-radius: var(--border-radius-xl);
    padding: 30px;
    border-left: 4px solid var(--primary-purple);
    margin-top: 30px;
}

.ticket-help-tips h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 18px;
}

.ticket-help-tips i {
    color: #FF9800;
}

.help-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.help-tips-list i {
    color: #4CAF50;
    margin-top: 3px;
}

.login-required,
.login-required-ticket {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 0 auto;
}

.login-required-ticket {
    border-top: 5px solid var(--primary-purple);
}

.login-icon {
    font-size: 60px;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.login-required h2,
.login-required-ticket h2 {
    margin-bottom: 15px;
}

.login-required p,
.login-required-ticket p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.login-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-login,
.btn-register {
    padding: 14px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-login {
    background: var(--primary-purple);
    color: white;
}

.btn-login:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-register {
    background: white;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-register:hover {
    background: var(--light-purple);
    transform: translateY(-2px);
}

.login-note {
    color: var(--text-gray);
    font-size: 14px;
}

.login-note a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
}

/* ======================
   PRICING TABLES STYLES
   ====================== */
.preneurs-pricing-table {
    margin: 40px 0;
    font-family: inherit;
}

.pricing-columns {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.pricing-column {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.pricing-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(107, 90, 237, 0.15);
    border-color: #6B5AED;
}

.pricing-column.highlighted-plan {
    border-color: #6B5AED;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(107, 90, 237, 0.2);
    z-index: 2;
}

.pricing-column.highlighted-plan:before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #6B5AED;
    color: white;
    padding: 8px 25px;
    border-radius: 0 0 30px 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.pricing-header {
    padding: 40px 30px 30px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #f0f0f0;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.plan-price {
    margin-bottom: 15px;
}

.plan-price .currency {
    font-size: 28px;
    font-weight: 600;
    vertical-align: top;
    margin-right: 2px;
    color: #6B5AED;
}

.plan-price .amount {
    font-size: 56px;
    font-weight: 800;
    color: #6B5AED;
    line-height: 1;
}

.plan-price .period {
    font-size: 16px;
    color: #999;
    display: block;
    margin-top: 5px;
    font-weight: 400;
}

.plan-description {
    color: #666;
    font-size: 15px;
    margin: 15px 0 0;
    line-height: 1.6;
    padding: 0 10px;
}

.pricing-features {
    padding: 30px;
    flex-grow: 1;
    background: white;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #4CAF50;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 16px;
}

.pricing-features i.fa-times {
    color: #f44336;
}

.pricing-footer {
    padding: 0 30px 40px;
    text-align: center;
    background: white;
}

.pricing-button {
    display: inline-block;
    background: #6B5AED;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    width: 100%;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(107, 90, 237, 0.2);
}

.pricing-button:hover {
    background: #5a4ad8;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(107, 90, 237, 0.3);
    color: white;
}

.pricing-button.disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
}

.pricing-column.highlighted-plan .pricing-button {
    background: #333;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.pricing-column.highlighted-plan .pricing-button:hover {
    background: #222;
}

.pricing-style-minimal .pricing-column {
    border: 1px solid #e0e0e0;
    box-shadow: none;
}

.pricing-style-minimal .pricing-column:hover {
    border-color: #6B5AED;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pricing-style-cards .pricing-column {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* ======================
   IMPROVED FOOTER STYLES
   ====================== */
.site-footer {
    background: #1a1a1a;
    color: #e0e0e0;
    margin-top: 60px;
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
    padding: 70px 0 40px;
    background: #1a1a1a;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-about-text {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 14px;
}

.footer-about-text p {
    margin-bottom: 15px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

.widget-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #6B5AED;
    border-radius: 2px;
}

.footer-menu,
.footer-services,
.footer-widgets .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li,
.footer-services li,
.footer-widgets .menu li {
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-menu a,
.footer-services a,
.footer-widgets .menu a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    position: relative;
    padding: 2px 0;
}

.footer-menu a:link,
.footer-menu a:visited,
.footer-services a:link,
.footer-services a:visited,
.footer-widgets .menu a:link,
.footer-widgets .menu a:visited {
    color: #b0b0b0;
    text-decoration: none;
    border-bottom: none;
}

.footer-menu a:hover,
.footer-services a:hover,
.footer-widgets .menu a:hover {
    color: #6B5AED;
    transform: translateX(5px);
    text-decoration: none;
    border-bottom: none;
}

.footer-menu a:active,
.footer-services a:active,
.footer-widgets .menu a:active {
    color: #8a7bef;
}

.footer-menu a:focus,
.footer-services a:focus,
.footer-widgets .menu a:focus {
    outline: 2px solid #6B5AED;
    outline-offset: 2px;
    color: #6B5AED;
}

.footer-services i {
    color: #6B5AED;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-services a:hover i {
    transform: translateX(3px);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.contact-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    color: #6B5AED;
    font-size: 16px;
    margin-top: 3px;
    min-width: 20px;
    text-align: center;
}

.contact-text {
    flex: 1;
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 14px;
}

.contact-text a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: none;
}

.contact-text a:hover {
    color: #6B5AED;
    text-decoration: none;
    border-bottom: none;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* FIXED: Social icon hover - keep icon white */
.social-link:hover {
    background: #6B5AED;
    color: #ffffff !important; /* Force white color on hover */
    transform: translateY(-3px);
    border-color: #6B5AED;
    box-shadow: 0 5px 15px rgba(107, 90, 237, 0.3);
}

.social-link:hover i {
    color: #ffffff !important; /* Ensure icon stays white */
}

.social-link:active {
    transform: translateY(-1px);
}

.social-link i {
    transition: color 0.3s ease;
}

.footer-newsletter {
    margin-top: 25px;
}

.footer-newsletter p {
    color: #b0b0b0;
    margin-bottom: 15px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 100%;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #6B5AED;
    background: rgba(255,255,255,0.1);
}

.newsletter-form input[type="email"]::placeholder {
    color: #808080;
}

.newsletter-btn {
    background: #6B5AED;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.newsletter-btn:hover {
    background: #5a4ad8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 90, 237, 0.3);
}

.footer-bottom {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    margin: 0;
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

.footer-credit-menu {
    display: flex;
    align-items: center;
}

.footer-credit-nav {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-credit-nav li {
    margin: 0;
}

.footer-credit-nav a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.footer-credit-nav a:hover {
    color: #6B5AED;
    text-decoration: none;
}

.footer-bottom-content.menu-left .footer-copyright {
    order: 2;
    text-align: right;
}

.footer-bottom-content.menu-left .footer-credit-menu {
    order: 1;
    text-align: left;
}

.footer-bottom-content.menu-above {
    flex-direction: column;
}

.footer-bottom-content.menu-above .footer-credit-menu {
    order: 1;
    margin-bottom: 15px;
}

.footer-bottom-content.menu-above .footer-copyright {
    order: 2;
}

.footer-bottom-content.menu-below {
    flex-direction: column;
}

.footer-bottom-content.menu-below .footer-copyright {
    order: 1;
    margin-bottom: 15px;
}

.footer-bottom-content.menu-below .footer-credit-menu {
    order: 2;
}

/* ======================
   CHECKOUT PAGE STYLES - FINAL FIXED VERSION
   ====================== */
.preneurs-checkout-wrapper {
    padding: 40px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.checkout-login-required {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.login-required-card {
    background: white;
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
    border: 2px solid #f0f0f0;
}

.login-required-card .login-icon {
    width: 100px;
    height: 100px;
    background: rgba(107, 90, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.login-required-card .login-icon i {
    font-size: 48px;
    color: #6B5AED;
}

.login-required-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.login-required-card p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.login-required-card .login-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.login-required-card .btn-login {
    background: #6B5AED;
    color: white;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.login-required-card .btn-login:hover {
    background: #5a4ad8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 90, 237, 0.2);
}

.login-required-card .btn-register {
    background: white;
    color: #6B5AED;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #6B5AED;
    transition: all 0.3s;
}

.login-required-card .btn-register:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.checkout-header {
    margin-bottom: 40px;
}

.checkout-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-title i {
    color: #6B5AED;
}

.checkout-steps {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    flex-wrap: wrap;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    position: relative;
    min-width: 120px;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-right: 2px solid #ddd;
    border-top: 2px solid #ddd;
    transform: rotate(45deg);
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 16px;
}

.step.completed .step-number {
    background: #4CAF50;
    color: white;
}

.step.active .step-number {
    background: #6B5AED;
    color: white;
}

.step-label {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.step.completed .step-label {
    color: #4CAF50;
}

.step.active .step-label {
    color: #6B5AED;
}

.checkout-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.checkout-details-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 35px;
    border: 1px solid #f0f0f0;
}

.section-heading {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 25px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #6B5AED;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-heading i {
    color: #6B5AED;
}

/* FIXED: col2-set with better column distribution */
.col2-set {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Billing gets 2/3, shipping gets 1/3 */
    gap: 30px;
    margin-bottom: 30px;
}

/* Ensure each column takes full width of its grid cell */
.col-1, .col-2 {
    width: 100%;
}

/* Make sure shipping fields don't look empty */
.woocommerce-shipping-fields {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.woocommerce-additional-fields {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

/* ===== CHECKOUT FIELD STYLES ===== */
.woocommerce-billing-fields .form-row,
.woocommerce-shipping-fields .form-row,
.additional-notes-section .form-row {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    display: block !important;
    float: none !important;
    clear: both !important;
}

.woocommerce-billing-fields .form-row input,
.woocommerce-billing-fields .form-row select,
.woocommerce-billing-fields .form-row textarea,
.woocommerce-shipping-fields .form-row input,
.woocommerce-shipping-fields .form-row select,
.woocommerce-shipping-fields .form-row textarea,
.additional-notes-section .form-row textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    padding: 14px 16px !important;
    border: 2px solid #f0f0f0 !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    transition: all 0.3s !important;
    background: #fafafa !important;
    line-height: 1.5 !important;
    box-sizing: border-box !important;
}

/* Fix for half-width fields (first name, last name) */
.woocommerce-billing-fields .form-row-first,
.woocommerce-billing-fields .form-row-last,
.woocommerce-shipping-fields .form-row-first,
.woocommerce-shipping-fields .form-row-last {
    width: 48% !important;
    float: left !important;
    clear: none !important;
    margin-right: 4% !important;
}

.woocommerce-billing-fields .form-row-last,
.woocommerce-shipping-fields .form-row-last {
    margin-right: 0 !important;
}

.woocommerce-billing-fields .form-row-wide,
.woocommerce-shipping-fields .form-row-wide,
.additional-notes-section .form-row-wide {
    width: 100% !important;
    clear: both !important;
    float: none !important;
}

.woocommerce-billing-fields .form-row label,
.woocommerce-shipping-fields .form-row label,
.additional-notes-section .form-row label {
    display: block !important;
    margin-bottom: 8px !important;
    font-weight: 500 !important;
    color: #333 !important;
    font-size: 14px !important;
    width: auto !important;
}

.woocommerce-billing-fields .form-row .required,
.woocommerce-shipping-fields .form-row .required {
    color: #f44336 !important;
    border: none !important;
}

.woocommerce-billing-fields .form-row input:focus,
.woocommerce-billing-fields .form-row select:focus,
.woocommerce-billing-fields .form-row textarea:focus,
.woocommerce-shipping-fields .form-row input:focus,
.woocommerce-shipping-fields .form-row select:focus,
.woocommerce-shipping-fields .form-row textarea:focus,
.additional-notes-section .form-row textarea:focus {
    outline: none !important;
    border-color: #6B5AED !important;
    background: white !important;
    box-shadow: 0 0 0 3px rgba(107, 90, 237, 0.1) !important;
}

.woocommerce-billing-fields::after,
.woocommerce-shipping-fields::after,
.woocommerce-billing-fields__field-wrapper::after,
.woocommerce-shipping-fields__field-wrapper::after {
    content: '';
    display: table;
    clear: both;
}

.select2-container .select2-selection--single {
    height: 54px !important;
    border: 2px solid #f0f0f0 !important;
    border-radius: 12px !important;
    background: #fafafa !important;
    width: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 54px !important;
    padding-left: 16px !important;
    color: #333 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 54px !important;
    right: 12px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #6B5AED transparent transparent transparent !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #6B5AED transparent !important;
}

.select2-dropdown {
    border: 2px solid #f0f0f0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
}

.select2-results__option {
    padding: 10px 16px !important;
}

.select2-results__option--highlighted[aria-selected] {
    background: #6B5AED !important;
}

/* Order Review Card */
.order-review-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title i {
    color: #6B5AED;
}

.order-totals {
    margin-bottom: 25px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.order-totals .shop_table {
    width: 100%;
    border-collapse: collapse;
}

.order-totals .shop_table th,
.order-totals .shop_table td {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

.order-totals .shop_table th {
    font-weight: 500;
    color: #666;
}

.order-totals .shop_table td {
    text-align: right;
    font-weight: 500;
    color: #333;
}

.order-totals .order-total th,
.order-totals .order-total td {
    font-weight: 700;
    color: #333;
    font-size: 18px;
    border-top: 2px solid #d0d0d0;
    border-bottom: none;
    padding-top: 15px;
}

#payment {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.wc_payment_methods {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.wc_payment_method {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.wc_payment_method label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

.wc_payment_method input[type="radio"] {
    width: auto;
    margin-right: 5px;
}

.payment_box {
    margin-top: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
    border: 1px solid #f0f0f0;
}

#place_order {
    background: #6B5AED;
    color: white;
    padding: 16px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

#place_order:hover {
    background: #5a4ad8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 90, 237, 0.2);
}

.return-to-cart-link {
    text-align: center;
    margin-top: 20px;
}

.return-to-cart-link a {
    color: #6B5AED;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    transition: all 0.3s;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}

.return-to-cart-link a:hover {
    background: #f0f0f0;
    color: #5a4ad8;
    transform: translateX(-5px);
}

/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 1200px) {
    .hero-slide {
        padding: 0 60px;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        height: 450px;
    }
    
    .hero-slide {
        padding: 0 50px;
    }
    
    .slide-content h1 {
        font-size: 40px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .blog-grid-layout,
    .single-post-layout,
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .primary-menu {
        position: fixed;
        top: var(--header-height, 70px);
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        z-index: 999;
    }
    
    .primary-menu.active {
        transform: translateY(0);
    }
    
    .primary-menu a {
        padding: 10px 0;
        font-size: 18px;
    }
    
    .header-actions {
        margin-left: auto;
    }
    
    .premium-container {
        flex-direction: column;
    }
    
    .hosting-card {
        order: -1;
    }
    
    .theme-preview-card {
        flex-direction: column;
        text-align: center;
    }
    
    .theme-preview {
        margin: 0 auto;
    }
    
    .pricing-columns {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .pricing-column.highlighted-plan {
        transform: none;
    }
    
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-credit-nav {
        gap: 20px;
    }
    
    .account-header {
        flex-direction: column;
        text-align: center;
    }
    
    .user-welcome {
        flex-direction: column;
    }
    
    .account-stats {
        width: 100%;
        justify-content: center;
    }
    
    .account-nav-tabs {
        flex-direction: column;
    }
    
    .account-nav-tabs li {
        width: 100%;
    }
    
    .account-nav-tabs a {
        justify-content: flex-start;
        padding-left: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .ticket-progress {
        gap: 40px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ticket-filters {
        width: 100%;
    }
    
    .filter-select,
    .search-input {
        width: 100%;
    }
    
    /* Checkout responsive */
    .checkout-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .col2-set {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .checkout-steps {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step {
        width: 100%;
    }
    
    .step:not(:last-child):after {
        display: none;
    }
    
    .checkout-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: auto;
        min-height: 400px;
    }
    
    .hero-slide {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        justify-content: center;
        height: auto;
        min-height: 400px;
    }
    
    .slide-content {
        padding-right: 0;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .slide-content h1 {
        font-size: 32px;
    }
    
    .slide-image {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .services-grid,
    .products-grid,
    .blog-grid-posts {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-credit-nav {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .theme-slider {
        height: auto;
        min-height: 300px;
    }
    
    .theme-preview-card {
        padding: 20px;
    }
    
    .pricing-columns {
        grid-template-columns: 1fr !important;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .plan-price .amount {
        font-size: 48px;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .widget-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-copyright {
        text-align: center;
        width: 100%;
    }
    
    .account-tab {
        padding: 25px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .ticket-progress:before {
        display: none;
    }
    
    .ticket-progress {
        flex-direction: column;
        gap: 20px;
    }
    
    .ticket-form-card {
        padding: 25px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-cancel,
    .btn-submit-ticket {
        width: 100%;
        justify-content: center;
    }
    
    .login-actions {
        flex-direction: column;
    }
    
    .btn-login,
    .btn-register {
        width: 100%;
        justify-content: center;
    }
    
    /* Checkout mobile responsive */
    .preneurs-checkout-wrapper {
        padding: 20px 15px;
    }
    
    .checkout-details-section,
    .order-review-card {
        padding: 20px;
    }
    
    .woocommerce-billing-fields .form-row-first,
    .woocommerce-billing-fields .form-row-last,
    .woocommerce-shipping-fields .form-row-first,
    .woocommerce-shipping-fields .form-row-last {
        width: 100% !important;
        margin-right: 0 !important;
        float: none !important;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        padding: 30px 20px;
    }
    
    .slide-content h1 {
        font-size: 28px;
    }
    
    .slide-description {
        font-size: 16px;
    }
    
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .error-title {
        font-size: 80px;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .footer-credit-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-credit-nav a {
        display: block;
        padding: 5px 0;
    }
    
    .footer-menu a,
    .footer-services a {
        justify-content: center;
    }
}

/* Remove any lingering blue link styles */
.site-footer a,
.site-footer a:link,
.site-footer a:visited {
    color: #b0b0b0;
    text-decoration: none;
    border-bottom: none;
}

.site-footer a:hover,
.site-footer a:focus {
    color: #6B5AED;
    text-decoration: none;
    border-bottom: none;
}

.site-footer a,
.site-footer a:hover,
.site-footer a:focus,
.site-footer a:active {
    text-decoration: none !important;
    border-bottom: none !important;
    outline: none;
}
/* ======================
   CHECKOUT PAGE - ULTIMATE FIX
   ====================== */
.woocommerce-checkout .col2-set {
    display: grid !important;
    grid-template-columns: 2fr 1fr !important;
    gap: 30px !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Force billing fields to be full width within their container */
.woocommerce-billing-fields__field-wrapper {
    display: block !important;
    width: 100% !important;
}

.woocommerce-billing-fields .form-row,
.woocommerce-shipping-fields .form-row {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
}

/* Fix for first/last name fields */
.woocommerce-billing-fields .form-row-first,
.woocommerce-billing-fields .form-row-last {
    width: 48% !important;
    float: left !important;
    margin-right: 4% !important;
}

.woocommerce-billing-fields .form-row-last {
    margin-right: 0 !important;
}

/* Ensure inputs take full width */
.woocommerce-billing-fields .form-row input,
.woocommerce-billing-fields .form-row select,
.woocommerce-billing-fields .form-row textarea,
.woocommerce-shipping-fields .form-row input,
.woocommerce-shipping-fields .form-row select,
.woocommerce-shipping-fields .form-row textarea {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 16px !important;
    border: 2px solid #f0f0f0 !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    background: #fafafa !important;
    box-sizing: border-box !important;
}

/* Shipping fields container styling */
.woocommerce-shipping-fields {
    background: #f8f9fa !important;
    padding: 20px !important;
    border-radius: 12px !important;
    border: 1px solid #f0f0f0 !important;
    margin-bottom: 20px !important;
}

.woocommerce-additional-fields {
    background: #f8f9fa !important;
    padding: 20px !important;
    border-radius: 12px !important;
    border: 1px solid #f0f0f0 !important;
}

/* Override any WooCommerce default styles */
.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
    width: 48% !important;
}

.woocommerce form .form-row-wide,
.woocommerce-page form .form-row-wide {
    width: 100% !important;
}

/* Tablet responsive */
@media (max-width: 992px) {
    .woocommerce-checkout .col2-set {
        grid-template-columns: 1fr !important;
    }
    
    .woocommerce-billing-fields .form-row-first,
    .woocommerce-billing-fields .form-row-last {
        width: 100% !important;
        float: none !important;
        margin-right: 0 !important;
    }
}
/* ======================
   CHECKOUT PAGE - ULTIMATE FIX - STACKED VERSION
   ====================== */
.woocommerce-checkout .col2-set {
    display: block !important;
    width: 100% !important;
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 0 30px 0 !important;
    padding: 0 !important;
}

/* Remove any floats that might be causing issues */
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
    display: block !important;
    width: 100% !important;
    overflow: hidden !important;
}

.woocommerce-billing-fields .form-row,
.woocommerce-shipping-fields .form-row {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    clear: both !important;
}

/* Fix for first/last name fields - keep them side by side */
.woocommerce-billing-fields .form-row-first,
.woocommerce-billing-fields .form-row-last {
    width: 48% !important;
    float: left !important;
    margin-right: 4% !important;
    clear: none !important;
}

.woocommerce-billing-fields .form-row-last {
    margin-right: 0 !important;
}

/* Ensure inputs take full width of their container */
.woocommerce-billing-fields .form-row input,
.woocommerce-billing-fields .form-row select,
.woocommerce-billing-fields .form-row textarea,
.woocommerce-shipping-fields .form-row input,
.woocommerce-shipping-fields .form-row select,
.woocommerce-shipping-fields .form-row textarea {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 16px !important;
    border: 2px solid #f0f0f0 !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    background: #fafafa !important;
    box-sizing: border-box !important;
}

/* Shipping fields container styling */
.woocommerce-shipping-fields {
    background: #f8f9fa !important;
    padding: 25px !important;
    border-radius: 16px !important;
    border: 1px solid #f0f0f0 !important;
    margin-bottom: 25px !important;
}

.woocommerce-additional-fields {
    background: #f8f9fa !important;
    padding: 25px !important;
    border-radius: 16px !important;
    border: 1px solid #f0f0f0 !important;
}

/* Override any WooCommerce default styles */
.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
    width: 48% !important;
}

.woocommerce form .form-row-wide,
.woocommerce-page form .form-row-wide {
    width: 100% !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .woocommerce-billing-fields .form-row-first,
    .woocommerce-billing-fields .form-row-last {
        width: 100% !important;
        float: none !important;
        margin-right: 0 !important;
    }
}
/* ======================
   FOOTER WIDGET TITLE FIX FOR SPECIFIC PAGES
   ====================== */
.page-template-page-faqs .widget-title,
.page-template-page-terms-of-service .widget-title,
.page-template-page-privacy-policy .widget-title,
.single-product .widget-title {
    color: #ffffff !important;
}

.page-template-page-faqs .widget-title:after,
.page-template-page-terms-of-service .widget-title:after,
.page-template-page-privacy-policy .widget-title:after,
.single-product .widget-title:after {
    background: #6B5AED !important;
}