/** Shopify CDN: Minification failed

Line 1237:0 Unexpected "}"
Line 1432:0 Unexpected "}"
Line 1807:1 Unexpected "/"
Line 1817:45 Expected ":"
Line 1819:45 Expected ":"
Line 1821:45 Expected ":"
Line 1823:41 Expected ":"
Line 1829:37 Expected ":"
Line 1831:45 Expected ":"
Line 1833:43 Expected ":"
... and 229 more hidden warnings

**/
/* ===================================================================
   GLOBAL SUPPLIERS THEME - FINAL FIXED VERSION
   Theme: Dark Galaxy "Floating" Design
   =================================================================== */

:root {
    /* --- Color Palette (Lighter Dark Bluish Theme - Pleasant) --- */
    --bg-deep: #1a2332;
    /* Lighter Dark Slate Blue */
    --bg-card: #243447;
    /* Lighter Slate Blue */
    --bg-card-content: #2d4053;
    /* Content BG */
    --text-primary: #f8fafc;
    --text-secondary: #a8b8d0;
    --accent-blue: #4a90e2;
    --accent-orange: #f97316;
    --border-color: #2d4053;

    /* --- Mobile Menu Colors (Added for hamburger menu) --- */
    --primary-blue: #4a90e2;
    --secondary-blue: #357abd;
    --card-bg: #243447;

    /* --- Gradients --- */
    --grad-blue: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --grad-orange: linear-gradient(135deg, #f97316 0%, #ea580c 100%);

    /* --- Spacing & Layout --- */
    --page-width: 98%;
    /* MAXIMIZED WIDTH as requested */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ===================================================================
   1. RESET & BASE STYLES
   =================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

a:hover {
    color: var(--accent-blue);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================================================
   2. GALAXY ANIMATION BACKGROUND
   =================================================================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #243447 0%, #1a2332 100%);
    overflow: hidden;
}

/* Galaxy Particles - Enhanced with irregular movement */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(74, 144, 226, 0.4) 50%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(74, 144, 226, 0.6);
    animation: floatParticle 20s infinite ease-in-out;
    pointer-events: none;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, 50px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, 20px) scale(1.1);
        opacity: 0.7;
    }
}

/* Additional particles with different animation patterns */
.particle:nth-child(odd) {
    animation: floatParticle2 25s infinite ease-in-out;
}

.particle:nth-child(3n) {
    animation: floatParticle3 18s infinite ease-in-out;
}

@keyframes floatParticle2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    33% {
        transform: translate(-35px, 45px) scale(1.3);
        opacity: 0.9;
    }
    66% {
        transform: translate(25px, -30px) scale(0.7);
        opacity: 0.3;
    }
}

@keyframes floatParticle3 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(50px, -60px) scale(1.4) rotate(180deg);
        opacity: 0.8;
    }
}

/* ===================================================================
   3. HEADER & NAVIGATION (FIXED LAYOUT)
   =================================================================== */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 1rem;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 2.5rem;
    /* Doubled from 1.25rem */
    color: white;
    flex-shrink: 0;
}

.logo img {
    height: 88px;
    /* Doubled from 44px */
    width: auto;
    max-width: 176px;
    border-radius: 8px;
    animation: logoZoom 3s ease-in-out infinite;
    /* Continuous zoom animation */
    /* Maintain HD quality during animation - Auto rendering for best quality */
    image-rendering: auto !important;
    -webkit-image-rendering: auto !important;
    -moz-image-rendering: auto !important;
    -ms-interpolation-mode: bicubic !important;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Force GPU acceleration for smooth, crisp rendering */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    /* Ensure image maintains quality during scale */
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Prevent pixelation during zoom */
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

@keyframes logoZoom {
    0%, 100% {
        transform: scale(1) translateZ(0);
        -webkit-transform: scale(1) translateZ(0);
        -moz-transform: scale(1) translateZ(0);
        image-rendering: auto;
        -webkit-image-rendering: auto;
    }
    50% {
        transform: scale(1.15) translateZ(0);
        -webkit-transform: scale(1.15) translateZ(0);
        -moz-transform: scale(1.15) translateZ(0);
        image-rendering: auto;
        -webkit-image-rendering: auto;
    }
}

/* Ensure logo animation applies everywhere the logo appears with HD quality - ALL SCREENS */
header .logo img,
.logo img,
.header .logo img,
.logo img[src*="logo"],
img[src*="logo_custom"],
img[alt*="Global Suppliers"] {
    animation: logoZoom 3s ease-in-out infinite !important;
    /* HD Quality Settings - Auto rendering for best quality */
    image-rendering: auto !important;
    -webkit-image-rendering: auto !important;
    -moz-image-rendering: auto !important;
    -ms-interpolation-mode: bicubic !important;
    will-change: transform !important;
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    /* Prevent pixelation during zoom */
    -webkit-transform-style: preserve-3d !important;
    transform-style: preserve-3d !important;
    /* Ensure smooth scaling without blur */
    -webkit-filter: blur(0) !important;
    filter: blur(0) !important;
    /* High-quality image rendering */
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Navigation Links Container */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    flex-wrap: wrap;
}

/* Desktop/Tablet Sign In Button */
.btn-signin {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    background: rgba(74, 144, 226, 0.15) !important;
    border: 1px solid rgba(74, 144, 226, 0.3) !important;
    border-radius: 8px !important;
    color: var(--text-primary) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    white-space: nowrap !important;
    text-decoration: none !important;
}

.btn-signin:hover {
    background: rgba(74, 144, 226, 0.25) !important;
    border-color: rgba(74, 144, 226, 0.5) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2) !important;
}

.nav-link {
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.cart-count-bubble {
    background: var(--accent-blue);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 99px;
}

/* Theme Toggle & Profile Buttons */
.theme-toggle,
.profile-button {
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.theme-toggle:hover,
.profile-button:hover {
    background: rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2);
}

.theme-toggle:active,
.profile-button:active {
    transform: translateY(0);
}

.theme-toggle-text {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

/* ===================================================================
   4. HERO SECTION (NEW)
   =================================================================== */
.hero-section {
    position: relative;
    min-height: 280px;
    /* Adequate height to accommodate title, subtitle, and button */
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 35, 50, 0.7), rgba(26, 35, 50, 0.9)), url('https://cdn.shopify.com/s/files/1/0664/6595/6019/files/hero-bg.jpg?v=1');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: block;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    /* Show subtitle with proper spacing */
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--secondary-blue));
    color: white;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(74, 144, 226, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================================================
   5. SEARCH BAR
   =================================================================== */
.search-container {
    max-width: var(--page-width);
    margin: 0 auto 1.5rem auto;
    padding: 0.5rem 1rem;
    position: relative;
    z-index: 20;
    background: rgba(26, 35, 50, 0.95);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(7, 12, 24, 0.5);
}

/* ===================================================================
   6. CATEGORY CHIPS & FILTERS
   =================================================================== */
.categories-scroll-container {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    background: rgba(15, 23, 42, 0.85);
    margin: 0 0 2rem 0;
    /* Proper spacing before products */
    position: relative;
    z-index: 15;
    backdrop-filter: blur(6px);
}

.categories-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 1rem 1rem 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-blue) var(--bg-card);
    scroll-behavior: smooth;
}

/* Custom scrollbar for categories */
.categories-scroll::-webkit-scrollbar {
    height: 12px;
}

.categories-scroll::-webkit-scrollbar-track {
    background: var(--bg-card);
    border-radius: 10px;
    margin: 0 1rem;
}

.categories-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--accent-blue), var(--secondary-blue));
    border-radius: 10px;
    border: 2px solid var(--bg-card);
    transition: all 0.3s ease;
}

.categories-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, var(--secondary-blue), var(--accent-blue));
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

.category-chip {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.2rem;
    border-radius: 99px;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-chip:hover,
.category-chip.active {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* ===================================================================
   7. PRODUCTS SECTION & GRID (MAXIMIZED)
   =================================================================== */
.products-section {
    max-width: var(--page-width);
    margin: 0 auto 4rem;
    padding: 0 1rem;
    /* Proper spacing all around */
    position: relative;
    padding-top: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.025em;
}

/* ===================================================================
   RECOMMENDATIONS SECTION - Same styling as products section
   =================================================================== */
.recommendations-section {
    max-width: var(--page-width);
    margin: 0 auto 4rem;
    padding: 0 1rem;
    /* Match products-section styling for full-width layout */
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Ensure recommendations section breaks out of any container constraints */
.product-page-wrapper .recommendations-section {
    max-width: var(--page-width);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.recommendations-section .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    width: 100%;
    max-width: 100%;
    will-change: contents;
    contain: layout style paint;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.section-heading {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

/* GRID SYSTEM - 5 COLUMNS DEFAULT */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    /* Tighter gap for more space */
    will-change: contents;
    contain: layout style paint;
}

/* Responsive Breakpoints */
@media (max-width: 1600px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .recommendations-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .recommendations-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .recommendations-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .header {
        padding: 0 1rem;
    }

    /* Hide nav-links only on tablet sizes (768px-900px), allow mobile menu on smaller screens */
    /* Note: Mobile menu styles handle display in mobile-responsive.css */

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 4rem 1rem;
    }

    /* Mobile: Ensure products use full width */
    .products-section {
        padding: 0 0.5rem;
    }
}

/* ===================================================================
   7. PRODUCT CARD - VERTICAL LAYOUT
   =================================================================== */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
    z-index: 10;
}

/* Image Container - Square Aspect Ratio */
.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    background: white;
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ef4444;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

/* Product Info Section */
.product-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: var(--bg-card-content);
    border-top: 1px solid var(--border-color);
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fbbf24;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.product-rating .rating-number {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.85rem;
    margin-left: 0.25rem;
}

/* Buttons Container */
.buy-buttons-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: auto;
}

/* Enhanced Button Styles */
.buy-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.4rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.buy-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.buy-button:hover::after {
    opacity: 1;
}

.buy-button:active {
    transform: translateY(-1px);
}

.buy-button-primary {
    background: var(--grad-blue);
    color: white;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.buy-button-aliexpress {
    background: var(--grad-orange);
    color: white;
    box-shadow: 0 2px 4px rgba(249, 115, 22, 0.3);
}

.button-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
    opacity: 0.9;
}

.button-price {
    font-size: 0.9rem;
    font-weight: 800;
}

/* Disabled Button */
.buy-button-disabled {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: not-allowed;
}

/* ===================================================================
   8. COLLECTION HERO (CENTERED)
   =================================================================== */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero h1 {
    font-size: 2.5rem;

    /* Mobile: Ensure products use full width */
    .products-section {
        padding: 0 0.5rem;
    }
}

/* ===================================================================
   7. PRODUCT CARD - VERTICAL LAYOUT
   =================================================================== */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
    z-index: 10;
}

/* Image Container - Square Aspect Ratio */
.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    background: white;
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ef4444;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

/* Product Info Section */
.product-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: var(--bg-card-content);
    border-top: 1px solid var(--border-color);
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fbbf24;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.product-rating .rating-number {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.85rem;
    margin-left: 0.25rem;
}

/* Buttons Container */
.buy-buttons-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: auto;
}

/* Enhanced Button Styles */
.buy-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.4rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.buy-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.buy-button:hover::after {
    opacity: 1;
}

.buy-button:active {
    transform: translateY(-1px);
}

.buy-button-primary {
    background: var(--grad-blue);
    color: white;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.buy-button-aliexpress {
    background: var(--grad-orange);
    color: white;
    box-shadow: 0 2px 4px rgba(249, 115, 22, 0.3);
}

.button-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
    opacity: 0.9;
}

.button-price {
    font-size: 0.9rem;
    font-weight: 800;
}

/* Disabled Button */
.buy-button-disabled {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: not-allowed;
}

/* ===================================================================
   8. COLLECTION HERO (CENTERED)
   =================================================================== */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================================================
   9. PRODUCT DETAIL PAGE (REDESIGN)
   =================================================================== */
.product-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Breadcrumbs */
.breadcrumbs {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--accent-blue);
}

.breadcrumbs .divider {
    margin: 0 0.5rem;
    color: var(--text-secondary);
}

.breadcrumbs .current {
    color: var(--text-primary);
}

/* Layout Grid */
.product-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Larger media column */
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 900px) {
    .product-layout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Media Column */
.main-media-container {
    background: black;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-lg);
}

.main-media {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: contain;
}

.media-thumbnails {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s;
    flex-shrink: 0;
}

.thumbnail-item.active,
.thumbnail-item:hover {
    border-color: var(--accent-blue);
    opacity: 1;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Column */
.product-title-large {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

.product-rating-large {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stars {
    color: #fbbf24;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.product-description-short {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}
}

.trust-row:last-child {
    margin-bottom: 0;
}

.trust-icon {
    color: #10b981;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.trust-row:nth-child(2) .trust-icon {
    color: #60a5fa;
}

.trust-row:nth-child(3) .trust-icon {
    color: #94a3b8;
}

.clickable {
    cursor: pointer;
}

.arrow-icon {
    float: right;
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
    opacity: 0.9;
}

.button-price {
    font-size: 0.9rem;
    font-weight: 800;
}

/* Disabled Button */
.buy-button-disabled {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: not-allowed;
}

/* ===================================================================
   8. COLLECTION HERO (CENTERED)
   =================================================================== */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================================================
   9. PRODUCT DETAIL PAGE (REDESIGN)
   =================================================================== */
.product-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Breadcrumbs */
.breadcrumbs {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--accent-blue);
}

.breadcrumbs .divider {
    margin: 0 0.5rem;
    color: var(--text-secondary);
}

.breadcrumbs .current {
    color: var(--text-primary);
}

/* Layout Grid */
.product-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Larger media column */
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 900px) {
    .product-layout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Media Column */
.main-media-container {
    background: black;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-lg);
}

.main-media {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: contain;
}

.media-thumbnails {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s;
    flex-shrink: 0;
}

.thumbnail-item.active,
.thumbnail-item:hover {
    border-color: var(--accent-blue);
    opacity: 1;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Column */
.product-title-large {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

.product-rating-large {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stars {
    color: #fbbf24;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.product-description-short {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}
}

.trust-row:last-child {
    margin-bottom: 0;
}

.trust-icon {
    color: #10b981;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.trust-row:nth-child(2) .trust-icon {
    color: #60a5fa;
}

.trust-row:nth-child(3) .trust-icon {
    color: #94a3b8;
}

.clickable {
    cursor: pointer;
}

.arrow-icon {
    float: right;
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Recommendations */
.recommendations-section {
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
}

.section-heading {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: white;
}

/* ===================================================================
   CART PAGE STYLING - Professional Design
   =================================================================== */

/* Cart Container */
.cart-page-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.cart-page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-page-title i {
    color: #5c7cfa;
}

/* Cart Item Card */
.cart-item-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.cart-item-card:hover {
    border-color: #475569;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cart-item-grid {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 1.5rem;
    align-items: center;
}

/* Product Image */
.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: #0f172a;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.cart-item-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.cart-item-title a:hover {
    color: #5c7cfa;
}

.cart-item-variant {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #5c7cfa;
    margin-bottom: 1rem;
}

/* Quantity Controls */
.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #334155;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #475569;
    transform: translateY(-2px);
}

.cart-item-qty {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    min-width: 40px;
    text-align: center;
}

.remove-btn {
    background: transparent;
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.remove-btn:hover {
    background: #ef4444;
    color: white;
}

/* Line Total */
.cart-item-total {
    text-align: right;
}

.cart-item-total p {
    font-size: 1.5rem;
    font-weight: 800;
    color: #10b981;
}

/* Cart Summary */
.cart-summary {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #334155;
}

.cart-subtotal-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.cart-subtotal-amount {
    font-size: 2rem;
    font-weight: 900;
    color: #5c7cfa;
}

/* Action Buttons Container */
.cart-action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.continue-shopping-btn {
    padding: 1.2rem;
    background: transparent;
    border: 2px solid #334155;
    border-radius: 10px;
    text-align: center;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.continue-shopping-btn:hover {
    border-color: #5c7cfa;
    background: rgba(92, 124, 250, 0.1);
    transform: translateY(-2px);
}

.checkout-btn {
    padding: 1.2rem;
    background: linear-gradient(135deg, #5c7cfa 0%, #4a6eeb 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(92, 124, 250, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(92, 124, 250, 0.5);
}

.checkout-btn:active {
    transform: translateY(-1px);
}

.cart-shipping-note {
    text-align: center;
    color: #94a3b8;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Empty Cart */
.empty-cart {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
}

.empty-cart-icon {
    font-size: 5rem;
    color: #475569;
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.empty-cart-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.empty-cart-text {
    color: #94a3b8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.start-shopping-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #5c7cfa 0%, #4a6eeb 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(92, 124, 250, 0.3);
}

.start-shopping-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(92, 124, 250, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cart-item-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cart-item-image {
        width: 100%;
        height: 200px;
    }

    .cart-item-total {
        text-align: left;
    }

    .cart-action-buttons {
        grid-template-columns: 1fr;
    }

    .cart-page-title {
        font-size: 2rem;
    }
}/ *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       C A R T   P A G E   S T Y L I N G   -   P r o f e s s i o n a l   D e s i g n 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 
 
 / *   C a r t   C o n t a i n e r   * / 
 
 . c a r t - p a g e - c o n t a i n e r   { 
 
         m a x - w i d t h :   1 2 0 0 p x ; 
 
         m a r g i n :   3 r e m   a u t o ; 
 
         p a d d i n g :   0   2 r e m ; 
 
 } 
 
 
 
 . c a r t - p a g e - t i t l e   { 
 
         f o n t - s i z e :   2 . 5 r e m ; 
 
         f o n t - w e i g h t :   8 0 0 ; 
 
         m a r g i n - b o t t o m :   2 r e m ; 
 
         c o l o r :   w h i t e ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   1 r e m ; 
 
 } 
 
 
 
 . c a r t - p a g e - t i t l e   i   { 
 
         c o l o r :   # 5 c 7 c f a ; 
 
 } 
 
 
 
 / *   C a r t   I t e m   C a r d   * / 
 
 . c a r t - i t e m - c a r d   { 
 
         b a c k g r o u n d :   # 1 e 2 9 3 b ; 
 
         b o r d e r :   1 p x   s o l i d   # 3 3 4 1 5 5 ; 
 
         b o r d e r - r a d i u s :   1 2 p x ; 
 
         p a d d i n g :   1 . 5 r e m ; 
 
         m a r g i n - b o t t o m :   1 r e m ; 
 
         t r a n s i t i o n :   a l l   0 . 3 s ; 
 
 } 
 
 
 
 . c a r t - i t e m - c a r d : h o v e r   { 
 
         b o r d e r - c o l o r :   # 4 7 5 5 6 9 ; 
 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ; 
 
 } 
 
 
 
 . c a r t - i t e m - g r i d   { 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   1 2 0 p x   1 f r   a u t o ; 
 
         g a p :   1 . 5 r e m ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
 } 
 
 
 
 / *   P r o d u c t   I m a g e   * / 
 
 . c a r t - i t e m - i m a g e   { 
 
         w i d t h :   1 2 0 p x ; 
 
         h e i g h t :   1 2 0 p x ; 
 
         b o r d e r - r a d i u s :   8 p x ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         b a c k g r o u n d :   # 0 f 1 7 2 a ; 
 
 } 
 
 
 
 . c a r t - i t e m - i m a g e   i m g   { 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   1 0 0 % ; 
 
         o b j e c t - f i t :   c o v e r ; 
 
 } 
 
 
 
 / *   P r o d u c t   I n f o   * / 
 
 . c a r t - i t e m - i n f o   { 
 
         f l e x :   1 ; 
 
 } 
 
 
 
 . c a r t - i t e m - t i t l e   { 
 
         f o n t - s i z e :   1 . 2 r e m ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         m a r g i n - b o t t o m :   0 . 5 r e m ; 
 
         c o l o r :   w h i t e ; 
 
 } 
 
 
 
 . c a r t - i t e m - t i t l e   a   { 
 
         c o l o r :   w h i t e ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         t r a n s i t i o n :   c o l o r   0 . 3 s ; 
 
 } 
 
 
 
 . c a r t - i t e m - t i t l e   a : h o v e r   { 
 
         c o l o r :   # 5 c 7 c f a ; 
 
 } 
 
 
 
 . c a r t - i t e m - v a r i a n t   { 
 
         c o l o r :   # c b d 5 e 1 ; 
 
         f o n t - s i z e :   0 . 9 r e m ; 
 
         m a r g i n - b o t t o m :   0 . 5 r e m ; 
 
 } 
 
 
 
 . c a r t - i t e m - p r i c e   { 
 
         f o n t - s i z e :   1 . 1 r e m ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         c o l o r :   # 5 c 7 c f a ; 
 
         m a r g i n - b o t t o m :   1 r e m ; 
 
 } 
 
 
 
 / *   Q u a n t i t y   C o n t r o l s   * / 
 
 . c a r t - i t e m - c o n t r o l s   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   0 . 7 5 r e m ; 
 
 } 
 
 
 
 . q t y - b t n   { 
 
         w i d t h :   3 6 p x ; 
 
         h e i g h t :   3 6 p x ; 
 
         b o r d e r - r a d i u s :   6 p x ; 
 
         b a c k g r o u n d :   # 3 3 4 1 5 5 ; 
 
         b o r d e r :   n o n e ; 
 
         c o l o r :   w h i t e ; 
 
         c u r s o r :   p o i n t e r ; 
 
         t r a n s i t i o n :   a l l   0 . 3 s ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
 } 
 
 
 
 . q t y - b t n : h o v e r   { 
 
         b a c k g r o u n d :   # 4 7 5 5 6 9 ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
 
 } 
 
 
 
 . c a r t - i t e m - q t y   { 
 
         f o n t - s i z e :   1 . 1 r e m ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         c o l o r :   w h i t e ; 
 
         m i n - w i d t h :   4 0 p x ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
 } 
 
 
 
 . r e m o v e - b t n   { 
 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
 
         b o r d e r :   1 p x   s o l i d   # e f 4 4 4 4 ; 
 
         c o l o r :   # e f 4 4 4 4 ; 
 
         p a d d i n g :   0 . 5 r e m   1 r e m ; 
 
         b o r d e r - r a d i u s :   6 p x ; 
 
         c u r s o r :   p o i n t e r ; 
 
         f o n t - s i z e :   0 . 9 r e m ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         t r a n s i t i o n :   a l l   0 . 3 s ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   0 . 5 r e m ; 
 
         m a r g i n - l e f t :   0 . 5 r e m ; 
 
 } 
 
 
 
 . r e m o v e - b t n : h o v e r   { 
 
         b a c k g r o u n d :   # e f 4 4 4 4 ; 
 
         c o l o r :   w h i t e ; 
 
 } 
 
 
 
 / *   L i n e   T o t a l   * / 
 
 . c a r t - i t e m - t o t a l   { 
 
         t e x t - a l i g n :   r i g h t ; 
 
 } 
 
 
 
 . c a r t - i t e m - t o t a l   p   { 
 
         f o n t - s i z e :   1 . 5 r e m ; 
 
         f o n t - w e i g h t :   8 0 0 ; 
 
         c o l o r :   # 1 0 b 9 8 1 ; 
 
 } 
 
 
 
 / *   C a r t   S u m m a r y   * / 
 
 . c a r t - s u m m a r y   { 
 
         b a c k g r o u n d :   # 1 e 2 9 3 b ; 
 
         b o r d e r :   1 p x   s o l i d   # 3 3 4 1 5 5 ; 
 
         b o r d e r - r a d i u s :   1 2 p x ; 
 
         p a d d i n g :   2 r e m ; 
 
         m a r g i n - t o p :   2 r e m ; 
 
 } 
 
 
 
 . c a r t - s u b t o t a l   { 
 
         d i s p l a y :   f l e x ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         m a r g i n - b o t t o m :   2 r e m ; 
 
         p a d d i n g - b o t t o m :   2 r e m ; 
 
         b o r d e r - b o t t o m :   2 p x   s o l i d   # 3 3 4 1 5 5 ; 
 
 } 
 
 
 
 . c a r t - s u b t o t a l - l a b e l   { 
 
         f o n t - s i z e :   1 . 3 r e m ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         c o l o r :   w h i t e ; 
 
 } 
 
 
 
 . c a r t - s u b t o t a l - a m o u n t   { 
 
         f o n t - s i z e :   2 r e m ; 
 
         f o n t - w e i g h t :   9 0 0 ; 
 
         c o l o r :   # 5 c 7 c f a ; 
 
 } 
 
 
 
 / *   A c t i o n   B u t t o n s   C o n t a i n e r   * / 
 
 . c a r t - a c t i o n - b u t t o n s   { 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ; 
 
         g a p :   1 r e m ; 
 
 } 
 
 
 
 . c o n t i n u e - s h o p p i n g - b t n   { 
 
         p a d d i n g :   1 . 2 r e m ; 
 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
 
         b o r d e r :   2 p x   s o l i d   # 3 3 4 1 5 5 ; 
 
         b o r d e r - r a d i u s :   1 0 p x ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
         c o l o r :   w h i t e ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         f o n t - s i z e :   1 r e m ; 
 
         t r a n s i t i o n :   a l l   0 . 3 s ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         g a p :   0 . 5 r e m ; 
 
 } 
 
 
 
 . c o n t i n u e - s h o p p i n g - b t n : h o v e r   { 
 
         b o r d e r - c o l o r :   # 5 c 7 c f a ; 
 
         b a c k g r o u n d :   r g b a ( 9 2 ,   1 2 4 ,   2 5 0 ,   0 . 1 ) ; 
 
 } 
 
 
 
 . c h e c k o u t - b t n   { 
 
         p a d d i n g :   1 . 2 r e m ; 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 5 c 7 c f a   0 % ,   # 4 a 6 e e b   1 0 0 % ) ; 
 
         b o r d e r :   n o n e ; 
 
         b o r d e r - r a d i u s :   1 0 p x ; 
 
         c o l o r :   w h i t e ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         f o n t - s i z e :   1 r e m ; 
 
         c u r s o r :   p o i n t e r ; 
 
         t r a n s i t i o n :   a l l   0 . 3 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 ) ; 
 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 9 2 ,   1 2 4 ,   2 5 0 ,   0 . 3 ) ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         g a p :   0 . 5 r e m ; 
 
 } 
 
 
 
 . c h e c k o u t - b t n : h o v e r   { 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ; 
 
         b o x - s h a d o w :   0   6 p x   2 0 p x   r g b a ( 9 2 ,   1 2 4 ,   2 5 0 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . c h e c k o u t - b t n : a c t i v e   { 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 p x ) ; 
 
 } 
 
 
 
 . c a r t - s h i p p i n g - n o t e   { 
 
         t e x t - a l i g n :   c e n t e r ; 
 
         c o l o r :   # 9 4 a 3 b 8 ; 
 
         m a r g i n - t o p :   1 r e m ; 
 
         f o n t - s i z e :   0 . 9 r e m ; 
 
 } 
 
 
 
 / *   E m p t y   C a r t   * / 
 
 . e m p t y - c a r t   { 
 
         b a c k g r o u n d :   # 1 e 2 9 3 b ; 
 
         b o r d e r :   1 p x   s o l i d   # 3 3 4 1 5 5 ; 
 
         b o r d e r - r a d i u s :   1 2 p x ; 
 
         p a d d i n g :   4 r e m   2 r e m ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
 } 
 
 
 
 . e m p t y - c a r t - i c o n   { 
 
         f o n t - s i z e :   5 r e m ; 
 
         c o l o r :   # 4 7 5 5 6 9 ; 
 
         o p a c i t y :   0 . 5 ; 
 
         m a r g i n - b o t t o m :   1 . 5 r e m ; 
 
 } 
 
 
 
 . e m p t y - c a r t - t i t l e   { 
 
         f o n t - s i z e :   2 r e m ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         c o l o r :   w h i t e ; 
 
         m a r g i n - b o t t o m :   1 r e m ; 
 
 } 
 
 
 
 . e m p t y - c a r t - t e x t   { 
 
         c o l o r :   # 9 4 a 3 b 8 ; 
 
         m a r g i n - b o t t o m :   2 r e m ; 
 
         f o n t - s i z e :   1 . 1 r e m ; 
 
 } 
 
 
 
 . s t a r t - s h o p p i n g - b t n   { 
 
         d i s p l a y :   i n l i n e - f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   0 . 5 r e m ; 
 
         p a d d i n g :   1 . 2 5 r e m   3 r e m ; 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 5 c 7 c f a   0 % ,   # 4 a 6 e e b   1 0 0 % ) ; 
 
         c o l o r :   w h i t e ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         b o r d e r - r a d i u s :   5 0 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         f o n t - s i z e :   1 . 1 r e m ; 
 
         t r a n s i t i o n :   a l l   0 . 3 s ; 
 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 9 2 ,   1 2 4 ,   2 5 0 ,   0 . 3 ) ; 
 
 } 
 
 
 
 . s t a r t - s h o p p i n g - b t n : h o v e r   { 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ; 
 
         b o x - s h a d o w :   0   6 p x   2 0 p x   r g b a ( 9 2 ,   1 2 4 ,   2 5 0 ,   0 . 5 ) ; 
 
 } 
 
 
 
 / *   R e s p o n s i v e   D e s i g n   * / 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
 
         . c a r t - i t e m - g r i d   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
 
                 g a p :   1 r e m ; 
 
         } 
 
 
 
         . c a r t - i t e m - i m a g e   { 
 
                 w i d t h :   1 0 0 % ; 
 
                 h e i g h t :   2 0 0 p x ; 
 
         } 
 
 
 
         . c a r t - i t e m - t o t a l   { 
 
                 t e x t - a l i g n :   l e f t ; 
 
         } 
 
 
 
         . c a r t - a c t i o n - b u t t o n s   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
 
         } 
 
 
 
         . c a r t - p a g e - t i t l e   { 
 
                 f o n t - s i z e :   2 r e m ; 
 
         } 
 
 } 
 
 