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

/* Modern CSS Variables for Themes */
:root {
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --bg-accent: #222222;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --accent: #000000;
    --accent-hover: #333333;
    --border-color: rgba(212, 175, 55, 0.3);
    --border-gold: #D4AF37;
    --gold-primary: #D4AF37;
    --gold-secondary: #D4AF37;
    --shadow-light: rgba(0,0,0,0.3);
    --shadow-medium: rgba(0,0,0,0.5);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --announcement-bg: #000;
    --announcement-text: #ffffff;
}

[data-theme="light"] {
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --bg-accent: #f5f5f5;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --accent: #000000;
    --accent-hover: #333333;
    --border-color: rgba(212, 175, 55, 0.6);
    --border-gold: #D4AF37;
    --gold-primary: #D4AF37;
    --gold-secondary: #D4AF37;
    --shadow-light: rgba(0,0,0,0.06);
    --shadow-medium: rgba(0,0,0,0.1);
    --announcement-bg: #1a1a1a;
    --announcement-text: #ffffff;
}

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

/* Modern Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 100vh;
    opacity: 0;
    animation: fadeInBody 0.5s ease-out forwards;
}

@keyframes fadeInBody {
    to {
        opacity: 1;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}

/* Modern Navigation */
nav {
    background: var(--bg-secondary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-100%);
    animation: slideDownNav 0.5s ease-out 0.2s forwards;
}

@keyframes slideDownNav {
    to {
        transform: translateY(0);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--gold-primary);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 32px;
    width: auto;
    border-radius: 8px;
}

.logo a:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0;
    position: relative;
}

.nav-menu a:hover {
    color: var(--gold-primary);
}

/* Modern Theme Toggle */
/* Modern Search Bar */
.search-container {
    margin-left: 2rem;
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ccc;
    overflow: hidden;
    transition: all 0.2s;
}

.search-form:focus-within {
    border-color: #000;
}

.search-input {
    border: none;
    padding: 0.3rem 0.6rem;
    background: transparent;
    color: #000;
    font-size: 0.85rem;
    width: 140px;
    min-height: auto;
}

.search-input::placeholder {
    color: rgba(0,0,0,0.4);
}

.search-input:focus {
    outline: none;
    width: 180px;
}

.search-btn {
    background: var(--gold-primary);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 25px 25px 0;
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
}

.search-btn:hover {
    background: var(--gold-secondary);
    transform: scale(1.05);
}

.search-icon {
    font-size: 1.1rem;
    display: block;
}

.theme-toggle {
    margin-left: 1rem;
}

.nav-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
    color: var(--text-primary);
    min-height: 32px;
    min-width: 32px;
}

.theme-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: #fff;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.search-form .nav-icon-btn {
    color: #000;
}

.theme-btn:hover {
    opacity: 0.7;
}

.theme-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Modern Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    border: 1px solid;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 44px;
    touch-action: manipulation;
}

.btn-primary {
    background: #000;
    color: #fff;
    border-color: #000;
}

.btn-primary:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

.btn-secondary {
    background: #000;
    color: #fff;
    border-color: #000;
}

.btn-secondary:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

/* Featured Products Section */
.featured-products {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.featured-products h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.featured-products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 2px;
}

/* === HERO SCROLLABLE SECTION === */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #000;
    padding: 4rem 2rem;
}

.hero-scroll-bg {
    position: absolute;
    inset: 0;
    display: flex;
    overflow: hidden;
    scroll-snap-type: x mandatory;
}

.hero-scroll-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000;
}

.hero-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
    color: #fff;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border-radius: 0;
}

.hero-scroll-btn:hover { background: rgba(0,0,0,0.7); }

.hero-scroll-prev { left: 1rem; }
.hero-scroll-next { right: 1rem; }

.hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.hero-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.2s;
}

.hero-dots span.active { background: #fff; border-color: #fff; }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-tag {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

.hero .hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    -webkit-text-fill-color: #fff;
    background: none;
}

.hero .hero-content h1 em {
    font-style: italic;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.hero .hero-content p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 12px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    line-height: 1.1;
    min-height: 1.1em;
    animation: blink-caret 1s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #D4AF37; }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.5;
}

/* Modern Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    padding: 0 1rem;
    max-width: 1200px;
}

.catalog .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.products-grid .product-card {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.products-grid .product-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    min-height: auto;
    height: auto;
    display: block;
}

.products-grid .product-image a {
    display: block;
}

.products-grid .product-image img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    border-radius: 0;
}

.products-grid .product-image:hover img {
    opacity: 0.85;
}

.products-grid .product-card .badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.6rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    border-radius: 0;
}

/* Catalog-specific badge overrides */
.catalog .products-grid .product-card .badge {
    background: #000;
    color: #fff;
}

.products-grid .product-info {
    padding: 1rem 0;
    text-align: center;
}

.products-grid .product-info h3 {
    margin-bottom: 0.3rem;
    font-size: 1.4rem;
    font-weight: 400;
    font-family: var(--font-heading);
    text-transform: capitalize;
}

.products-grid .product-info h3 a {
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.products-grid .product-info h3 a:hover {
    color: var(--text-secondary);
}

.products-grid .price-section {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: baseline;
}

.products-grid .price {
    color: var(--text-primary);
    font-size: 1.05rem;
}

.products-grid .sale-price {
    color: var(--text-primary);
    font-size: 1.05rem;
}

.products-grid .original-price {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.products-grid .no-products {
    color: var(--text-secondary);
    text-align: center;
    font-size: 1rem;
    grid-column: 1 / -1;
}

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
    background: #000;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 0;
    overflow: hidden;
    position: relative;
    font-weight: 500;
}

.announcement-bar .announcement-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
}

.announcement-bar .announcement-track span {
    padding: 0 2rem;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === FEATURES + LUXURY BLOCK === */
.fl-block {
    background: var(--bg-secondary);
}

.fl-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
}

.fl-row-reverse {
    direction: rtl;
}

.fl-row-reverse > * {
    direction: ltr;
}

.fl-image {
    overflow: hidden;
}

.fl-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}

.fl-content {
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fl-content .section-header {
    margin-bottom: 2rem;
}

.fl-content .features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fl-content .feature-card {
    padding: 2rem 1.5rem;
    border-left: 1px solid var(--border-color);
    border-top: none;
    text-align: left;
}

.fl-content .feature-card:first-child {
    border-left: none;
}

.fl-content .feature-card:hover {
    transform: translateY(-2px);
}

.fl-content .feature-icon {
    font-size: 0.75rem;
}

.fl-content .view-all {
    margin-top: 2rem;
}

/* === RENTAL SECTION === */
.rental-copy {
    max-width: 500px;
}

.rental-points {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding: 1rem 0;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.rental-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.rental-title em {
    color: var(--gold-primary);
    font-style: italic;
}

.rental-body {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.rental-points {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    padding: 1rem 0;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    width: 100%;
}

.rental-title em {
    color: var(--gold-primary);
    font-style: italic;
}

.rental-body {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.rental-points {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.rental-points span {
    font-size: 0.85rem;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.section-header h2 em {
    color: var(--gold-primary);
    font-style: italic;
}

.section-sub {
    color: var(--text-secondary);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.section-underline {
    width: 40px;
    height: 2px;
    background: var(--border-gold);
    margin: 0.5rem auto 0;
}

/* === VIEW ALL === */
.view-all {
    text-align: center;
    margin-top: 2rem;
}

/* === INSTAGRAM SECTION === */
.instagram-section {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--bg-primary);
}

.instagram-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.instagram-section h2 a {
    color: var(--gold-primary);
    text-decoration: none;
}

.instagram-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.section-tag {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--border-color);
    margin-bottom: 0.5rem;
}

/* === NEW ARRIVALS === */
.new-arrivals {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.new-arrivals .section-header {
    margin-bottom: 2rem;
}

.scrollable-grid {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.scrollable-grid::-webkit-scrollbar {
    height: 6px;
}

.scrollable-grid::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.scrollable-grid .product-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

/* === BUTTON STYLES === */

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.product-badges-detail {
    position: static;
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.badge-featured {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: white;
}

.badge-new {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.badge-sale {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
    animation: pulse 2s infinite;
}

.badge-custom {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
    color: white;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.price-section {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
}

.sale-price {
    color: #dc3545;
}

.original-price {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.6;
}

.category {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

/* Product Detail Page */
.product-detail {
    padding: 4rem 0;
    background: var(--bg-primary);
    min-height: 80vh;
}

.product-detail .container {
    max-width: 1400px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 3rem auto;
    align-items: stretch;
    min-height: 600px;
}

.product-gallery {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: stretch;
}

.product-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: transparent;
    height: 100%;
    min-height: 200px;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.product-image:hover img {
    opacity: 0.95;
}

/* Product Thumbnails */
.product-thumbnails {
    width: 80px;
    display: flex;
    justify-content: center;
}

.image-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: border-color 0.3s;
    border-radius: 8px;
    display: block;
}

.thumbnail:hover {
    border-color: #D4AF37;
}

.thumbnail.active {
    border: 2px solid #D4AF37;
}

.product-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-info h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.product-info .category {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.product-info .category a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.product-info .category a:hover {
    color: var(--gold-secondary);
}

.description {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 30px var(--shadow-light);
}

.description h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.purchase-options {
    margin-top: 2rem;
    padding: 1.5rem 0;
}

.purchase-options label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    max-width: 140px;
}

.quantity-selector button {
    background: none;
    border: none;
    padding: 0.6rem 1rem;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
    transition: background 0.2s ease;
    min-height: 40px;
    min-width: 40px;
    touch-action: manipulation;
    line-height: 1;
}

.quantity-selector button:hover {
    background: var(--bg-secondary);
}

.quantity-selector input {
    flex: 1;
    text-align: center;
    padding: 0.6rem 0.5rem;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    min-width: 60px;
    min-height: 40px;
    touch-action: manipulation;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.quantity-selector input:focus {
    outline: none;
}

.stock-info {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.out-of-stock {
    color: #dc3545;
    font-weight: 500;
    padding: 1rem 0;
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.purchase-buttons {
    display: flex;
    margin-top: 1.5rem;
}

.btn-large {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--gold-primary);
}

.breadcrumbs .separator {
    color: var(--text-secondary);
    opacity: 0.5;
}

.breadcrumbs span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

/* Size Selector */
.size-selector {
    margin-bottom: 1.5rem;
}

.size-selector label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.size-btn {
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 48px;
    text-align: center;
}

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

.size-btn.active {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

/* Installment Info */
.installment-info {
    margin: 0.75rem 0 1.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.installment-text {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.pay-in-3 {
    font-size: 0.8rem;
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Accordion */
.product-accordion {
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accordion-trigger:hover {
    color: var(--gold-primary);
}

.accordion-icon {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.2s ease;
    line-height: 1;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
    margin-bottom: 0.75rem;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* === CART PAGE === */
.cart-section, .checkout-section, .confirmation-section {
    padding: 3rem 0;
    min-height: 60vh;
}

.cart-section h1, .checkout-section h1, .confirmation-section h1 {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.cart-layout, .checkout-layout, .confirmation-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid #000;
}

.cart-item-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cart-item-details h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
}

.cart-item-details h3 a {
    color: var(--text-primary);
    text-decoration: none;
}

.cart-item-details h3 a:hover {
    color: var(--gold-primary);
}

.cart-item-size, .cart-item-price {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cart-item .quantity-selector {
    margin-bottom: 0;
    max-width: 110px;
}

.cart-item .quantity-selector input {
    min-width: 40px;
    font-size: 0.85rem;
}

.cart-item-subtotal {
    font-weight: 600;
    font-size: 1rem;
    text-align: right;
    min-width: 80px;
}

.cart-item-remove .btn-remove {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0.25rem;
    line-height: 1;
}

.cart-item-remove .btn-remove:hover {
    color: #dc3545;
}

.cart-summary, .checkout-summary, .confirmation-summary {
    background: var(--bg-secondary);
    border: 1px solid #000;
    padding: 1.5rem;
    position: sticky;
    top: 90px;
}

.cart-summary h2, .checkout-summary h2, .confirmation-summary h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.summary-total {
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.btn-checkout, .btn-place-order {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
}

.btn-continue {
    width: 100%;
    margin-top: 0.5rem;
    text-align: center;
    display: block;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* === CHECKOUT PAGE === */
.checkout-form {
    background: var(--bg-secondary);
    border: 1px solid #000;
    padding: 2rem;
}

.checkout-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-info-box {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: var(--bg-accent);
    border: 1px solid #000;
}

.payment-info-box h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.payment-info-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-name {
    font-size: 0.9rem;
    font-weight: 500;
}

.checkout-item-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.15rem;
}

.checkout-item-price {
    font-weight: 600;
    font-size: 0.95rem;
}

/* === ORDER CONFIRMATION === */
.confirmation-header {
    text-align: center;
    margin-bottom: 2rem;
}

.confirmation-header h1 {
    color: #28a745;
}

.confirmation-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.detail-card {
    background: var(--bg-secondary);
    border: 1px solid #000;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.detail-card h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.detail-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.detail-card p strong {
    color: var(--text-primary);
}

.bank-details {
    border-left: 3px solid var(--gold-primary);
}

.bank-account {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-accent);
}

.bank-account h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.bank-info {
    margin-top: 1rem;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.bank-row:last-child {
    border-bottom: none;
}

.bank-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.bank-value {
    color: var(--text-primary);
    font-weight: 600;
}

.bank-ref {
    color: var(--gold-primary);
    letter-spacing: 1px;
    font-family: monospace;
}

.bank-amount {
    font-size: 1.1rem;
    color: var(--gold-primary);
}

.status-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: #ffc107;
    color: #000;
}

.status-review {
    background: #17a2b8;
    color: #fff;
}

.status-paid {
    background: #28a745;
    color: #fff;
}

.status-ready {
    background: #007bff;
    color: #fff;
}

.status-completed {
    background: #6c757d;
    color: #fff;
}

.status-cancelled {
    background: #dc3545;
    color: #fff;
}

.proof-upload-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.proof-upload-group input[type="file"] {
    flex: 1;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-primary);
    background: var(--bg-accent);
    border: 1px solid #000;
    min-width: 180px;
}

.proof-upload-group .btn {
    white-space: nowrap;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    min-height: auto;
}

.proof-uploaded {
    padding: 1rem;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.proof-uploaded a {
    color: #155724;
    font-weight: 600;
}

.proof-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.proof-note a {
    color: var(--gold-primary);
}

.next-steps {
    padding-left: 1.25rem;
}

.next-steps li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.confirmation-actions {
    text-align: center;
    margin-top: 2rem;
}

.alert {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Cart count badge */
.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--gold-primary);
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
}

/* Catalog Section */
/* === CATALOG === */
.catalog {
    padding: 4rem 0;
    background: var(--bg-primary);
    min-height: 80vh;
}

.catalog h1 {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.categories-filter {
    text-align: center;
    margin-bottom: 3rem;
}

.categories-filter ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    list-style: none;
    padding: 0;
    justify-content: center;
}

.categories-filter li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 3px;
    transition: color 0.2s ease;
}

.categories-filter li a:hover,
.categories-filter li a.active {
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-gold);
}

.search-info {
    text-align: center;
    margin-bottom: 2rem;
}

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

.clear-search {
    color: var(--border-gold);
    text-decoration: none;
}

/* About & Contact shared styles */
.about, .contact {
    padding: 3rem 0;
}

.about h1, .contact h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--gold-primary);
}

.about-content, .contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-secondary);
}

.about-text h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-text p, .about-text li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.about-text li::before {
    content: '✦';
    color: var(--border-gold);
    margin-right: 0.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--gold-primary);
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-form form {
    background: var(--bg-accent);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--text-secondary);
    background: transparent;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15), 0 4px 16px var(--shadow-medium);
    transform: translateY(-1px);
}

footer {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 4rem 0 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-gold);
}

[data-theme="dark"] footer {
    background: var(--bg-primary);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    text-align: left;
}

.footer-col h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
}

.footer-social a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: var(--border-gold);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-col ul a:hover {
    color: var(--text-primary);
}

.footer-col .contact-label {
    color: var(--text-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.8rem;
    margin-bottom: 0.2rem;
}

.newsletter-section {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem 2rem;
    border-top: 1px solid var(--border-gold);
    text-align: center;
}

.newsletter-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.newsletter-section p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1px solid var(--text-secondary);
    border-right: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

.newsletter-form input::placeholder {
    color: var(--text-secondary);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--border-gold);
}

.newsletter-form button {
    padding: 0.7rem 1.5rem;
    background: var(--text-primary);
    color: var(--bg-primary);
    border: 1px solid var(--text-primary);
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.newsletter-form button:hover {
    opacity: 0.8;
}

.payment-section {
    border-top: 1px solid var(--text-secondary);
    border-color: rgba(255,255,255,0.08);
    padding: 1.5rem 2rem;
    text-align: center;
}

[data-theme="light"] .payment-section {
    border-color: rgba(0,0,0,0.08);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

.payment-icons span {
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.payment-note {
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid var(--text-secondary);
    border-color: rgba(255,255,255,0.08);
    padding: 1rem 2rem;
    text-align: center;
}

[data-theme="light"] .footer-bottom {
    border-color: rgba(0,0,0,0.08);
}

.footer-bottom p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.footer-bottom a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--text-primary);
}

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

/* Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 0.6s ease-out forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.6s ease-out forwards;
}

.slide-in-bottom {
    opacity: 0;
    animation: slideInBottom 0.6s ease-out forwards;
}

/* Stagger animation delays */
.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }
.fade-in-up:nth-child(5) { animation-delay: 0.5s; }

/* Modern Skeleton Loading */
@keyframes skeleton-loading {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, var(--bg-secondary) 25%, rgba(255, 255, 255, 0.1) 50%, var(--bg-secondary) 75%);
    background-size: 200px 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

.skeleton-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-light);
    border: 1px solid var(--border-color);
}

.skeleton-image {
    width: 100%;
    height: 220px;
    background: var(--bg-accent);
}

.skeleton-content {
    padding: 1.5rem;
}

.skeleton-title {
    height: 24px;
    width: 70%;
    margin-bottom: 0.75rem;
}

.skeleton-price {
    height: 20px;
    width: 40%;
    margin-bottom: 0.5rem;
}

.skeleton-category {
    height: 16px;
    width: 50%;
    margin-bottom: 1rem;
}

.skeleton-description {
    height: 14px;
    width: 100%;
    margin-bottom: 0.5rem;
}

.skeleton-description:nth-child(2) {
    width: 80%;
}

.skeleton-btn {
    height: 40px;
    width: 120px;
    border-radius: 30px;
}

/* Modern Product Carousel */
.carousel-container {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Show multiple products on larger screens */
@media (min-width: 768px) {
    .carousel-slide {
        min-width: 50%; /* Show 2 products */
    }
}

@media (min-width: 1024px) {
    .carousel-slide {
        min-width: 33.333%; /* Show 3 products */
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.carousel-btn:hover {
    background: var(--gold-primary);
    border-color: #D4AF37;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 1rem;
}

.carousel-btn-next {
    right: 1rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--gold-primary);
    border-color: #D4AF37;
}

.indicator:hover {
    background: var(--gold-secondary);
    border-color: var(--gold-secondary);
}

.view-all {
    text-align: center;
    margin-top: 2rem;
}

/* Modern Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        padding: 2.5rem 3rem;
    }
    
    .product-layout {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .nav-container {
        padding: 0.2rem 1.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .product-layout {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

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

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.2rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-secondary);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px var(--shadow-light);
        z-index: 100;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 0.75rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-menu a:hover {
        color: var(--gold-primary);
    }

    .search-container {
        order: 3;
        margin-left: 0;
        width: auto;
        flex: 0 0 auto;
        min-width: 0;
    }

    .theme-toggle {
        order: 2;
        margin-left: 1rem;
        flex-shrink: 0;
    }

    .search-input {
        width: 120px;
        padding: 0.5rem 0.75rem;
    }

    .search-input:focus {
        width: 150px;
    }

    .logo {
        order: 1;
    }
    
    .logo a {
        font-size: 1.5rem;
    }

    .hero {
        padding: 80px 1rem;
        min-height: 50vh;
    }

    .hero-content {
        padding: 0;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 0;
        box-shadow: none;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .fl-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .fl-content {
        padding: 2.5rem 1.5rem;
    }

    .fl-content .feature-card {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding: 1.5rem 1rem;
    }

    .fl-content .feature-card:first-child {
        border-top: none;
        border-left: none;
    }

    .fl-image {
        min-height: 300px;
    }

    .scrollable-grid .product-card {
        flex: 0 0 220px;
    }

    .product-layout,
    .contact-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
    }

    .product-detail {
        padding: 2rem 0;
    }

    .product-image {
        min-height: 400px;
    }

    .product-image img {
        height: 400px;
    }

    .product-info {
        height: auto;
    }

    .product-info h1 {
        font-size: 2rem;
    }

    .purchase-buttons {
        flex-direction: column;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .breadcrumbs {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .size-options {
        gap: 0.4rem;
    }

    .size-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-width: 40px;
    }

    .product-accordion {
        margin-top: 1.5rem;
    }

    .accordion-trigger {
        font-size: 0.9rem;
        padding: 1rem 0;
    }

    .accordion-content {
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .catalog h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .product-card {
        margin: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .nav-container {
        padding: 0.2rem;
        gap: 0.25rem;
    }
    
    .nav-menu {
        width: 90%;
        padding: 4rem 1rem 1rem;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.75rem 0;
    }

    .hero {
        padding: 60px 0.75rem;
        min-height: 45vh;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-content {
        padding: 0;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 0;
        box-shadow: none;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .search-input {
        padding: 0.75rem 1rem;
    }

    .search-btn {
        padding: 0.5rem 0.75rem;
        min-width: 36px;
        min-height: 36px;
    }

    .product-card {
        margin-bottom: 1rem;
    }

    .quantity-selector button {
        min-width: 40px;
        min-height: 40px;
    }

    .quantity-selector input {
        min-height: 40px;
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem 1.2rem;
        min-height: 44px;
    }

    .form-group textarea {
        min-height: 100px;
    }
}

/* ===== Legal Pages (Privacy Policy, Terms, etc.) ===== */
.legal-page {
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
}

.legal-container {
    max-width: 800px;
    width: 100%;
}

.legal-container h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.legal-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.legal-container section {
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-container p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal-container ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-container li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

.legal-container li strong {
    color: var(--text-primary);
}

.legal-container a {
    color: var(--gold-primary);
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.privacy-table th,
.privacy-table td {
    border: 1px solid var(--border-color);
    padding: 0.75rem;
    text-align: left;
    vertical-align: top;
}

.privacy-table th {
    background: var(--bg-accent);
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.privacy-table td {
    color: var(--text-secondary);
}

@media (max-width: 600px) {
    .privacy-table th,
    .privacy-table td {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .legal-container h1 {
        font-size: 1.8rem;
    }

    .legal-container h2 {
        font-size: 1.2rem;
    }
}

/* ===== Track Order Page ===== */
.track-page {
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
}

.track-container {
    max-width: 600px;
    width: 100%;
}

.track-container h1 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.track-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.track-form {
    margin-bottom: 2rem;
}

.track-input-group {
    display: flex;
    gap: 0.5rem;
}

.track-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #000;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
}

.track-input:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.track-result {
    border: 1px solid #000;
    padding: 2rem;
}

.track-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.track-order-header h2 {
    margin: 0;
    font-size: 1.1rem;
}

/* Timeline */
.track-timeline {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 2rem;
}

.track-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-accent);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    z-index: 1;
}

.timeline-item.active .timeline-icon {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.timeline-item.cancelled .timeline-icon {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.timeline-content h3 {
    margin: 0 0 0.2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.timeline-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.timeline-item.active .timeline-content h3,
.timeline-item.active .timeline-content p {
    color: var(--text-primary);
}

.timeline-item.cancelled .timeline-content h3,
.timeline-item.cancelled .timeline-content p {
    color: var(--text-primary);
}

.track-order-details {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.track-order-details h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
}

.track-order-details p {
    margin: 0 0 0.3rem;
    font-size: 0.9rem;
}

.track-actions {
    text-align: center;
}
