:root {
    --primary-color: #ffffff;
    --secondary-color: #f0f0f0;
    --accent-color: #ebebeb;
    --text-color: #000000;
    --glass-bg: rgba(0, 0, 0, 0.05);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glow-color: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

@media (max-width: 768px) {
    .table-container {
        overflow-x: auto;
    }
}


body {
    background: radial-gradient(circle at 50% 0%, #ffffff, #f0f0f0 90%);
    background-attachment: fixed;
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    order: 1; /* Put it first on desktop */
}

/* Search Form */
.search-form {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 8px 20px;
    width: 300px;
    transition: 0.3s;
    order: 2; /* Put it in the middle */
    margin: 0 20px;
}

.search-form:focus-within {
    background: #ffffff;
    border-color: #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #000000;
    width: 100%;
    padding: 5px;
    font-size: 14px;
}

.search-input::placeholder {
    color: #888888;
}

.search-btn {
    background: transparent;
    border: none;
    color: #666666;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    padding: 5px;
}

.search-btn:hover {
    color: #000000;
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .search-form {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .search-form {
        width: 100%;
        margin-top: 15px;
        margin-left: 0;
        margin-right: 0;
        order: 3;
    }
    
    .navbar {
        flex-wrap: wrap;
        padding: 15px 20px;
        border-radius: 20px;
    }
    
    .navbar-brand {
        order: 2; /* Put it in the middle top on mobile */
        margin: 0 auto;
    }
    
    .hamburger-menu {
        display: block;
        order: 1; /* First on mobile */
    }
    
    .navbar-right {
        order: 4; /* Put it last on top row */
    }
    
    .navbar-left {
        /* Keep mobile menu logic intact */
    }
}

.navbar-left {
    display: flex;
    gap: 30px;
    align-items: center;
    order: 3; /* Put links after search */
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 30px;
    order: 4; /* Put cart icon last */
}

.nav-link {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    padding: 5px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #000000;
}

.nav-link:hover::after {
    width: 100%;
}

.cart-icon {
    font-size: 22px;
    color: #333333;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.cart-icon:hover {
    color: #000000;
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #000000;
    color: #ffffff;
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Marquee */
.marquee-container {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    padding: 30px 0;
    margin-top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 40s linear infinite;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: #000000;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.marquee-separator {
    color: rgba(0, 0, 0, 0.3);
    font-weight: 300;
    margin: 0 30px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Hero Section - Ultra Premium Redesign */
.hero {
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #fafafa;
}

/* Atmospheric Glow Background */
.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(245, 245, 245, 1) 0%, rgba(255, 255, 255, 1) 70%);
    z-index: 0;
    animation: breatheGlow 8s infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: 10vw; /* Massive responsive size */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em; /* Tight tracking */
    line-height: 0.9;
    margin-bottom: 30px;
    color: #000000;
    /* Subtle metallic gradient */
    background: linear-gradient(135deg, #000000 0%, #a0a0a0 50%, #000000 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 5s linear infinite, heroTitleReveal 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(50px);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0,0.5));
}

.hero p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 12px; /* Ultra wide spacing */
    color: rgba(0, 0, 0, 0.7);
    margin-top: 0;
    font-weight: 400;
    animation: heroSubtitleReveal 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards 0.4s;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Elegant Lines */
.hero p::before, .hero p::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    opacity: 0.5;
    transition: width 0.5s ease;
}

.hero:hover p::before, .hero:hover p::after {
    width: 80px;
    opacity: 1;
}

@keyframes heroTitleReveal {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroSubtitleReveal {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shineText {
    to { background-position: 200% center; }
}

@keyframes breatheGlow {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

/* Scroll Indicator Update */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-text {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #000000;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #000000, transparent);
    margin: 0 auto;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 15vw; letter-spacing: -2px; }
    .hero p { font-size: 0.8rem; letter-spacing: 5px; }
    .hero p::before, .hero p::after { display: none; } /* Hide lines on mobile for space */
}

/* Statement Banner - Ultra Premium */
.statement-banner {
    position: relative;
    padding: 150px 0;
    text-align: center;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.statement-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 0, 0,0.08) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
    animation: pulseGlow 5s infinite alternate;
}

.statement-content {
    font-size: 7rem;
    font-weight: 800;
    line-height: 0.9;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
    width: 100%;
    position: relative;
    z-index: 10;
    letter-spacing: -2px; /* Tight tracking for modern luxury look */
}

.statement-content span {
    display: block;
    color: #000000;
    margin-bottom: 0;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* First line: ELEVATE */
.statement-content span:nth-child(1) {
    font-weight: 300; /* Thin luxury style */
    letter-spacing: 10px;
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Middle line: YOUR (Hollow/Stroke) */
.stroke-text {
    font-size: 9rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0,0.3);
    position: relative;
    transition: all 0.6s ease;
    font-family: 'Times New Roman', serif; /* Serif for contrast luxury */
    font-style: italic;
    letter-spacing: -5px;
    margin: -10px 0;
}

/* Bottom line: STYLE */
.statement-content span:nth-child(3) {
    font-weight: 900;
    letter-spacing: 20px;
    font-size: 3rem;
    background: linear-gradient(to right, #000000, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 15px;
}

/* Hover Effects */
.statement-banner:hover .stroke-text {
    -webkit-text-stroke: 1px #000000;
    text-shadow: 0 0 30px rgba(0, 0, 0,0.4);
    transform: scale(1.05);
}

.statement-banner:hover .statement-content span:nth-child(1) {
    transform: translateY(-10px);
    letter-spacing: 15px; /* Expand on hover */
}

.statement-banner:hover .statement-content span:nth-child(3) {
    transform: translateY(10px);
    letter-spacing: 25px; /* Expand on hover */
}

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

@media (max-width: 768px) {
    .statement-content span:nth-child(1) { font-size: 1.5rem; letter-spacing: 5px; }
    .stroke-text { font-size: 5rem; }
    .statement-content span:nth-child(3) { font-size: 1.8rem; letter-spacing: 8px; }
    .statement-banner { padding: 80px 0; }
}

/* Rolling Banner */
.rolling-banner-container {
    padding: 80px 0;
    overflow: hidden;
    background: #fafafa;
    position: relative;
}

.rolling-banner {
    transform: rotate(-3deg) scale(1.1);
    width: 120%;
    margin-left: -10%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rolling-content {
    display: flex;
    white-space: nowrap;
    animation: rollingText 20s linear infinite;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0,0.2);
}

.rolling-content span {
    margin: 0 20px;
}

.rolling-content.reverse {
    animation-direction: reverse;
    color: #000000;
    -webkit-text-stroke: 0;
    font-style: italic;
    font-family: 'Times New Roman', serif;
}

@keyframes rollingText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .rolling-content {
        font-size: 2.5rem;
    }
}

/* Sections */
.section-container {
    padding: 80px 5%;
    text-align: center;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
    font-weight: 800;
    background: linear-gradient(to right, #000000, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 0, 0,0.2);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--glow-color);
    box-shadow: 0 0 15px var(--glow-color);
    border-radius: 2px;
}

/* Empty State Message */
.section-container p {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto;
    letter-spacing: 1px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px 0;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Products Slider (Horizontal Scroll) */
.products-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 5px; /* Added side padding for hover effects */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    margin: 0 -5%; /* Negative margin to span full width on mobile if needed, or adjust based on container */
    padding-left: 5%; /* Restore padding */
    padding-right: 5%;
    cursor: grab; /* Indicate draggable */
}

.products-slider.active {
    cursor: grabbing;
    scroll-behavior: auto; /* Ensure instant movement when dragging */
}

.products-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.products-slider .product-card {
    min-width: 280px;
    max-width: 280px;
    flex: 0 0 auto;
    /* Removed scroll-snap to allow free sliding */
    user-select: none; /* Prevent text selection while dragging */
}

@media (min-width: 769px) {
    .products-slider {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
}

/* Product Card - Minimal Redesign */
.product-card {
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #f5f5f5;
    border-radius: 0;
    transition: transform 0.5s ease;
    padding: 0; /* Removed padding to make image bigger */
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 15px;
    text-align: center;
    background: #fafafa;
    border-top: none;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700; /* Bold */
    color: #000000;
    text-shadow: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    opacity: 1;
}

.product-price {
    font-size: 1.2rem;
    color: #000000;
    font-weight: 700; /* Bold */
    letter-spacing: 1px;
    display: inline-block;
    opacity: 1;
    font-family: 'Poppins', sans-serif;
}

.product-card:hover .product-price {
    color: #000000;
    opacity: 1;
}

/* Special Big Text */
.special-text {
    font-size: 5rem;
    text-align: center;
    padding: 20px 0; /* Reduced from 100px to reduce gap */
    font-weight: 900;
    text-transform: uppercase;
    background: url('https://source.unsplash.com/random/1600x900/?texture') no-repeat center;
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: brightness(0.7);
    margin-top: -20px; /* Pull closer to previous section */
    margin-bottom: -20px; /* Pull next section closer */
}

/* Section Buttons */
.section-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.custom-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--glow-color);
    color: #000000;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.custom-btn:hover, .custom-btn.active {
    background: var(--glow-color);
    color: #ffffff;
    box-shadow: 0 0 15px var(--glow-color);
}

/* Outlet Section */
.outlet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.outlet-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.outlet-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.outlet-item:hover img {
    transform: scale(1.1);
}

.outlet-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.5rem;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 100px auto;
    background: var(--glass-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0,0.1);
    border: 1px solid rgba(0, 0, 0,0.2);
    color: #000000;
    border-radius: 5px;
}

.btn-primary {
    background: var(--glow-color);
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 0 15px var(--glow-color);
}

/* Product Details - Ultra Premium Redesign */
.product-details-container {
    display: flex;
    gap: 60px;
    padding: 120px 8%;
    flex-wrap: wrap;
    align-items: flex-start;
    max-width: 1400px; /* Reduced max-width for better focus */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.details-image {
    flex: 1;
    min-width: 400px;
    position: sticky;
    top: 120px;
}

.main-image-container {
    width: 100%;
    background: #f5f5f5;
    border-radius: 12px; /* Premium rounded corners */
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0,0.05);
    margin-bottom: 20px;
    cursor: zoom-in;
    box-shadow: 0 10px 40px rgba(0, 0, 0,0.5); /* Deep shadow */
}

.details-image img#mainImage {
    width: 100%;
    height: auto;
    max-height: 600px; /* Reduced height */
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease-out;
    transform-origin: center center;
}

/* Remove hover scale to prevent conflict with JS zoom */
.details-image img#mainImage:hover {
    /* transform: scale(1.05); */
}

.thumbnail-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail-container img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0,0.1);
    transition: all 0.3s;
    opacity: 0.6;
    background: #f5f5f5;
}

.thumbnail-container img:hover {
    border-color: #000000;
    opacity: 1;
}

.details-info {
    flex: 1;
    min-width: 400px;
    padding: 20px 0;
}

.details-title {
    font-size: clamp(1.8rem, 2.5vw, 3rem);
    line-height: 1.3;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: #000000;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.details-price {
    font-size: 2rem;
    color: var(--glow-color);
    margin-bottom: 25px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.details-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 0, 0,0.2), transparent);
    margin: 30px 0;
}

.details-desc {
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: rgba(0, 0, 0,0.7);
    font-weight: 300;
}

/* Options (Size/Color) */
.option-group {
    margin-bottom: 30px;
}

.option-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.option-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-btn {
    border: 1px solid rgba(0, 0, 0,0.2);
    background: transparent;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Size Buttons */
.size-btn {
    min-width: 60px;
    height: 40px;
    padding: 0 15px;
    font-size: 1rem;
    font-weight: 500;
}

.size-btn:hover {
    border-color: #000000;
    background: rgba(0, 0, 0,0.05);
}

.option-btn-label input:checked + .size-btn {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    box-shadow: 0 0 15px rgba(0, 0, 0,0.3);
}

/* Color Buttons */
.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 3px; /* Space between border and color */
    border: 1px solid rgba(0, 0, 0,0.3);
}

.color-swatch {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
}

.option-btn-label input:checked + .color-btn {
    border-color: #000000;
    box-shadow: 0 0 10px var(--color-val);
    transform: scale(1.1);
}

/* Quantity Control */
.quantity-group {
    margin-bottom: 40px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0,0.2);
    width: fit-content;
    height: 50px;
}

.quantity-control button {
    background: transparent;
    border: none;
    color: #000000;
    width: 50px;
    height: 100%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.2s;
}

.quantity-control button:hover {
    background: rgba(0, 0, 0,0.1);
}

.quantity-control input {
    background: transparent;
    border: none;
    border-left: 1px solid rgba(0, 0, 0,0.1);
    border-right: 1px solid rgba(0, 0, 0,0.1);
    color: #000000;
    width: 60px;
    text-align: center;
    font-size: 1.2rem;
    height: 100%;
    padding: 0;
    margin: 0;
    -moz-appearance: textfield;
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.btn-buy-now, .btn-add-cart {
    flex: 1;
    padding: 20px 30px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-buy-now {
    background: #000000;
    color: #ffffff;
}

.btn-buy-now:hover {
    background: #e6e6e6;
    box-shadow: 0 0 30px rgba(0, 0, 0,0.3);
    transform: translateY(-3px);
}

.btn-add-cart {
    background: transparent;
    border: 1px solid #000000;
    color: #000000;
}

.btn-add-cart:hover {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0,0.1);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .product-details-container {
        flex-direction: column;
        gap: 40px;
        padding-top: 100px;
    }
    
    .details-image {
        position: static;
        min-width: 100%;
    }
    
    .details-title {
        font-size: 2.5rem;
    }
    
    .details-info {
        min-width: 100%;
    }
}

/* Premium Footer */
.site-footer {
    background: #fafafa;
    color: #000000;
    padding-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 100px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 40px;
}

.brand-section {
    flex: 2;
    max-width: 400px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #000000, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-desc {
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-3px);
}

.links-section h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.links-section ul {
    list-style: none;
}

.links-section ul li {
    margin-bottom: 15px;
}

.links-section ul li a {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
    display: inline-block;
}

.links-section ul li a:hover {
    color: #000000;
    transform: translateX(5px);
}

.newsletter-section {
    flex: 1.5;
}

.newsletter-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-section p {
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px;
    color: #000000;
    outline: none;
}

.newsletter-form button {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #e0e0e0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .brand-section, .newsletter-section {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

/* Mobile Navigation */
.hamburger-menu {
    display: none;
    font-size: 24px;
    color: #000000;
    cursor: pointer;
    z-index: 1100;
}

.close-mobile-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #000000;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 768px) {
    /* Navbar Mobile Layout */
    .navbar {
        width: 100%;
        top: 0;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--glass-border);
        padding: 10px 15px;
        display: flex;
        flex-wrap: wrap; /* Allow search to wrap */
        align-items: center;
        justify-content: space-between;
    }

    .hamburger-menu {
        display: block;
        order: 1; /* First */
        font-size: 24px;
    }
    
    .navbar-brand {
        position: relative;
        left: auto;
        transform: none;
        order: 2; /* Middle */
        margin: 0;
    }
    
    .navbar-right {
        order: 3; /* Last on top row */
        margin: 0;
    }
    
    .search-form {
        order: 4; /* Below the top row */
        width: 100%;
        margin: 15px 0 0 0;
    }

    .navbar-left {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.4s ease-in-out;
        z-index: 2000;
    }

    .navbar-left.active {
        left: 0;
    }

    .close-mobile-menu {
        display: block;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    /* Keep Brand */
    .navbar-brand {
        display: block;
    }

    /* Overwrite specific search rules from below */
    .search-form {
        position: relative;
        left: auto;
        transform: none;
        flex-grow: 1; /* Make search fill remaining space */
        order: 4; /* Below the top row */
        width: 100%;
        margin: 15px 0 0 0;
        background: #f5f5f5;
        border: 1px solid transparent;
    }
    
    .search-input {
        padding: 8px 10px;
        font-size: 14px;
    }

    .navbar-right {
        order: 3; /* Last on top row */
        gap: 15px;
        display: flex;
        align-items: center;
        margin-left: 0;
    }
    
    .cart-icon {
        font-size: 20px;
    }

    /* Mobile Dropdown */
    .dropdown {
        text-align: center;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background: transparent;
        border: none;
        display: none;
        padding-top: 10px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        font-size: 1.2rem;
        padding: 10px;
    }

    /* Cart Drawer Mobile */
    .cart-sidebar {
        width: 100%;
        max-width: 100%;
    }
}

/* Scroll Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 768px) {
    /* Hero */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Sections */
    .section-container {
        padding: 40px 5px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    /* Special Text */
    .special-text {
        font-size: 2.5rem;
        padding: 10px 0;
    }

    /* Outlet */
    .outlet-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile 2-Column Grid (Minimal Look) */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card {
        padding: 0;
        border-radius: 8px;
        background: #fafafa;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .product-image {
        border-radius: 0;
        width: 100%;
        aspect-ratio: 1/1;
        height: auto;
        object-fit: contain;
        background: #f5f5f5;
        padding: 0;
    }

    .product-info {
        padding: 15px;
        text-align: center;
        background: #fafafa;
        justify-content: center;
    }

    .product-title {
        font-size: 1.1rem;
        margin-bottom: 5px;
        line-height: 1.2;
        font-weight: 700;
        letter-spacing: 1px;
        color: #000000;
    }

    .product-price {
        font-size: 1.2rem;
        color: #000000;
        font-weight: 700;
        font-family: 'Poppins', sans-serif;
    }

    /* Product Details */
    .product-details-container {
        padding: 100px 5%;
        flex-direction: column;
        gap: 30px;
    }

    .details-image, .details-info {
        min-width: 100%;
    }

    .details-title {
        font-size: 2rem;
    }

    .details-price {
        font-size: 1.8rem;
    }
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000000;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
