@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

/* Theme 9 - XQR Showcase Premium | Light Elegant Demo Theme */
:root {
    --sh-white: #ffffff;
    --sh-snow: #fafbfd;
    --sh-cloud: #f3f5f9;
    --sh-mist: #eef1f6;
    --sh-navy: #1B2559;
    --sh-navy-soft: #2d3a6e;
    --sh-slate: #475569;
    --sh-text: #1e293b;
    --sh-text-secondary: #64748b;
    --sh-text-muted: #94a3b8;
    --sh-accent: #4f46e5;
    --sh-accent-hover: #4338ca;
    --sh-accent-light: #6366f1;
    --sh-accent-soft: rgba(79, 70, 229, 0.06);
    --sh-accent-glow: rgba(79, 70, 229, 0.08);
    --sh-gold: #b8860b;
    --sh-gold-light: #d4a84b;
    --sh-gold-soft: rgba(184, 134, 11, 0.08);
    --sh-emerald: #059669;
    --sh-border: #e2e8f0;
    --sh-border-light: #f1f5f9;
    --sh-shadow-xs: 0 1px 2px rgba(27, 37, 89, 0.04);
    --sh-shadow-sm: 0 1px 4px rgba(27, 37, 89, 0.06), 0 1px 2px rgba(27, 37, 89, 0.04);
    --sh-shadow: 0 4px 16px rgba(27, 37, 89, 0.06), 0 1px 4px rgba(27, 37, 89, 0.04);
    --sh-shadow-md: 0 8px 30px rgba(27, 37, 89, 0.08), 0 2px 8px rgba(27, 37, 89, 0.04);
    --sh-shadow-lg: 0 16px 48px rgba(27, 37, 89, 0.1), 0 4px 12px rgba(27, 37, 89, 0.04);
    --sh-radius: 14px;
    --sh-radius-lg: 18px;
    --sh-radius-xl: 22px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--sh-snow);
    color: var(--sh-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--sh-accent);
    color: var(--sh-white);
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */
.hero-section {
    min-height: 320px;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(27, 37, 89, 0.25) 0%,
            rgba(27, 37, 89, 0.1) 35%,
            rgba(27, 37, 89, 0.55) 100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--sh-accent) 0%,
        var(--sh-gold) 35%,
        var(--sh-gold-light) 50%,
        var(--sh-gold) 65%,
        var(--sh-accent) 100%);
    z-index: 2;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

/* Hero Logo */
.hero-logo-wrapper {
    display: flex;
    justify-content: center;
}

.hero-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.97);
    border: 3px solid var(--sh-gold);
    border-radius: 50%;
    padding: 3px;
    filter: drop-shadow(0 8px 28px rgba(27, 37, 89, 0.25));
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 12px 36px rgba(27, 37, 89, 0.3));
}

@media (min-width: 640px) {
    .hero-logo {
        width: 180px;
        height: 180px;
    }
}

.hero-section h1 {
    font-family: 'Playfair Display', serif !important;
    color: var(--sh-white) !important;
    letter-spacing: 0.01em;
    font-weight: 800;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(184, 134, 11, 0.1);
}

.hero-section p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
    font-weight: 500;
}

/* ═══════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════ */
#topBarFixed,
body #topBarFixed,
html body #topBarFixed,
body .top-bar,
html .top-bar,
.top-bar {
    background: rgba(255, 255, 255, 0.97) !important;
    border-bottom: 1px solid var(--sh-border) !important;
    box-shadow: var(--sh-shadow-sm) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
}

#topBarFixed *,
.top-bar * {
    color: var(--sh-text) !important;
}

/* ═══════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════ */
.text-gray-900,
.text-gray-800,
.text-gray-700 {
    color: var(--sh-text) !important;
}

.text-gray-600,
.text-gray-500 {
    color: var(--sh-text-secondary) !important;
}

.text-gray-400 {
    color: var(--sh-text-muted) !important;
}

/* ═══════════════════════════════════════
   CTA BUTTONS (Premium Gold Accent)
   ═══════════════════════════════════════ */
.bg-blue-500,
.nav-button.accent,
button.theme-bg,
a.theme-bg,
#submitOrderBtn {
    background: linear-gradient(135deg, var(--sh-navy) 0%, var(--sh-navy-soft) 100%) !important;
    color: var(--sh-white) !important;
    border: none !important;
    border-radius: 12px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    box-shadow:
        0 4px 16px rgba(27, 37, 89, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.bg-blue-500:hover,
.nav-button.accent:hover,
button.theme-bg:hover,
a.theme-bg:hover,
#submitOrderBtn:hover {
    background: linear-gradient(135deg, var(--sh-navy-soft) 0%, var(--sh-accent) 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow:
        0 8px 28px rgba(27, 37, 89, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

/* ═══════════════════════════════════════
   CATEGORY CARDS
   ═══════════════════════════════════════ */
.category-grid {
    gap: 0.75rem !important;
}

.category-card {
    border-radius: var(--sh-radius) !important;
    border: none !important;
    box-shadow: var(--sh-shadow) !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative;
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sh-gold), var(--sh-gold-light), var(--sh-gold));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 3;
}

.category-card:hover::after {
    opacity: 1;
}

.category-card__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.05) 30%,
        rgba(27, 37, 89, 0.6) 100%);
}

.category-card__content span {
    font-family: 'DM Sans', sans-serif;
    color: var(--sh-white);
    letter-spacing: 0.05em;
    font-weight: 700;
    font-size: 0.8em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    text-transform: uppercase;
}

.category-card:hover {
    transform: translateY(-4px) scale(1.01) !important;
    box-shadow: var(--sh-shadow-lg) !important;
}

.category-card.is-active {
    outline: 2px solid var(--sh-gold);
    outline-offset: 2px;
}

/* Back to categories */
#backToCategories {
    background: var(--sh-white) !important;
    border: 1.5px solid var(--sh-border) !important;
    color: var(--sh-text-secondary) !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    transition: all 0.25s ease !important;
}

#backToCategories:hover {
    border-color: var(--sh-accent) !important;
    color: var(--sh-accent) !important;
    background: var(--sh-accent-soft) !important;
}

/* ═══════════════════════════════════════
   PRODUCT CARDS - Clean Premium
   ═══════════════════════════════════════ */
.product-card,
.bg-white.rounded-xl,
.bg-white.rounded-lg {
    background: var(--sh-white) !important;
    border: 1px solid var(--sh-border) !important;
    border-radius: var(--sh-radius) !important;
    box-shadow: var(--sh-shadow-xs) !important;
    color: var(--sh-text) !important;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    overflow: hidden;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sh-accent), var(--sh-gold), var(--sh-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover,
.bg-white.rounded-xl:hover {
    transform: translateY(-4px) !important;
    border-color: var(--sh-border) !important;
    box-shadow: var(--sh-shadow-md) !important;
}

.product-card img {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover img {
    transform: scale(1.04);
}

.product-card h3 {
    font-family: 'DM Sans', sans-serif !important;
    color: var(--sh-text) !important;
    font-weight: 700;
}

.product-card p {
    color: var(--sh-text-secondary) !important;
}

.category-panel h2 {
    font-family: 'Playfair Display', serif !important;
    color: var(--sh-navy) !important;
    letter-spacing: 0.01em;
    font-weight: 700;
}

.category-panel .bg-white {
    background: var(--sh-white) !important;
    border: 1px solid var(--sh-border) !important;
    border-radius: var(--sh-radius) !important;
    box-shadow: var(--sh-shadow-xs) !important;
    color: var(--sh-text) !important;
}

/* Product card internals */
.product-card .bg-white,
.product-card div[class*="bg-white"] {
    background: transparent !important;
}

.product-card .bg-gray-50,
.product-card .bg-red-50,
.product-card .bg-blue-50,
.product-card .bg-yellow-50,
.product-card .bg-orange-50,
.product-card .bg-green-50 {
    background: var(--sh-cloud) !important;
    border: none !important;
    color: var(--sh-text) !important;
}

.product-card .bg-gray-50 *,
.product-card .bg-red-50 *,
.product-card .bg-blue-50 *,
.product-card .bg-yellow-50 *,
.product-card .bg-orange-50 *,
.product-card .bg-green-50 * {
    color: var(--sh-text-secondary) !important;
}

.product-card .text-amber-500,
.product-card .text-red-500,
.product-card .text-blue-500,
.product-card .text-yellow-500,
.product-card .text-orange-500,
.product-card .text-green-500,
.product-card .text-pink-500 {
    color: var(--sh-accent) !important;
}

.product-card .text-gray-500 {
    color: var(--sh-text-muted) !important;
}

.product-card .text-amber-800,
.product-card .text-amber-600 {
    color: var(--sh-text-secondary) !important;
}

.product-card .border-amber-300 {
    border-color: var(--sh-border) !important;
}

.product-card .inline-flex.items-center {
    background: var(--sh-cloud) !important;
    border: 1px solid var(--sh-border) !important;
    color: var(--sh-text-secondary) !important;
}

.product-card .text-blue-600 {
    color: var(--sh-accent) !important;
}

.product-card .text-xs.font-semibold.text-gray-700 {
    color: var(--sh-text-secondary) !important;
}

/* ═══════════════════════════════════════
   PRICE
   ═══════════════════════════════════════ */
.text-2xl.font-extrabold.text-gray-900,
.text-sm.font-bold.text-gray-900 {
    color: var(--sh-navy) !important;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

.text-red-600 {
    color: var(--sh-accent) !important;
}

.text-green-600 {
    color: var(--sh-emerald) !important;
}

/* ═══════════════════════════════════════
   TAGS & BADGES (Gold Premium)
   ═══════════════════════════════════════ */
.absolute.top-2.left-2 span,
.inline-flex.items-center.px-3.py-1\.5 {
    background: linear-gradient(135deg, var(--sh-gold), #a07608) !important;
    color: var(--sh-white) !important;
    border: none !important;
    border-radius: 8px !important;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.7em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(184, 134, 11, 0.3);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
}

.animate-bounce-subtle {
    animation: none !important;
}

/* ═══════════════════════════════════════
   CAMPAIGN & INFO BLOCKS
   ═══════════════════════════════════════ */
.campaign-banner-marquee {
    background: var(--sh-navy) !important;
    border: none !important;
    border-left: none !important;
    color: var(--sh-gold-light) !important;
    border-radius: var(--sh-radius) !important;
}

.campaign-banner-marquee * {
    color: var(--sh-gold-light) !important;
}

.bg-gradient-to-r.from-blue-50.to-indigo-50,
.bg-amber-50,
.bg-yellow-50,
.bg-red-50,
.bg-blue-50,
.bg-orange-50,
.bg-green-50 {
    background: var(--sh-accent-soft) !important;
    border: 1px solid rgba(79, 70, 229, 0.1) !important;
    border-left: 3px solid var(--sh-accent) !important;
    color: var(--sh-text) !important;
    border-radius: var(--sh-radius) !important;
}

/* ═══════════════════════════════════════
   MODALS
   ═══════════════════════════════════════ */
#cartModal .bg-white,
#searchModal .bg-white {
    background: var(--sh-white) !important;
    color: var(--sh-text) !important;
    border: 1px solid var(--sh-border) !important;
}

.bg-gradient-to-r.from-blue-500.to-blue-600,
.bg-gradient-to-r.from-amber-500.to-orange-500 {
    background: linear-gradient(135deg, var(--sh-navy) 0%, var(--sh-navy-soft) 100%) !important;
    color: var(--sh-white) !important;
    border-bottom: 2px solid var(--sh-gold);
}

/* ═══════════════════════════════════════
   INPUTS
   ═══════════════════════════════════════ */
input,
textarea,
select {
    background: var(--sh-white) !important;
    color: var(--sh-text) !important;
    border: 1.5px solid var(--sh-border) !important;
    border-radius: 10px !important;
    font-family: 'DM Sans', sans-serif !important;
}

input::placeholder,
textarea::placeholder {
    color: var(--sh-text-muted) !important;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--sh-accent) !important;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.08) !important;
    outline: none !important;
}

/* Borders */
.border-gray-100,
.border-gray-200,
.border-gray-300 {
    border-color: var(--sh-border) !important;
}

/* ═══════════════════════════════════════
   LANGUAGE DROPDOWN
   ═══════════════════════════════════════ */
.language-dropdown,
.language-dropdown-bottom,
div.language-dropdown,
div.language-dropdown-bottom,
#languageDropdown,
#languageDropdownBottom {
    background: var(--sh-white) !important;
    border: 1px solid var(--sh-border) !important;
    border-radius: var(--sh-radius) !important;
    box-shadow: var(--sh-shadow-md) !important;
}

.language-option,
.language-option-bottom,
div.language-option,
div.language-option-bottom {
    color: var(--sh-text) !important;
    border-bottom: 1px solid var(--sh-border-light) !important;
    background: transparent !important;
}

.language-option:last-child,
.language-option-bottom:last-child {
    border-bottom: none !important;
}

.language-option:hover,
.language-option-bottom:hover,
div.language-option:hover,
div.language-option-bottom:hover {
    background: var(--sh-cloud) !important;
}

.language-option.active,
.language-option-bottom.active,
div.language-option.active,
div.language-option-bottom.active {
    background: var(--sh-accent-soft) !important;
    color: var(--sh-accent) !important;
}

.language-option.active i,
.language-option-bottom.active i {
    color: var(--sh-accent) !important;
}

.language-option span,
.language-option-bottom span {
    color: var(--sh-text) !important;
}

.language-option.active span,
.language-option-bottom.active span {
    color: var(--sh-accent) !important;
}

/* ═══════════════════════════════════════
   BOTTOM NAV BAR
   ═══════════════════════════════════════ */
.bottom-nav-bar {
    background: rgba(255, 255, 255, 0.97) !important;
    border-top: 1px solid var(--sh-border) !important;
    box-shadow: 0 -4px 20px rgba(27, 37, 89, 0.06) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
}

.bottom-nav-btn,
.bottom-nav-search-btn {
    color: var(--sh-text-secondary) !important;
    background: var(--sh-cloud) !important;
    border: 1px solid var(--sh-border) !important;
    transition: all 0.25s ease !important;
}

.bottom-nav-btn:hover,
.bottom-nav-search-btn:hover {
    border-color: var(--sh-accent) !important;
    color: var(--sh-accent) !important;
    background: var(--sh-accent-soft) !important;
}

.language-toggle-bottom {
    color: var(--sh-text-secondary) !important;
    background: var(--sh-cloud) !important;
    border: 1px solid var(--sh-border) !important;
}

.language-toggle-bottom:hover {
    border-color: var(--sh-accent) !important;
    color: var(--sh-accent) !important;
}

.bottom-nav-cart-btn {
    background: linear-gradient(135deg, var(--sh-navy) 0%, var(--sh-navy-soft) 100%) !important;
    color: var(--sh-white) !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(27, 37, 89, 0.25) !important;
}

.bottom-nav-info-btn {
    background: var(--sh-cloud) !important;
    color: var(--sh-text-secondary) !important;
    border: 1px solid var(--sh-border) !important;
}

.bottom-nav-info-btn:hover {
    border-color: var(--sh-accent) !important;
    color: var(--sh-accent) !important;
    background: var(--sh-accent-soft) !important;
}

#callWaiterBtn {
    background: var(--sh-cloud) !important;
    color: var(--sh-text-secondary) !important;
    border: 1px solid var(--sh-border) !important;
}

#callWaiterBtn:hover {
    border-color: var(--sh-gold) !important;
    color: var(--sh-gold) !important;
    background: var(--sh-gold-soft) !important;
}

#cartBadgeBottom,
#cartBadgeTop,
#cartBadge {
    background: var(--sh-gold) !important;
    color: var(--sh-white) !important;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

/* Cart footer */
#cartFooter {
    background: var(--sh-white) !important;
    box-shadow: 0 -2px 12px rgba(27, 37, 89, 0.05) !important;
    border-top: 1px solid var(--sh-border) !important;
}

/* Cart modal */
#cartModal > div,
#searchModal > div {
    background: var(--sh-snow) !important;
    color: var(--sh-text) !important;
}

/* ═══════════════════════════════════════
   FOOTER - Navy Premium
   ═══════════════════════════════════════ */
footer {
    background: linear-gradient(180deg, var(--sh-navy) 0%, #111a3d 100%) !important;
    border-top: 3px solid var(--sh-gold) !important;
    color: var(--sh-white) !important;
    position: relative;
}

footer h3,
footer .text-gray-800,
footer .text-lg {
    color: var(--sh-white) !important;
    font-family: 'Playfair Display', serif;
}

footer p,
footer span,
footer a,
footer .text-gray-700,
footer .text-gray-600,
footer .text-gray-500,
footer .text-sm,
footer .text-xs {
    color: rgba(255, 255, 255, 0.75) !important;
}

footer a:hover {
    color: var(--sh-gold-light) !important;
}

/* Footer icon containers */
footer .bg-indigo-100,
footer .bg-blue-100,
footer .bg-orange-100,
footer .bg-green-100,
footer .bg-red-100,
footer .bg-purple-100 {
    background: rgba(255, 255, 255, 0.1) !important;
}

footer .text-indigo-600,
footer .text-blue-600,
footer .text-orange-600,
footer .text-green-600,
footer .text-red-600,
footer .text-purple-600,
footer .text-indigo-500,
footer .text-blue-500,
footer .text-orange-500,
footer .text-green-500,
footer .text-red-500,
footer .text-purple-500 {
    color: var(--sh-gold-light) !important;
}

/* Footer contact icons */
footer .fa-phone,
footer .fa-whatsapp,
footer .fa-envelope,
footer .fa-map-marker-alt,
footer .fa-clock,
footer .fa-utensils,
footer .fa-link,
footer .fa-chevron-right,
footer .fa-qrcode {
    color: var(--sh-gold-light) !important;
}

/* Footer social media */
footer .bg-gradient-to-br.from-pink-500.to-purple-600,
footer .bg-gradient-to-br.from-blue-600.to-blue-700,
footer .bg-gradient-to-br.from-blue-400.to-blue-500,
footer .bg-gradient-to-br.from-red-600.to-red-700,
footer a[class*="bg-gradient-to-br"] {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: all 0.3s ease !important;
}

footer a[class*="bg-gradient-to-br"]:hover {
    background: var(--sh-gold) !important;
    border-color: var(--sh-gold) !important;
    transform: translateY(-2px) !important;
}

footer a[class*="bg-gradient-to-br"] i {
    color: var(--sh-white) !important;
}

/* Footer border */
footer .border-t,
footer .border-gray-300 {
    border-color: rgba(255, 255, 255, 0.12) !important;
}

/* ═══════════════════════════════════════
   BODY OVERRIDE
   ═══════════════════════════════════════ */
body.bg-gray-100 {
    background: var(--sh-snow) !important;
}

/* ═══════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--sh-snow);
}

::-webkit-scrollbar-thumb {
    background: var(--sh-border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sh-accent);
}

/* ═══════════════════════════════════════
   PRODUCT DETAIL MODAL
   ═══════════════════════════════════════ */
#productDetailContent {
    background: var(--sh-white) !important;
    color: var(--sh-text) !important;
}

#productDetailContent h2 {
    color: var(--sh-navy) !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
}

#productDetailContent p {
    color: var(--sh-text-secondary) !important;
}

#productDetailContent .bg-red-50,
#productDetailContent .bg-blue-50,
#productDetailContent .bg-yellow-50,
#productDetailContent .bg-orange-50 {
    background: var(--sh-cloud) !important;
}

#productDetailContent .bg-red-50 *,
#productDetailContent .bg-blue-50 *,
#productDetailContent .bg-yellow-50 *,
#productDetailContent .bg-orange-50 * {
    color: var(--sh-text) !important;
}

#productDetailContent .bg-amber-50 {
    background: var(--sh-cloud) !important;
    border-color: var(--sh-border) !important;
}

#productDetailContent .text-amber-800 {
    color: var(--sh-text-secondary) !important;
}

#productDetailContent .border-gray-100 {
    border-color: var(--sh-border-light) !important;
}

#productDetailContent .text-gray-900 {
    color: var(--sh-text) !important;
}

#productDetailContent .text-red-600 {
    color: var(--sh-accent) !important;
}

#productDetailContent button.bg-blue-600 {
    background: linear-gradient(135deg, var(--sh-navy) 0%, var(--sh-navy-soft) 100%) !important;
    color: var(--sh-white) !important;
    border: none !important;
    font-weight: 700 !important;
}

/* Variant selected state */
#modalVariants label {
    border: 1.5px solid var(--sh-border) !important;
    background: transparent !important;
    border-radius: 10px !important;
    transition: all 0.25s ease !important;
}

#modalVariants label span {
    color: var(--sh-text) !important;
}

#modalVariants label:hover {
    background: var(--sh-cloud) !important;
    border-color: var(--sh-accent) !important;
}

#modalVariants label:has(input:checked) {
    background: var(--sh-navy) !important;
    border-color: var(--sh-navy) !important;
    box-shadow: 0 2px 10px rgba(27, 37, 89, 0.2) !important;
}

#modalVariants label:has(input:checked) span {
    color: #ffffff !important;
}

#modalVariants label:has(input:checked) .text-orange-600 {
    color: var(--sh-gold-light) !important;
}

#modalVariants label:has(input:checked) .text-gray-400 {
    color: rgba(255, 255, 255, 0.6) !important;
}

#productDetailContent #modalVariants .border-gray-200 {
    border-color: var(--sh-border) !important;
}

/* Favorite button */
.favorite-btn {
    transition: transform 0.3s ease !important;
}

.favorite-btn.is-favorited {
    background: rgba(184, 134, 11, 0.1) !important;
}

/* ═══════════════════════════════════════
   GALLERY SLIDER
   ═══════════════════════════════════════ */
.product-slider__dot {
    background: var(--sh-border) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.product-slider__dot.active {
    background: var(--sh-navy) !important;
}

.product-slider img,
.product-card:hover .product-slider img {
    transition: none !important;
    transform: none !important;
}

/* Campaign marquee */
.campaign-marquee-content {
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   TWEMOJI FLAGS
   ═══════════════════════════════════════ */
img.emoji {
    height: 1.2em !important;
    width: 1.2em !important;
    vertical-align: -0.15em !important;
    display: inline-block !important;
}

.language-flag img.emoji,
.language-option img.emoji,
.language-option-bottom img.emoji {
    height: 1.4em !important;
    width: 1.4em !important;
    margin-right: 0.4em;
}

#currentLanguageFlagBottom img.emoji,
#currentLanguageFlag img.emoji {
    height: 1.5em !important;
    width: 1.5em !important;
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes shFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card,
.product-card {
    animation: shFadeUp 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Staggered animation for cards */
.category-card:nth-child(1), .product-card:nth-child(1) { animation-delay: 0s; }
.category-card:nth-child(2), .product-card:nth-child(2) { animation-delay: 0.05s; }
.category-card:nth-child(3), .product-card:nth-child(3) { animation-delay: 0.1s; }
.category-card:nth-child(4), .product-card:nth-child(4) { animation-delay: 0.15s; }
.category-card:nth-child(5), .product-card:nth-child(5) { animation-delay: 0.2s; }
.category-card:nth-child(6), .product-card:nth-child(6) { animation-delay: 0.25s; }
.category-card:nth-child(7), .product-card:nth-child(7) { animation-delay: 0.3s; }
.category-card:nth-child(8), .product-card:nth-child(8) { animation-delay: 0.35s; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
    .hero-section {
        min-height: 260px;
    }

    .product-card,
    .bg-white.rounded-xl {
        border-radius: 12px !important;
    }
}

@media (max-width: 480px) {
    .category-card {
        border-radius: 10px !important;
    }
}
