/* ===== CSS Variables ===== */
:root {
    --primary-color: #f5f1eb;
    --secondary-color: #ffffff;
    --accent-color: #b8924f;
    --soft-accent: #d8cbb8;
    --text-primary: #1c1c1c;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-light: #faf8f5;
    --bg-gray: #f5f1eb;
    --border-color: #e8e2d8;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    --container-max-width: 1400px;
    --container-padding: 3rem;

    --border-radius: 12px;
    --border-radius-lg: 16px;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--primary-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

.main-content {
    opacity: 0;
    visibility: hidden;
}

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

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--text-primary);
}

h1 {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 2.25rem;
    font-weight: 400;
}

h4 {
    font-size: 1.75rem;
    font-weight: 400;
}

h5 {
    font-size: 1.5rem;
    font-weight: 500;
}

h6 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

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

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

/* ===== Preloader Styles ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 1s ease, visibility 1s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    z-index: 10;
}

.preloader-logo {
    margin-bottom: 3rem;
}

.preloader-logo .logo-text {
    font-size: 3.5rem;
    font-weight: 300;
    font-family: var(--font-secondary);
    color: var(--text-primary);
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    letter-spacing: -0.01em;
}

.preloader-logo .logo-accent {
    color: var(--accent-color);
}

.preloader-line {
    width: 200px;
    height: 1px;
    background: var(--border-color);
    margin: 0 auto 3rem;
    border-radius: 1px;
    overflow: hidden;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 1px;
    transition: width 2s ease;
}

.preloader-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    font-weight: 400;
}

/* ===== Page Transition ===== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
}

.transition-content {
    text-align: center;
}

.transition-logo .logo-text {
    font-size: 2.5rem;
    font-weight: 300;
    font-family: var(--font-secondary);
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.transition-logo .logo-accent {
    color: var(--accent-color);
}

/* ===== FLOATING LOGO ===== */
.floating-logo {
    position: fixed;
    top: 28px;
    left: 36px;
    z-index: 1100;
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--accent-color) !important;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-logo:hover {
    transform: scale(1.08);
    color: var(--accent-color) !important;
    text-shadow: 0 0 20px rgba(184, 146, 79, 0.4);
}

/* ═══════════════════════════════════════════════════
   SMART PEEK + EXPAND NAVIGATION
   ═══════════════════════════════════════════════════ */

/* --- Container --- */
.peek-nav {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1100;
    transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll-hide: slide partially off-screen */
.peek-nav.is-hidden {
    right: -38px;
}

/* --- Inner panel --- */
.peek-nav__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 16px 8px 16px 10px;
    width: 58px;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px 0 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-right: none;
    box-shadow:
        -4px 0 30px rgba(0, 0, 0, 0.25),
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.04);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.35s ease,
        box-shadow 0.35s ease;
}

/* Expand on hover */
.peek-nav:hover .peek-nav__inner {
    width: 210px;
    background: rgba(10, 10, 10, 0.72);
    box-shadow:
        -8px 0 40px rgba(0, 0, 0, 0.4),
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.06);
}

/* --- Link --- */
.peek-nav__link {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 11px 12px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.peek-nav__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 18px rgba(184, 146, 79, 0.06);
    transform: scale(1.04);
}

/* --- Icon --- */
.peek-nav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.peek-nav__link:hover .peek-nav__icon {
    color: var(--accent-color);
    transform: scale(1.12);
    filter: drop-shadow(0 0 6px rgba(184, 146, 79, 0.3));
}

/* --- Label (hidden in peek, visible on expand) --- */
.peek-nav__label {
    display: inline-block;
    opacity: 0;
    transform: translateX(8px);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: var(--font-primary);
    padding-left: 0;
    transition: opacity 0.3s ease 0.05s,
        transform 0.3s ease 0.05s,
        padding 0.35s ease;
    pointer-events: none;
}

.peek-nav:hover .peek-nav__label {
    opacity: 1;
    transform: translateX(0);
    padding-left: 12px;
}

/* --- Separator --- */
.peek-nav__sep {
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 6px auto;
    border-radius: 1px;
    transition: width 0.3s ease;
}

.peek-nav:hover .peek-nav__sep {
    width: 80%;
}

/* --- Active State --- */
.peek-nav__link.is-active {
    color: var(--accent-color);
    background: rgba(184, 146, 79, 0.09);
}

.peek-nav__link.is-active .peek-nav__icon {
    color: var(--accent-color);
    filter: drop-shadow(0 0 8px rgba(184, 146, 79, 0.5));
}

.peek-nav__link.is-active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 0 3px 3px 0;
    box-shadow: 0 0 10px rgba(184, 146, 79, 0.7);
}

/* --- Cart Badge --- */
.peek-nav__cart-wrap {
    position: relative;
}

.peek-nav__badge {
    position: absolute;
    top: -5px;
    right: -7px;
    background: var(--accent-color);
    color: #000;
    font-size: 9px;
    font-weight: 800;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(184, 146, 79, 0.5);
    pointer-events: none;
    line-height: 1;
}

/* --- Profile Dropdown --- */
.peek-nav__profile-wrap {
    position: relative;
}

.peek-nav__dropdown {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) scale(0.92);
    background: rgba(12, 12, 12, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 8px;
    min-width: 170px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.peek-nav__profile-wrap:hover .peek-nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}

.peek-nav__dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.peek-nav__dropdown a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--accent-color);
}

.peek-nav__dropdown a i {
    width: 16px;
    text-align: center;
    font-size: 12px;
}

/* Global cart-count overrides */
.peek-nav .cart-count,
.mobile-float-bar .cart-count {
    position: absolute;
    background: var(--accent-color);
    color: #000;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== MOBILE BOTTOM FLOATING BAR ===== */
.mobile-float-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 8px 6px calc(env(safe-area-inset-bottom, 8px) + 8px);
    align-items: flex-end;
    justify-content: space-around;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}

.mobile-float-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 10px;
    transition: all 0.25s ease;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-float-bar__item i {
    font-size: 18px;
    transition: all 0.25s ease;
}

.mobile-float-bar__item.is-active {
    color: var(--accent-color);
}

.mobile-float-bar__item.is-active i {
    filter: drop-shadow(0 0 6px rgba(184, 146, 79, 0.5));
}

.mobile-float-bar__badge {
    position: absolute;
    top: 2px;
    right: 4px;
    font-size: 8px;
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    line-height: 1;
}

/* Center Menu Trigger Button */
.mobile-float-bar__center {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #9c7128);
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transform: translateY(-16px);
    box-shadow:
        0 4px 20px rgba(184, 146, 79, 0.35),
        0 0 0 4px rgba(184, 146, 79, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mobile-float-bar__center:active {
    transform: translateY(-16px) scale(0.9);
}

.mobile-float-bar__center.is-open i {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* ===== MOBILE EXPANDED MENU OVERLAY ===== */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(12, 12, 12, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 28px 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 28px 40px;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-menu-overlay.is-open .mobile-menu-panel {
    transform: translateY(0);
}

.mobile-menu-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: rgba(255, 255, 255, 0.5);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.mobile-menu-brand {
    margin-bottom: 28px;
}

.mobile-menu-brand .logo-text {
    font-size: 1.6rem;
    font-weight: 300;
    font-family: var(--font-secondary);
    color: #fff;
}

.mobile-menu-brand .logo-accent {
    color: var(--accent-color);
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-menu-list li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 14px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.mobile-menu-list li a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.mobile-menu-list li a.is-active {
    color: var(--accent-color);
    background: rgba(184, 146, 79, 0.08);
}

.mobile-menu-list li a i {
    width: 24px;
    text-align: center;
    font-size: 16px;
    transition: all 0.25s ease;
}

.mobile-menu-list li a:hover i,
.mobile-menu-list li a.is-active i {
    color: var(--accent-color);
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 10px 16px;
}

/* ===== RESPONSIVE — PEEK NAV ===== */
@media (max-width: 991px) {
    .peek-nav {
        display: none;
    }

    .mobile-float-bar {
        display: flex;
    }

    .floating-logo {
        top: 20px;
        left: 22px;
        font-size: 1.5rem;
    }

    .footer {
        padding-bottom: 76px;
    }
}

@media (max-width: 480px) {
    .floating-logo {
        top: 16px;
        left: 18px;
        font-size: 1.3rem;
    }
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 0 2rem;
}

.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.search-close:hover {
    color: var(--accent-color);
}

.search-title {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.search-form {
    display: flex;
    gap: 1rem;
    background: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.search-input {
    flex: 1;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    background: none;
    outline: none;
}

.search-submit {
    background: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.search-submit:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-accent {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.btn-accent:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== Cards ===== */
.card {
    background: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    opacity: 0;
    transform: translateY(30px);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.card-content {
    padding: 2.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 400;
    font-family: var(--font-secondary);
}

.card-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.card-price {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

/* ===== Luxury Category Strip ===== */
.category-strip {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-top: 1px solid rgba(184, 146, 79, 0.15);
    border-bottom: 1px solid rgba(184, 146, 79, 0.15);
    padding: 0;
    position: relative;
    z-index: 5;
}

.category-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.category-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 18px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.category-link {
    font-family: 'GT America', var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.category-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.category-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.category-link:hover {
    color: var(--accent-color);
}

.category-link:hover .category-icon {
    transform: translateY(-3px);
}

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

.category-link.active {
    color: var(--accent-color);
}

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

/* ===== Premium Design Section ===== */
.premium-design-section {
    padding: 8rem 0;
    background: #f8f5f0;
}

.design-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.design-content {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.design-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 3rem;
}

.design-visual {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.design-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.design-visual:hover .design-image {
    transform: scale(1.02);
}

.design-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.design-title {
    font-size: 2.5rem;
    font-weight: 300;
    font-family: var(--font-secondary);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.design-desc {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.design-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: #f8f5f0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius);
    transition: var(--transition);
    align-self: flex-start;
}

.design-button:hover {
    background: var(--text-primary);
    transform: translateY(-2px);
}

.design-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(184, 146, 79, 0.3), transparent);
    margin: 0 2rem;
}

/* ===== Premium Split Section ===== */
.premium-split-section {
    padding: 8rem 0;
    background: var(--primary-color);
}

.split-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.split-block {
    background: #f8f5f0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.split-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(184, 146, 79, 0.15);
    border: 1px solid var(--accent-color);
}

.block-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.block-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.split-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.split-block:hover .split-image {
    transform: scale(1.05);
}

.block-text {
    padding: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.block-title {
    font-size: 2.5rem;
    font-weight: 300;
    font-family: var(--font-secondary);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.block-subtext {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.block-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: #f8f5f0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius);
    transition: var(--transition);
    align-self: flex-start;
}

.block-button:hover {
    background: var(--text-primary);
    transform: translateY(-2px);
}

/* ===== Luxury Hero Section ===== */
.luxury-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: var(--primary-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 8s ease-in-out, transform 12s ease-in-out;
    pointer-events: none;
}

.bg-slide-1 {
    animation: bgSlide1 32s infinite;
}

.bg-slide-2 {
    animation: bgSlide2 32s infinite;
    animation-delay: 8s;
}

.bg-slide-3 {
    animation: bgSlide3 32s infinite;
    animation-delay: 16s;
}

.bg-slide-4 {
    animation: bgSlide4 32s infinite;
    animation-delay: 24s;
}

@keyframes bgSlide1 {

    0%,
    100% {
        opacity: 0;
        transform: scale(1.1);
    }

    12.5%,
    25% {
        opacity: 0.35;
        transform: scale(1);
    }

    37.5% {
        opacity: 0;
        transform: scale(1.05);
    }
}

@keyframes bgSlide2 {

    0%,
    100% {
        opacity: 0;
        transform: scale(1.1);
    }

    12.5%,
    25% {
        opacity: 0.35;
        transform: scale(1);
    }

    37.5% {
        opacity: 0;
        transform: scale(1.05);
    }
}

@keyframes bgSlide3 {

    0%,
    100% {
        opacity: 0;
        transform: scale(1.1);
    }

    12.5%,
    25% {
        opacity: 0.35;
        transform: scale(1);
    }

    37.5% {
        opacity: 0;
        transform: scale(1.05);
    }
}

@keyframes bgSlide4 {

    0%,
    100% {
        opacity: 0;
        transform: scale(1.1);
    }

    12.5%,
    25% {
        opacity: 0.35;
        transform: scale(1);
    }

    37.5% {
        opacity: 0;
        transform: scale(1.05);
    }
}

/* Top Center Tagline */
.hero-tagline {
    text-align: center;
    padding: 4rem 2rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.tagline-line {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.25rem;
    opacity: 0;
    transform: translateY(-20px);
}

/* Right Side Vertical Menu */
.vertical-nav {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 9999;
    pointer-events: auto;
    overflow: visible;
}

.vertical-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: visible;
}

.vertical-item {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(20px);
}

.vertical-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.vertical-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.4s ease;
}

.vertical-link:hover {
    color: var(--text-primary);
    transform: translateX(-2px);
}

.vertical-link:hover::after,
.vertical-link.active::after {
    width: 100%;
}

.vertical-link.active {
    color: var(--accent-color);
    font-weight: 700;
}

/* Profile Dropdown */
.profile-dropdown {
    position: relative;
    overflow: visible;
}

.profile-dropdown-menu {
    position: absolute;
    top: 50%;
    right: 110%;
    transform: translateY(-50%) scale(0.95);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(184, 146, 79, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    width: 180px;
    height: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999;
    overflow: hidden;
}

.profile-dropdown:hover .profile-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(184, 146, 79, 0.1);
    box-sizing: border-box;
}

.dropdown-item:hover {
    color: var(--accent-color);
    background: rgba(184, 146, 79, 0.08);
}

.dropdown-item:first-child {
    border-radius: 12px 12px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 12px 12px;
    border-bottom: none;
}

/* Mobile Responsiveness for Dropdown */
@media (max-width: 768px) {
    .profile-dropdown-menu {
        right: auto;
        left: 50%;
        top: 100%;
        margin-right: 0;
        margin-top: 10px;
        transform: translateX(-50%) translateY(-10px) scale(0.95);
        width: 160px;
    }

    .profile-dropdown:hover .profile-dropdown-menu {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    .dropdown-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .profile-dropdown-menu {
        right: -10px;
        left: auto;
        top: 100%;
        margin-right: 0;
        margin-top: 8px;
        transform: translateY(-10px) scale(0.95);
        width: 150px;
    }

    .profile-dropdown:hover .profile-dropdown-menu {
        transform: translateY(0) scale(1);
    }

    .dropdown-item {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* Login Modal */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 146, 79, 0.2);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(184, 146, 79, 0.1);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(184, 146, 79, 0.1);
    color: var(--accent-color);
}

.modal-body {
    padding: 2rem;
}

.modal-message {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-button {
    display: block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    border: none;
}

.modal-button.primary {
    background: var(--accent-color);
    color: #fff;
}

.modal-button.primary:hover {
    background: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.modal-button.secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.modal-button.secondary:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 146, 79, 0.3);
}

.modal-button.tertiary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--text-light);
}

.modal-button.tertiary:hover {
    background: var(--text-light);
    color: var(--text-primary);
}

/* Luxury SVG Text */
.hero-svg {
    text-align: center;
    max-width: 420px;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    opacity: 0;
    transform: translateY(-20px);
}

.hero-svg svg {
    width: 100%;
    height: auto;
}

/* Centered Content */
.hero-center {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 8.333vw;
    pointer-events: none;
}

.hero-center>* {
    pointer-events: auto;
}

/* Oversized Brand Name */
.hero-brand {
    margin-bottom: 3rem;
}

.brand-name {
    font-family: 'Ivar Fine', var(--font-secondary);
    font-weight: 300;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 12.5vw;
    font-size: clamp(4rem, 8vw, 8rem);
    color: #1f1f1f;
    opacity: 0;
    transform: translateY(30px);
}

.brand-accent {
    color: var(--accent-color);
}

/* Hero Background Overlay */
.hero-intro {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px);
    border-radius: 8px;
    padding: 2rem;
}

/* Centered Product Image */
.hero-product {
    position: relative;
    z-index: 6;
}

.product-image-container {
    width: 600px;
    height: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    opacity: 0;
    transform: scale(0.95) translateY(50px);
}

.hero-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-image-container:hover .hero-product-image {
    transform: scale(1.05);
}

/* ===== Luxury Sections ===== */
.luxury-section {
    padding: 8rem 0;
    background: var(--primary-color);
}

.luxury-section.light-bg {
    background: var(--secondary-color);
}

.luxury-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.luxury-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--text-primary);
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(30px);
}

.luxury-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.product-block {
    opacity: 0;
    transform: translateY(40px);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    background: var(--secondary-color);
    aspect-ratio: 2/3;
}

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

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(28, 28, 28, 0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition-slow);
}

.product-block:hover .product-image {
    transform: scale(1.05);
}

/* Product Video */
.pc-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition-slow);
}

.product-card:hover .pc-video {
    transform: scale(1.05);
}

.product-block:hover .product-overlay {
    transform: translateY(0);
}

.product-title {
    font-size: 1.5rem;
    font-weight: 400;
    font-family: var(--font-secondary);
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--soft-accent);
    opacity: 0.9;
}

/* Custom Section */
.custom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.custom-text {
    opacity: 0;
    transform: translateX(-50px);
}

.custom-image {
    opacity: 0;
    transform: translateX(50px);
}

.custom-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
}

.luxury-cta {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    transition: var(--transition);
}

.luxury-cta:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

/* Exhibition Grid */
.exhibition-grid {
    display: grid;
    gap: 4rem;
}

.exhibition-item {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
}

.exhibition-image {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.exhibition-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-slow);
}

.exhibition-item:hover .exhibition-img {
    transform: scale(1.05);
}

.exhibition-info {
    padding: 2rem 0;
}

.exhibition-title {
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--font-secondary);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.exhibition-date {
    font-size: 0.9rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.exhibition-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Luxury CTA Section */
.luxury-cta {
    background: var(--text-primary);
    padding: 8rem 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 300;
    font-family: var(--font-secondary);
    color: var(--secondary-color);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--soft-accent);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.luxury-btn {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.luxury-btn.primary {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.luxury-btn.primary:hover {
    background: var(--text-primary);
    transform: translateY(-2px);
}

.luxury-btn.secondary {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.luxury-btn.secondary:hover {
    background: var(--secondary-color);
    color: var(--text-primary);
}

/* ===== Process Cards Section ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.process-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--soft-accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--bg-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
    transition: var(--transition);
}

.process-card:hover .process-icon-wrapper {
    background: var(--accent-color);
    transform: scale(1.1);
}

.process-icon {
    width: 40px;
    height: 40px;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    stroke: var(--secondary-color);
}

.process-title {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.process-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Features Section ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-item:hover {
    background: var(--secondary-color);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 2rem;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--secondary-color);
}

.feature-item:hover .feature-icon {
    background: var(--text-primary);
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Improved CTA Section ===== */
.cta-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ===== Grid Layouts ===== */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

/* ===== Categories Section ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.category-card:hover .category-icon {
    color: var(--secondary-color);
}

.category-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.category-card:hover .category-count {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Products Section ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    position: relative;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-icon {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.action-icon:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* ===== Customize Section ===== */
.customize-section {
    background: var(--bg-light);
}

.customize-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.customize-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: var(--accent-color);
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.customize-preview {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.preview-image {
    width: 100%;
    max-width: 400px;
    height: 400px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
}

.customize-options {
    display: grid;
    gap: 1.5rem;
}

.option-group {
    text-align: left;
}

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

.option-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.option-btn {
    background: var(--bg-light);
    border: 2px solid transparent;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.option-btn:hover {
    border-color: var(--accent-color);
}

.option-btn.selected {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--secondary-color);
}

/* ===== Design Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--secondary-color);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gallery-count {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== Exhibition Section ===== */
.exhibitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.exhibition-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.exhibition-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.exhibition-header {
    padding: 1.5rem;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.exhibition-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.status-today {
    background: #4caf50;
    color: white;
}

.status-upcoming {
    background: var(--accent-color);
    color: white;
}

.exhibition-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.exhibition-body {
    padding: 1.5rem;
}

.exhibition-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.info-icon {
    color: var(--accent-color);
    width: 20px;
}

/* ===== News Section ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-date,
.news-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== Bulk Orders Banner ===== */
.bulk-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
    color: var(--secondary-color);
    padding: 4rem 0;
    text-align: center;
}

.bulk-content {
    max-width: 800px;
    margin: 0 auto;
}

.bulk-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bulk-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.bulk-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.bulk-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bulk-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* ===== Testimonials ===== */
.testimonials-section {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.author-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.footer-newsletter {
    background: var(--accent-color);
    padding: 3rem 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.newsletter-description {
    color: var(--primary-color);
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    min-width: 400px;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--secondary-color);
}

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

.newsletter-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: #333;
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-primary);
    line-height: 1.8;
}

.footer-social {
    margin-top: 1rem;
}

.social-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.contact-item i {
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.footer-bottom {
    background: #111;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--text-secondary);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

/* Filter Actions */
.filter-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.filter-actions .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

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

.filter-actions .btn-primary:hover {
    background: var(--text-primary);
    transform: translateY(-1px);
}

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

.filter-actions .btn-secondary:hover {
    background: var(--bg-light);
    color: var(--text-primary);
}

.footer-legal a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent-color);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .category-list {
        gap: 2rem;
        padding: 18px 1rem;
        justify-content: flex-start;
    }

    .category-link {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        gap: 6px;
    }

    .category-icon {
        width: 26px;
        height: 26px;
    }

    .design-content {
        flex-direction: column;
        gap: 3rem;
    }

    .design-half {
        padding: 2rem;
    }

    .design-image {
        height: 250px;
    }

    .design-title {
        font-size: 2rem;
    }

    .design-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .design-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(184, 146, 79, 0.3), transparent);
        margin: 3rem 0;
    }

    /* Process Cards Responsive */
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .process-card {
        padding: 2rem 1.5rem;
    }

    .process-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .process-icon {
        width: 35px;
        height: 35px;
    }

    /* Features Responsive */
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .feature-item {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon svg {
        width: 30px;
        height: 30px;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
    }

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

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

    .nav-actions {
        gap: 1rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5 {
        grid-template-columns: 1fr;
    }

    .customize-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        min-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .bulk-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        padding: 6rem 0 2rem;
        min-height: auto;
    }

    /* Mobile Process Cards */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .process-card {
        padding: 2rem 1.5rem;
    }

    .process-title {
        font-size: 1.3rem;
    }

    .process-desc {
        font-size: 0.95rem;
    }

    /* Mobile Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature-item {
        padding: 2rem 1.5rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .feature-desc {
        font-size: 0.9rem;
    }

    /* Mobile CTA */
    .cta-content-centered {
        padding: 0 1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .luxury-btn {
        width: 100%;
        max-width: 280px;
    }

    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

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

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

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .products-grid,
    .categories-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .exhibitions-grid,
    .news-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.p-3 {
    padding: 3rem;
}

.p-4 {
    padding: 4rem;
}

.hidden {
    display: none;
}

.visible {
    visibility: visible;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ===== GLOBAL COMPONENTS ===== */

/* Cart Drawer */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s ease;
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    height: 100vh;
    background: #111;
    z-index: 2100;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.cart-drawer.active {
    transform: translateX(0);
}

/* Header */
.cd-header {
    padding: 24px 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cd-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cd-title {
    font-family: 'Outfit', 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.cd-badge {
    background: #C9973A;
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cd-close {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.cd-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* Body / Items Area */
.cd-body {
    flex: 1;
    padding: 20px 24px;
    overflow-y: auto;
}

.cd-body::-webkit-scrollbar {
    width: 3px;
}

.cd-body::-webkit-scrollbar-thumb {
    background: rgba(201, 151, 58, 0.3);
    border-radius: 10px;
}

/* Empty State */
.cd-empty {
    text-align: center;
    padding: 50px 20px;
}

.cd-empty-icon {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.08);
}

.cd-empty h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.cd-empty p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0 0 22px;
}

.cd-shop-btn {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, #C9973A, #9c7128);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.cd-shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 151, 58, 0.3);
}

/* Cart Item Card */
.cd-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cdSlideIn 0.3s ease-out both;
}

@keyframes cdSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

.cd-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

/* Product Image */
.cd-item-img {
    width: 68px;
    height: 68px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #0a0a0a;
}

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

/* Product Info */
.cd-item-body {
    flex: 1;
    min-width: 0;
}

.cd-item-name {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.cd-item-price {
    color: #C9973A;
    font-weight: 700;
    font-size: 0.82rem;
    display: block;
    margin-bottom: 8px;
}

/* Quantity Controls */
.cd-qty-row {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    width: fit-content;
    overflow: hidden;
}

.cd-qty-btn {
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
}

.cd-qty-btn:hover:not(:disabled) {
    background: rgba(201, 151, 58, 0.15);
    color: #C9973A;
}

.cd-qty-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.cd-qty-val {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
    user-select: none;
}

/* Line Total & Remove */
.cd-item-end {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.cd-line-total {
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
}

.cd-remove-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: 0.25s;
    display: flex;
    align-items: center;
}

.cd-remove-btn:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.08);
}

/* Footer */
.cd-footer {
    padding: 20px 24px 24px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cd-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cd-delivery-note {
    gap: 8px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 8px 12px;
    background: rgba(201, 151, 58, 0.05);
    border: 1px solid rgba(201, 151, 58, 0.08);
    border-radius: 8px;
    margin-bottom: 16px;
}

.cd-delivery-note i {
    color: #C9973A;
    font-size: 0.85rem;
}

.cd-subtotal-row {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.cart-subtotal {
    color: #C9973A;
    font-size: 1.3rem;
    font-weight: 800;
}

.cd-checkout-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #C9973A, #9c7128);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(201, 151, 58, 0.25);
    position: relative;
    overflow: hidden;
}

.cd-checkout-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cd-checkout-btn:hover::after {
    left: 100%;
}

.cd-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 151, 58, 0.4);
}

.cd-continue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.cd-continue:hover {
    color: #C9973A;
}

@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
    }
}


/* Cart Toast */
.cart-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, #1a1a1a, #252525);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    border-left: 4px solid #C9973A;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    font-size: 0.88rem;
}

.cart-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cart-toast span {
    color: #C9973A;
    font-size: 1.1rem;
}

/* Cart Icon Bounce Animation */
@keyframes cartBounce {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.3);
    }

    50% {
        transform: scale(0.9);
    }

    75% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.cart-bounce-anim {
    animation: cartBounce 0.5s ease;
}

/* WhatsApp Floating Button Premium Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20ba5a;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    animation: whatsapp-wiggle 3s infinite;
}

@keyframes whatsapp-wiggle {

    0%,
    90%,
    100% {
        transform: rotate(0);
    }

    92% {
        transform: rotate(10deg);
    }

    94% {
        transform: rotate(-10deg);
    }

    96% {
        transform: rotate(10deg);
    }

    98% {
        transform: rotate(-10deg);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: #222;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Modal Actions Row */
.modal-actions-row {
    display: flex;
    gap: 12px;
    width: 100%;
}

.whatsapp-inquiry-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-inquiry-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.whatsapp-inquiry-btn i {
    font-size: 1.2rem;
}

@keyframes whatsapp-float-anim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 991px) {

    /* Adjust WhatsApp button for mobile bottom bar */
    .whatsapp-float {
        bottom: 86px;
        right: 18px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ===== Price Input Styles ===== */
.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.price-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    background: var(--bg-light);
    transition: var(--transition);
}

.price-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(184, 146, 79, 0.1);
}

.price-separator {
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0 4px;
}