/* ==========================================================================
   Design System & Variable Declarations
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600;1,700&display=swap');

:root {
    /* Brand Colors (Updated to match logo) */
    --gold-primary: #07AA41;
    /* Exact brand green from logo */
    --gold-hover: #058F35;
    /* Darker green hover */
    --gold-light: #E8F8EE;
    /* Soft light green background */
    --dark-primary: #010822;
    /* Exact dark midnight navy from logo */
    --dark-secondary: #0C1433;
    /* Dark navy secondary */
    --light-bg: #F5F2EB;
    /* Soft warm tone bg */
    --white: #FFFFFF;
    --gray-muted: #64748B;
    /* Soft slate gray muted text */
    --border-color: #E2E8F0;
    /* Soft slate/navy border */

    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease-in-out;
}

/* ==========================================================================
   Global Base Styles
   ========================================================================== */
body {
    font-family: var(--font-sans);
    color: var(--dark-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Alternating Section Backgrounds (Odd: #F5F2EB, Even: #FFFFFF) */
section:nth-of-type(odd):not(.bg-dark):not(.newsletter-section):not(.text-bg-dark) {
    background-color: #F5F2EB !important;
}

section:nth-of-type(even):not(.bg-dark):not(.newsletter-section):not(.text-bg-dark) {
    background-color: #fff !important
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.heading,
.main-heading,
.section-title,
.hero-title,
.hero4-title,
.hero4-overlay-title,
.style4-section-title,
.collection4-title,
.style4-newsletter-title,
.style4-footer-title,
.page-title,
.title,
.entry-title,
.card-title,
.banner-title,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: var(--font-serif) !important;
}

.font-serif {
    font-family: var(--font-serif);
}

.text-gold,
.text-green {
    color: var(--gold-primary) !important;
}

.bg-gold,
.bg-green {
    background-color: var(--gold-primary) !important;
}

.btn-gold,
.btn-green {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--white);
    transition: var(--transition-fast);
}

.btn-gold:hover,
.btn-gold:focus,
.btn-green:hover,
.btn-green:focus {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(7, 170, 65, 0.25);
}

.btn-outline-white {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    transition: var(--transition-fast);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--dark-primary);
}

.btn-outline-dark {
    background-color: transparent;
    border: 1px solid var(--dark-primary);
    color: var(--dark-primary);
    letter-spacing: 1px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-outline-dark:hover {
    background-color: var(--dark-primary);
    color: var(--white);
}

.section-padding {
    padding: 80px 0;
}

.gold-separator {
    width: 60px;
    height: 2px;
    background-color: var(--gold-primary);
}

/* ==========================================================================
   Announcement Bar & Top Utilities
   ========================================================================== */
.announcement-bar {
    background-color: var(--dark-primary);
    letter-spacing: 0.5px;
    font-size: 12px;
}

.announcement-text strong {
    color: var(--gold-primary);
}

.top-bar {
    font-size: 13px;
    background-color: var(--light-bg);
}

.top-bar a:hover {
    color: var(--gold-primary) !important;
}

/* ==========================================================================
   Header Logo & Search Form
   ========================================================================== */
.brand-text {
    font-family: var(--font-sans);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 26px;
    color: var(--dark-primary);
    text-transform: uppercase;
}

.header-logo {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.navbar-brand:hover .header-logo {
    opacity: 0.85;
    transform: scale(1.02);
}

.search-form .input-group {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    background-color: #ffffff;
    transition: var(--transition-fast);
}

.search-form .input-group:focus-within {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

.search-cat-btn {
    font-size: 13px;
    font-weight: 500;
    background-color: #f5f5f5 !important;
    color: #333333 !important;
    border: none;
    border-right: 1px solid #e0e0e0 !important;
    border-radius: 0;
    padding: 10px 18px;
    white-space: nowrap;
}

.search-form input {
    border: none;
    background-color: #ffffff !important;
    font-size: 14px;
    box-shadow: none !important;
    padding-left: 15px;
}

.search-form .btn-gold {
    background-color: var(--gold-primary) !important;
    border-color: var(--gold-primary) !important;
    border-radius: 0;
    padding: 10px 24px;
    transition: var(--transition-fast);
}

.search-form .btn-gold:hover {
    background-color: var(--gold-hover) !important;
    border-color: var(--gold-hover) !important;
}

.nav-action-link i {
    color: var(--dark-primary);
}

.nav-action-btn {
    transition: var(--transition-fast);
    padding: 8px;
    display: inline-block;
    color: var(--dark-primary);
}

.nav-action-btn:hover {
    color: var(--gold-primary) !important;
}

.nav-action-btn .badge {
    font-size: 9px;
    width: 18px;
    height: 18px;
    background-color: var(--gold-primary) !important;
    color: var(--white) !important;
    border: 2px solid var(--white);
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    top: 2px !important;
    right: 2px !important;
}

/* ==========================================================================
   Desktop Navigation & Mega Menu (Home Centre Inspired)
   ========================================================================== */
.desktop-nav {
    position: relative;
    z-index: 1000;
}

.nav-menu {
    position: relative;
}

.nav-menu>.nav-item {
    position: static;
    /* Vital for full-width mega menu */
}

.nav-menu>.nav-item>.nav-link {
    color: var(--dark-primary);
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: var(--transition-fast);
}

.nav-menu>.nav-item:hover>.nav-link {
    color: var(--gold-primary);
}

/* Category Image Wrapper */
.nav-category-img-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 8px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.nav-category-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.nav-category-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    padding-bottom: 4px;
}

/* Category Underline on Hover */
.nav-category-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--gold-primary);
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.nav-menu>.nav-item:hover .nav-category-label::after {
    transform: scaleX(1);
}

.nav-menu>.nav-item:hover .nav-category-img-wrapper {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(7, 170, 65, 0.35);
}

.nav-menu>.nav-item:hover .nav-category-img-wrapper img {
    transform: scale(1.1);
}

/* Mega Menu Dropdown Container */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 999;
}

.mega-menu-trigger:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Mega Menu Internal typography */
.menu-heading {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--dark-primary);
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--light-bg);
}

.mega-menu ul li {
    margin-bottom: 8px;
}

.mega-menu ul li a {
    color: var(--gray-muted);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.mega-menu ul li a:hover {
    color: var(--gold-primary);
    padding-left: 3px;
}

.mega-menu-promo {
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.mega-menu-promo:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   Mobile Side Menu Accordion
   ========================================================================== */
#mobileNav {
    max-width: 320px;
}

.offcanvas-header .brand-text {
    font-size: 20px;
}

#mobileMenuAccordion .accordion-button {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-primary);
    padding: 16px 20px;
}

#mobileMenuAccordion .accordion-button:not(.collapsed) {
    background-color: var(--gold-light);
    color: var(--gold-hover);
}

#mobileMenuAccordion .accordion-button::after {
    filter: brightness(0.2);
}

#mobileMenuAccordion .accordion-body {
    padding: 10px 20px;
}

/* ==========================================================================
   Hero Banner Section (Swiper.js)
   ========================================================================== */
.hero-section {
    height: 80vh;
    min-height: 500px;
    width: 100%;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-title {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s ease, opacity 0.8s ease;
    letter-spacing: -1px;
}

.hero-subtitle {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s;
    font-weight: 300;
    line-height: 1.6;
}

.hero-ctas {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s ease 0.4s, opacity 0.8s ease 0.4s;
}

/* Active Slide Typography Animations */
.swiper-slide-active .hero-title,
.swiper-slide-active .hero-subtitle,
.swiper-slide-active .hero-ctas {
    opacity: 1;
    transform: translateY(0);
}

/* Customize Swiper Controls */
.hero-section .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
}

.hero-section .swiper-pagination-bullet-active {
    background: var(--gold-primary);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

.hero-section .swiper-button-next::after,
.hero-section .swiper-button-prev::after {
    font-size: 22px;
    font-weight: bold;
}

/* ==========================================================================
   Circular Category Cards
   ========================================================================== */
.dept-card {
    transition: var(--transition-smooth);
}

.dept-img-container {
    width: 85px;
    height: 85px;
    transition: var(--transition-smooth);
}

.dept-card:hover .dept-img-container {
    background-color: var(--gold-primary) !important;
    border-color: var(--gold-primary) !important;
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(197, 168, 128, 0.35) !important;
}

.dept-card:hover i {
    color: var(--white) !important;
    transform: scale(1.1);
}

.dept-card i {
    transition: var(--transition-smooth);
}

.dept-title {
    font-size: 13px;
    margin-top: 10px;
    transition: var(--transition-fast);
    letter-spacing: 0.3px;
}

.dept-card:hover .dept-title {
    color: var(--gold-primary) !important;
}

/* ==========================================================================
   Shop the Room Hotspots (Marina Home Inspired)
   ========================================================================== */
.hotspot-wrapper {
    position: relative;
}

.hotspot-image {
    transition: transform 8s ease;
}

.hotspot-wrapper:hover .hotspot-image {
    transform: scale(1.02);
}

.hotspot {
    position: absolute;
    z-index: 10;
}

/* Hotspot Pin & Core Animation */
.hotspot-pin {
    width: 26px;
    height: 26px;
    background-color: var(--gold-primary);
    border: 3px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: var(--transition-fast);
}

.hotspot-pin::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: hotspotPulse 2.5s infinite ease-out;
}

.hotspot:hover .hotspot-pin {
    background-color: var(--dark-primary);
    transform: scale(1.2);
}

/* Hotspot Popups */
.hotspot-popup {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    border-top: 3px solid var(--gold-primary);
    z-index: 20;
}

.hotspot:hover .hotspot-popup,
.hotspot.active .hotspot-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Arrow for popups */
.hotspot-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: var(--white) transparent transparent transparent;
}

@keyframes hotspotPulse {
    0% {
        transform: scale(0.6);
        opacity: 0.9;
    }

    50% {
        opacity: 0.5;
    }

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

/* ==========================================================================
   Product Cards & Tabbed Sliders
   ========================================================================== */
.custom-pills .nav-link {
    background-color: transparent;
    color: var(--gray-muted);
    border-radius: 0;
    font-size: 14px;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}

.custom-pills .nav-link.active {
    background-color: transparent !important;
    color: var(--gold-primary) !important;
    border-bottom-color: var(--gold-primary);
}

.productSwiper {
    padding: 15px 5px 30px 5px !important;
}

.product-card {
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color) !important;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: transparent !important;
}

.product-img-wrapper {
    background-color: #F6F6F6;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card img {
    mix-blend-mode: multiply;
    transition: transform 6s cubic-bezier(0.15, 0.85, 0.45, 1);
}

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

.wishlist-btn {
    background-color: var(--white);
    color: var(--dark-primary);
    width: 34px;
    height: 34px;
    transition: var(--transition-fast);
}

.wishlist-btn:hover {
    background-color: var(--dark-primary);
    color: var(--white);
}

.wishlist-btn.active i::before {
    content: "\f415";
    /* Bootstrap solid heart icon */
    color: #E74C3C;
}

.product-rating {
    font-size: 11px;
}

/* ==========================================================================
   Asymmetrical Curated Collection Grids (Crate & Barrel style)
   ========================================================================== */
.collection-card {
    cursor: pointer;
    background-color: var(--dark-primary);
}

.collection-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 6s cubic-bezier(0.15, 0.85, 0.45, 1);
    opacity: 0.8;
}

.collection-card:hover .collection-img-bg {
    transform: scale(1.06);
    opacity: 0.65;
}

.collection-overlay {
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
}

.collection-card .btn {
    border-radius: 4px;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.collection-card .btn:hover {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--white) !important;
}

/* ==========================================================================
   Footer & Newsletters
   ========================================================================== */
.newsletter-section {
    background-color: #141414 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-section .text-muted {
    color: #a0a0a0 !important;
    font-size: 14px;
}

.newsletter-form .form-control {
    border-radius: 4px 0 0 4px;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: var(--white) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    transition: var(--transition-fast);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
}

.newsletter-form .form-control:focus {
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 0 0.25rem rgba(7, 170, 65, 0.2) !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
}

.newsletter-form .btn {
    border-radius: 0 4px 4px 0;
}

.footer {
    background-color: #0c0c0c !important;
    /* Rich premium dark background */
}

.footer-logo {
    max-height: 42px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 24px;
}

.footer p.text-muted {
    color: #999999 !important;
    line-height: 1.8;
}

.footer h6.text-gold {
    color: var(--gold-primary) !important;
    font-weight: 600;
    margin-bottom: 24px !important;
    position: relative;
    padding-bottom: 8px;
}

.footer h6.text-gold::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--gold-primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #999999 !important;
    font-size: 14px;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--gold-primary) !important;
    transform: translateX(4px);
}

.social-icons a {
    color: #999999 !important;
    background-color: rgba(255, 255, 255, 0.05);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icons a:hover {
    color: var(--white) !important;
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(7, 170, 65, 0.35);
}

.payment-icons i {
    cursor: pointer;
    font-size: 26px;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-fast);
}

.payment-icons i:hover {
    color: var(--white) !important;
}

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

/* Custom transitions and properties */
.text-hover-gold:hover {
    color: var(--gold-primary) !important;
}

.text-hover-white:hover {
    color: var(--white) !important;
}

/* ==========================================================================
   Responsive Overrides
   ========================================================================== */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 50px 0;
    }

    .hero-section {
        height: 60vh;
    }

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

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

    .hotspot-popup {
        width: 200px;
    }
}

@media (max-width: 767.98px) {
    .brand-text {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .announcement-bar {
        font-size: 11px;
    }

    .dept-img-container {
        width: 70px;
        height: 70px;
    }

    .dept-title {
        font-size: 11px;
    }
}

/* ==========================================================================
   Home Centre Circular Navigation
   ========================================================================== */
.category-circular-nav {
    border-bottom: 1px solid var(--border-color);
}

.circular-nav-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.circular-nav-scroll-wrapper::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.circular-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 85px;
    transition: var(--transition-fast);
}

.circular-nav-img-wrapper {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 2px solid #C5A880;
    /* Gold outline */
    overflow: hidden;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.circular-nav-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.circular-nav-label {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-primary);
    transition: var(--transition-fast);
}

/* Sale Badge custom styling (Direct CSS representation of Home Centre design) */
.circular-nav-sale {
    background: #D61C22 !important;
    /* Home Centre Red */
    border-color: #C5A880 !important;
    /* Gold border */
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sale-badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    color: var(--white);
}

.sale-top {
    font-size: 8px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.sale-middle {
    font-size: 20px;
    font-weight: 800;
    text-transform: lowercase;
    margin: -2px 0;
}

.sale-percent {
    font-size: 8px;
    font-weight: 700;
    background-color: transparent;
}

/* Hover States */
.circular-nav-item:hover .circular-nav-img-wrapper {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(197, 168, 128, 0.35);
    border-color: var(--gold-hover);
}

.circular-nav-item:hover .circular-nav-img-wrapper img {
    transform: scale(1.1);
}

.circular-nav-item:hover .circular-nav-label {
    color: var(--gold-primary);
}

/* ==========================================================================
   New Homepage Sections (Promo Grid, Design Services, Style Gallery, Benefits)
   ========================================================================== */

/* Promo Banners Grid */
.promo-banner-card {
    transition: var(--transition-smooth);
    cursor: pointer;
}

.promo-banner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12) !important;
}

.promo-banner-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 80%);
}

.promo-banner-card .btn-gold {
    transition: var(--transition-fast);
}

.promo-banner-card:hover .btn-gold {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
}

/* Free Design Consultation Section */
.design-services-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Signature Style Gallery */
.style-gallery-card {
    cursor: pointer;
    overflow: hidden;
}

.style-img {
    background-size: cover;
    background-position: center;
}

.style-gallery-card:hover .style-img {
    transform: scale(1.08);
}

.style-overlay {
    transition: var(--transition-smooth);
}

.style-gallery-card:hover .style-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 70%) !important;
}

.style-link {
    transition: var(--transition-fast);
}

.style-gallery-card:hover .style-link {
    color: var(--gold-primary) !important;
}

/* Trust Benefit Bar */
.benefits-trust-bar {
    background-color: var(--light-bg);
}

.benefit-item {
    transition: var(--transition-smooth);
    padding: 15px;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon i {
    transition: var(--transition-smooth);
}

.benefit-item:hover .benefit-icon i {
    transform: scale(1.1);
    color: var(--gold-hover) !important;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 767.98px) {
    .circular-nav-img-wrapper {
        width: 62px;
        height: 62px;
        border-width: 1.5px;
    }

    .circular-nav-item {
        min-width: 70px;
    }

    .circular-nav-label {
        font-size: 11px;
    }

    .circular-nav-sale .sale-top {
        font-size: 7px;
    }

    .circular-nav-sale .sale-middle {
        font-size: 16px;
    }

    .circular-nav-sale .sale-percent {
        font-size: 7px;
    }

    .benefits-trust-bar .benefit-item {
        padding: 5px;
    }

    .benefits-trust-bar .benefit-icon i {
        font-size: 2rem !important;
    }
}

/* ==========================================================================
   New Homepage Sections CSS (2XL Home, Marina Home, Crate & Barrel, Chattels)
   ========================================================================== */

/* 1. Multi-Room Tabbed Hotspots */
.room-tabs .nav-link {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    padding: 10px 24px;
    color: var(--dark-primary);
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    transition: var(--transition-fast);
}

.room-tabs .nav-link.active {
    background-color: var(--gold-primary) !important;
    color: var(--white) !important;
    border-color: var(--gold-primary);
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.25);
}

.hotspot-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.tab-pane-content {
    animation: fadeInTab 0.5s ease-in-out;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: scale(0.99);
    }

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

/* 2. Luxury Brand Collections Slider */
.brand-collection-card {
    position: relative;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.brand-collection-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease;
}

.brand-collection-card:hover .brand-collection-img {
    transform: scale(1.08);
}

.brand-collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 70%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.brand-collection-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.brand-collection-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.brand-collection-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.brand-collection-link:hover {
    color: var(--white);
}

/* 3. Interactive Style Quiz */
.quiz-container {
    background-color: var(--gold-light);
    border-radius: 12px;
    border: 1px solid rgba(197, 168, 128, 0.2);
    overflow: hidden;
}

.quiz-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    padding: 30px;
}

.quiz-option-btn {
    border: 1px solid #e0e0e0;
    background-color: var(--white);
    color: var(--dark-primary);
    border-radius: 6px;
    padding: 16px 20px;
    text-align: left;
    width: 100%;
    transition: var(--transition-fast);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quiz-option-btn:hover {
    border-color: var(--gold-primary);
    background-color: rgba(197, 168, 128, 0.05);
    transform: translateY(-2px);
}

.quiz-option-btn.selected {
    border-color: var(--gold-primary);
    background-color: var(--gold-light);
    color: var(--gold-hover);
    font-weight: 600;
}

.quiz-progress-bar {
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background-color: var(--gold-primary);
    width: 33%;
    transition: width 0.4s ease;
}

.quiz-results-container {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.style-badge {
    background-color: var(--gold-primary);
    color: var(--white);
    padding: 6px 14px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 20px;
    display: inline-block;
}

/* 4. Deal of the Week Countdown */
.countdown-box {
    background: #111111;
    color: var(--white);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.timer-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    min-width: 70px;
    padding: 10px;
}

.timer-val {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-primary);
}

.timer-lbl {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.countdown-progress-bar {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.countdown-progress-fill {
    height: 100%;
    background-color: #E74C3C;
    transition: width 1s ease;
}

/* 5. 3D Showroom & Designer consultation */
.showroom-card {
    height: 380px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.showroom-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    transition: transform 6s ease;
}

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

.scheduler-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 16px;
}

.calendar-day-btn {
    border: 1px solid #e0e0e0;
    background: var(--white);
    border-radius: 4px;
    padding: 8px 4px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.calendar-day-btn:hover {
    border-color: var(--gold-primary);
    background-color: var(--gold-light);
}

.calendar-day-btn.selected {
    background-color: var(--gold-primary);
    color: var(--white);
    border-color: var(--gold-primary);
}

.timeslot-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.timeslot-btn {
    border: 1px solid #e0e0e0;
    background: var(--white);
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.timeslot-btn:hover {
    border-color: var(--gold-primary);
    background-color: var(--gold-light);
}

.timeslot-btn.selected {
    background-color: var(--gold-primary);
    color: var(--white);
    border-color: var(--gold-primary);
}

/* 6. Instagram Styled Homes Wall */
.social-masonry-grid {
    column-count: 4;
    column-gap: 20px;
}

.social-masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.social-masonry-item img {
    width: 100%;
    display: block;
    height: auto;
    transition: transform 0.5s ease;
}

.social-masonry-item:hover img {
    transform: scale(1.04);
}

.social-masonry-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
    color: var(--white);
}

.social-masonry-item:hover .social-masonry-hover {
    opacity: 1;
}

.social-tag-btn {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    background-color: var(--gold-primary);
    color: var(--white);
    border: none;
    border-radius: 20px;
    padding: 6px 14px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-tag-btn:hover {
    background-color: var(--gold-hover);
    color: var(--white);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Responsive Extensions */
@media (max-width: 991.98px) {
    .social-masonry-grid {
        column-count: 2;
    }

    .calendar-grid {
        gap: 4px;
    }

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

@media (max-width: 575.98px) {
    .social-masonry-grid {
        column-count: 1;
    }

    .countdown-box {
        padding: 20px;
    }

    .timer-element {
        min-width: 50px;
        padding: 6px;
    }

    .timer-val {
        font-size: 18px;
    }
}

/* ==========================================================================
   Design 3 Alternative Layout Styles (Header & Hero Only)
   ========================================================================== */

/* Cinematic Minimalist Full-Width Header */
.header-style3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: rgba(7, 170, 65, 0.12);
    /* Translucent light green highlight according to logo */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(7, 170, 65, 0.2);
    transition: all 0.4s ease;
}

.header-style3:hover {
    background: rgba(4, 34, 15, 0.85);
    /* Cinematic dark green translucent on hover */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: rgba(7, 170, 65, 0.4);
}

.navbar-brand-style3 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
}

.style3-logo {
    max-height: 38px;
    width: auto;
    object-fit: contain;
    /* filter: brightness(0) invert(1); removed to show original brand green emblem */
    transition: var(--transition-fast);
}

.navbar-brand-style3:hover .style3-logo {
    transform: scale(1.03);
    opacity: 0.9;
}

.nav-link-style3 {
    color: #fff !important;
    /* Menu links in brand green according to logo */
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 14px;
    display: block;
    text-decoration: none;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link-style3:hover {
    color: #ffffff !important;
    /* contrasting white text on hover */
}

.nav-link-style3::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background-color: var(--gold-primary);
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.nav-link-style3:hover::after {
    transform: scaleX(1);
}

/* Header 3 Utilities */
.style3-action-btn {
    color: var(--gold-primary);
    /* utility buttons in brand green according to logo */
    font-size: 18px;
    padding: 6px;
    transition: var(--transition-fast);
    display: inline-block;
    position: relative;
    text-decoration: none;
}

.style3-action-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.style3-action-btn .badge {
    font-size: 8px;
    padding: 3px 5px;
    border-radius: 50%;
    top: -2px !important;
    right: -6px !important;
}

/* Elegant Glassmorphic Mega Menu for Design 3 */
.style3-mega-trigger {
    /* static positioning to let child absolute menu align to full header width */
}

.style3-mega {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(4, 34, 15, 0.96);
    /* Dark green translucent background according to logo */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(7, 170, 65, 0.2);
    border-bottom: 1px solid rgba(7, 170, 65, 0.2);
    padding: 32px 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1060;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.style3-mega-trigger:hover .style3-mega {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.style3-menu-heading {
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--gold-primary);
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(7, 170, 65, 0.15);
    padding-bottom: 6px;
}

.style3-menu-links li {
    margin-bottom: 8px;
}

.style3-menu-links li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.style3-menu-links li a:hover {
    color: var(--white);
    transform: translateX(4px);
}

/* Image promo cards inside mega menu */
.style3-menu-promo {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.style3-menu-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 43, 0.15);
    z-index: 1;
    transition: var(--transition-smooth);
}

.style3-menu-promo:hover::before {
    background-color: rgba(11, 19, 43, 0.05);
}

.style3-menu-promo:hover {
    transform: translateY(-4px);
    border-color: rgba(7, 170, 65, 0.3);
    box-shadow: 0 15px 30px rgba(7, 170, 65, 0.15);
}

/* Fullscreen Hero Design 3 */
.hero-style3 {
    height: 100vh;
    width: 100vw;
    background-color: #050b18;
    overflow: hidden;
}

.hero3-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero3-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.02);
    transition: transform 6s ease-out;
    /* Smooth Ken Burns effect */
}

/* Ken Burns Zoom Effect */
.swiper-slide-active .hero3-slide-bg {
    transform: scale(1.07);
}

.hero-style3 .container {
    position: relative;
    z-index: 5;
}

.style3-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold-primary);
    background-color: rgba(7, 170, 65, 0.15);
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(7, 170, 65, 0.25);
}

.style3-title {
    font-size: 4.8rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #FFFFFF;
}

.style3-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-primary);
}

.style3-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.75);
}

/* Floating Glassmorphic Featured Product Card */
.style3-shop-card {
    position: absolute;
    bottom: 12%;
    right: 5%;
    width: 320px;
    background: rgba(11, 19, 43, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 20;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.style3-shop-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    background-color: rgba(7, 170, 65, 0.12);
    padding: 4px 10px;
    border-radius: 4px;
}

.shop-card-img {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.shop-card-info {
    flex-grow: 1;
}

.shop-card-link {
    font-size: 11px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 1px;
    transition: var(--transition-fast);
}

.shop-card-link:hover {
    color: var(--gold-primary) !important;
    border-bottom-color: var(--gold-primary);
}

/* Slider indicators & controls positioned bottom left */
.style3-slider-controls {
    position: absolute;
    bottom: 5%;
    left: 8.33%;
    /* Align with container offset */
    width: 350px;
    z-index: 20;
}

.style3-progress-bar-wrapper {
    height: 2px;
    border-radius: 2px;
    overflow: hidden;
}

.style3-progress-bar {
    height: 100%;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animated Editorial Scroll-Down Indicator */
.style3-scroll-down {
    position: absolute;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    pointer-events: none;
}

.style3-scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.style3-scroll-dot {
    width: 1px;
    height: 12px;
    background-color: var(--gold-primary);
    position: absolute;
    top: 0;
    left: 0;
    animation: scrollBouncing 2s infinite ease-in-out;
}

@keyframes scrollBouncing {
    0% {
        top: -12px;
        opacity: 0;
    }

    30% {
        top: 0;
        opacity: 1;
    }

    60% {
        top: 28px;
        opacity: 1;
    }

    100% {
        top: 40px;
        opacity: 0;
    }
}

/* Responsive Overrides Design 3 */
@media (max-width: 991.98px) {
    .header-style3 {
        background: rgba(11, 19, 43, 0.95);
        backdrop-filter: blur(12px);
    }

    .style3-logo {
        max-height: 32px;
    }

    .style3-title {
        font-size: 3.2rem;
    }

    .style3-shop-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px auto 0 auto;
        width: 90%;
    }

    .style3-slider-controls {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 30px auto;
        width: 90%;
        justify-content: space-between;
    }

    .hero-style3 {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 50px;
        display: flex;
        flex-direction: column;
    }

    .hero3ImageSwiper {
        height: 500px !important;
    }

    .style3-scroll-down {
        display: none;
    }
}

/* ==========================================================================
   Design 4: Asymmetrical Split Grid Showcase (index-style3.html)
   ========================================================================== */
.header-style4 {
    position: fixed;
    top: 24px;
    left: 5%;
    width: 90%;
    z-index: 1090;
    transition: all 0.4s ease-in-out;
}

.capsule-nav-container {
    width: 100%;
}

.capsule-nav {
    background: transparent;
    /* transparent by default at top */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid transparent;
    border-radius: 50px;
    padding: 12px 28px;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glassmorphic scrolled state applied by JS on scroll */
.header-style4.scrolled .capsule-nav {
    background: rgba(1, 8, 34, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    /* border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3); */
    padding: 10px 28px;
    /* subtle shrink on scroll */
}

.capsule-logo {
    max-height: 28px;
    transition: var(--transition-fast);
}

.capsule-logo:hover {
    opacity: 0.85;
}

.capsule-menu {
    margin: 0;
}

.capsule-link {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 6px 16px;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
}

.capsule-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--gold-primary);
    transition: var(--transition-fast);
    opacity: 0;
}

.capsule-link:hover {
    color: var(--white);
}

.capsule-link:hover::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

.capsule-utility-btn {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.capsule-utility-btn:hover {
    color: var(--gold-primary);
}

.capsule-utility-btn .badge {
    font-size: 8px;
    padding: 3px 5px;
    border-radius: 50%;
    top: 9px !important;
    right: -8px !important;
}

/* Design 4 Glassmorphic Capsule Mega Menu */
.style4-mega-trigger {
    position: static;
    /* let dropdown align relative to capsule nav container */
}

.style4-mega {
    position: fixed;
    top: 92px;
    left: 5%;
    width: 90%;
    background: rgba(1, 8, 34, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1080;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.style4-mega-trigger:hover .style4-mega {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Asymmetric Framed Gallery Hero Design 4 */
.hero-style4 {
    /* height: 100vh; */
    width: 100vw;
    background-color: #010822;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

/* Luxury Ambient Background Glows */
.hero4-bg-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(7, 170, 65, 0.12) 0%, rgba(7, 170, 65, 0) 70%);
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

.hero4-bg-glow-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(12, 20, 51, 0.6) 0%, rgba(1, 8, 34, 0) 75%);
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

/* Central Gallery Frame (offset right) */
.gallery-main-frame {
    position: absolute;
    top: 19%;
    right: 5%;
    width: 55%;
    height: 60%;
    z-index: 5;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.03);
    background: #0C1433;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.gallery-main-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.01));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
}

.gallery-main-frame:hover {
    border-color: rgba(7, 170, 65, 0.3);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(7, 170, 65, 0.15);
}

.hero4-image-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease;
    transform: scale(1);
}

.swiper-slide-active .hero4-image-bg {
    transform: scale(1.1);
}

/* Floating Content Block (offset left, overlapping the frame) */
.gallery-text-block {
    position: absolute;
    top: 24%;
    left: 8.33%;
    /* Align with capsule width bounds */
    width: 38%;
    z-index: 15;
    pointer-events: none;
}

.hero4-text-slide {
    opacity: 0 !important;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(20px);
}

.hero4-text-slide.swiper-slide-active {
    opacity: 1 !important;
    transform: translateY(0);
    pointer-events: auto;
    /* re-enable button clicks */
}

.hero4-title {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--white);
    margin-bottom: 24px;
}

.hero4-title em {
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--gold-primary);
    font-weight: 400;
    text-shadow: 0 0 40px rgba(7, 170, 65, 0.3);
}

.hero4-desc {
    font-size: 14px;
    line-height: 1.8;
    max-width: 440px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.2px;
    margin-bottom: 36px !important;
}

/* Premium Designer CTA Button */
.btn-premium-luxe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.btn-premium-luxe::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-premium-luxe::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gold-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -2;
    border-radius: 50px;
}

.btn-premium-luxe:hover {
    color: var(--white);
    border-color: var(--gold-primary);
    /* box-shadow: 0 10px 25px rgba(7, 170, 65, 0.3); */
    transform: translateY(-2px);
}

.btn-premium-luxe:hover::before {
    left: 100%;
}

.btn-premium-luxe:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-premium-luxe i {
    font-size: 14px;
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.btn-premium-luxe:hover i {
    transform: translateX(4px);
}

/* Timeline Controls Layout */
.hero4-controls-wrapper {
    position: absolute;
    bottom: 8%;
    left: 8.33%;
    width: 380px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero4-timeline-progress {
    flex-grow: 1;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.hero4-timeline-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 33.333%;
    /* Updated by JS dynamically */
    background-color: var(--gold-primary);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px rgba(7, 170, 65, 0.5);
}

.hero4-fraction {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    white-space: nowrap;
}

.hero4-nav-btns {
    display: flex;
    gap: 12px;
}

.style4-control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.style4-control-btn:hover {
    border-color: var(--gold-primary);
    background: rgba(7, 170, 65, 0.1);
    color: var(--white);
    box-shadow: 0 0 20px rgba(7, 170, 65, 0.2);
    transform: scale(1.08);
}

.style4-control-btn:active {
    transform: scale(0.95);
}

/* Frosted Glass Floating Detail Card */
.hero4-floating-card {
    position: absolute;
    bottom: 7%;
    right: 7%;
    width: 300px;
    background: rgba(1, 8, 34, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    z-index: 25;
    padding: 16px !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 0 15px rgba(255, 255, 255, 0.05);
    transform: translateY(0);
}

.gallery-main-frame:hover+.hero4-floating-card,
.hero4-floating-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(1, 8, 34, 0.6);
    border-color: rgba(7, 170, 65, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(7, 170, 65, 0.2);
}

.hero4-preview-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero4-floating-card h6 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

#hero4-floating-badge {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: rgba(7, 170, 65, 0.2) !important;
    border: 1px solid rgba(7, 170, 65, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
}

#hero4-floating-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-primary) !important;
}

/* Responsive adjustment for Design 4 Gallery */
@media (max-width: 991px) {
    .header-style4 {
        top: 15px;
    }

    .capsule-nav {
        padding: 10px 18px;
    }

    .hero-style4 {
        height: auto;
        min-height: 100vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 110px;
        padding-bottom: 40px;
        padding-left: 20px;
        padding-right: 20px;
        overflow: hidden;
    }

    .gallery-text-block {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin-bottom: 24px;
        pointer-events: auto;
    }

    .hero4-controls-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        margin: 10px 0 30px 0;
        padding-top: 0;
        gap: 16px;
    }

    .gallery-main-frame {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: 350px;
        margin: 0 auto 24px auto;
        border-radius: 16px;
    }

    .hero4-floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin: 0 auto;
        transform: none !important;
    }

    .hero4-title {
        font-size: 2.8rem;
        margin-bottom: 16px;
    }

    .hero4-desc {
        margin-bottom: 24px !important;
    }
}

/* Custom 10-column layout utility for Bootstrap Grid */
@media (min-width: 992px) {
    .row-cols-lg-10>* {
        flex: 0 0 auto;
        width: 10%;
    }
}

/* Mega menu drop-down scroll configuration */
.mega-menu .col-md-9,
.style3-mega .col-lg-9,
.style4-mega .col-lg-9 {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom scrollbar for mega menus to keep it elegant and premium */
.mega-menu .col-md-9::-webkit-scrollbar,
.style3-mega .col-lg-9::-webkit-scrollbar,
.style4-mega .col-lg-9::-webkit-scrollbar {
    width: 6px;
}

.mega-menu .col-md-9::-webkit-scrollbar-track,
.style3-mega .col-lg-9::-webkit-scrollbar-track,
.style4-mega .col-lg-9::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.mega-menu .col-md-9::-webkit-scrollbar-thumb,
.style3-mega .col-lg-9::-webkit-scrollbar-thumb,
.style4-mega .col-lg-9::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 3px;
}

.mega-menu .col-md-9::-webkit-scrollbar-thumb:hover,
.style3-mega .col-lg-9::-webkit-scrollbar-thumb:hover,
.style4-mega .col-lg-9::-webkit-scrollbar-thumb:hover {
    background: var(--gold-hover);
}

/* Dark theme Mobile Accordion styles for premium display (index-style2) */
#mobileMenuAccordionStyle2 {
    border-radius: 4px;
    overflow: hidden;
}

#mobileMenuAccordionStyle2 .accordion-item {
    background-color: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

#mobileMenuAccordionStyle2 .accordion-button {
    background-color: transparent !important;
    color: #ffffff !important;
    font-weight: 500;
    padding: 12px 16px;
}

#mobileMenuAccordionStyle2 .accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.04) !important;
    color: var(--gold-primary) !important;
    box-shadow: none !important;
}

#mobileMenuAccordionStyle2 .accordion-button::after {
    filter: invert(1);
}

#mobileMenuAccordionStyle2 .accordion-body {
    background-color: rgba(255, 255, 255, 0.02) !important;
    padding: 8px 12px !important;
}

#mobileMenuAccordionStyle2 .accordion-body .accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
}

/* Light theme mobile accordion refinements (index.html, index-style3, index-style4) */
#mobileMenuAccordion .accordion-button:not(.collapsed),
#mobileMenuAccordionStyle3 .accordion-button:not(.collapsed),
#mobileMenuAccordionStyle4 .accordion-button:not(.collapsed) {
    background-color: rgba(0, 0, 0, 0.02) !important;
    color: var(--gold-primary) !important;
    box-shadow: none !important;
}

#mobileMenuAccordion .accordion-body,
#mobileMenuAccordionStyle3 .accordion-body,
#mobileMenuAccordionStyle4 .accordion-body {
    padding: 8px 12px !important;
}

/* Active Navigation Category Style */
.capsule-links-wrapper .capsule-menu .capsule-item .capsule-link.active,
.capsule-links-wrapper .capsule-menu .capsule-item .capsule-link.active svg {
    color: var(--gold-primary) !important;
    stroke: var(--gold-primary) !important;
}

/* ==========================================================================
   Global Header & Navigation Style 4 (Light Editorial / Lovely Blooms Theme)
   ========================================================================== */
.header-style4 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-style4.scrolled {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    animation: slideDown 0.3s ease-out;
    background-color: #ffffff !important;
}

.top-header-style4 {
    background-color: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.menu-header-style4 {
    background-color: #fff !important;
    border-bottom: none !important;
    padding: 15px 0 25px 0;
    position: relative;
    z-index: 999;
    transition: all 0.3s ease;
}

.header-style4.scrolled .top-header-style4 {
    display: none !important;
}

.header-style4.scrolled .menu-header-style4 {
    background-color: #ffffff !important;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.header-style4.scrolled .capsule-menu {
    box-shadow: none !important;
    border: none !important;
    background-color: transparent !important;
    padding: 5px 30px !important;
}

.capsule-links-wrapper {
    width: 100% !important;
    max-width: 1240px !important;
}

.capsule-menu {
    background-color: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02) !important;
    padding: 12px 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
    transition: all 0.3s ease !important;
    list-style: none !important;
}

.capsule-item {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    flex-grow: 1 !important;
    justify-content: center !important;
}

.capsule-item:not(:last-child)::after {
    content: '' !important;
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 1px !important;
    height: 35px !important;
    background-color: rgba(0, 0, 0, 0.06) !important;
}

.search-bar-style4 .search-input-wrapper {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50rem;
    padding: 4px 5px 4px 22px;
    height: 52px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.search-bar-style4 .search-input-wrapper:focus-within {
    border-color: var(--gold-primary);
    box-shadow: 0 4px 18px rgba(7, 170, 65, 0.08);
}

.search-bar-style4 .search-icon {
    color: #8892b0;
    font-size: 18px;
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.search-bar-style4 .search-input {
    border: none !important;
    background: transparent !important;
    font-size: 14px !important;
    color: #2b303a !important;
    padding: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    flex-grow: 1;
}

.search-bar-style4 .search-input::placeholder {
    color: #8a8d91;
    font-weight: 400;
}

.search-bar-style4 .search-btn {
    background-color: var(--gold-primary) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50rem !important;
    height: 42px !important;
    padding: 0 32px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.search-bar-style4 .search-btn:hover {
    background-color: var(--gold-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(7, 170, 65, 0.15);
}

@media (max-width: 991.98px) {
    #mobileStyle4Menu {
        top: 135px !important;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    #mobileStyle4Menu {
        top: 80px !important;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.capsule-brand {
    font-family: 'Outfit', sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #2b303a !important;
    text-decoration: none !important;
    line-height: 1.15 !important;
    display: flex;
    flex-direction: column;
    text-align: left;
    width: auto !important;
    max-width: 130px !important;
}

.capsule-brand img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain;
}

.capsule-link {
    color: #2b303a !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    text-decoration: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
    padding: 4px 6px !important;
    gap: 4px !important;
    border: none !important;
    background: transparent !important;
}

.capsule-link svg {
    color: #2b303a !important;
    transition: stroke 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
}

.capsule-link:hover {
    color: var(--gold-primary) !important;
}

.capsule-link:hover svg {
    color: var(--gold-primary) !important;
    stroke: var(--gold-primary) !important;
    transform: translateY(-2px);
}

.header-action-btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    color: #2b303a !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: capitalize !important;
    font-family: 'Outfit', sans-serif !important;
    transition: all 0.2s ease !important;
    position: relative;
    background: transparent !important;
    border: none !important;
    padding: 4px 8px !important;
    gap: 5px !important;
}

.header-action-btn i {
    font-size: 22px !important;
    color: #2b303a !important;
    transition: color 0.2s ease !important;
    line-height: 1 !important;
}

.header-action-btn:hover {
    color: var(--gold-primary) !important;
}

.header-action-btn:hover i {
    color: var(--gold-primary) !important;
}

.header-action-btn .badge {
    position: absolute !important;
    top: 2px !important;
    right: 8px !important;
    background-color: var(--gold-primary) !important;
    color: #ffffff !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border: 1px solid #ffffff !important;
}

.style4-mega {
    position: absolute !important;
    top: 100% !important;
    left: 5% !important;
    width: 90% !important;
    background: #ffffff !important;
    border: 1px solid #eaeaea !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
    border-radius: 12px !important;
    z-index: 1090 !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transform: translateY(15px) !important;
    transition: all 0.3s ease !important;
}

.style4-mega-trigger {
    position: static !important;
}

.style4-mega-trigger:hover .style4-mega {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.style3-menu-heading {
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: var(--gold-primary) !important;
    border-bottom: 1px solid #f0f1f3 !important;
    padding-bottom: 6px !important;
    margin-bottom: 12px !important;
    letter-spacing: 0.5px !important;
}

.style3-menu-links li a {
    color: #4a505e !important;
    font-size: 13px !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    display: block;
    padding: 4px 0;
}

.style3-menu-links li a:hover {
    color: var(--gold-primary) !important;
    padding-left: 4px !important;
}

/* ==========================================================================
   Global Footer Layout 4 Styling
   ========================================================================== */
.style4-footer-newsletter-bar {
    background: #f6f2eb;
    padding: 40px 0;
    border-bottom: 1px solid rgba(7, 170, 65, 0.08);
    border-top: 1px solid rgba(7, 170, 65, 0.1);
}

.style4-newsletter-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: var(--dark-primary) !important;
    margin-bottom: 4px;
}

.style4-newsletter-desc {
    font-size: 0.88rem;
    color: #4a5568;
    margin: 0;
}

.style4-newsletter-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 4px;
    max-width: 500px;
    width: 100%;
}

.style4-newsletter-input-wrapper {
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding-left: 12px;
}

.style4-newsletter-input-wrapper i {
    color: #a0aec0;
    font-size: 1.1rem;
}

.style4-newsletter-input-field {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 8px 12px !important;
    font-size: 0.9rem !important;
    width: 100%;
    outline: none;
}

.style4-newsletter-submit-btn {
    background: var(--gold-primary) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 24px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease !important;
}

.style4-newsletter-submit-btn:hover {
    background-color: var(--gold-hover) !important;
}

.style4-footer-main {
    background: radial-gradient(circle at top right, #0a1128 0%, #010822 100%);
    padding: 80px 0 0 0;
    color: #cbd5e1;
}

.style4-footer-brand-col {
    text-align: left;
}

.style4-footer-logo {
    max-height: 60px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.style4-trustpilot-card {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.style4-trustpilot-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif !important;
}

.style4-trustpilot-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.style4-trustpilot-star-box {
    width: 22px;
    height: 22px;
    background: #00b67a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    border-radius: 2px;
}

.style4-trustpilot-star-box.empty {
    background: rgba(255, 255, 255, 0.2);
}

.style4-trustpilot-text {
    font-size: 0.8rem;
    color: #a0aec0;
    font-weight: 500;
}

.style4-footer-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: var(--gold-primary) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.style4-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.style4-footer-links li {
    margin-bottom: 10px;
}

.style4-footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.style4-footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.style4-footer-features {
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    margin-top: 40px;
}

.style4-footer-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.style4-footer-feature-icon {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.style4-footer-feature-item:hover .style4-footer-feature-icon {
    transform: scale(1.15);
}

.style4-footer-feature-icon.icon-blue {
    color: #60a5fa;
}

.style4-footer-feature-icon.icon-green {
    color: #34d399;
}

.style4-footer-feature-icon.icon-rose {
    color: #fb7185;
}

.style4-footer-feature-icon.icon-yellow {
    color: #fbbf24;
}

.style4-footer-feature-text {
    text-align: left;
}

.style4-footer-feature-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.style4-footer-feature-subtitle {
    font-size: 0.8rem;
    color: #a0aec0;
    margin: 0;
}

.style4-footer-bottom {
    background: transparent;
    padding: 25px 0;
}

.style4-country-selector {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.style4-country-selector:hover {
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.08);
}

.style4-country-selector img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.style4-copyright {
    font-size: 0.82rem;
    color: #64748b;
}

.style4-payment-icons {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 1.8rem;
}

.style4-payment-icons i.visa-color {
    color: #3b82f6;
}

.style4-payment-icons i.mastercard-color {
    color: #ea580c;
}

.style4-payment-icons i.paypal-color {
    color: #0284c7;
}

.style4-payment-icons i.apple-color {
    color: #ffffff;
}

.style4-payment-icons i.google-color {
    color: #10b981;
}

.style4-payment-icons i {
    transition: transform 0.2s ease, filter 0.2s ease;
    cursor: pointer;
    filter: brightness(0.9);
}

.style4-payment-icons i:hover {
    transform: scale(1.12);
    filter: brightness(1.1);
}