/* ==========================================================================
   NEXTGEN - LUXURY DESIGN SYSTEM
   ========================================================================== */


@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap');
:root {
    /* Color System */
    --primary-color: #000000;
    --secondary-color: #000000;
    --luxury-gold: #000000;
    --light-gold: #333333;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --dark-bg: #000000;
    --dark-text: #212529;
    --muted-text: #6C757D;
    
    /* Typography */
    --font-heading: 'Montserrat', system-ui, sans-serif;
    --font-body: 'Montserrat', system-ui, sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Base resets & styles */
body {
    font-family: 'Montserrat', system-ui, sans-serif !important;
    font-weight: 300 !important;
    letter-spacing: 0.02em;
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

*:not(.fa):not(.fas):not(.far):not(.fab):not(.fa-solid):not(.fa-brands):not(.fa-regular):not([class*="fa-"]) {
    font-family: 'Montserrat', system-ui, sans-serif !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 300 !important;
    letter-spacing: 0.05em !important;
}

p, span, a, li, td, th, label, input, button, div {
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--primary-color);
    font-weight: 100;
    letter-spacing: 0.04em;
}

.text-gold {
    color: var(--luxury-gold) !important;
}

.bg-primary-dark {
    background-color: var(--primary-color) !important;
}

.bg-secondary-dark {
    background-color: var(--secondary-color) !important;
}

/* ==========================================================================
   TWO-TIER BRAND HEADER
   ========================================================================== */
.header-main-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

/* 2.1 Top Bar styling (solid black with vertical borders) */
.header-main-wrap .top-bar {
    background-color: #000000;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.top-bar-items-left, .top-bar-items-right {
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar-item {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    height: 36px;
}

.top-bar-item a, .top-bar-item .dropdown-toggle {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.top-bar-item a:hover, .top-bar-item .dropdown-toggle:hover {
    color: var(--luxury-gold) !important;
}

.top-bar-item i {
    font-size: 12px;
}

/* 2.2 Main Navbar styling */
.navbar-luxury {
    background: transparent;
    padding: 16px 0;
    transition: var(--transition-smooth);
    border-bottom: none;
}

.header-main-wrap.scrolled .top-bar {
    display: none;
}

.header-main-wrap.scrolled .navbar-luxury {
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(15px);
    padding: 10px 0;
    border-bottom: none;
}

/* Logo left */
.navbar-brand-left {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo-svg path {
    transition: fill var(--transition-fast);
}

.brand-logo-svg:hover path {
    fill: var(--luxury-gold);
}

.brand-logo-svg text {
    transition: fill var(--transition-fast);
}

.brand-logo-svg:hover text {
    fill: var(--luxury-gold);
}

/* Nav links: case matches "Bath", "Light", "Jaquar World" */
.navbar-luxury .nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.8px;
    text-transform: none;
    padding: 8px 16px !important;
    transition: var(--transition-smooth);
    position: relative;
}

.navbar-luxury .nav-link:hover,
.navbar-luxury .nav-link.active {
    color: var(--luxury-gold) !important;
}

.navbar-luxury .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background-color: var(--luxury-gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

/* Center nav links */
.navbar-center-links {
    gap: 4px;
}

/* Search icon button */
.navbar-search-icon-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    cursor: pointer;
    padding: 6px 8px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.navbar-search-icon-btn:hover {
    color: var(--white);
}

/* GET IN TOUCH button */
.btn-get-in-touch {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 9px 22px;
    text-decoration: none;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-get-in-touch:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.navbar-right-actions {
    flex-shrink: 0;
}

/* ==========================================================================
   MULTI-LEVEL NAVIGATION MENU
   ========================================================================== */
.multi-level-dropdown {
    position: relative;
}

.dropdown-menu-list, .sub-menu-list, .sub-sub-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    z-index: 1000;
    display: none;
    border: 1px solid #eee;
}

.dropdown-menu-list {
    top: 100%;
    left: 0;
}

.sub-menu-list {
    top: -1px;
    left: 100%;
}

.sub-sub-menu-list {
    top: -1px;
    left: 100%;
}

.multi-level-dropdown:hover > .dropdown-menu-list {
    display: block;
}

.dropdown-item-has-children {
    position: relative;
}

.dropdown-item-has-children:hover > .sub-menu-list,
.sub-has-children:hover > .sub-sub-menu-list {
    display: block;
}

.dropdown-menu-list li {
    border-bottom: 1px solid #f5f5f5;
}

.dropdown-menu-list li:last-child {
    border-bottom: none;
}

.dropdown-menu-list a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 400;
    transition: all 0.2s ease;
}

.dropdown-menu-list a:hover {
    background: #f8f9fa;
    color: var(--luxury-gold);
}

.dropdown-menu-list a i.fa-caret-right {
    font-size: 12px;
    color: #999;
}

/* ==========================================================================
   HERO VIDEO SECTION
   ========================================================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000000;
}

.hero-slider-section .swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}

.hero-slide-content {
    position: absolute;
    bottom: 12%;
    left: 0;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
}

.hero-slide-content h1 {
    font-size: 42px;
    font-family: var(--font-body);
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-slide-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    font-weight: 300;
}

/* ==========================================================================
   BUTTONS (LUXURY GOLD)
   ========================================================================== */
.btn-luxury {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--luxury-gold);
    padding: 14px 30px;
    border-radius: 0;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--luxury-gold);
    transition: var(--transition-smooth);
    z-index: -1;
}

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

.btn-luxury:hover::before {
    width: 100%;
}

.btn-luxury-solid {
    background-color: var(--luxury-gold);
    color: #000000;
    border: 1px solid var(--luxury-gold);
}

.btn-luxury-solid:hover {
    background-color: transparent;
    color: var(--white) !important;
}

.btn-luxury-solid::before {
    background-color: var(--primary-color);
}

/* ==========================================================================
   PRODUCT CATEGORY SHOWCASE
   ========================================================================== */
.section-padding {
    padding: 100px 0;
}

.section-title-wrap {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--luxury-gold);
    margin-bottom: 10px;
    display: inline-block;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--luxury-gold);
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Category Cards */
.category-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
    transition: var(--transition-smooth);
}

.category-card-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 2;
    color: var(--white);
    transition: var(--transition-smooth);
}

.category-card h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 500;
}

.category-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    opacity: 0;
    max-height: 0;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.category-card:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.95) 100%);
}

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

.category-card:hover p {
    opacity: 1;
    max-height: 80px;
    margin-bottom: 20px;
}

/* ==========================================================================
   PRODUCT GRID & LISTINGS
   ========================================================================== */
.product-grid-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    position: relative;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-grid-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.product-card-img-wrap {
    position: relative;
    padding-bottom: 100%; /* square ratio */
    overflow: hidden;
    background: var(--light-bg);
}

.product-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: var(--transition-smooth);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--luxury-gold);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 12px;
    letter-spacing: 1.5px;
    z-index: 2;
}

.product-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--luxury-gold);
    margin-bottom: 8px;
    font-weight: 500;
}

.product-card-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
    line-height: 1.3;
}

.product-card-title a {
    color: inherit;
    text-decoration: none;
}

.product-card-desc {
    font-size: 13.5px;
    color: var(--muted-text);
    margin-bottom: 20px;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */
.product-gallery-main {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--light-bg);
    overflow: hidden;
    position: relative;
    padding-bottom: 100%;
    margin-bottom: 15px;
}

.product-gallery-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 40px;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
}

.gallery-thumb-item {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--light-bg);
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-thumb-item.active,
.gallery-thumb-item:hover {
    border-color: var(--luxury-gold);
}

.gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.product-details-title {
    font-size: 46px;
    margin-bottom: 5px;
}

.product-details-sku {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted-text);
    margin-bottom: 25px;
    display: block;
}

.product-spec-table {
    width: 100%;
    margin-top: 30px;
}

.product-spec-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
}

.product-spec-table tr td:first-child {
    font-weight: 600;
    color: var(--primary-color);
    width: 35%;
}

/* Tabs customizations */
.nav-tabs-luxury {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.nav-tabs-luxury .nav-link {
    border: none;
    background: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    color: var(--muted-text);
    padding: 15px 30px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-tabs-luxury .nav-link:hover,
.nav-tabs-luxury .nav-link.active {
    color: var(--primary-color);
}

.nav-tabs-luxury .nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--luxury-gold);
    transition: var(--transition-smooth);
}

.nav-tabs-luxury .nav-link.active::after {
    width: 100%;
}

/* ==========================================================================
   DEALER LOCATOR
   ========================================================================== */
.dealer-locator-container {
    height: 600px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.dealer-list-sidebar {
    height: 100%;
    overflow-y: auto;
    background: var(--white);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.dealer-item-card {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dealer-item-card:hover,
.dealer-item-card.active {
    background: var(--light-bg);
    border-left: 4px solid var(--luxury-gold);
}

.dealer-item-card h5 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-color);
}

/* ==========================================================================
   ADMIN PORTAL
   ========================================================================== */
.admin-sidebar {
    background: var(--primary-color);
    min-height: 100vh;
    color: var(--white);
    padding: 30px 0;
    border-right: 1px solid rgba(212, 175, 55, 0.15);
}

.admin-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--white);
    padding: 0 25px;
    margin-bottom: 40px;
}

.admin-logo span {
    color: var(--luxury-gold);
}

.admin-nav {
    list-style: none;
    padding: 0;
}

.admin-nav-item a {
    display: flex;
    align-items: center;
    padding: 14px 25px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

.admin-nav-item a i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.admin-nav-item a:hover,
.admin-nav-item.active a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--luxury-gold);
}

.admin-header {
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-body-content {
    padding: 40px;
    background-color: var(--light-bg);
    min-height: calc(100vh - 80px);
}

.admin-card {
    background: var(--white);
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    padding: 30px;
    margin-bottom: 30px;
}

/* ==========================================================================
   FOOTER — AGUUA STYLE
   ========================================================================== */
.footer-aguua {
    background: #000000 !important;
    background-color: #000000 !important;
    padding: 28px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-aguua-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    padding-bottom: 20px;
    flex-wrap: wrap;
}

/* Left: address + socials */
.footer-aguua-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-aguua-address {
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.8px;
}

.footer-aguua-address i {
    color: rgba(255, 255, 255, 0.5);
    
}

.footer-aguua-socials {
    display: flex;
    gap: 18px;
}

.footer-aguua-socials a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-aguua-socials a:hover {
    color: var(--white);
}

/* Right: newsletter */
.footer-aguua-newsletter {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.footer-aguua-newsletter-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    text-transform: uppercase;
}

.footer-aguua-form {
    display: flex;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-aguua-form input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 12.5px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    padding: 0 18px;
    width: 260px;
}

.footer-aguua-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-aguua-form button {
    background: var(--white);
    color: #000000;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.footer-aguua-form button:hover {
    background: var(--luxury-gold);
    color: #000000;
}

/* Bottom bar */
.footer-aguua-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-aguua-copy {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
}

.footer-aguua-legal {
    display: flex;
    gap: 28px;
    align-items: center;
}

.footer-aguua-legal a {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: var(--transition-fast);
    letter-spacing: 0.3px;
}

.footer-aguua-legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 767px) {
    .footer-aguua-top {
        flex-direction: column;
        gap: 28px;
    }

    .footer-aguua-newsletter {
        align-items: flex-start;
        width: 100%;
    }

    .footer-aguua-form {
        width: 100%;
    }

    .footer-aguua-form input {
        width: 100%;
        flex: 1;
    }

    .footer-aguua-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer-aguua-legal {
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* ==========================================================================
   SOCIAL REELS SECTION — AGUUA STYLE
   ========================================================================== */
.social-reels-section {
    background: #fff;
    padding: 20px 0;
    overflow: hidden;
}

.social-reels-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 220px;
    overflow: hidden;

    background: #fff !important;
}

.social-reels-left {
    flex: 0 0 280px;
    width: 280px;
    padding: 0 40px 0 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-shrink: 0;

    background: #fff !important;
}

.social-reels-heading {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #000;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin: 0;
}

.social-reels-icons {
    display: flex;
    gap: 12px;
}

.social-reels-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.7);
    font-size: 11px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-reels-icons a:hover {
    border-color: var(--luxury-gold);
    color: var(--luxury-gold);
}

.social-reels-right {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 8px;
    height: 100%;
    align-items: center;
    overflow: hidden;
    padding: 16px 16px 16px 0;
}

.reel-item {
    position: relative;
    flex: 0 0 auto;
    width: calc((100vw - 280px - 16px - 8px * 4) / 5);
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #222;
}

.reel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-insta-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    pointer-events: none;
}

@media (max-width: 991px) {
    .social-reels-inner {
        flex-direction: column;
        height: auto;
    }

    .social-reels-left {
        flex: none;
        width: 100%;
        padding: 32px 24px 20px 24px;
    }

    .social-reels-right {
        width: 100%;
        overflow-x: auto;
        padding: 0 16px 24px 16px;
        height: 220px;
    }

    .reel-item {
        flex: 0 0 120px;
        width: 120px;
        height: 100%;
    }
}

/* ==========================================================================
   BUILT FOR PERFORMANCE — CLEAN CARDS
   ========================================================================== */
.perf-video-wrap {
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
    aspect-ratio: 9/11;
    margin-bottom: 10px;
}

.perf-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.perf-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin: 0;
    letter-spacing: 0.5px;
}

.performance-video{
    width:100%;
    height:225px;
    object-fit:cover;
    cursor:pointer;
    border-radius:10px;
}

.perf-video-wrap{
    overflow:hidden;
    border-radius:10px;
}

/* ==========================================================================
   PREMIUM FABRICS — COMPACT OVERLAY CARDS
   ========================================================================== */
.pf-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 260px;
}

.pf-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pf-card:hover img {
    transform: scale(1.04);
}

.pf-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
    z-index: 1;
}

.pf-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    z-index: 2;
}

.pf-card-body h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 6px;
}

.pf-card-body a {
    color: rgba(255,255,255,0.75);
    font-size: 12.5px;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.pf-card-body a:hover {
    color: var(--luxury-gold);
}

/* Footer multiple addresses */
.footer-aguua-addresses {
    display: flex;
    flex-direction: column;
    gap: 6px;
}


/* Footer contact info */
.footer-contact-info {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.8px;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.footer-contact-info a:hover {
    color: var(--white);
}

.footer-contact-info i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}



/* ==========================================================================
   CERTIFICATIONS & STATS — COMPACT WHITE
   ========================================================================== */
.cert-chip {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 12px 10px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #333;
    transition: var(--transition-fast);
}

.cert-chip:hover {
    border-color: var(--luxury-gold);
    color: var(--luxury-gold);
}

.stat-chip{
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 12px;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-chip:last-child {
    border-right: none;
}

.stat-num{
    color:#ffffff !important;
}

.stat-lbl{
    color:#ffffff !important;
}

/* Built for Performance — reduce padding */
.section-padding {
    padding: 32px 0;
}

/* ==========================================================================
   ANIMATION KEYFRAMES
   ========================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Collection card titles fix */
.category-card-title,
.collection-title,
.collection-name,
.category-name {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    line-height: 1.4 !important;
    margin-top: 10px !important;
    color: #777 !important;
}

/* ==========================================================================
   BLACK & WHITE THEME CONTRAST OVERRIDES
   ========================================================================== */
.top-bar-item a:hover, .top-bar-item .dropdown-toggle:hover {
    color: #ffffff !important;
}
.navbar-luxury .nav-link:hover, .navbar-luxury .nav-link.active {
    color: #ffffff !important;
}
.navbar-luxury .nav-link::after {
    background-color: #ffffff !important;
}
.brand-logo-svg:hover path {
    fill: #ffffff !important;
}
.brand-logo-svg:hover text {
    fill: #ffffff !important;
}
.footer-aguua-form button:hover {
    background: #ffffff !important;
    color: #000000 !important;
}
.footer-aguua-addresses p {
    color: rgba(255, 255, 255, 0.7) !important;
}
.social-reels-heading {
    color: #000000 !important;
}
.product-badge {
    color: #ffffff !important;
    background: #000000 !important;
}
.btn-luxury {
    color: #000000 !important;
    border-color: #000000 !important;
}
.btn-luxury:hover {
    color: #ffffff !important;
    border-color: #000000 !important;
}
.btn-luxury-solid {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}
.btn-luxury-solid:hover {
    background-color: transparent !important;
    color: #000000 !important;
    border-color: #000000 !important;
}
.stat-num, .stat-lbl {
    color: #ffffff !important;
}
.navbar-luxury .dropdown-menu-list a:hover {
    color: #000000 !important;
    background: #f8f9fa !important;
}

/* ==========================================================================
   CATEGORY SHOWCASE HOVER & HEIGHT ADJUSTMENTS
   ========================================================================== */
.category-showcase-card img {
    filter: grayscale(100%);
    transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.category-showcase-card:hover img {
    filter: grayscale(0%) !important;
    transform: scale(1.05) !important;
}

/* Custom Utility Helpers */
.font-weight-600 {
    font-weight: 600 !important;
}





/* Fix for Navbar Logo Size */
.site-logo-img {
    max-height: 45px;
    width: auto;
}


/* Fix for Category Showcase Cards */
.category-showcase-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.category-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-showcase-card .card-label {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.category-showcase-card .card-label h3 {
    color: #ffffff !important;
    margin: 0;
    font-size: 24px;
    font-weight: 400;
}

.category-showcase-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
    pointer-events: none;
}

/* Fix for invisible menu on internal pages */
.navbar-internal {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navbar-internal .nav-link {
    color: #333333 !important;
}
.navbar-internal .nav-link:hover,
.navbar-internal .nav-link.active {
    color: var(--luxury-gold) !important;
}
.navbar-internal .navbar-search-icon-btn i {
    color: #333333 !important;
}
.navbar-internal .navbar-toggler i {
    color: #333333 !important;
}
.navbar-internal .navbar-toggler {
    color: #333333 !important;
}

/* ==========================================================================
   PERFORMANCE & RESPONSIVENESS OVERRIDES
   ========================================================================== */

/* Prevent horizontal overflow completely */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Fluid Typography Defaults */
h1, .h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2, .h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3, .h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4, .h4 { font-size: clamp(1.25rem, 2.5vw, 1.8rem); }
h5, .h5 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h6, .h6 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

/* Accessible Touch Targets for Mobile */
@media (max-width: 768px) {
    button, 
    .btn,
    .nav-link,
    .footer-contact-info a,
    .footer-aguua-legal a,
    .dropdown-menu-list a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .navbar-toggler {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-right-column {
        align-items: flex-start !important;
        text-align: left !important;
    }
    .footer-contact-info {
        align-items: flex-start !important;
    }
    .footer-aguua-newsletter {
        align-items: flex-start !important;
    }
    .footer-aguua-form {
        justify-content: flex-start !important;
    }
}
