/* Dark Home Appliance Theme - Primary Color #D8B46A (Warm Gold) */

/* Custom Animations */
@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 15px rgba(216, 180, 106, 0.18), 0 0 30px rgba(255, 255, 255, 0.06);
    }
    100% {
        box-shadow: 0 0 25px rgba(216, 180, 106, 0.32), 0 0 50px rgba(255, 255, 255, 0.1);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(216, 180, 106, 0.16);
    }
    50% {
        box-shadow: 0 0 16px rgba(216, 180, 106, 0.28), 0 0 24px rgba(216, 180, 106, 0.16);
    }
}

@keyframes text-shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
        filter: drop-shadow(0 0 6px rgba(216, 180, 106, 0.55));
    }
}

@keyframes error-shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@keyframes bounce-gentle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Floating Navigation */
app-header {
    position: fixed !important;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 95%;
    max-width: 1200px;
}

@media (min-width: 768px) {
    app-header {
        top: 20px;
        width: 90%;
    }
}

app-header .site-header-shell {
    border-radius: 24px;
    overflow: hidden;
}

app-header .site-header-inner {
    position: relative;
}

/* Mobile Menu Overlay */
#mobile-menu-overlay {
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Bottom Sheet */
#mobile-menu {
    background: linear-gradient(to top,
        #111827 0%,
        #0B1220 100%);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
}

#mobile-menu .overflow-y-auto {
    scrollbar-width: thin;
    scrollbar-color: rgba(216, 180, 106, 0.35) transparent;
}

#mobile-menu .overflow-y-auto::-webkit-scrollbar {
    width: 4px;
}

#mobile-menu .overflow-y-auto::-webkit-scrollbar-track {
    background: transparent;
}

#mobile-menu .overflow-y-auto::-webkit-scrollbar-thumb {
    background: rgba(216, 180, 106, 0.35);
    border-radius: 2px;
}

#mobile-menu .overflow-y-auto::-webkit-scrollbar-thumb:hover {
    background: rgba(216, 180, 106, 0.55);
}

/* Adjust body content to account for fixed header */
@media (max-width: 767px) {
    body > main,
    main {
        margin-top: 84px !important;
    }

    #banner-section {
        margin-top: 84px !important;
    }
}

/* Mobile Menu - Transform utilities */
.translate-y-full {
    transform: translateY(100%);
}

.opacity-0 {
    opacity: 0;
}

.invisible {
    visibility: hidden;
}

/* Ensure mobile menu has proper transition */
#mobile-menu {
    transition: transform 0.3s ease;
}

#mobile-menu-overlay {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Subtle Grid Background */
.subtle-grid-bg {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Modern Border Effects */
.modern-border {
    border: 1px solid transparent;
    background: linear-gradient(#111827, #111827) padding-box,
                linear-gradient(135deg, #F0D9A6, #D8B46A) border-box;
}

.gradient-text {
    background: linear-gradient(135deg, #F0D9A6 0%, #D8B46A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dark Home Appliance Theme Overrides */
body {
    background: linear-gradient(180deg, #0B1220 0%, #060B14 100%) !important;
    color: #F8FAFC;
}

/* Dark theme card */
.dark-card {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

/* Dark theme section backgrounds */
.section-dark {
    background: linear-gradient(180deg, #111827 0%, #0B1220 50%, #060B14 100%);
}

/* Ensure main content has proper dark background */
main {
    background: linear-gradient(180deg, #0B1220 0%, #060B14 100%);
}

/* Text colors for dark theme */
.text-secondary {
    color: #C7D0DD !important;
}

/* Badge styling for dark theme */
.badge {
    background: linear-gradient(135deg, #F0D9A6 0%, #D8B46A 100%);
    color: #0B1220;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(216, 180, 106, 0.24);
}

/* Modern button outline for dark theme */
.modern-button-outline {
    background: transparent;
    color: #F0D9A6;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid #F0D9A6;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-button-outline:hover {
    background: #F0D9A6;
    color: #0B1220;
    box-shadow: 0 4px 15px rgba(216, 180, 106, 0.3);
}

.modern-text-shimmer {
    background: linear-gradient(90deg, #F0D9A6 0%, #D8B46A 50%, #F0D9A6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shimmer 3s linear infinite;
}

.smooth-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.smooth-hover:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px);
    border-color: rgba(216, 180, 106, 0.3);
}

/* Shared dark shell overrides for homepage chrome */
app-header header {
    background:
        linear-gradient(180deg, rgba(236, 241, 246, 0.92) 0%, rgba(225, 232, 239, 0.88) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.38) !important;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.32) !important;
    backdrop-filter: blur(16px) saturate(140%) !important;
}

app-header header nav a,
app-header header .text-gray-700,
app-header header button {
    color: #213247 !important;
}

app-header header input {
    background: rgba(255, 255, 255, 0.52) !important;
    color: #15263a !important;
    border-color: rgba(33, 50, 71, 0.1) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
}

app-header header input::placeholder {
    color: #6d8098 !important;
}

app-header .site-header-brand {
    position: relative;
    z-index: 1;
}

app-header .site-header-nav {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(33, 50, 71, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

app-header .site-header-nav a {
    padding: 0.25rem 0;
}

app-header .site-header-actions {
    padding: 0.45rem 0.55rem 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(33, 50, 71, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

app-header .site-header-icons > a,
app-header .site-header-icons > button:not(#mobile-menu-btn) {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(247, 250, 252, 0.74);
    border: 1px solid rgba(33, 50, 71, 0.08);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

app-header .site-header-icons > a:hover,
app-header .site-header-icons > button:not(#mobile-menu-btn):hover {
    background: rgba(240, 217, 166, 0.48);
    color: #7a5922 !important;
}

/* Legal pages should stay light and readable */
.legal-page .modern-card {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.legal-page .text-text-secondary,
.legal-page .text-gray-700,
.legal-page .text-gray-600 {
    color: #334155 !important;
}

.legal-page .text-text-primary,
.legal-page .text-gray-900 {
    color: #0f172a !important;
}

.legal-page .modern-card .gradient-text {
    background: linear-gradient(135deg, #9f7a32 0%, #d8b46a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-page .text-text-secondary,
.about-page .text-gray-600,
.about-page .text-gray-500 {
    color: #cbd5e1 !important;
}

.about-page .text-gray-400 {
    color: #94a3b8 !important;
}

.about-page .text-gray-300,
.about-page .text-gray-200 {
    color: #e2e8f0 !important;
}

.about-page .text-gray-800 {
    color: #f8fafc !important;
}

.about-page .modern-card {
    background: linear-gradient(180deg, #162334 0%, #1b2b3f 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22), 0 12px 28px rgba(0, 0, 0, 0.24);
}

.about-page .modern-card .text-white {
    color: #f8fafc !important;
}

.contact-page .modern-card {
    background: linear-gradient(180deg, #162334 0%, #1b2b3f 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22), 0 12px 28px rgba(0, 0, 0, 0.24);
}

.contact-page .text-text-secondary,
.contact-page .text-gray-600,
.contact-page .text-gray-500 {
    color: #cbd5e1 !important;
}

.contact-page .text-text-muted,
.contact-page .text-gray-400 {
    color: #94a3b8 !important;
}

.contact-page .text-text-primary,
.contact-page .text-gray-800,
.contact-page .text-gray-900,
.contact-page .text-white {
    color: #f8fafc !important;
}

.contact-page input::placeholder,
.contact-page textarea::placeholder {
    color: #94a3b8 !important;
}

app-header .site-header-search input {
    background: rgba(255, 255, 255, 0.72) !important;
}

@media (max-width: 767px) {
    app-header {
        top: 8px;
        width: calc(100% - 16px);
    }

    app-header .site-header-shell {
        border-radius: 18px;
    }

    app-header header {
        background:
            linear-gradient(180deg, rgba(244, 247, 250, 0.94) 0%, rgba(232, 238, 244, 0.92) 100%) !important;
        box-shadow:
            0 10px 28px rgba(0, 0, 0, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    }

    app-header .site-header-inner {
        height: 56px;
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    app-header .site-header-actions {
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        gap: 0.2rem;
    }

    app-header .site-header-icons {
        gap: 0.35rem;
    }

    app-header .site-header-icons > a,
    app-header .site-header-icons > button:not(#mobile-menu-btn) {
        width: 2.15rem;
        height: 2.15rem;
        background: rgba(255, 255, 255, 0.72);
    }

    app-header header nav a,
    app-header header .text-gray-700,
    app-header header button {
        color: #1a2b3f !important;
    }
}

@media (min-width: 768px) {
    app-header .site-header-inner {
        gap: 1rem;
    }
}

app-footer footer {
    background: linear-gradient(180deg, #0B1220 0%, #060B14 100%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #F8FAFC !important;
}

app-footer footer .bg-white\/80,
app-footer footer .bg-white\/95,
app-footer footer .bg-white\/98 {
    background: rgba(17, 24, 39, 0.92) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

app-footer footer .text-gray-600,
app-footer footer .text-gray-500,
app-footer footer .text-gray-800 {
    color: #C7D0DD !important;
}

app-footer footer .border-gray-200 {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

app-footer footer input {
    background: #0F172A !important;
    color: #F8FAFC !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

app-footer footer input::placeholder {
    color: #93A4B8 !important;
}

cart-drawer #cart-overlay {
    background: rgba(0, 0, 0, 0.72) !important;
}

cart-drawer .modern-card,
cart-drawer #cart-modal-panel .modern-card,
mobile-menu #mobile-menu {
    background: #111827 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

cart-drawer #cart-modal-panel .bg-white,
cart-drawer #cart-footer.bg-white {
    background: #111827 !important;
}

cart-drawer .text-gray-900,
cart-drawer .text-gray-700,
cart-drawer .text-gray-600,
cart-drawer .text-gray-500 {
    color: #C7D0DD !important;
}

cart-drawer .border-gray-200 {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

cart-drawer .bg-gray-100 {
    background: #0F172A !important;
}

mobile-menu #mobile-menu-overlay {
    background: rgba(0, 0, 0, 0.7) !important;
}

mobile-menu #mobile-menu .bg-white\/98 {
    background: rgba(17, 24, 39, 0.98) !important;
}

mobile-menu #mobile-menu .bg-gray-300 {
    background: rgba(255, 255, 255, 0.2) !important;
}

/* Asymmetrical Grid Layouts */
.asym-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
}

.asym-grid .main-card {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.asym-grid .side-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.asym-grid .side-card:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}

.asym-grid .side-card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.asym-grid .side-card:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
}

/* Modern Button */
.modern-button {
    background: linear-gradient(135deg, #F0D9A6 0%, #D8B46A 100%);
    color: #0B1220;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(216, 180, 106, 0.3);
}

.modern-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.modern-button:hover::before {
    left: 100%;
}

.modern-button:hover {
    box-shadow: 0 8px 25px rgba(216, 180, 106, 0.36);
    transform: translateY(-2px);
}

/* Outline Button */
.modern-button-outline {
    background: transparent;
    color: #c9a86c;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid #c9a86c;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-button-outline:hover {
    background: #F0D9A6;
    color: #0B1220;
    box-shadow: 0 4px 15px rgba(216, 180, 106, 0.3);
    transform: translateY(-2px);
}

/* Card Styling - Dark Theme */
.modern-card {
    background: linear-gradient(180deg, #162334 0%, #1b2b3f 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.22),
        0 12px 28px rgba(0, 0, 0, 0.24);
}

/* Subtle gradient overlay */
.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.025) 0%,
        rgba(216, 180, 106, 0.03) 50%,
        rgba(255, 255, 255, 0.025) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

/* Top accent line */
.modern-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        #F0D9A6 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* Ensure card content is above pseudo-elements */
.modern-card > * {
    position: relative;
    z-index: 2;
}

.modern-card:hover::before {
    opacity: 1;
}

.modern-card:hover::after {
    opacity: 1;
}

.modern-card:hover {
    border-color: rgba(216, 180, 106, 0.26);
    box-shadow:
        0 10px 32px rgba(216, 180, 106, 0.14),
        0 4px 10px rgba(0, 0, 0, 0.16);
    transform: translateY(-4px);
}

/* Card with shadow */
.modern-card.elevated {
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.25),
        0 16px 40px rgba(0, 0, 0, 0.3);
}

.modern-card.elevated:hover {
    box-shadow:
        0 8px 30px rgba(216, 180, 106, 0.16),
        0 16px 50px rgba(0, 0, 0, 0.36);
}

/* Card with icon hover effect */
.modern-card.icon-hover .card-icon {
    transition: all 0.3s ease;
}

.modern-card.icon-hover:hover .card-icon {
    background: linear-gradient(135deg, #F0D9A6, #D8B46A);
    color: #0B1220;
    box-shadow: 0 4px 15px rgba(216, 180, 106, 0.34);
}

/* Service Card */
.service-card {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
}

.service-card:hover {
    border-color: rgba(216, 180, 106, 0.22);
    box-shadow: 0 8px 30px rgba(216, 180, 106, 0.12);
    transform: translateY(-4px);
}

.service-card .service-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(216, 180, 106, 0.12));
    color: #F0D9A6;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #F0D9A6, #D8B46A);
    color: #0B1220;
    box-shadow: 0 4px 15px rgba(216, 180, 106, 0.34);
}

/* Swiper Customization */
.swiper-button-next, .swiper-button-prev {
    color: #F0D9A6 !important;
    background: rgba(17, 24, 39, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: #F0D9A6;
    color: #0B1220 !important;
    box-shadow: 0 4px 15px rgba(216, 180, 106, 0.3);
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.22);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #F0D9A6, #D8B46A) !important;
    box-shadow: 0 0 10px rgba(216, 180, 106, 0.34);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #060B14;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #F0D9A6, #D8B46A);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #D8B46A, #F0D9A6);
}

/* Banner Section Enhancement */
.banner-enhanced {
    background: linear-gradient(135deg, rgba(41, 77, 255, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
    border: 1px solid rgba(41, 77, 255, 0.15);
    backdrop-filter: blur(10px);
}

/* Text Effects */
.gradient-text-blue {
    background: linear-gradient(135deg, #c9a86c 0%, #b8956a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Badge */
.badge {
    background: linear-gradient(135deg, #c9a86c 0%, #b8956a 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(41, 77, 255, 0.3);
}

.badge-outline {
    background: transparent;
    color: #c9a86c;
    border: 1.5px solid #c9a86c;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Input Fields */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #c9a86c;
    box-shadow: 0 0 0 3px rgba(41, 77, 255, 0.1);
}

input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder,
textarea::placeholder {
    color: #666;
}

/* Error State */
input.border-red-500,
textarea.border-red-500,
select.border-red-500 {
    border-color: #ef4444 !important;
}

input.border-red-500:focus,
textarea.border-red-500:focus,
select.border-red-500:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.text-red-400 {
    color: #ef4444;
}

/* Success State */
input.border-green-500,
textarea.border-green-500 {
    border-color: #10b981 !important;
}

input.border-green-500:focus,
textarea.border-green-500:focus {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

/* Responsive Design Optimizations */
@media (max-width: 768px) {
    .asym-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .asym-grid .main-card {
        grid-column: 1;
        grid-row: 1;
    }

    .asym-grid .side-card:nth-child(1),
    .asym-grid .side-card:nth-child(2),
    .asym-grid .side-card:nth-child(3),
    .asym-grid .side-card:nth-child(4) {
        grid-column: 1;
    }

    /* Mobile header adjustments */
    app-header .container {
        padding: 0 0.75rem;
    }

    app-header .text-3xl {
        font-size: 1.5rem;
    }

    /* Mobile banner adjustments */
    #banner-section h2 {
        font-size: 2.5rem;
    }

    /* Mobile service cards */
    #services .service-card {
        padding: 1.5rem;
    }

    /* Mobile section spacing */
    section {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }
}

@media (max-width: 640px) {
    .modern-button,
    .modern-button-outline {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

    .modern-card {
        padding: 1rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-card .w-16 {
        width: 3rem;
        height: 3rem;
        font-size: 1.125rem;
    }
}

/* Performance optimizations */
.modern-card,
.service-card,
.modern-button {
    will-change: transform;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .animate-float,
    .animate-pulse-glow,
    .animate-text-shimmer,
    .animate-icon,
    .animate-error-shake,
    .animate-bounce-gentle {
        animation: none;
    }

    .smooth-hover:hover {
        transform: none;
    }
}

/* Animation Classes */
.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-icon {
    animation: icon-bounce 2s ease-in-out infinite;
}

.animate-error-shake {
    animation: error-shake 0.5s ease-in-out;
}

.animate-bounce-gentle {
    animation: bounce-gentle 2s ease-in-out infinite;
}

/* Section divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 50%,
        transparent 100%);
    margin: 4rem 0;
}

/* Link styles */
a {
    color: #c9a86c;
    transition: color 0.3s ease;
}

a:hover {
    color: #1E3DB8;
}

/* Product image placeholder */
.product-image-placeholder {
    background: linear-gradient(135deg, #FAF9F6, #E4EEFA);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* Toast notifications */
.toast {
    background: #ffffff;
    border-left: 4px solid #c9a86c;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 16px 20px;
    min-width: 300px;
    max-width: 400px;
}

.toast.success {
    border-left-color: #10b981;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.info {
    border-left-color: #3b82f6;
}

/* Loading spinner */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner {
    border: 3px solid rgba(41, 77, 255, 0.1);
    border-top-color: #c9a86c;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* Global loading overlay */
#loading-overlay {
    background:
        radial-gradient(circle at top, rgba(216, 180, 106, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(5, 10, 18, 0.96), rgba(11, 18, 32, 0.98));
    color: #f8fafc;
}

#loading-overlay .loading-panel {
    background: rgba(17, 24, 39, 0.72);
    border: 1px solid rgba(240, 217, 166, 0.16);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(14px);
}

#loading-overlay .spinner {
    border-color: rgba(255, 255, 255, 0.12);
    border-top-color: #f0d9a6;
    width: 46px;
    height: 46px;
}

#loading-overlay .loading-text {
    color: #f8fafc;
}

#loading-overlay .loading-subtext {
    color: #c7d0dd;
}

/* Price styling */
.price {
    color: #c9a86c;
    font-weight: 700;
}

.price-original {
    color: #666;
    text-decoration: line-through;
    font-size: 0.875em;
}

product-card .price-original {
    color: #cbd5e1;
}

.price-discount {
    background: linear-gradient(135deg, #d4b88a, #b8956a);
    color: white;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.75em;
    font-weight: 600;
}

/* Star rating */
.star-rating {
    color: #fbbf24;
}

.star-rating .empty {
    color: #e5e7eb;
}

/* Tag styles */
.tag {
    background: #FAF9F6;
    color: #666;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #c9a86c;
    color: white;
}

.tag.active {
    background: #c9a86c;
    color: white;
}

/* Card tags overlay */
.card-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #d4b88a, #b8956a);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(41, 77, 255, 0.3);
    z-index: 10;
}

/* Wishlist button */
.wishlist-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.wishlist-btn.active {
    background: #c9a86c;
    color: white;
}

/* Cart badge */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #d4b88a, #b8956a);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(41, 77, 255, 0.4);
}

/* Footer styling */
.footer {
    background: #2D3748;
    color: #fff;
}

.footer-link {
    color: #666;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #c9a86c;
}

/* Social media icons */
.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #c9a86c;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(41, 77, 255, 0.4);
}

/* Divider */
.divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

/* Notice box */
.notice-box {
    background: linear-gradient(135deg, #E4EEFA, #F5F3EF);
    border-left: 4px solid #c9a86c;
    padding: 16px 20px;
    border-radius: 8px;
}

.notice-box.info {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-left-color: #3b82f6;
}

.notice-box.success {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-left-color: #10b981;
}

.notice-box.warning {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    border-left-color: #ffa000;
}

/* Quantity selector */
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    overflow: hidden;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    background: #FAF9F6;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-selector button:hover {
    background: #c9a86c;
    color: white;
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.12);
    border-right: 1px solid rgba(0, 0, 0, 0.12);
}

/* Progress bar */
.progress-bar {
    height: 8px;
    background: #E4EEFA;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4b88a, #b8956a);
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Tab navigation */
.tab-nav {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.tab-item {
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: #666;
}

.tab-item:hover {
    color: #c9a86c;
}

.tab-item.active {
    color: #c9a86c;
    font-weight: 600;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4b88a, #b8956a);
}

/* Accordion */
.accordion-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #FAF9F6;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: #666;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #c9a86c;
}

.breadcrumb span {
    color: #666;
}

/* Search box */
.search-box {
    position: relative;
}

.search-box input {
    padding-right: 45px;
}

.search-box button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #c9a86c;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: #1E3DB8;
    box-shadow: 0 2px 8px rgba(41, 77, 255, 0.4);
}

/* Filter sidebar */
.filter-item {
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-item:hover {
    background: #FAF9F6;
}

.filter-item.active {
    background: linear-gradient(135deg, #d4b88a, #b8956a);
    color: white;
}

.filter-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #c9a86c;
}

/* ===== Enhanced Animations & Effects ===== */

/* Fade In Up Animation */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fade-in-up 0.5s ease-out forwards;
}

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

/* Scale In Animation */
@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in {
    animation: scale-in 0.3s ease-out forwards;
}

/* Slide In From Left */
@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slide-in-left 0.4s ease-out forwards;
}

/* Slide In From Right */
@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slide-in-right 0.4s ease-out forwards;
}

/* Ripple Effect */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(41, 77, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    pointer-events: none;
    animation: ripple 0.6s linear;
}

/* Shine Effect */
@keyframes shine {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }
    100% {
        transform: translateX(200%) skewX(-15deg);
    }
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: translateX(-100%) skewX(-15deg);
    animation: shine 3s infinite;
}

/* Magnetic Button Effect */
.magnetic-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.magnetic-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(41, 77, 255, 0.3);
}

.magnetic-btn:active {
    transform: scale(0.98);
}

/* Text Gradient Animation */
@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.animated-gradient-text {
    background: linear-gradient(90deg, #d4b88a, #b8956a, #c9a86c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

/* Border Glow Animation */
@keyframes border-glow {
    0%, 100% {
        border-color: rgba(41, 77, 255, 0.3);
        box-shadow: 0 0 10px rgba(41, 77, 255, 0.1);
    }
    50% {
        border-color: rgba(41, 77, 255, 0.6);
        box-shadow: 0 0 20px rgba(41, 77, 255, 0.3);
    }
}

.border-glow-animated {
    animation: border-glow 2s ease-in-out infinite;
}

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

.skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200px 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

/* Pulse Ring Animation */
@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.pulse-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 2px solid #c9a86c;
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

/* Counter Animation */
@keyframes count-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter {
    display: inline-block;
    animation: count-up 0.5s ease-out forwards;
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Image Zoom Effect */
.img-zoom-container {
    overflow: hidden;
}

.img-zoom-container img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-zoom-container:hover img {
    transform: scale(1.1);
}

/* Text Reveal Animation */
@keyframes text-reveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

.text-reveal {
    animation: text-reveal 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* Stagger Children */
.stagger-children > * {
    opacity: 0;
    animation: fade-in-up 0.5s ease-out forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }

/* Parallax Scroll Effect */
.parallax-slow {
    will-change: transform;
}

/* Glass Morphism Enhanced */
.glass-morphism {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Neon Border Animation */
@keyframes neon-border {
    0%, 100% {
        box-shadow:
            0 0 5px rgba(41, 77, 255, 0.2),
            0 0 10px rgba(41, 77, 255, 0.1),
            inset 0 0 5px rgba(41, 77, 255, 0.1);
    }
    50% {
        box-shadow:
            0 0 10px rgba(41, 77, 255, 0.4),
            0 0 20px rgba(41, 77, 255, 0.2),
            inset 0 0 10px rgba(41, 77, 255, 0.2);
    }
}

.neon-border-animated {
    animation: neon-border 2s ease-in-out infinite;
}

/* Typing Effect */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.typing-effect::after {
    content: '|';
    animation: blink 1s infinite;
}

/* Morphing Shape */
@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

.morphing-shape {
    animation: morph 8s ease-in-out infinite;
}

/* Wave Animation */
@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-5px);
    }
    75% {
        transform: translateY(5px);
    }
}

.wave-text span {
    display: inline-block;
    animation: wave 1s ease-in-out infinite;
}

.wave-text span:nth-child(1) { animation-delay: 0s; }
.wave-text span:nth-child(2) { animation-delay: 0.1s; }
.wave-text span:nth-child(3) { animation-delay: 0.2s; }
.wave-text span:nth-child(4) { animation-delay: 0.3s; }
.wave-text span:nth-child(5) { animation-delay: 0.4s; }

/* 3D Card Flip */
.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}

/* Spotlight Effect */
.spotlight {
    position: relative;
    overflow: hidden;
}

.spotlight::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(41, 77, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.spotlight:hover::before {
    opacity: 1;
}

/* Bounce In Animation */
@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.bounce-in {
    animation: bounce-in 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Rotating Border */
@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.rotating-border::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: conic-gradient(from 0deg, #d4b88a, #b8956a, #c9a86c);
    border-radius: inherit;
    animation: rotate-border 3s linear infinite;
    z-index: -1;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background: rgba(41, 77, 255, 0.3);
    color: #2D3748;
}

::-moz-selection {
    background: rgba(41, 77, 255, 0.3);
    color: #2D3748;
}

/* Focus Visible Styles */
*:focus-visible {
    outline: 2px solid #c9a86c;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Homepage refresh */
.homepage-shell {
    position: relative;
}

.homepage-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(216, 180, 106, 0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(240, 217, 166, 0.08), transparent 32%);
    pointer-events: none;
}

.hero-shell,
.showcase-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(17, 28, 43, 0.95), rgba(9, 17, 29, 0.98));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.hero-shell {
    padding: 1.25rem;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.35rem 0.25rem 0.9rem;
}

.hero-kicker,
.section-kicker,
.hero-banner-eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(216, 180, 106, 0.14);
    border: 1px solid rgba(216, 180, 106, 0.25);
    color: #f0d9a6;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.hero-banner-content h2 {
    font-family: "Cormorant Garamond", serif;
}

.hero-copy h1 {
    font-size: clamp(1.8rem, 4vw, 3.3rem);
    line-height: 1;
    color: #f8fafc;
}

.hero-copy p,
.section-heading p,
.hero-banner-content p {
    color: #c7d0dd;
}

.hero-swiper {
    overflow: hidden;
    border-radius: 24px;
}

.hero-banner-card {
    position: relative;
    display: block;
    min-height: 360px;
    overflow: hidden;
    border-radius: 24px;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-banner-card:hover .hero-banner-image {
    transform: scale(1.03);
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 10, 18, 0.22), rgba(5, 10, 18, 0.02));
}

.hero-banner-overlay.overlay-dark-left {
    background: linear-gradient(90deg, rgba(5, 10, 18, 0.42), rgba(5, 10, 18, 0.08) 45%, rgba(5, 10, 18, 0.02) 75%);
}

.hero-banner-overlay.overlay-dark-right {
    background: linear-gradient(270deg, rgba(5, 10, 18, 0.4), rgba(5, 10, 18, 0.08) 40%, rgba(5, 10, 18, 0.02) 72%);
}

.hero-banner-overlay.overlay-light-left {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04) 46%, rgba(255, 255, 255, 0) 70%);
}

.hero-banner-content {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1rem 1.05rem;
    border-radius: 22px;
    background: rgba(7, 17, 31, 0.42);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 27rem;
}

.hero-banner-content h2 {
    font-size: clamp(1.85rem, 4vw, 3rem);
    line-height: 0.96;
    color: #f8fafc;
}

.hero-banner-content p {
    font-size: 0.98rem;
    line-height: 1.55;
}

.hero-title-mobile,
.hero-copy-mobile {
    display: none;
}

.hero-banner-content.is-top-left {
    top: 1.2rem;
    bottom: auto;
    left: 1.2rem;
    right: auto;
}

.hero-banner-content.is-top-right {
    top: 1.2rem;
    bottom: auto;
    left: auto;
    right: 1.2rem;
}

.hero-banner-content.is-mid-left {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}

.hero-banner-content.is-dark h2,
.hero-banner-content.is-dark p {
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hero-banner-content.is-light {
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(17, 28, 43, 0.08);
    backdrop-filter: blur(10px);
}

.hero-banner-content.is-light .hero-banner-eyebrow {
    background: rgba(17, 28, 43, 0.08);
    border-color: rgba(17, 28, 43, 0.12);
    color: #7a5922;
}

.hero-banner-content.is-light h2 {
    color: #182638;
}

.hero-banner-content.is-light p {
    color: #43546a;
}

.hero-banner-content.is-light .hero-banner-cta {
    color: #7a5922;
}

.hero-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #f0d9a6;
    font-weight: 700;
}

@media (max-width: 767px) {
    .hero-shell {
        padding: 0.9rem;
    }

    .hero-copy {
        gap: 0.45rem;
        padding: 0.15rem 0.1rem 0.6rem;
    }

    .hero-copy h1 {
        font-size: 2rem;
        line-height: 1.04;
        max-width: 14ch;
    }

    .hero-copy p {
        display: none;
    }

    .hero-banner-card,
    .hero-banner-image {
        min-height: 340px;
    }

    .hero-banner-overlay,
    .hero-banner-overlay.overlay-dark-left,
    .hero-banner-overlay.overlay-dark-right,
    .hero-banner-overlay.overlay-light-left {
        background: linear-gradient(180deg, rgba(5, 10, 18, 0.04), rgba(5, 10, 18, 0.16) 42%, rgba(5, 10, 18, 0.68) 100%);
    }

    .hero-banner-content,
    .hero-banner-content.is-top-left,
    .hero-banner-content.is-top-right,
    .hero-banner-content.is-mid-left {
        left: 0.85rem;
        right: 0.85rem;
        top: auto;
        bottom: 0.85rem;
        transform: none;
        max-width: none;
        gap: 0.45rem;
        padding: 0.35rem 0.4rem 0.9rem;
        background: transparent;
        backdrop-filter: none;
        border-radius: 0;
        border: none;
        box-shadow: none;
    }

    .hero-banner-content.is-light {
        background: transparent;
        border: none;
    }

    .hero-banner-content h2 {
        font-size: 1.35rem;
        line-height: 1.06;
        text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
    }

    .hero-banner-content p {
        font-size: 0.9rem;
        line-height: 1.45;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
        max-width: 19rem;
    }

    .hero-title-desktop,
    .hero-copy-desktop {
        display: none;
    }

    .hero-title-mobile,
    .hero-copy-mobile {
        display: inline;
    }

    .hero-banner-cta {
        font-size: 0.92rem;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    }

    .hero-banner-content .hero-banner-eyebrow {
        background: rgba(17, 28, 43, 0.42);
        backdrop-filter: blur(8px);
    }

    .hero-banner-content.is-light .hero-banner-eyebrow {
        background: rgba(255, 255, 255, 0.28);
        border-color: rgba(255, 255, 255, 0.3);
        color: #f8fafc;
    }

    .hero-banner-content.is-light h2,
    .hero-banner-content.is-light p,
    .hero-banner-content.is-light .hero-banner-cta {
        color: #f8fafc;
    }
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.98;
    color: #f8fafc;
}

.section-heading-compact {
    margin-bottom: 1.25rem;
}

.showcase-nav {
    display: flex;
    gap: 0.75rem;
}

.category-spotlight-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 236px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 28, 43, 0.9);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.category-spotlight-card:hover {
    transform: translateY(-3px);
    border-color: rgba(216, 180, 106, 0.35);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
}

.category-spotlight-media {
    position: relative;
    aspect-ratio: 1 / 1;
    min-height: 160px;
    max-height: 260px;
    background: linear-gradient(180deg, #182638, #0f1928);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-spotlight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 768px) {
    .category-spotlight-media {
        min-height: 180px;
        max-height: 300px;
    }
}

.category-spotlight-copy {
    padding: 1rem;
}

.category-spotlight-copy span {
    display: inline-block;
    color: #f0d9a6;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.45rem;
}

.category-spotlight-copy h3 {
    color: #f8fafc;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
}

.category-spotlight-copy p {
    color: #93a4b8;
    font-size: 0.82rem;
    margin-top: 0.35rem;
}

.showcase-shell {
    padding: 1rem;
}

.product-showcase-swiper {
    overflow: hidden;
    padding-bottom: 2.25rem;
}

.product-showcase-slide {
    height: auto !important;
}

.product-showcase-slide product-card,
.product-showcase-slide product-card > div,
.product-showcase-slide .modern-card {
    height: 100%;
}

.product-showcase-swiper .swiper-pagination-bullet,
.hero-swiper .swiper-pagination-bullet {
    background: rgba(240, 217, 166, 0.4);
    opacity: 1;
}

.product-showcase-swiper .swiper-pagination-bullet-active,
.hero-swiper .swiper-pagination-bullet-active {
    background: #f0d9a6;
}

@media (min-width: 768px) {
    .hero-shell {
        padding: 1.5rem;
    }

    .showcase-shell {
        padding: 1.4rem;
    }

    .section-heading {
        align-items: end;
        justify-content: space-between;
        flex-direction: row;
    }

    .hero-copy {
        max-width: 760px;
        padding: 0.4rem 0.4rem 1rem;
    }

    .hero-banner-card,
    .hero-banner-image {
        min-height: 520px;
    }

    .hero-banner-content {
        max-width: 440px;
        left: 1.6rem;
        bottom: 1.6rem;
        padding: 1.25rem 1.3rem;
        background: transparent;
        backdrop-filter: none;
        border-color: transparent;
        border-radius: 0;
    }

    .hero-banner-content.is-light {
        background: rgba(255, 255, 255, 0.52);
        backdrop-filter: blur(8px);
        border-radius: 22px;
        border-color: rgba(17, 28, 43, 0.08);
    }

    .hero-banner-content.is-top-left {
        top: 1.8rem;
        left: 1.8rem;
    }

    .hero-banner-content.is-top-right {
        top: 1.8rem;
        right: 1.8rem;
    }

    .hero-banner-content.is-mid-left {
        left: 1.8rem;
    }
}
