﻿/** Shopify CDN: Minification failed

Line 1086:0 Unexpected "}"
Line 1281:0 Unexpected "}"

**/
/* ===================================================================
   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: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.logo img {
    height: 44px;
    width: auto;
    border-radius: 8px;
}

/* 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;
    height: 66.666vh;
    /* Exactly 2/3 of the screen height */
    min-height: 400px;
    max-height: 66.666vh;
    /* Maximum height to prevent blank space */
    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: 2rem;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    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: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.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. CATEGORY CHIPS & FILTERS
   =================================================================== */
.categories-scroll-container {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    background: rgba(15, 23, 42, 0.8);
    margin-bottom: 2rem;
}

.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);
}

/* ===================================================================
   6. PRODUCTS SECTION & GRID (MAXIMIZED)
   =================================================================== */
.products-section {
    max-width: var(--page-width);
    margin: 0 auto 4rem;
    padding: 0 1rem;
    /* Minimal padding for max width */
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.025em;
}

/* 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);
    }
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .header {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }

    .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 STYLING - Professional Design
   =================================================================== */
.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);
}

.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;
}

.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;
    }
}

/* ===================================================================
   9. PROFILE DROPDOWN STYLES (Restored)
   =================================================================== */
.profile-container {
    position: relative;
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    overflow: hidden;
}

.profile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(74, 144, 226, 0.1);
    border-bottom: 1px solid var(--border-color);
}

.profile-avatar {
    font-size: 3rem;
    color: var(--accent-blue);
    line-height: 1;
}

.profile-info {
    flex: 1;
    overflow: hidden;
}

.profile-username {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-email {
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-logout {
    width: 100%;
    background: transparent;
    border: none;
    color: #ef4444;
    padding: 1rem 1.5rem;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.profile-logout:hover {
    background: rgba(239, 68, 68, 0.1);
}

.profile-logout i {
    font-size: 1.1rem;
}

/* ===================================================================
   10. SIGN IN POPUP STYLES
   =================================================================== */
.signin-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.signin-popup {
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Helper class to toggle visibility via JS if needed, though inline styles handle it mostly */
/* Active state for popup visibility */
.signin-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.signin-popup-overlay.active .signin-popup {
    transform: scale(1);
    opacity: 1;
}

.popup-google-btn:hover {
    background: #f1f1f1 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.popup-email-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--text-primary) !important;
}

.close-popup:hover {
    color: var(--text-primary) !important;
    transform: rotate(90deg);
    transition: all 0.3s ease;
}