/* =========================================================================
   NYL CLOTHING STUDIO - STYLE SHEET
   ========================================================================= */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Design System Tokens */
:root {
    --color-white: #FFFFFF;
    --color-ivory: #FFFDF8;
    --color-black: #111111;
    --color-gold: #C9A227;
    --color-gold-hover: #E5C158;
    --color-champagne: #F8F2E7;
    --color-text-dark: #222222;
    --color-text-light: #666666;
    --color-border-light: rgba(201, 162, 39, 0.2);
    --color-border-dark: rgba(17, 17, 17, 0.1);
    --color-shadow: rgba(0, 0, 0, 0.05);
    --color-shadow-hover: rgba(201, 162, 39, 0.15);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --header-height: 80px;
    --max-width: 1300px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-ivory);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-hover);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-black);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

ul {
    list-style: none;
}

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

.text-gold {
    color: var(--color-gold);
}

/* Section Header */
.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 38px;
    position: relative;
    padding-bottom: 16px;
    letter-spacing: 1px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--color-gold);
}

.section-title p {
    color: var(--color-text-light);
    font-size: 16px;
    margin-top: 12px;
    letter-spacing: 1px;
    font-weight: 300;
}

/* Buttons Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--color-black);
    color: var(--color-white);
    border: 1px solid var(--color-black);
}

.btn-primary:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-black);
    border: 1px solid var(--color-black);
}

.btn-secondary:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-white);
    border: 1px solid var(--color-gold);
}

.btn-gold:hover {
    background-color: var(--color-black);
    border-color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
    border: 1px solid #25D366;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(18, 140, 126, 0.25);
}

/* =========================================================================
   HEADER & NAVIGATION
   ========================================================================= */
header {
    height: var(--header-height);
    background: rgba(255, 253, 248, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

header.scroll-scrolled {
    height: 70px;
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-black);
}

.logo-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--color-gold);
    margin-top: -4px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
}

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

.icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--color-black);
    position: relative;
    transition: var(--transition-fast);
    padding: 6px;
}

.icon-btn:hover {
    color: var(--color-gold);
    transform: scale(1.1);
}

.badge-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--color-gold);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    font-size: 24px;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
    min-height: calc(100vh - var(--header-height));
    position: relative;
    display: flex;
    align-items: center;
    background-color: #111111;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    z-index: 1;
    transition: var(--transition-smooth);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.6) 50%, rgba(17,17,17,0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--color-white);
    max-width: 650px;
    padding: 60px 0;
}

.hero-tagline {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
    display: block;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 18px;
    font-weight: 300;
    color: var(--color-champagne);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.hero-actions-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-actions-group .btn-secondary {
    color: var(--color-white);
    border-color: var(--color-white);
}

.hero-actions-group .btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

/* =========================================================================
   PROMO & CATEGORIES GRID
   ========================================================================= */
.categories-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.category-card {
    position: relative;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px var(--color-shadow);
}

.category-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.category-card:hover .category-img {
    transform: scale(1.08);
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 24px;
    z-index: 2;
    color: var(--color-white);
}

.category-info h3 {
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.category-info span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    display: inline-block;
    position: relative;
    padding-bottom: 4px;
}

.category-info span::after {
    content: ' →';
    opacity: 0;
    transition: var(--transition-fast);
    transform: translateX(-5px);
    display: inline-block;
}

.category-card:hover .category-info span::after {
    opacity: 1;
    transform: translateX(0);
}

/* Span columns for high premium look */
.categories-grid .category-card:nth-child(1) {
    grid-column: span 2;
}
.categories-grid .category-card:nth-child(6) {
    grid-column: span 2;
}

/* =========================================================================
   CATALOGUE, FILTERING & SORTING
   ========================================================================= */
.catalog-section {
    padding: 100px 0;
    background-color: var(--color-ivory);
    border-top: 1px solid var(--color-border-light);
}

/* Catalog Top bar */
.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-white);
    padding: 18px 24px;
    border-radius: 8px;
    border: 1px solid var(--color-border-light);
    margin-bottom: 30px;
    box-shadow: 0 4px 15px var(--color-shadow);
}

/* Search bar styling */
.search-wrapper {
    position: relative;
    width: 320px;
}

.search-input {
    width: 100%;
    padding: 10px 16px 10px 42px;
    border: 1px solid var(--color-border-dark);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition-fast);
}

.search-input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.search-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-light);
}

/* Toolbar Controls */
.toolbar-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.select-wrapper select {
    padding: 10px 32px 10px 16px;
    border: 1px solid var(--color-border-dark);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
}

.filter-toggle-btn {
    display: none; /* Shows on mobile */
    align-items: center;
    gap: 8px;
}

/* Layout Split: Sidebar + Main Grid */
.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

/* Sidebar Filters */
.catalog-sidebar {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 30px var(--color-shadow);
}

.filter-section-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 12px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-group {
    margin-bottom: 28px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

/* Custom Checkbox styles */
.filter-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--color-text-dark);
    cursor: pointer;
    user-select: none;
}

.checkbox-label input {
    display: none;
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-border-dark);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    background-color: var(--color-white);
}

.checkbox-label input:checked + .custom-checkbox {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.checkbox-label input:checked + .custom-checkbox::after {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--color-white);
    font-size: 10px;
}

/* Color Circle Filters */
.color-filter-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-option {
    cursor: pointer;
}

.color-option input {
    display: none;
}

.color-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--color-border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-fast);
}

.color-circle::after {
    content: '';
    width: 32px;
    height: 32px;
    border: 1px solid transparent;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    left: -5px;
    transition: var(--transition-fast);
}

.color-option input:checked + .color-circle::after {
    border-color: var(--color-gold);
}

/* Price Range Slider */
.price-slider-wrapper {
    padding-top: 10px;
}

.range-slider {
    width: 100%;
    accent-color: var(--color-gold);
    cursor: pointer;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--color-text-light);
    margin-top: 10px;
}

.clear-filters-btn {
    width: 100%;
    margin-top: 16px;
    font-size: 12px;
    padding: 10px;
    letter-spacing: 1.5px;
}

/* Product Catalogue grid */
.catalog-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Empty State */
.no-results {
    grid-column: span 3;
    text-align: center;
    padding: 80px 20px;
    background-color: var(--color-white);
    border-radius: 8px;
    border: 1px dashed var(--color-border-light);
}

.no-results i {
    font-size: 48px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.no-results p {
    color: var(--color-text-light);
}

/* =========================================================================
   PRODUCT CARDS
   ========================================================================= */
.product-card {
    background-color: var(--color-white);
    border-radius: 12px;
    border: 1px solid var(--color-border-dark);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px var(--color-shadow);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--color-shadow-hover);
    border-color: var(--color-border-light);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    background-color: var(--color-gold);
    color: var(--color-white);
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 3px;
    pointer-events: none;
}

.product-wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: var(--transition-fast);
    border: none;
}

.product-wishlist-btn:hover {
    background-color: var(--color-white);
    transform: scale(1.1);
}

.product-wishlist-btn.active {
    color: #E0115F;
}

.product-img-container {
    height: 320px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-color: var(--color-champagne);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.product-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.1);
    opacity: 0;
    transition: var(--transition-fast);
}

.product-card:hover .product-img-overlay {
    opacity: 1;
}

/* Card details */
.product-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-cat {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.product-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 8px;
    line-height: 1.35;
    flex-grow: 0;
}

.product-card-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 12px;
}

.product-card-meta {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 16px;
    border-top: 1px solid var(--color-border-dark);
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-card-meta span strong {
    color: var(--color-black);
}

.product-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}

.product-card-actions .btn {
    padding: 10px 12px;
    font-size: 11px;
    letter-spacing: 1px;
}

/* Out of Stock Card style adjustment */
.product-card.out-of-stock {
    opacity: 0.8;
}

.product-card.out-of-stock .product-img-container::after {
    content: 'OUT OF STOCK';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(17, 17, 17, 0.8);
    color: var(--color-white);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
    z-index: 5;
}

/* =========================================================================
   WISHLIST & ENQUIRY LIST DRAWERS
   ========================================================================= */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.5);
    backdrop-filter: blur(4px);
    z-index: 990;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100%;
    background-color: var(--color-white);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.drawer.active {
    right: 0;
}

.drawer-header {
    padding: 24px;
    border-bottom: 1px solid var(--color-border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-header h3 {
    font-size: 22px;
    letter-spacing: 0.5px;
}

.drawer-close {
    font-size: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-black);
    transition: var(--transition-fast);
}

.drawer-close:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}

.drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
}

.drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--color-border-light);
    background-color: var(--color-champagne);
}

/* Empty drawer designs */
.drawer-empty {
    text-align: center;
    padding: 60px 20px;
}

.drawer-empty i {
    font-size: 40px;
    color: var(--color-gold);
    margin-bottom: 16px;
    opacity: 0.6;
}

.drawer-empty p {
    color: var(--color-text-light);
    font-size: 14px;
}

/* Drawer Item design */
.drawer-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-item {
    display: flex;
    gap: 16px;
    border-bottom: 1px solid var(--color-border-dark);
    padding-bottom: 20px;
}

.drawer-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.drawer-item-img {
    width: 80px;
    height: 100px;
    border-radius: 6px;
    object-fit: cover;
    background-color: var(--color-champagne);
}

.drawer-item-info {
    flex-grow: 1;
}

.drawer-item-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 4px;
}

.drawer-item-meta {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 6px;
}

.drawer-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-gold);
}

.drawer-item-remove {
    background: transparent;
    border: none;
    color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 13px;
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.drawer-item-remove:hover {
    color: #E0115F;
}

.drawer-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-black);
}

.drawer-footer .btn {
    width: 100%;
}

/* =========================================================================
   PRODUCT DETAILS MODAL
   ========================================================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    width: 100%;
    max-width: 960px;
    height: auto;
    max-height: 90vh;
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(40px);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1200;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-champagne);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-black);
    transition: var(--transition-fast);
}

.modal-close:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: rotate(90deg);
}

.modal-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 40px;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
}

/* Image Gallery Layout */
.modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-main-img-wrapper {
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--color-champagne);
    border: 1px solid var(--color-border-dark);
}

.modal-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-thumbnails {
    display: flex;
    gap: 12px;
}

.thumbnail-img {
    width: 70px;
    height: 90px;
    border-radius: 6px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    background-color: var(--color-champagne);
}

.thumbnail-img.active {
    border-color: var(--color-gold);
}

/* Product Info Layout */
.modal-info {
    display: flex;
    flex-direction: column;
}

.modal-cat {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 12px;
    line-height: 1.25;
}

.modal-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 20px;
}

.modal-description {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

/* Size / Color selectors */
.selector-group {
    margin-bottom: 24px;
}

.selector-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-black);
    margin-bottom: 10px;
}

.sizes-grid {
    display: flex;
    gap: 10px;
}

.size-btn {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    border: 1px solid var(--color-border-dark);
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.size-btn:hover {
    border-color: var(--color-gold);
}

.size-btn.active {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.colors-grid {
    display: flex;
    gap: 12px;
}

.color-dot-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--color-border-dark);
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.color-dot-btn::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 1px solid transparent;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    left: -5px;
    transition: var(--transition-fast);
}

.color-dot-btn.active::after {
    border-color: var(--color-gold);
}

/* Modal spec table */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-size: 13px;
}

.spec-table td {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border-dark);
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--color-black);
    width: 130px;
}

.spec-table td:last-child {
    color: var(--color-text-light);
}

/* Action Group */
.modal-actions {
    display: flex;
    gap: 16px;
    margin-top: auto;
}

.modal-actions .btn {
    flex-grow: 1;
}

/* =========================================================================
   ABOUT BRAND SECTION
   ========================================================================= */
.about-section {
    padding: 120px 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}

.about-img-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.about-img-item:nth-child(2) {
    transform: translateY(30px);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    border: 2px solid var(--color-gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 10;
}

.about-badge span {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-gold);
}

.about-badge p {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-info h3 {
    font-size: 28px;
    color: var(--color-black);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.about-info p {
    color: var(--color-text-light);
    font-size: 15px;
    margin-bottom: 24px;
    font-weight: 300;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
}

.about-feature-item i {
    font-size: 24px;
    color: var(--color-gold);
}

.about-feature-item h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.about-feature-item p {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* =========================================================================
   CONTACT & SOCIAL SECTION
   ========================================================================= */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-champagne);
    border-top: 1px solid var(--color-border-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-panel h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info-panel p {
    color: var(--color-text-light);
    font-size: 15px;
    margin-bottom: 30px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.contact-item-text h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-item-text p {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.contact-social-icons {
    display: flex;
    gap: 16px;
    margin-top: 36px;
}

.social-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: var(--transition-fast);
}

.social-circle:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Contact Card Form Box */
.contact-card-box {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--color-border-light);
    box-shadow: 0 15px 35px var(--color-shadow);
}

.contact-card-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.contact-card-box p {
    color: var(--color-text-light);
    font-size: 14px;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--color-black);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border-dark);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-gold);
}

.contact-card-box .btn {
    width: 100%;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
footer {
    background-color: var(--color-black);
    color: #999999;
    padding: 80px 0 30px;
    font-size: 14px;
    border-top: 3px solid var(--color-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.footer-about .logo-text {
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-about p {
    line-height: 1.8;
    font-weight: 300;
    font-size: 13.5px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
}

.footer-contact-item i {
    color: var(--color-gold);
    margin-top: 4px;
}

.footer-contact-item p {
    margin: 0;
    font-size: 13.5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    font-size: 12px;
}

.footer-bottom-links a:hover {
    color: var(--color-white);
}

/* =========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================= */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4);
    z-index: 900;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    animation: pulse 2s infinite;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(18, 140, 126, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =========================================================================
   RESPONSIVE STYLING (MEDIA QUERIES)
   ========================================================================= */

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .categories-grid .category-card:nth-child(1),
    .categories-grid .category-card:nth-child(6) {
        grid-column: span 1;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .no-results {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 52px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Header Toggle menu visibility */
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 24px;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--color-border-dark);
        z-index: 99;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Layout change sidebar */
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    
    .filter-toggle-btn {
        display: flex;
    }
    
    .catalog-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        width: 320px;
        height: 100%;
        z-index: 1010;
        border-radius: 0;
        overflow-y: auto;
        transition: var(--transition-smooth);
    }
    
    .catalog-sidebar.active {
        left: 0;
    }
    
    /* Drawer size changes for mobile screens */
    .drawer {
        width: 100%;
        right: -100%;
    }
    
    .modal-container {
        max-height: 100vh;
        border-radius: 0;
        height: 100%;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modal-main-img-wrapper {
        height: 350px;
    }
    
    .modal-body {
        padding: 24px;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .no-results {
        grid-column: span 1;
    }
    .hero {
        align-items: flex-start;
        padding-top: 60px;
    }
    .hero-actions-group .btn {
        width: 100%;
    }
    .catalog-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .search-wrapper {
        width: 100%;
    }
    .toolbar-controls {
        justify-content: space-between;
    }
    .modal-actions {
        flex-direction: column;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
