/* ==============================================
   WEB APP - Customer Interface
   Conectados Delivery
   ============================================== */

/* Variables */
:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #3B82F6;
    --secondary: #F59E0B;
    --accent: #06B6D4;
    --success: #22C55E;
    --danger: #EF4444;
    --warning: #EAB308;

    --bg-dark: #0A0A0F;
    --bg-card: #13131A;
    --bg-hover: #1C1C26;
    --bg-input: #23232F;

    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;
    --text-muted: #71717A;

    --border: #27272A;
    --border-light: #3F3F46;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    --gradient-accent: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
    --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    display: block;
}

.hidden {
    display: none !important;
}

.container {
    width: 100%;
    max-width: 1240px;
    /* Increased slightly for better fit */
    margin: 0 auto !important;
    padding: 0 20px;
    position: relative;
}

/* ==================== HERO BANNER CAROUSEL ==================== */
.hero-banner-section {
    width: 100%;
    margin-bottom: 32px;
}

.banner-carousel {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.banner-track {
    width: 100%;
    position: relative;
    aspect-ratio: 3 / 1;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.banner-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.3) 0%, rgba(19, 19, 26, 0.2) 100%);
    z-index: 1;
}

.banner-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.banner-content .btn {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 50%, #3B82F6 100%);
}

.banner-gradient {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
}

.banner-nav {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 3;
}

.banner-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background: white;
    transform: scale(1.3);
}

.banner-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 32px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .banner-content .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 24px;
    }

    .banner-content p {
        font-size: 14px;
    }

    .banner-dots {
        bottom: 16px;
    }
}

/* ==================== ANNOUNCEMENT BAR ==================== */
/* ==================== ANNOUNCEMENT BAR ==================== */
.announcement-bar {
    background: var(--gradient-primary);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    z-index: 2100;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.announcement-track {
    display: flex;
    width: max-content;
    height: 100%;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.announcement-track:hover {
    animation-play-state: paused;
}

.announcement-item {
    flex: 0 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 50px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.announcement-icon {
    display: flex;
    align-items: center;
}

.announcement-item i {
    width: 16px;
    height: 16px;
    opacity: 0.9;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    .announcement-item {
        font-size: 11px;
        padding: 0 30px;
    }
}

/* ==================== SKELETON LOADING ==================== */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-hover) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

.skeleton-card {
    height: 280px;
    min-width: 180px;
    border-radius: var(--radius-lg);
}

.skeleton-text {
    height: 14px;
    width: 80%;
    margin: 8px 0;
}

.skeleton-text.short {
    width: 50%;
}

.skeleton-circle {
    width: 85px;
    height: 85px;
    border-radius: 50%;
}

/* ==================== SCROLL ANIMATIONS ==================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grid items */
.animate-on-scroll:nth-child(1) {
    transition-delay: 0.05s;
}

.animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
    transition-delay: 0.15s;
}

.animate-on-scroll:nth-child(4) {
    transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(5) {
    transition-delay: 0.25s;
}

/* ==================== PRODUCT BADGES ==================== */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-badge.new {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
}

.product-badge.promo {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    color: white;
}

.product-badge.low-stock {
    background: linear-gradient(135deg, #f59e0b 0%, #eab308 100%);
    color: #1f2937;
}

/* ==================== QUICK ADD TO CART ==================== */
.quick-cart-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    z-index: 3;
    border: none;
    cursor: pointer;
}

.quick-cart-btn i {
    width: 18px;
    height: 18px;
}

.product-card:hover .quick-cart-btn {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.quick-cart-btn:hover {
    transform: scale(1.1) translateY(0);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.quick-cart-btn:active {
    transform: scale(0.95);
}

/* ==================== FREE SHIPPING BANNER ==================== */
.shipping-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-hover) 100%);
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    z-index: 90;
    display: none;
    backdrop-filter: blur(10px);
}

.shipping-banner.show {
    display: block;
}

.shipping-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.shipping-banner-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.shipping-banner-text i {
    color: var(--success);
    width: 20px;
    height: 20px;
}

.shipping-progress {
    flex: 1;
    max-width: 200px;
    height: 6px;
    background: var(--bg-input);
    border-radius: 3px;
    overflow: hidden;
}

.shipping-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.shipping-amount {
    font-weight: 700;
    color: var(--primary);
}


/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    z-index: 2000;
    transition: top 0.3s ease;
}

/* Adjust header when announcement is show */
body.has-announcement .header {
    top: 40px;
}

body {
    padding-top: 70px;
    /* Default header height */
}

body.has-announcement {
    padding-top: 110px;
    /* Header (70px) + Announcement (40px) */
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
}

.logo i {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.nav-desktop a:hover {
    color: var(--text-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.icon-btn:hover {
    background: var(--bg-hover);
    border-color: var(--primary);
    transform: scale(1.05);
}

.icon-btn i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--secondary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cart,
.btn-user {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--bg-hover);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.btn-cart:hover,
.btn-user:hover {
    background: var(--primary);
    color: white;
}

.btn-cart i,
.btn-user i {
    width: 20px;
    height: 20px;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--secondary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count:empty,
.cart-count[data-count="0"] {
    display: none;
}

/* User Menu */
.user-menu {
    position: fixed;
    top: 72px;
    right: 16px;
    z-index: 2200;
    /* Higher than header and announcement if they overlap */
    transition: top 0.3s ease;
}

body.has-announcement .user-menu {
    top: 112px;
}

.user-menu-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px;
    min-width: 200px;
    box-shadow: var(--shadow);
}

.user-menu-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: var(--transition);
}

.user-menu-content a:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.user-menu-content a i {
    width: 18px;
    height: 18px;
}

/* ==================== MAIN ==================== */
.main {
    padding-top: 20px;
    min-height: 100vh;
}

/* ==================== SEARCH & FILTERS ==================== */
.search-filter-section {
    padding: 24px 0;
    margin-bottom: 32px;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 24px auto;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper input {
    width: 100%;
    padding: 18px 20px 18px 56px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-hover);
    box-shadow: var(--shadow-glow), 0 15px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.search-input-wrapper i.search-icon {
    position: absolute;
    left: 20px;
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
    pointer-events: none;
}

.search-input-wrapper input:focus+i.search-icon {
    transform: scale(1.1);
}

.categories-container {
    padding: 4px 0;
}

.categories-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 4px;
    scrollbar-width: none;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.category-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-secondary);
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-chip:hover {
    background: var(--bg-hover);
    border-color: var(--primary-light);
    color: var(--text-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.category-chip.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    transform: translateY(-4px) scale(1.05);
}

.category-chip i {
    width: 18px;
    height: 18px;
}

/* ==================== PRODUCTS GRID ==================== */
.products-section {
    padding-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    /* Compacted further */
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ... existing styles ... */

.categories-section {
    padding-bottom: 0;
    /* Removed padding completely */
    position: relative;
    margin-bottom: 4px;
    /* Minimal margin */
}

/* ... existing styles ... */

.categories-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    /* CRITICAL: Force all items into a single row */
    gap: 12px;
    /* Tighter gap */
    overflow-x: auto;
    padding: 12px 4px 4px 4px;
    /* Minimal bottom padding */
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.categories-grid::-webkit-scrollbar {
    display: none;
}

.category-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.category-nav:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.category-nav.prev {
    left: -18px;
}

.category-nav.next {
    right: -18px;
}

/* Hide navigation on touch devices where scroll is preferred */
@media (hover: none) {
    .category-nav {
        display: none;
    }
}

/* Category Preview Card (Circular Design) */
.category-preview-card-home {
    flex: 0 0 calc((100% - (5 * 24px)) / 6);
    /* CRITICAL: Exactly 6 items per view */
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.category-preview-card-home:hover {
    transform: scale(1.08);
}

.category-preview-card-home .category-circle {
    position: relative;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #ec4899 50%, #f97316 100%);
    padding: 3px;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.category-preview-card-home:hover .category-circle {
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5), 0 0 25px rgba(236, 72, 153, 0.3);
    transform: translateY(-4px);
}

.category-preview-card-home .category-circle-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-card);
    border: 2px solid var(--bg-main);
}

.category-preview-card-home .category-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-preview-card-home:hover .category-bg-img {
    transform: scale(1.15);
}

.category-icon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    color: var(--primary);
}

.category-icon-placeholder i {
    width: 32px;
    height: 32px;
}

.category-preview-card-home .category-overlay {
    display: none;
}

.category-preview-card-home .category-content-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
    max-width: 90px;
}

.category-preview-card-home .category-content-home span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.category-preview-card-home .category-content-home small {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
}

.category-preview-card-home .category-icon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
}

.category-preview-card-home .category-icon-placeholder i {
    width: 32px;
    height: 32px;
    color: white;
}

@media (min-width: 768px) {
    .categories-grid {
        gap: 28px;
    }

    .category-preview-card-home .category-circle {
        width: 100px;
        height: 100px;
    }

    .category-preview-card-home .category-content-home {
        max-width: 100px;
    }

    .category-preview-card-home .category-content-home span {
        font-size: 13px;
    }
}

/* Horizontal Products Grid (for featured/bestsellers) */
.products-grid-horizontal {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.products-grid-horizontal::-webkit-scrollbar {
    height: 6px;
}

.products-grid-horizontal::-webkit-scrollbar-track {
    background: var(--bg-hover);
    border-radius: 3px;
}

.products-grid-horizontal::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.products-grid-horizontal .product-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

/* CTA Section */
.cta-section {
    padding: 40px 0 60px;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glow);
}

.cta-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.cta-box .btn {
    background: white;
    color: var(--primary);
    white-space: nowrap;
}

.cta-box .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .cta-box .btn {
        width: 100%;
    }
}

/* Product Card */
/* ==================== PRODUCTS GRID ==================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 4px 20px 4px;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-card:hover::before {
    opacity: 0.05;
}

.product-image {
    width: 100%;
    padding-top: 100%;
    /* Força 1:1 */
    background: linear-gradient(135deg, var(--bg-hover) 0%, var(--bg-card) 100%);
    overflow: hidden;
    position: relative;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image i {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
}

/* Out of Stock Ribbon */
.out-of-stock-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.out-of-stock-ribbon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    transform: translateY(-50%) rotate(-5deg);
    z-index: -1;
}

.product-card.out-of-stock {
    opacity: 0.85;
}

.product-card.out-of-stock .product-add-btn {
    background: var(--text-muted);
    cursor: not-allowed;
}

.product-card.out-of-stock .product-add-btn:hover {
    transform: none;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #000;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
    letter-spacing: 0.5px;
}

.product-info {
    padding: 12px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.product-description {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.product-price-old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 8px;
}

.price-old {
    font-size: 14px;
    color: #7a7a7a !important;
    text-decoration: line-through;
    margin-right: 8px;
    display: inline-block;
}

.price-current {
    font-size: 18px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-savings {
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 14px;
}

.modal-footer {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.add-to-cart-btn {
    flex: 1;
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.share-btn {
    flex: 0 0 auto;
    padding: 16px 20px;
    background: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
    border: none;
    color: white;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.share-btn i {
    width: 18px;
    height: 18px;
}

.product-add-btn {
    padding: 10px 18px;
    border-radius: 25px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    font-size: 13px;
    font-weight: 600;
}

.product-add-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}

.product-add-btn i {
    width: 16px;
    height: 16px;
}

/* ==================== CART SIDEBAR ==================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 200;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    z-index: 2500;
    /* Always top */
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.cart-header h2 {
    font-size: 18px;
}

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
}

.cart-close:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.cart-close i {
    width: 20px;
    height: 20px;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.cart-empty i {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.cart-empty h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

/* Cart Header Premium */
.cart-header {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(99, 102, 241, 0.08) 100%);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
}

.cart-header h2 {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header h2::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Cart Items */
.cart-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: var(--bg-hover);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.cart-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-variant {
    font-size: 11px;
    color: var(--text-muted);
    background: rgba(99, 102, 241, 0.1);
    padding: 2px 8px;
    border-radius: 100px;
    width: fit-content;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.cart-item-qty span {
    font-size: 14px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

.qty-btn i {
    width: 14px;
    height: 14px;
}

.cart-item-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.cart-item-remove i {
    width: 16px;
    height: 16px;
}

/* Cart Footer */
.cart-footer {
    border-top: 1px solid var(--border);
    padding: 20px;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(99, 102, 241, 0.05) 100%);
}

.cart-summary {
    margin-bottom: 16px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.cart-summary-row.total {
    border-top: 1px solid var(--border);
    margin-top: 8px;
    padding-top: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.cart-summary-row.total span:last-child {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-checkout-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.cart-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.cart-checkout-btn i {
    width: 20px;
    height: 20px;
}

/* Product Trust Tags */
.product-trust-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0;
}

.trust-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.trust-tag i {
    width: 12px;
    height: 12px;
}

/* Home Education Banner */
.home-education-banner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: var(--radius-md);
    margin: 40px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.home-education-banner i {
    color: var(--primary);
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
}

.home-education-banner p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
}

.home-education-banner strong {
    color: var(--text-primary);
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--primary);
}

.qty-btn i {
    width: 14px;
    height: 14px;
}

.cart-item-remove {
    color: var(--danger);
    align-self: flex-start;
}

.cart-item-remove i {
    width: 18px;
    height: 18px;
}

/* Cart Footer */
.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    background: var(--bg-dark);
}

.cart-summary {
    margin-bottom: 16px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.cart-summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
}

.cart-checkout-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.cart-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.cart-checkout-btn i {
    width: 20px;
    height: 20px;
}

/* ==================== PRODUCT MODAL ==================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-modal {
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease;
    display: flex;
    flex-direction: column;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-image {
    width: 100%;
    padding-top: 75%;
    /* Reduced from 100% to tighten layout */
    background: var(--bg-hover);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.modal-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close i {
    width: 20px;
    height: 20px;
}

.modal-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.modal-category {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.modal-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.modal-description {
    color: var(--text-secondary);
    margin-bottom: 6px;
    line-height: 1.5;
    font-size: 14px;
}

.read-more-btn {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-bottom: 16px;
    display: inline-block;
}

.read-more-btn:hover {
    text-decoration: underline;
}

.modal-specs {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: var(--bg-hover);
    border-radius: var(--radius-md);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 12px;
}

.spec-item i {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.modal-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.modal-price .price-old {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.modal-price .price-current {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-price .price-discount {
    background: var(--gradient-gold);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.modal-notes {
    margin-bottom: 20px;
}

.modal-notes label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 13px;
}

.modal-notes textarea {
    width: 100%;
    padding: 12px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    resize: none;
    min-height: 80px;
}

.modal-notes textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.modal-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.modal-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-hover);
    padding: 8px 12px;
    border-radius: var(--radius-md);
}

.modal-qty span {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.modal-add-btn {
    flex: 1;
    padding: 14px 24px;
    background: var(--primary);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.modal-add-btn:hover {
    background: var(--primary-dark);
}

/* Mobile optimizations for product modal */
@media (max-width: 480px) {
    .modal-overlay {
        padding: 16px;
    }

    .product-modal {
        max-width: 100%;
        max-height: 95vh;
    }

    .modal-image {
        padding-top: 65%;
        /* Even smaller on mobile */
    }

    .modal-content {
        padding: 16px;
    }

    .modal-name {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .modal-specs {
        gap: 8px;
        padding: 10px;
        margin-bottom: 12px;
    }

    .spec-item {
        font-size: 11px;
        gap: 4px;
    }

    .modal-price {
        margin-bottom: 16px;
    }

    .modal-actions {
        gap: 10px;
    }

    .modal-qty {
        padding: 6px 10px;
        gap: 10px;
    }

    .modal-add-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* ==================== CHECKOUT PAGE ==================== */
/* ==================== CHECKOUT PAGE ==================== */
.checkout-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 16px;
}

.checkout-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-primary);
    text-align: center;
}

.checkout-section {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.checkout-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-section h3 i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.04);
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.payment-option {
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.payment-option:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.payment-option.selected {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.payment-option input {
    display: none;
}

.payment-option i {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.payment-option span {
    font-weight: 700;
    font-size: 14px;
}

/* Summary Items */
.order-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 15px;
    color: var(--text-secondary);
}

/* Checkout Button */
.checkout-btn {
    width: 100%;
    padding: 20px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    margin-top: 20px;
}

.checkout-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.5);
}

.checkout-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* PIX Payment Section */
.pix-payment-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    margin-top: 20px;
}

.pix-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.pix-qrcode-wrapper {
    background: white;
    padding: 16px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.05);
}

.pix-key-wrapper {
    width: 100%;
    margin-top: 10px;
}

.pix-details {
    width: 100%;
}

/* PIX Copy Container */
.pix-copy-container {
    display: flex;
    gap: 10px;
}

@media (max-width: 480px) {
    .pix-copy-container {
        flex-direction: column;
    }
}

/* ==================== TOAST ==================== */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 14px 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: toastIn 0.3s ease;
    margin-bottom: 10px;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.toast i {
    width: 20px;
    height: 20px;
}

.toast.success i {
    color: var(--success);
}

.toast.error i {
    color: var(--danger);
}

/* ==================== LOADING ==================== */
.loading-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==================== ORDERS PAGE ==================== */
.orders-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 16px;
}

.order-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.order-id {
    font-weight: 700;
    font-size: 16px;
}

.order-status {
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.order-status.pending {
    background: rgba(234, 179, 8, 0.15);
    color: #EAB308;
}

.order-status.confirmed {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
}

.order-status.preparing {
    background: rgba(249, 115, 22, 0.15);
    color: #F97316;
}

.order-status.out_for_delivery {
    background: rgba(139, 92, 246, 0.15);
    color: #8B5CF6;
}

.order-status.delivered {
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
}

.order-status.cancelled {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
}

.order-items {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

.order-total {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
}

.order-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-info {
        padding: 12px;
    }

    .product-name {
        font-size: 14px;
    }

    .product-price {
        font-size: 16px;
    }

    .cart-sidebar {
        max-width: 100%;
    }

    .checkout-container {
        padding: 24px 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .header .container {
        padding: 0 12px;
    }

    .logo span {
        display: none;
    }
}

/* ==================== BANNER CAROUSEL ==================== */
.banner-carousel {
    position: relative;
    margin-bottom: 24px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.banner-slides {
    position: relative;
    height: 200px;
}

.banner-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s ease;
    border-radius: var(--radius-xl);
}

.banner-slide.active {
    opacity: 1;
    transform: scale(1);
}

.banner-content {
    text-align: center;
    padding: 24px;
    color: white;
}

.banner-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-size: 16px;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.banner-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background: white;
    transform: scale(1.2);
}

.banner-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.banner-nav {
    position: absolute;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.banner-nav:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.banner-nav.prev {
    left: 16px;
    right: auto;
}

.banner-nav.next {
    left: auto;
    right: 16px;
}

@media (max-width: 768px) {
    .banner-slides {
        height: 160px;
    }

    .banner-content h2 {
        font-size: 22px;
    }

    .banner-content p {
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .banner-nav {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

/* Fullwidth Banner Carousel */
.banner-carousel.fullwidth {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 0;
    margin-bottom: 0;
}

.banner-carousel.fullwidth .banner-slides {
    height: 300px;
}

.banner-carousel.fullwidth .banner-slide {
    border-radius: 0;
}

.banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.banner-slide .banner-content {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .banner-carousel.fullwidth .banner-slides {
        height: 200px;
    }
}

/* ==================== BOTTOM TAB BAR ==================== */
.tab-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 8px;
    padding-bottom: env(safe-area-inset-bottom);
    /* iOS safe area */
    z-index: 100;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 10px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    border-radius: var(--radius-md);
    min-width: 52px;
}

.tab-item i {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.tab-item:hover {
    color: var(--text-secondary);
    background: rgba(99, 102, 241, 0.1);
}

.tab-item.active {
    color: var(--primary);
}

.tab-item.active i {
    transform: scale(1.1);
}

.tab-item.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 0 0 3px 3px;
}

/* Cart badge in tab bar */
.tab-cart {
    position: relative;
}

.tab-cart .cart-badge {
    position: absolute;
    top: 2px;
    right: 8px;
    background: var(--secondary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.tab-cart .cart-badge:empty,
.tab-cart .cart-badge[data-count="0"] {
    display: none;
}

/* Center Cart Button - Elevated Style */
.tab-cart-center {
    position: relative;
    margin-top: -20px;
}

.tab-cart-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    position: relative;
}

.tab-cart-center:hover .tab-cart-icon {
    transform: scale(1.1);
    background: var(--secondary);
}

.tab-cart-icon i {
    width: 26px;
    height: 26px;
    color: white;
}

.tab-cart-icon .cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--secondary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid var(--bg-dark);
}

/* Adjust main content to account for tab bar */
.main {
    padding-bottom: 90px;
}

/* Hide tab bar on larger screens (optional - remove if you want it always visible) */
@media (min-width: 769px) {
    .tab-bar {
        display: none;
    }

    .main {
        padding-bottom: 40px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .products-section {
        padding-bottom: 100px;
    }

    .cart-footer {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
}

/* ==================== CATEGORIES PAGE ==================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    padding-bottom: 100px;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.category-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.category-icon i {
    width: 28px;
    height: 28px;
    color: white;
}

.category-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Category Cards with Product Images */
.category-card-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    transition: var(--transition);
}

.category-card-img:hover {
    transform: scale(1.05);
}

.category-card-image {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-hover);
}

.category-placeholder i {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
}

.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.category-card-name {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.category-card-count {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

/* Product Badge (for offers) */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--secondary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== ORDERS PAGE ENHANCED ==================== */
.orders-page {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.orders-page .section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

/* Empty Orders State */
.empty-orders {
    text-align: center;
    padding: 80px 20px;
}

.empty-orders i {
    width: 80px;
    height: 80px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.empty-orders h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.empty-orders p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Order Card New */
.order-card-new {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.order-card-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.order-card-new.cancelled {
    opacity: 0.7;
}

/* Order Header */
.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.order-date-new {
    font-size: 12px;
    color: var(--text-muted);
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge i {
    width: 14px;
    height: 14px;
}

/* Order Timeline */
.order-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    padding: 0 10px;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    transition: var(--transition);
}

.timeline-step.active .step-dot {
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.timeline-step span {
    font-size: 10px;
    color: var(--text-muted);
    text-align: center;
}

.timeline-step.active span {
    color: var(--primary);
    font-weight: 600;
}

.timeline-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 4px;
    margin-bottom: 20px;
}

.timeline-line.active {
    background: var(--primary);
}

/* Order Address */
.order-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    background: var(--bg-hover);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.order-address i {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-top: 2px;
}

.order-address span {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Order Footer */
.order-footer-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.order-total-new {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.total-label {
    font-size: 12px;
    color: var(--text-muted);
}

.total-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.order-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Buttons */
.btn-repeat {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-hover);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-repeat:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-repeat i {
    width: 14px;
    height: 14px;
}

.btn-details {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.btn-details i {
    width: 20px;
    height: 20px;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: var(--gradient-primary);
    color: white;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary i {
    width: 18px;
    height: 18px;
}

/* Order Detail Modal */
.order-detail-modal {
    padding: 24px;
    max-height: 80vh;
    overflow-y: auto;
}

.order-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.order-detail-header h2 {
    font-size: 22px;
    font-weight: 700;
}

.order-detail-section {
    margin-bottom: 20px;
}

.order-detail-section h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-detail-section h4 i {
    width: 16px;
    height: 16px;
}

.order-detail-section p {
    font-size: 15px;
    color: var(--text-primary);
}

/* Order Items List */
.order-items-list {
    background: var(--bg-hover);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}

.order-item-row:last-child {
    border-bottom: none;
}

.item-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-info img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.item-notes {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.item-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Order Totals */
.order-detail-totals {
    background: var(--bg-hover);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.total-row.discount {
    color: var(--success);
}

.total-row.final {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    border-top: 1px solid var(--border);
    padding-top: 12px;
    margin-top: 8px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .order-timeline {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .timeline-step span {
        font-size: 9px;
    }

    .order-header {
        flex-direction: column;
        gap: 12px;
    }

    .order-footer-new {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .order-actions {
        justify-content: flex-end;
    }
}

/* PWA Install Prompt */
.install-prompt {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 500px;
    background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 100%);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
    z-index: 250;
    animation: slideUp 0.3s ease;
}

.install-prompt.hidden {
    display: none;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.install-prompt-content {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.install-prompt-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.install-prompt-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.install-prompt-close i {
    width: 16px;
    height: 16px;
}

.install-prompt-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.install-prompt-icon i {
    width: 28px;
    height: 28px;
    color: white;
}

.install-prompt-text {
    flex: 1;
    color: white;
}

.install-prompt-text h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.install-prompt-text p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.install-prompt-btn {
    background: white;
    color: var(--primary);
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    flex-shrink: 0;
}

.install-prompt-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.install-prompt-btn i {
    width: 18px;
    height: 18px;
}

@media (max-width: 480px) {
    .install-prompt {
        bottom: 70px;
        padding: 16px;
    }

    .install-prompt-content {
        gap: 12px;
    }

    .install-prompt-icon {
        width: 40px;
        height: 40px;
    }

    .install-prompt-icon i {
        width: 24px;
        height: 24px;
    }

    .install-prompt-text h3 {
        font-size: 14px;
    }

    .install-prompt-text p {
        font-size: 12px;
    }

    .install-prompt-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* ==================== PRODUCT VARIANTS ==================== */
.product-variants {
    margin: 12px 0;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.variant-type {
    margin-bottom: 12px;
    padding: 12px;
    background: var(--bg-hover);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.variant-type:last-child {
    margin-bottom: 0;
}

.variant-type-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.variant-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
}

.variant-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    min-height: 44px;
}

.variant-option:hover:not(:disabled) {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.1);
    transform: scale(1.02);
}

.variant-option.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    transform: scale(1.02);
}

.variant-option.out-of-stock {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--bg-hover);
}

.variant-option.out-of-stock span {
    text-decoration: line-through;
}

.variant-option:disabled {
    cursor: not-allowed;
}

.variant-option .variant-thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--border);
}

/* ==================== ORDERS PAGE ==================== */
.orders-page {
    padding: 24px 16px;
    max-width: 800px;
    margin: 0 auto;
}

.orders-page-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.orders-page-header i {
    width: 48px;
    height: 48px;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    padding: 12px;
    border-radius: var(--radius-md);
}

.orders-page-header h1 {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.orders-page-header p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Order Card */
.order-card {
    background: rgba(19, 19, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.order-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.order-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.order-card:hover::before {
    opacity: 1;
}

.order-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.order-id {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.order-id i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* Order Status Badges */
.order-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-status.pending {
    background: rgba(234, 179, 8, 0.15);
    color: #EAB308;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.order-status.confirmed,
.order-status.preparing {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.order-status.ready,
.order-status.out_for_delivery {
    background: rgba(139, 92, 246, 0.15);
    color: #8B5CF6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.order-status.delivered,
.order-status.completed {
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.order-status.cancelled {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.order-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 16px;
}

.order-card-date i {
    width: 16px;
    height: 16px;
}

/* Order Items Preview */
.order-items-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.order-item-thumb {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--bg-hover);
    overflow: hidden;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.order-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-thumb.more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.order-items-text {
    flex: 1;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Order Card Footer */
.order-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-payment {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
}

.order-payment i {
    width: 18px;
    height: 18px;
}

.order-total {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.order-view-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 16px;
    justify-content: center;
}

.order-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.order-view-btn i {
    width: 18px;
    height: 18px;
}

/* ==================== ORDER DETAILS MODAL ==================== */
.order-details-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.order-details-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.order-details-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    background: var(--bg-card);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@media (min-width: 768px) {
    .order-details-modal {
        align-items: center;
    }

    .order-details-content {
        border-radius: var(--radius-xl);
        max-height: 85vh;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.order-details-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: rgba(99, 102, 241, 0.05);
}

.order-details-header h2 {
    font-size: 20px;
    font-weight: 700;
}

.order-details-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-hover);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.order-details-close:hover {
    background: var(--danger);
    color: white;
}

.order-details-close i {
    width: 20px;
    height: 20px;
}

.order-details-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(90vh - 180px);
}

/* Order Timeline */
.order-timeline {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    margin-bottom: 24px;
    position: relative;
}

.order-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--border);
    transform: translateY(-50%);
    z-index: 0;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
    flex: 1;
}

.timeline-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-hover);
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.timeline-step-icon i {
    width: 18px;
    height: 18px;
}

.timeline-step.completed .timeline-step-icon {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.timeline-step.current .timeline-step-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }
}

.timeline-step-label {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    max-width: 70px;
}

.timeline-step.completed .timeline-step-label,
.timeline-step.current .timeline-step-label {
    color: var(--text-primary);
    font-weight: 600;
}

/* Order Details Sections */
.order-section {
    margin-bottom: 24px;
}

.order-section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-section-title i {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

/* Order Items List */
.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-item-row {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--bg-hover);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    overflow: hidden;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-info {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.order-item-variant {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.order-item-qty {
    font-size: 13px;
    color: var(--text-secondary);
}

.order-item-price {
    font-weight: 700;
    color: var(--primary);
    text-align: right;
}

/* Order Summary */
.order-summary {
    background: var(--bg-hover);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid var(--border);
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.order-summary-row.total {
    border-top: 1px solid var(--border);
    margin-top: 8px;
    padding-top: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.order-summary-row.total span:last-child {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.order-summary-row.discount {
    color: var(--success);
}

/* Order Address */
.order-address-card {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--bg-hover);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.order-address-card i {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.order-address-text {
    flex: 1;
}

.order-address-text p {
    color: var(--text-primary);
    line-height: 1.6;
}

.order-address-text small {
    color: var(--text-muted);
}

/* Order Actions */
.order-details-actions {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

.order-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.order-action-btn.primary {
    background: var(--gradient-primary);
    color: white;
}

.order-action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.order-action-btn.secondary {
    background: var(--bg-hover);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.order-action-btn.secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.order-action-btn i {
    width: 18px;
    height: 18px;
}

/* Empty Orders State */
.orders-empty {
    text-align: center;
    padding: 80px 20px;
}

.orders-empty i {
    width: 80px;
    height: 80px;
    color: var(--text-muted);
    margin-bottom: 24px;
    opacity: 0.5;
}

.orders-empty h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.orders-empty p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.orders-empty .order-action-btn {
    max-width: 200px;
    margin: 0 auto;
}

/* ==================== ORDER HORIZONTAL TIMELINE ==================== */
.order-timeline-horizontal {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 20px 10px;
    margin-bottom: 24px;
    overflow-x: auto;
    background: var(--bg-hover);
    border-radius: var(--radius-md);
}

.timeline-step-h {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    text-align: center;
}

.timeline-step-icon-h {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.timeline-step-icon-h i {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.timeline-step-h.completed .timeline-step-icon-h {
    background: var(--primary);
    border-color: var(--primary);
}

.timeline-step-h.completed .timeline-step-icon-h i {
    color: white;
}

.timeline-step-h.current .timeline-step-icon-h {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.2);
}

.timeline-step-h.current .timeline-step-icon-h i {
    color: white;
}

/* Status-specific colors */
.timeline-step-h.delivered .timeline-step-icon-h {
    background: #22C55E;
    border-color: #22C55E;
}

.timeline-step-h.cancelled .timeline-step-icon-h {
    background: #EF4444;
    border-color: #EF4444;
}

.timeline-step-label-h {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.timeline-step-h.completed .timeline-step-label-h,
.timeline-step-h.current .timeline-step-label-h {
    color: var(--text-primary);
}

.timeline-step-date-h {
    font-size: 10px;
    color: var(--text-muted);
}

.timeline-connector-h {
    width: 30px;
    height: 3px;
    background: var(--border);
    margin-top: 16px;
    flex-shrink: 0;
}

.timeline-step-h.completed+.timeline-connector-h {
    background: var(--primary);
}

@media (max-width: 480px) {
    .timeline-step-h {
        min-width: 55px;
    }

    .timeline-step-icon-h {
        width: 30px;
        height: 30px;
    }

    .timeline-step-icon-h i {
        width: 14px;
        height: 14px;
    }

    .timeline-connector-h {
        width: 20px;
    }

    .timeline-step-label-h {
        font-size: 10px;
    }
}

/* ==================== FLASH DEALS STRIP ==================== */
.flash-deals-strip {
    width: 100%;
    color: white;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
    overflow: hidden;
}

/* Shimmer Effect Enhanced */
.flash-deals-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.6) 20%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0.6) 80%,
            transparent);
    transform: skewX(-20deg);
    animation: shimmer 2.5s infinite linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        left: -150%;
    }

    50% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.flash-deals-strip .container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    padding: 8px 16px;
    position: relative;
    z-index: 2;
    /* Garante que o texto fique acima do brilho */
}

.flash-deals-strip a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.flash-deals-strip a:hover {
    opacity: 0.9;
}

.flash-icon {
    animation: pulse 1.5s infinite;
}

.flash-arrow {
    font-weight: bold;
    margin-left: 4px;
}

.flash-close {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

.flash-close:hover {
    color: white;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: linear-gradient(180deg, var(--bg-card) 0%, #0A0A0F 100%);
    border-top: 1px solid var(--border);
    padding: 60px 20px 140px 20px;
    /* Extra padding-bottom for tab-bar */
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: var(--bg-hover);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-4px);
}

.footer-social a i {
    width: 20px;
    height: 20px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-contact li i {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-cnpj {
    font-size: 11px !important;
    opacity: 0.6;
    margin-top: 8px;
}

/* Trust Badges Section */
.footer-trust-section {
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
    padding: 40px 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.trust-badge i {
    width: 28px;
    height: 28px;
    color: var(--success);
}

/* Payment Icons */
.footer-payment {
    text-align: center;
}

.payment-icons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin-bottom: 16px;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--bg-hover);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: var(--transition);
}

.payment-icon:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.payment-icon i {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.payment-icon span {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
}

.footer-payment-info {
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 0 0 180px 0;
    }

    .footer-trust-section {
        padding: 24px 16px;
        margin-bottom: 24px;
    }

    .trust-badges {
        gap: 20px;
    }

    .trust-badge {
        font-size: 12px;
        gap: 8px;
    }

    .trust-badge i {
        width: 22px;
        height: 22px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 20px;
    }

    .footer-brand {
        grid-column: span 1;
        text-align: center;
        padding: 32px 24px;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.08) 100%);
        border: 1px solid rgba(99, 102, 241, 0.2);
        border-radius: 24px;
        margin-bottom: 32px;
        backdrop-filter: blur(10px);
    }

    .footer-logo {
        height: 48px;
        margin: 0 auto 16px;
    }

    .footer-tagline {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .footer-social {
        justify-content: center;
        gap: 16px;
    }

    .footer-social a {
        width: 52px;
        height: 52px;
        background: var(--gradient-primary);
        border: none;
        color: white;
        box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    }

    .footer-social a:hover {
        transform: translateY(-4px) scale(1.1);
        box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
    }

    .footer-social a i {
        width: 24px;
        height: 24px;
    }

    .payment-icons {
        justify-content: center;
    }

    .footer-payment {
        text-align: center;
        margin-top: 24px;
    }

    /* Links sections in accordion style */
    .footer-section {
        text-align: left;
        padding: 20px 0;
        border-bottom: 1px solid var(--border);
    }

    .footer-section:last-of-type {
        border-bottom: none;
    }

    .footer-section h4 {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--primary);
        margin-bottom: 16px;
    }

    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer-section ul li {
        margin-bottom: 0;
    }

    .footer-section ul li a {
        display: inline-block;
        padding: 10px 16px;
        background: var(--bg-hover);
        border: 1px solid var(--border);
        border-radius: 100px;
        font-size: 13px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .footer-section ul li a:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: white;
        transform: translateX(0);
    }

    /* Contact section with cards */
    .footer-contact {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 12px !important;
    }
}

/* ==================== PREMIUM PRODUCT PAGE (PP-) ==================== */
.pp-container {
    max-width: 1200px;
    margin: 16px auto 0;
    padding: 16px 16px 60px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    border-radius: 24px;
    box-shadow: var(--shadow), 0 0 60px rgba(37, 99, 235, 0.12);
    position: relative;
    overflow: hidden;
}

.pp-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pp-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 220%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.25), transparent);
    animation: ppShimmer 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.pp-container>* {
    position: relative;
    z-index: 1;
}

@keyframes ppShimmer {
    0% {
        transform: translateX(-40%);
    }

    100% {
        transform: translateX(40%);
    }
}

/* Nav & Breadcrumb */
.pp-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.pp-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pp-back-btn:hover {
    background: var(--bg-hover);
    border-color: var(--primary);
    transform: translateX(-5px);
    color: var(--primary);
}

.pp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.pp-breadcrumb a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.pp-breadcrumb a:hover {
    color: var(--primary);
}

.pp-breadcrumb i {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}

.pp-breadcrumb span {
    color: var(--text-primary);
    font-weight: 500;
}

/* Main Grid */
.pp-grid {
    display: grid;
    grid-template-columns: 462px 1fr;
    gap: 40px;
    align-items: start;
}

/* Gallery Wrapper */
.pp-gallery-wrapper {
    display: flex;
    gap: 12px;
    position: sticky;
    top: 90px;
}

.pp-gallery-side {
    width: 50px;
}

.pp-gallery-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.pp-gallery-description {
    margin-top: 30px;
    width: 100%;
}

.pp-description-content {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pp-description-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pp-description-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

.pp-read-more-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.pp-read-more-btn:hover {
    color: var(--primary-light);
    transform: translateY(2px);
}

.pp-read-more-btn i {
    width: 16px;
    height: 16px;
}



.pp-gallery-main .pp-trust-badges {
    margin-top: 20px;
}

.pp-main-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1A1A23 0%, #13131A 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pp-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
    border-color: rgba(37, 99, 235, 0.35);
}

.pp-main-image>img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.35s ease;
}

.pp-main-image:hover>img {
    transform: scale(1.04);
}

.pp-no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
}

.pp-no-image i {
    width: 64px;
    height: 64px;
}

.pp-thumbnails-vertical {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pp-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: none;
    padding: 4px;
    background: var(--bg-card);
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    opacity: 0.6;
}

.pp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pp-thumb.active {
    opacity: 1;
    background: var(--bg-hover);
    box-shadow: 0 0 0 2px var(--primary);
    transform: scale(1.05);
    z-index: 1;
}

.pp-thumb:hover:not(.active) {
    opacity: 1;
    transform: translateX(4px);
}

/* Colors Below Image */


.pp-variant-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Badges */
.pp-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.pp-badge i {
    width: 14px;
    height: 14px;
}

.pp-badge-discount {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

.pp-badge-featured {
    background: rgba(245, 158, 11, 0.9);
    color: white;
}

.pp-badge-sold-out {
    background: rgba(107, 114, 128, 0.9);
    color: white;
}

/* Info Section */
.pp-info {
    display: flex;
    flex-direction: column;
}

.pp-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pp-category-tag i {
    width: 14px;
    height: 14px;
}

.pp-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF 0%, #DBEAFE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 6px 24px rgba(37, 99, 235, 0.25);
    letter-spacing: -0.6px;
}

/* Price Section */
.pp-price-section {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.pp-price-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pp-price-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
    flex-wrap: wrap;
}

.pp-price-current {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 3px 14px rgba(37, 99, 235, 0.35);
    position: relative;
    display: inline-block;
}

.pp-price-current::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.35), transparent);
    border-radius: 50%;
}

.pp-price-original {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.pp-price-save {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.pp-installments {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 15px;
}

.pp-installments i {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.pp-installments strong {
    color: var(--text-primary);
}



.pp-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Variants in PP */
.pp-info .product-page-variants {
    margin-bottom: 16px;
    padding: 0;
}

.pp-info .variant-type {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pp-info .variant-type-label {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 16px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pp-info .variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pp-info .variant-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-width: 80px;
    min-height: 80px;
}

.pp-info .variant-option:has(.variant-thumb) {
    min-width: 90px;
    min-height: 90px;
    gap: 8px;
}

.pp-info .variant-option span {
    text-align: center;
}

.pp-info .variant-option:hover:not(.out-of-stock) {
    border-color: var(--primary);
    background: var(--bg-hover);
    transform: translateY(-2px);
}

.pp-info .variant-option.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.pp-info .variant-option.out-of-stock {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}

.pp-info .variant-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--bg-hover);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Special styling for color variants */
.pp-info .variant-type[data-type="Cor"] .variant-option {
    padding: 6px;
    min-width: 40px;
    height: 40px;
    justify-content: center;
}

.pp-info .variant-type[data-type="Cor"] .variant-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* Special styling for model variants */
.pp-info .variant-type[data-type="Modelo"] .variant-option {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.pp-info .variant-type[data-type="Tamanho"] .variant-option {
    min-width: 50px;
    justify-content: center;
    font-weight: 700;
}

/* Gallery Description Styles */
.pp-gallery-description {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pp-description-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pp-description-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.pp-description-text {
    position: relative;
}

.pp-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.2) 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pp-read-more-btn:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0.3) 100%);
    border-color: rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.pp-read-more-btn i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.pp-read-more-btn:hover i {
    transform: scale(1.1);
}

/* Variant Gallery Styles */
.pp-no-gallery-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--text-muted);
    font-size: 12px;
    text-align: center;
    min-height: 80px;
}

.pp-no-gallery-images i {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
    opacity: 0.5;
}

.pp-no-gallery-images span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced thumbnail styles for variant galleries */
.pp-thumbnails-vertical .pp-thumb {
    position: relative;
    overflow: hidden;
}

.pp-thumbnails-vertical .pp-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(37, 99, 235, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pp-thumbnails-vertical .pp-thumb:hover::after {
    opacity: 1;
}

.pp-thumbnails-vertical .pp-thumb img {
    transition: transform 0.3s ease;
}

.pp-thumbnails-vertical .pp-thumb:hover img {
    transform: scale(1.05);
}

/* Purchase Section */
.pp-purchase-section {
    margin-bottom: 8px;
}

.pp-stock-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 8px;
}

.pp-stock-info i {
    width: 18px;
    height: 18px;
}

.pp-stock-info.ok {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.pp-stock-info.low {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.pp-stock-info.out {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.pp-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.pp-qty-control {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1A1A23 0%, #23232F 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.pp-qty-control:hover {
    background: linear-gradient(135deg, #2A2A3A 0%, #3A3A4A 100%);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.pp-qty-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2A2A3A 0%, #3A3A4A 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.pp-qty-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.pp-qty-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #FFFFFF;
    transform: scale(1.05);
    border-color: rgba(37, 99, 235, 0.35);
}

.pp-qty-btn:hover:not(:disabled)::before {
    width: 120%;
    height: 120%;
}

.pp-qty-btn:active:not(:disabled) {
    transform: scale(0.96);
}

.pp-qty-control span {
    font-size: 15px;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

.pp-add-to-cart {
    flex: 1;
    height: 56px;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 50%, #3B82F6 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.pp-add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.pp-add-to-cart:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pp-add-to-cart:hover::before {
    left: 100%;
}

.pp-add-to-cart:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.5;
}

/* Trust Badges */
.pp-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.pp-trust-badges::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}

.pp-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 12px 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pp-trust-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pp-trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border-color: rgba(37, 99, 235, 0.25);
}

.pp-trust-badge:hover::before {
    opacity: 1;
}

.pp-trust-icon {
    width: 28px;
    height: 28px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-trust-icon i {
    width: 16px;
    height: 16px;
}

.pp-trust-text {
    display: flex;
    flex-direction: column;
}

.pp-trust-text strong {
    font-size: 10px;
    color: var(--text-primary);
    margin-bottom: 1px;
}

.pp-trust-text span {
    font-size: 8px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .pp-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pp-gallery {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .pp-container {
        padding: 16px;
        margin-top: 12px;
    }

    .pp-main-image {
        max-width: 320px;
        height: 320px;
    }

    .pp-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pp-title {
        font-size: 28px;
    }

    .pp-price-current {
        font-size: 32px;
    }

    .pp-actions {
        flex-direction: column;
    }

    .pp-trust-badges {
        grid-template-columns: 1fr;
    }

    .pp-trust-badge {
        flex-direction: row;
        text-align: left;
        padding: 12px;
    }
}

@media (max-width: 600px) {
    .product-page-actions {
        flex-direction: column;
    }

    .product-page-perks {
        flex-direction: column;
        gap: 12px;
    }
}

/* Mobile optimizations for product page */
@media (max-width: 768px) {
    .pp-container {
        margin: 12px auto 0;
        padding: 12px 12px 40px;
    }

    .pp-nav {
        margin-bottom: 16px;
        gap: 12px;
    }

    .pp-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pp-gallery-wrapper {
        position: static;
        gap: 10px;
        margin-bottom: 20px;
    }

    .pp-gallery-side {
        width: 40px;
    }

    .pp-main-image {
        max-width: 100%;
        height: 300px;
    }

    .pp-thumb {
        width: 40px;
        height: 40px;
    }

    .pp-thumbnails-vertical {
        gap: 6px;
    }

    .pp-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .pp-category-tag {
        margin-bottom: 6px;
    }

    .pp-price-section {
        margin-bottom: 6px;
        padding-bottom: 6px;
    }

    .pp-price-current {
        font-size: 24px;
    }

    .pp-description {
        margin-bottom: 12px;
    }

    .pp-other-variants {
        margin-bottom: 10px;
        gap: 8px;
    }

    .pp-info .product-page-variants {
        margin-bottom: 12px;
    }

    .pp-info .variant-type-label {
        margin-bottom: 6px;
    }

    .pp-purchase-section {
        margin-bottom: 6px;
    }

    .pp-stock-info {
        margin-bottom: 8px;
        padding: 4px 8px;
        font-size: 12px;
    }

    .pp-actions {
        gap: 12px;
        margin-bottom: 8px;
    }

    .pp-qty-control {
        padding: 6px;
    }

    .pp-qty-btn {
        width: 40px;
        height: 40px;
    }

    .pp-add-to-cart {
        height: 50px;
        font-size: 14px;
    }

    .pp-trust-badges {
        margin-top: 16px;
        padding: 12px;
        gap: 8px;
    }

    .pp-trust-badge {
        padding: 8px 6px;
        gap: 6px;
    }

    .pp-trust-icon {
        width: 24px;
        height: 24px;
    }

    .pp-trust-icon i {
        width: 14px;
        height: 14px;
    }
}

/* Button Primary */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-primary:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.footer-contact li {
    background: var(--bg-hover);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    justify-content: flex-start !important;
}

.footer-contact li i {
    width: 20px;
    height: 20px;
}

.footer-contact li span {
    font-size: 14px;
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 12px;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 16px 120px 16px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .trust-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust-badge {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 12px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 16px 140px 16px;
    }

    .footer-brand {
        padding: 24px 20px;
        border-radius: 20px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo {
        height: 42px;
        margin: 0 auto;
    }

    .footer-section h4 {
        text-align: center;
        margin-bottom: 16px;
    }

    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .footer-section ul li a {
        padding: 8px 14px;
        font-size: 12px;
        background: var(--bg-hover);
        border-radius: 100px;
        border: 1px solid var(--border);
    }

    .payment-icons {
        justify-content: center;
    }
}

/* ==================== INSTITUTIONAL PAGES ==================== */
.institutional-page {
    padding-bottom: 40px;
}

.institutional-page .checkout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.institutional-page .checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.institutional-page .checkout-btn i {
    width: 18px;
    height: 18px;
}

/* ==================== MAGNIFYING GLASS ZOOM ==================== */
.magnifier-glass {
    display: none;
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(0, 0, 0, 0.1);
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 100;
    transition: none;
}

.magnifier-glass::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .magnifier-glass {
        display: none !important;
    }
}

/* ==================== PREMIUM HOME PAGE ENHANCEMENTS ==================== */

/* Section Headers Enhanced */

/* Section Headers Enhanced */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::after {
    display: none;
}

.see-all-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 100px;
    background: rgba(37, 99, 235, 0.1);
    transition: var(--transition);
}

.see-all-link:hover {
    background: var(--primary);
    color: white;
    transform: translateX(4px);
}

.see-all-link i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.see-all-link:hover i {
    transform: translateX(4px);
}

/* Products Section Enhanced */
.products-section {
    padding: 40px 0;
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100vw;
    right: -100vw;
    bottom: 0;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(37, 99, 235, 0.02) 50%,
            transparent 100%);
    pointer-events: none;
    z-index: -1;
}

/* Product Cards Enhanced */
.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(37, 99, 235, 0.2);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    position: relative;
    padding-top: 100%;
    background: var(--bg-hover);
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 12px;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--success);
}

.product-price-old {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 8px;
    font-weight: 400;
}

/* Featured Badge Enhanced */
.featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--gradient-gold);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Out of Stock Ribbon */
.out-of-stock-ribbon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--danger);
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card.out-of-stock .product-image img {
    filter: grayscale(80%) brightness(0.7);
}

/* Add to Cart Button Enhanced */
.product-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-add-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.product-add-btn:hover::before {
    left: 100%;
}

.product-add-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.product-add-btn:disabled {
    background: var(--bg-hover);
    cursor: not-allowed;
    opacity: 0.5;
}

.product-add-btn i {
    width: 18px;
    height: 18px;
}

/* Categories Section Enhanced */
.categories-section {
    padding: 40px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
}

.category-card:hover::before {
    opacity: 0.1;
}

.category-icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.category-icon i {
    width: 26px;
    height: 26px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.category-card:hover .category-icon i {
    color: white;
}

.category-card span {
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

/* CTA Section Enhanced */
.cta-section {
    padding: 60px 0;
}

.cta-box {
    background: linear-gradient(135deg,
            rgba(37, 99, 235, 0.15) 0%,
            rgb(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.cta-content {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 16px;
}

.cta-box .btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.cta-box .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5);
}

.cta-box .btn i {
    width: 22px;
    height: 22px;
}

/* Products Grid Horizontal (Carousel-like) */
.products-grid-horizontal {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(280px, 85vw);
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 24px;
    width: 100%;
}

.products-grid-horizontal::-webkit-scrollbar {
    display: none;
}

.products-grid-horizontal .product-card {
    scroll-snap-align: start;
}

/* Offers Page */
.offers-page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px 20px 48px;
}

.offers-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.offers-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 8px;
}

.offers-hero h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.offers-hero p {
    color: var(--text-secondary);
    font-size: 15px;
}

.offers-grid {
    padding: 0;
}

@media (max-width: 640px) {
    .offers-page {
        padding: 18px 16px 110px;
    }

    .offers-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .offers-hero h1 {
        font-size: 24px;
    }
}

/* Loading Animation */
.loading-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .section-title {
        font-size: 20px;
    }

    .section-title::after {
        display: none;
    }

    .products-section {
        padding: 30px 0;
    }

    /* Removed grid override for categories to keep carousel on mobile */

    .cta-box {
        padding: 32px 20px;
    }

    .cta-content h2 {
        font-size: 22px;
    }
}

/* Back Button Styles */
.page-header-actions {
    padding: 20px 0;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-button:hover {
    background: var(--bg-hover);
    border-color: var(--primary);
    transform: translateX(-5px);
    color: var(--primary);
}

.back-button i {
    width: 20px;
    height: 20px;

}

/* ==================== PREMIUM PRODUCT CARD REDESIGN ==================== */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px -10px rgba(37, 99, 235, 0.3);
    border-color: var(--primary);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1A1A23 0%, #13131A 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, var(--bg-card) 0%, rgba(20, 20, 25, 0.5) 100%);
    position: relative;
    /* Contain absolute elements if needed */
}

.product-category {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px;
}

.product-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
    padding-right: 8px;
    /* Extra padding to prevent button clipping */
}

.price-current {
    font-size: 18px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.2;
}



/* Floating Action Button */
.product-add-btn {
    background: var(--primary);
    color: white;
    width: 40px;
    /* Slightly larger */
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    flex-shrink: 0;
    /* Prevent shrinking */
}

.product-add-btn:hover:not(:disabled) {
    background: var(--primary-light);
    transform: scale(1.1);
}

.product-add-btn:disabled {
    background: var(--bg-input);
    color: var(--text-muted);
    cursor: not-allowed;
    box-shadow: none;
}

.product-add-btn i {
    width: 20px;
    height: 20px;
}

/* ==================== HIGH CONVERSION IMPROVEMENTS ==================== */



/* Banner CTA Buttons */
.banner-actions {
    margin-top: 24px;
}

.banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: white !important;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5);
    filter: brightness(1.1);
}

/* Category Micro-descriptions */
.category-content-home small {
    display: block;
    font-size: 11px;
    opacity: 0.6;
    margin-top: 2px;
}

/* Product Card Economy Price */
.price-savings {
    display: block;
    font-size: 11px;
    color: var(--success);
    font-weight: 600;
    margin-top: 4px;
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    width: fit-content;
}

/* Confidence Section */
.confidence-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, transparent, rgba(37, 99, 235, 0.03));
    margin: 40px 0;
    text-align: center;
}

.confidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.confidence-card {
    background: var(--bg-card);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.confidence-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.confidence-card i {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 24px;
}

.confidence-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.confidence-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {


    .confidence-grid {
        grid-template-columns: 1fr;
    }

    .banner-cta {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Full Width Banner Specifics */
.full-width-banner {
    margin-bottom: 0 !important;
}

.full-width-banner .banner-carousel,
.full-width-banner .banner-slide,
.full-width-banner .banner-track {
    max-width: 100% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.full-width-banner .banner-track {
    aspect-ratio: 32 / 9;
    /* Sleeker, less tall ratio for desktop */
}

@media (max-width: 1024px) {
    .full-width-banner .banner-track {
        aspect-ratio: 21 / 7;
    }
}

@media (max-width: 768px) {
    .full-width-banner .banner-track {
        aspect-ratio: 16 / 8;
        /* More slim on mobile */
    }
}
