/* ==========================================================================
   SOLEY BEDDING - Premium Design System
   ========================================================================== */

/* ---------- CSS CUSTOM PROPERTIES (DESIGN TOKENS) ---------- */
:root {
    /* Primary Palette */
    --color-primary: #1a1b3a;
    --color-primary-light: #2d2e5e;
    --color-primary-dark: #0f1028;

    /* Accent */
    --color-accent: #c8a96e;
    --color-accent-light: #dfc89a;
    --color-accent-dark: #b08d4a;

    /* Neutrals */
    --color-white: #ffffff;
    --color-off-white: #f8f7f4;
    --color-light-gray: #f0ede8;
    --color-gray: #b0aaa0;
    --color-dark-gray: #6b6560;
    --color-text: #2c2c2c;
    --color-text-light: #7a7672;

    /* Functional */
    --color-success: #2ecc71;
    --color-danger: #e74c3c;
    --color-whatsapp: #25D366;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a1b3a 0%, #2d2e5e 100%);
    --gradient-accent: linear-gradient(135deg, #c8a96e 0%, #dfc89a 100%);
    --gradient-hero: linear-gradient(135deg, #1a1b3a 0%, #2d2e5e 50%, #3a2d5e 100%);
    --gradient-card: linear-gradient(180deg, rgba(26, 27, 58, 0) 0%, rgba(26, 27, 58, 0.03) 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 27, 58, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 27, 58, 0.08);
    --shadow-lg: 0 8px 40px rgba(26, 27, 58, 0.12);
    --shadow-xl: 0 16px 60px rgba(26, 27, 58, 0.16);
    --shadow-accent: 0 4px 20px rgba(200, 169, 110, 0.3);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --container-max: 1280px;
    --navbar-height: 110px;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

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

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

ul,
ol {
    list-style: none;
}

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

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    z-index: 1000;
    transition: all var(--transition-base);
    background: rgba(26, 27, 58, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
    background: rgba(26, 27, 58, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
    height: 80px;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    z-index: 1001;
}

.logo-img {
    height: 140px;
    width: 520px;
    object-fit: contain;
    transition: all var(--transition-base);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.nav-logo:hover .logo-img {
    filter: drop-shadow(0 0 8px rgba(200, 169, 110, 0.5));
    transform: scale(1.03);
}

.navbar.scrolled .logo-img {
    height: 100px;
    width: 380px;
}

/* Footer logo */
.footer-logo-img {
    height: auto;
    width: 100%;
    max-width: 480px;
    object-fit: contain;
    opacity: 0.9;
    transition: all var(--transition-base);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.footer-logo-img:hover {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(200, 169, 110, 0.4));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-btn .fa-chevron-down {
    font-size: 0.65rem;
    transition: transform var(--transition-fast);
}

.lang-dropdown.open .lang-btn .fa-chevron-down {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    overflow: hidden;
}

.lang-dropdown.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--color-text);
    font-size: 0.9rem;
    transition: background var(--transition-fast);
}

.lang-option:hover {
    background: var(--color-light-gray);
}

.lang-option.active {
    background: var(--color-light-gray);
    color: var(--color-accent-dark);
    font-weight: 600;
}

.lang-flag {
    font-size: 1.2rem;
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-white);
    position: relative;
    transition: all var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-fast);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100vw;
    overflow: hidden;
    background: var(--color-primary-dark);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 27, 58, 0.4) 0%, rgba(26, 27, 58, 0.7) 100%);
    z-index: 2;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-xl);
    z-index: 3;
    pointer-events: none;
}

.slider-btn {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-btn:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--color-accent);
    transform: scale(1.3);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(200, 169, 110, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(45, 46, 94, 0.3) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(200, 169, 110, 0.3);
    border-radius: var(--radius-full);
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

.slide-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--space-xl);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--space-xl);
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--color-white);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0.3;
    }
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
    filter: brightness(1.05);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-white);
    border-color: var(--color-whatsapp);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ---------- SECTIONS ---------- */
.section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-badge {
    display: inline-block;
    background: var(--color-light-gray);
    color: var(--color-accent-dark);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.section-subtitle {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- PRODUCT CARDS ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.products-grid-3 {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.products-grid-2 {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(30px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card.visible:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card-horizontal {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--color-light-gray);
}

.product-card-image-lg {
    aspect-ratio: 16/10;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
    image-rendering: auto;
}

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

.gallery-main img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.product-placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    background: linear-gradient(135deg, #e8e4de 0%, #d4cfc7 100%);
    color: var(--color-dark-gray);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    padding: var(--space-xl);
}

.product-placeholder-img i {
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.6;
}

.placeholder-lg .product-placeholder-img i,
.placeholder-lg i {
    font-size: 4rem;
}

.placeholder-detail {
    aspect-ratio: 1/1;
    border-radius: var(--radius-lg);
}

.placeholder-detail i {
    font-size: 5rem;
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 27, 58, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.product-card-body {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.product-card-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.product-card-desc {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.product-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--color-light-gray);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--color-dark-gray);
}

.feature-tag i {
    color: var(--color-accent-dark);
    font-size: 0.7rem;
}

.product-card-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.size-tag {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
}

.product-card-colors {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-light-gray);
    margin-top: auto;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-value-lg {
    font-size: 1.6rem;
}

.price-value-xl {
    font-size: 2rem;
}

.product-link {
    font-size: 0.9rem;
    color: var(--color-accent-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition-fast);
}

.product-link:hover {
    gap: 8px;
    color: var(--color-primary);
}

/* ---------- FEATURES / WHY US ---------- */
.why-section {
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    text-align: center;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.feature-card:hover {
    background: var(--color-off-white);
    border-color: var(--color-light-gray);
    transform: translateY(-4px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    background: var(--gradient-accent);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform var(--transition-spring);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(200, 169, 110, 0.15), transparent 50%);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--color-white);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: var(--space-md);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
    font-size: 1.05rem;
}

/* ---------- PAGE HEADER ---------- */
.page-header {
    background: var(--gradient-primary);
    padding: calc(var(--navbar-height) + var(--space-3xl)) 0 var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(200, 169, 110, 0.1) 0%, transparent 60%);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    color: var(--color-white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

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

.breadcrumb i {
    font-size: 0.6rem;
}

/* ---------- PRODUCT DETAIL ---------- */
.product-detail-section {
    padding-top: calc(var(--navbar-height) + var(--space-2xl));
    padding-bottom: var(--space-4xl);
}

.product-detail-section .breadcrumb {
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
}

.product-detail-section .breadcrumb a {
    color: var(--color-dark-gray);
}

.product-detail-section .breadcrumb a:hover {
    color: var(--color-accent-dark);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: calc(var(--navbar-height) + var(--space-xl));
}

.gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-md);
}

.gallery-main img,
.gallery-main .product-placeholder-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

.gallery-thumb {
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    opacity: 0.6;
}

.gallery-thumb.active {
    border-color: var(--color-accent);
    opacity: 1;
}

.gallery-thumb:hover {
    opacity: 1;
}

.product-placeholder-thumb {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light-gray);
    color: var(--color-accent);
    font-size: 1.2rem;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.product-detail-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.product-detail-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Size Selector */
.size-selector {
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    background: var(--color-white);
}

.size-title {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    color: var(--color-dark-gray);
    font-weight: 600;
}

.size-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--space-sm);
}

.size-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md);
    border: 2px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    background: var(--color-white);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-body);
}

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

.size-btn.active {
    border-color: var(--color-accent);
    background: rgba(200, 169, 110, 0.08);
    box-shadow: 0 0 0 1px var(--color-accent);
}

.size-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
}

.size-price {
    font-size: 0.85rem;
    color: var(--color-accent-dark);
    font-weight: 500;
}

.color-options {
    padding: var(--space-lg) 0;
}

.color-options h3 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    color: var(--color-dark-gray);
}

.product-detail-desc h3,
.product-detail-features h3 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    color: var(--color-dark-gray);
}

.product-detail-desc p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.features-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: var(--color-text);
}

.features-list li i {
    color: var(--color-accent-dark);
}

.product-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    padding-top: var(--space-md);
}

/* ---------- PAYMENT OPTIONS ---------- */
.payment-options-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--space-2xl) 0 var(--space-xl) 0;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 60px;
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 2.5rem;
    color: var(--color-text);
    transition: all var(--transition-fast);
    cursor: default;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.payment-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.payment-logo i {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- PAYMENT LOGO IMAGES ---- */
.payment-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-top: var(--space-md);
    transition: all var(--transition-fast);
}

.back-link:hover {
    color: var(--color-accent-dark);
    gap: 12px;
}

/* ---------- CONTACT ---------- */
.contact-section {
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-form-wrapper {
    background: var(--color-off-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-dark-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--color-accent-dark);
    font-size: 0.8rem;
}

.form-control {
    padding: 14px 16px;
    border: 2px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    transition: all var(--transition-fast);
    background: var(--color-white);
    outline: none;
}

.form-control:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
}

.form-control::placeholder {
    color: var(--color-gray);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.text-danger {
    color: var(--color-danger);
    font-size: 0.8rem;
}

.alert {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.alert-success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #1a9e53;
}

.alert-success i {
    font-size: 1.3rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-info-card {
    background: var(--color-off-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-xl);
}

.contact-info-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-light-gray);
}

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

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-item strong {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-dark-gray);
}

.contact-info-item p {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-top: 2px;
}

.contact-whatsapp-card {
    background: var(--gradient-primary);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--color-white);
}

.contact-whatsapp-card .wa-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-whatsapp);
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    margin: 0 auto var(--space-md);
}

.contact-whatsapp-card h4 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.contact-whatsapp-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
    font-size: 0.9rem;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: var(--space-4xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: block;
    margin-bottom: var(--space-lg);
}

.footer-logo img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.footer-logo .logo-text {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

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

.footer-title {
    color: var(--color-white);
    font-size: 1.05rem;
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
}

.footer-contact-list li i {
    color: var(--color-accent);
    margin-top: 4px;
    width: 16px;
}

.footer-bottom {
    padding: var(--space-xl) 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
    animation: whatsapp-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* ---------- ANIMATIONS ---------- */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- PRODUCTS LISTING ---------- */
.products-listing-section {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-4xl);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .product-gallery {
        position: static;
    }

    .product-card-horizontal {
        grid-template-columns: 1fr;
    }

    .product-card-image-lg {
        aspect-ratio: 16/9;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    :root {
        --navbar-height: 70px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-primary);
        flex-direction: column;
        padding: calc(var(--navbar-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
        transition: right var(--transition-base);
        gap: var(--space-sm);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

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

    .nav-link {
        width: 100%;
        padding: var(--space-md);
        font-size: 1.05rem;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .product-cta {
        flex-direction: column;
    }

    .product-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

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

@media (max-width: 480px) {
    :root {
        --space-2xl: 2rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .navbar.scrolled .logo-img {
        height: 60px;
        width: 240px;
    }

    .logo-img {
        height: 75px;
        width: 280px;
    }

    .nav-menu {
        width: 90%;
        max-width: none;
    }

    .nav-link {
        font-size: 1rem;
        padding: var(--space-sm) var(--space-md);
    }

    .hero {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: var(--space-md);
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: var(--space-lg);
    }

    .hero-actions {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .btn-sm {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: var(--space-2xl);
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .feature-card {
        padding: var(--space-lg);
        gap: var(--space-md);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
        margin: 0 auto var(--space-md);
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .product-card-body {
        padding: var(--space-lg);
        gap: var(--space-sm);
    }

    .product-card-title {
        font-size: 1.1rem;
    }

    .form-control {
        padding: 12px 14px;
        font-size: 16px;
    }

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

    .contact-form-wrapper,
    .contact-info-card,
    .contact-whatsapp-card {
        padding: var(--space-lg);
    }

    .page-title {
        font-size: 1.8rem;
    }

    .size-options {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .payment-logos {
        gap: var(--space-md);
    }

    .payment-logo {
        width: 80px;
        height: 50px;
        font-size: 2rem;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

    .product-detail-title {
        font-size: 1.4rem;
    }

    .contact-grid {
        gap: var(--space-2xl);
    }

    .page-header {
        padding: calc(var(--navbar-height) + var(--space-2xl)) 0 var(--space-2xl);
    }
}

/* ===== PRODUCT SLOGAN ===== */
.product-card-slogan {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--gold);
    margin: -0.25rem 0 0.75rem 0;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

/* ===== PAGINATION ===== */
.pagination-nav {
    margin-top: var(--space-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.pagination {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid rgba(200, 169, 110, 0.2);
}

.pagination-btn:hover:not(.disabled) {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 169, 110, 0.3);
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.pagination-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid rgba(200, 169, 110, 0.15);
}

.pagination-page:hover:not(.active) {
    background: rgba(200, 169, 110, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.pagination-page.active {
    background: linear-gradient(135deg, var(--gold), #b8983f);
    color: var(--bg-dark);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(200, 169, 110, 0.4);
}

.pagination-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pagination-total {
    color: var(--gold);
    margin-left: 0.25rem;
}

@media (max-width: 576px) {
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pagination-btn {
        padding: 0.5rem 0.85rem;
        font-size: 0.8rem;
    }

    .pagination-page {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

/* ===== EXTRA SMALL SCREENS ===== */
@media (max-width: 360px) {
    :root {
        --navbar-height: 65px;
        --space-lg: 1.25rem;
        --space-xl: 1.5rem;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .nav-container {
        padding: 0 var(--space-sm);
    }

    .logo-img {
        height: 60px;
        width: 220px;
    }

    .navbar.scrolled .logo-img {
        height: 50px;
        width: 200px;
    }

    .nav-menu {
        max-width: 85vw;
        padding: calc(var(--navbar-height) + var(--space-md)) var(--space-sm) var(--space-sm);
    }

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

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

    .btn {
        padding: 11px 20px;
        font-size: 0.85rem;
    }

    .section {
        padding: var(--space-2xl) 0;
    }

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

    .product-card-title {
        font-size: 1rem;
    }

    .form-control {
        padding: 11px 12px;
        font-size: 16px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .footer-title {
        font-size: 0.95rem;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .payment-logo {
        width: 70px;
        height: 45px;
        font-size: 1.8rem;
    }
}

/* ===== IMAGE ZOOM ===== */
.zoom-container {
    position: relative;
    cursor: crosshair;
    overflow: hidden;
}

.zoom-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: transform 0.3s ease;
}

.zoom-lens {
    display: none;
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-sm);
    background: rgba(200, 169, 110, 0.15);
    pointer-events: none;
    z-index: 10;
    backdrop-filter: blur(1px);
}

.zoom-result {
    display: none;
    position: absolute;
    top: 0;
    right: -420px;
    width: 400px;
    height: 400px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    background-repeat: no-repeat;
    background-color: var(--bg-card);
    z-index: 100;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.zoom-container.zooming {
    cursor: none;
}

.zoom-hint {
    text-align: center;
    margin-top: var(--space-xs);
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.zoom-hint i {
    color: var(--gold);
    margin-right: 0.25rem;
}

/* ===== PRODUCT DETAIL SLOGAN ===== */
.product-detail-slogan {
    font-size: 1rem;
    font-style: italic;
    color: var(--gold);
    margin: -0.5rem 0 1rem 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== IMAGE QUALITY FIX ===== */
.product-card-img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.gallery-thumb img {
    image-rendering: -webkit-optimize-contrast;
}

/* ===== LANG DROPDOWN IMPROVED ===== */
.lang-menu {
    max-height: 300px;
    overflow-y: auto;
}

.lang-option {
    min-width: 160px;
}

.lang-flag {
    width: 22px;
    height: 16px;
    margin-right: 0.6rem;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    vertical-align: middle;
}

.lang-btn-flag {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    margin-right: 0.25rem;
}

@media (max-width: 992px) {
    .zoom-result {
        display: none !important;
    }

    .zoom-lens {
        display: none !important;
    }
}