/* assets/css/main.css */
:root {
    --clr-bg: #ebebe5;
    --clr-dark: #212122;
    --clr-primary: #A67350;
    --clr-light: #ffffff;
    --clr-gray: #6b6b6b;
    --clr-badge-bg: rgba(255, 255, 255, 0.4);

    --font-primary: 'Inter', sans-serif;
    --copper-gradient: linear-gradient(90deg, #BA8D6D 0.3%, #EDC2A0 40.54%, #DEA585 71.57%, #BA8566 101.14%);

    /*--fs-h1: clamp(3rem, 8vw, 8.6rem);*/
    --fs-h1: clamp(3rem, 7vw, 8.6rem);

    --fs-h2: clamp(1.2rem, 3vw, 1.8rem);
    --fs-body: 1rem;
    --fs-small: 0.875rem;

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    --radius-pill: 50px;
    --radius-badge: 30px;
}

body {
    background-color: var(--clr-bg);
    font-family: var(--font-primary);
    color: var(--clr-dark);
    margin: 0;
    padding: 0;
}

main {
    overflow-x: clip;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--fw-bold);
    margin-bottom: 0.5rem;
}

/* Navbar Custom */
.custom-navbar {
    background-color: transparent;
    z-index: 1030;
    position: fixed;
    top: 1.3rem;
    width: 100%;
    pointer-events: none;
}

.custom-navbar .container {
    max-width: 1350px;
    background: var(--copper-gradient, #BA8D6D);
    border-radius: var(--radius-pill);
    padding-bottom: 4px;
    pointer-events: auto;
}

.navbar-inner {
    background-color: var(--clr-dark);
    border-radius: var(--radius-pill);
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.brand-logo {
    height: 35px;
    /* Adjust as needed */
    width: auto;
}

.custom-navbar .navbar-nav .nav-link {
    color: #c0c0c0;
    font-size: var(--fs-small);
    font-weight: var(--fw-regular);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link-wrapper .nav-link {
    padding-right: 0 !important;
}

.custom-navbar .navbar-nav .nav-link:hover,
.custom-navbar .navbar-nav .nav-link.active {
    color: var(--clr-light);
}

/* .custom-navbar .navbar-nav .nav-link.active {
    border-bottom: 2px solid var(--clr-primary);
} */

/* Subcategories Mega Dropdown Navigation */
.custom-navbar .navbar-nav .nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.custom-navbar .nav-link-wrapper {
    display: flex;
    align-items: center;
    gap: 1px;
    margin: 0 12px;
}

.custom-navbar .nav-dropdown-toggle {
    background: transparent;
    border: none;
    padding: 0 4px 0 0;
    margin: 0;
    color: #8e8e8e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-navbar .nav-dropdown-toggle .material-symbols-outlined {
    font-size: 18px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.custom-navbar .nav-item.dropdown:hover .nav-dropdown-toggle .material-symbols-outlined {
    transform: rotate(180deg);
    color: var(--clr-primary);
}

/* Mega Dropdown Container */
.nav-mega-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1050;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.25s ease;
}

/* Hover bridge to keep dropdown open */
.nav-mega-dropdown::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 0;
    right: 0;
    height: 20px;
}

.nav-mega-inner {
    background: rgba(18, 18, 18, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid var(--clr-primary, #EBB38B);
    border-radius: 18px;
    padding: 1.4rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.85), 
                0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Mega Dropdown Sizes */
.nav-mega-dropdown.mega-wide {
    width: min(860px, calc(100vw - 40px));
}

.nav-mega-dropdown.mega-medium {
    width: min(520px, calc(100vw - 40px));
}

.nav-mega-dropdown.mega-compact {
    width: min(320px, calc(100vw - 40px));
}

/* Mega Dropdown Header */
.nav-mega-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 0.9rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-mega-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-mega-badge {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-transform: uppercase;
}

.nav-mega-count {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--clr-primary, #EBB38B);
    background: rgba(235, 179, 139, 0.12);
    border: 1px solid rgba(235, 179, 139, 0.25);
    padding: 2px 8px;
    border-radius: 20px;
}

.nav-mega-view-all {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #d1d1d1;
    text-decoration: none;
    transition: all 0.25s ease;
    padding: 4px 8px;
    border-radius: 6px;
}

.nav-mega-view-all .material-symbols-outlined {
    font-size: 15px;
    transition: transform 0.25s ease;
}

.nav-mega-view-all:hover {
    color: var(--clr-primary, #EBB38B);
    background: rgba(255, 255, 255, 0.05);
}

.nav-mega-view-all:hover .material-symbols-outlined {
    transform: translateX(3px);
}

/* Grid Layouts */
.nav-subcat-grid {
    display: grid;
    gap: 8px;
}

.nav-subcat-grid.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.nav-subcat-grid.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.nav-subcat-grid.grid-cols-1 {
    grid-template-columns: 1fr;
}

/* Subcategory Card */
.nav-subcat-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-subcat-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--clr-primary, #EBB38B);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-subcat-icon-box .material-symbols-outlined {
    font-size: 18px;
    transition: transform 0.25s ease;
}

.nav-subcat-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.nav-subcat-name {
    font-size: 0.83rem;
    font-weight: 500;
    color: #dedede;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.25s ease;
}

/* Card Hover Effects */
.nav-subcat-card:hover {
    background: rgba(235, 179, 139, 0.1);
    border-color: rgba(235, 179, 139, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-subcat-card:hover .nav-subcat-icon-box {
    background: linear-gradient(135deg, #EBB38B 0%, #DA9067 100%);
    color: #121212;
    box-shadow: 0 0 10px rgba(235, 179, 139, 0.4);
}

.nav-subcat-card:hover .nav-subcat-icon-box .material-symbols-outlined {
    transform: scale(1.1);
}

.nav-subcat-card:hover .nav-subcat-name {
    color: #ffffff;
    font-weight: 600;
}

/* Desktop Hover & Focus Triggers */
@media (min-width: 992px) {
    .custom-navbar .nav-item.dropdown:hover > .nav-mega-dropdown,
    .custom-navbar .nav-item.dropdown:focus-within > .nav-mega-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
}

/* Mobile Offcanvas Styles */
@media (max-width: 991.98px) {
    .custom-navbar .navbar-nav .nav-item {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .custom-navbar .nav-link-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .custom-navbar .nav-dropdown-toggle {
        padding: 8px 12px;
        color: #ffffff;
    }

    .nav-mega-dropdown {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        width: 100% !important;
        display: none;
        margin-top: 8px;
    }

    .nav-mega-dropdown.mobile-open {
        display: block;
    }

    .nav-mega-inner {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
    }

    .nav-subcat-grid.grid-cols-4,
    .nav-subcat-grid.grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .nav-subcat-card {
        padding: 8px 10px;
    }
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-icon {
    color: var(--clr-light);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.search-icon:hover {
    color: var(--clr-primary);
}

/* Buttons */
.btn {
    font-family: var(--font-primary);
    font-weight: var(--fw-medium);
    border-radius: var(--radius-pill);
    padding: 0.75rem 1.75rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--fs-body);
}

.btn-primary-custom {
    background: linear-gradient(88deg, #EBB38B -2.54%, #F5C39E 38.98%, #FFD4B1 104.85%);
    color: var(--clr-dark);
    border: none;
    font-weight: var(--fw-semibold);
}

.btn-primary-custom:hover {
    background-color: #be845c;
    color: var(--clr-dark);
}

.btn-dark-custom {
    background-color: var(--clr-dark);
    color: var(--clr-light);
    /* border: none; */
}

.btn-dark-custom:hover {
    background-color: #111;
    color: var(--clr-light);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--clr-dark);
    border: 1px solid var(--clr-dark);
}

.btn-outline-custom:hover {
    background-color: var(--clr-dark);
    color: var(--clr-light);
}

/* Hero Section */
.hero-section {
    padding-top: 6.5rem;
    height: calc(100vh - 65px);
    /* max-height: 800px; */
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, rgba(233, 228, 216, 0.20) 50%, rgba(238, 211, 181, 0.20) 100%);
    background: url('../images/index/hero-bg.svg') no-repeat center / cover;
    overflow: clip;
}

.hero-section .right-hero-img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    height: 82%;
    max-height: 600px;
    pointer-events: none;
}

.hero-text-col {
    padding-right: 2rem;
    z-index: 2;
}

.hero-title {
    font-size: var(--fs-h1);
    line-height: normal;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #A67350 0.3%, #CF9465 40.54%, #DA9067 71.57%, #C77240 101.14%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: var(--fs-h2);
    color: var(--clr-dark);
    margin-bottom: 0.5rem;
}

.hero-desc {
    font-size: var(--fs-body);
    color: var(--clr-gray);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.50);
    padding: 0.5rem;
    border-radius: var(--radius-badge);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: var(--clr-dark);
}

.badge-custom img {
    height: 18px;
    width: 18px;
    object-fit: contain;
}

.hero-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-products-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Marquee Section */
.marquee-section {
    background: var(--copper-gradient);
    color: var(--clr-light);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 0.2rem 0;
}

.marquee-content {
    background-color: var(--clr-dark);
    display: inline-flex;
    align-items: center;
    animation: marquee 40s linear infinite;
    padding: 1.2rem 0;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    font-size: var(--fs-small);
    font-weight: var(--fw-regular);
    padding: 0 2rem;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    color: #e0e0e0;
    position: relative;
}

.marquee-content span::before {
    content: url('../images/index/asterisk.svg');
    position: absolute;
    top: 58%;
    left: 0;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

.marquee-content span.material-symbols-outlined {
    font-size: 1.2rem;
    color: var(--clr-primary);
    margin: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .custom-navbar .container {
        border-radius: 20px;
    }

    .navbar-inner {
        border-radius: 20px;
        padding: 0.5rem 1.5rem;
    }

    .navbar-actions {
        margin-top: 1rem;
        width: 100%;
        justify-content: flex-start;
    }

    .custom-navbar .navbar-nav {
        text-align: left;
        margin-top: 1rem;
        width: 100%;
    }

    .navbar-collapse {
        width: 100%;
    }

    .hero-section {
        text-align: center;
        padding-top: 9rem;
        min-height: auto;
    }

    .hero-text-col {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .custom-navbar .navbar-nav .nav-link {
        padding: 1rem 1.2rem !important;
    }
}

/* Explore Section */

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--clr-dark);
    font-weight: var(--fw-bold);
}

.explore-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.category-card {
    position: relative;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    background-color: #2b2b2b;
    text-decoration: none;
    min-height: 250px;
}

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

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

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    color: var(--clr-light);
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.dist-portfolio-section .category-card-content {
    pointer-events: auto;
    flex-direction: column;
    align-items: flex-start;
}

.category-card-title {
    font-size: 1.25rem;
    font-weight: var(--fw-medium);
    display: flex;
    align-items: center;
    color: var(--clr-light);
    margin: 0;
}

.category-card-title .material-symbols-outlined {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-card-title .material-symbols-outlined {
    transform: translateX(5px);
}

@media (min-width: 992px) {
    .explore-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 250px);
    }

    .explore-card-1 {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }

    .explore-card-2 {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }

    .explore-card-3 {
        grid-column: 4 / 5;
        grid-row: 1 / 2;
    }

    .explore-card-4 {
        grid-column: 3 / 5;
        grid-row: 2 / 3;
    }
}

/* Comfort Section */
.comfort-section {
    background-color: var(--clr-dark);
}

/* Custom Tabs */
.custom-tabs {
    gap: 0.5rem;
}

.custom-tabs .nav-link {
    color: var(--clr-light);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-pill);
    padding: 0.5rem 1.25rem;
    font-size: var(--fs-small);
    font-weight: var(--fw-regular);
    background-color: transparent;
    transition: all 0.3s ease;
}

.custom-tabs .nav-link:hover {
    border-color: var(--clr-light);
}

.custom-tabs .nav-link.active {
    background-color: var(--clr-primary);
    color: var(--clr-light);
    border-color: var(--clr-primary);
}

/* Typography */
.comfort-title {
    color: var(--clr-light);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: var(--fw-bold);
}

.comfort-desc {
    color: #E7E7E5;
    font-size: var(--fs-body);
}

/* Swiper Nav Controls */
.swiper-controls-wrapper {
    position: relative;
}

.swiper-nav-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--clr-light);
    width: 60px;
    height: 38px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-nav-btn:hover {
    border-color: var(--clr-light);
}

.swiper-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-nav-btn .material-symbols-outlined {
    font-size: 1.25rem;
}

/* Swiper Pagination Override */
.swiper-pagination.swiper-pagination-bullets {
    position: static;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    width: auto;
}

.swiper-pagination .swiper-pagination-bullet {
    background: #555;
    opacity: 1;
    width: 8px;
    height: 8px;
    margin: 0 !important;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background: var(--clr-primary);
    transform: scale(1.2);
}

/* Comfort Card Specifics */
.comfort-card {
    height: 460px;
}

.section-desc {
    color: #212122;
    font-size: var(--fs-body);
}

/* Light theme for swiper controls */
.everyday-section .swiper-nav-btn {
    border-color: #dcdcdc;
    color: var(--clr-dark);
}

.everyday-section .swiper-nav-btn:hover {
    border-color: var(--clr-dark);
}

.everyday-pagination .swiper-pagination-bullet {
    background: #d1d1d1;
}

.everyday-pagination .swiper-pagination-bullet-active {
    background: var(--clr-primary);
}

/* Product Card */
.product-card {
    background-color: var(--clr-light);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.product-card-img-wrapper {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 12px;
}

.product-card-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-badge {
    background-color: #f8efe8;
    color: #c0855f;
    padding: 0.35rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: var(--fw-semibold);
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 1.4rem;
    font-weight: var(--fw-bold);
    color: var(--clr-dark);
    margin-bottom: 0.75rem;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--clr-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.5;
}

.product-specs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.spec-badge {
    background-color: #f4f5f7;
    color: var(--clr-dark);
    padding: 0.35rem 0.7rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: var(--fw-medium);
}

.product-actions {
    display: flex;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid #D1D1D6;
}

.product-btn {
    flex: 1;
    padding: 0.6rem;
    font-size: 0.9rem;
}

/* Heritage Section */
.heritage-top {
    background-color: #244545;
    position: relative;
}

.skyline-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/index/section-bg.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.heritage-bottom {
    background-color: var(--clr-bg);
    padding-top: 1.2rem;
    padding-bottom: 5rem;
    position: relative;
}

.globe-icon-wrapper {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 175px;
    height: 175px;
    background-color: var(--clr-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    z-index: 3;
    overflow: hidden;
}

.globe-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    scale: 2.1;
}

.stats-box {
    background-color: #1a1a1b;
    border-radius: 30px;
    padding: 7rem 2rem 2.5rem;
    position: relative;
    z-index: 2;
    background-image: url('../images/index/dots-bg.png');
    background-size: cover;
    background-position: center bottom;
}

.stat-number {
    color: #D9943E;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--fw-bold);
    margin-bottom: 0.2rem;
}

.stat-label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: var(--fw-regular);
}

.countries-list {
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* Partner Section */
.partner-section {
    background-color: var(--clr-bg);
}

.partner-desc {
    max-width: 650px;
    line-height: 1.6;
}

.partner-logo {
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 0.8;
}

.partner-btn {
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
}

.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.partner-logo-item {
    display: flex;
    justify-content: center;
}

.partner-logo-item .c-logo-wrapper {
    width: 100%;
}

@media (min-width: 768px) {
    .partner-logos-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }

    .partner-logo-item:nth-child(1) {
        grid-column: 1 / span 2;
    }

    .partner-logo-item:nth-child(2) {
        grid-column: 3 / span 2;
    }

    .partner-logo-item:nth-child(3) {
        grid-column: 5 / span 2;
    }

    .partner-logo-item:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .partner-logo-item:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

@media (max-width: 767px) {
    .partner-logo-item:nth-child(5) {
        grid-column: 1 / span 2;
        justify-self: center;
        width: calc(50% - 7.5px);
    }
}

.c-logo-wrapper {
    background-color: var(--clr-light);
    border-radius: 12px;
    display: inline-block;
    padding: 10px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Instagram Section */

.social-link {
    color: var(--clr-dark);
    text-decoration: underline;
    font-size: 0.95rem;
    font-weight: var(--fw-medium);
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--clr-primary);
}

.social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.insta-post {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: #d8d8d8;
}

.insta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-post:hover .insta-img {
    transform: scale(1.05);
}

.insta-type-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.insta-post::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.insta-post:hover::after {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Support Section */
.support-card {
    background-color: var(--clr-light);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.support-card-title {
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    color: var(--clr-dark);
}

.support-card-desc {
    color: #4a4a4a;
    font-size: var(--fs-body);
    line-height: 1.6;
    flex-grow: 1;
}

/* Contact Section */
.contact-section {
    background-image: url('../images/index/Contact Section.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: #f7f7f7;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    /* Fades the background slightly to ensure readability */
    pointer-events: none;
}

.contact-form-wrapper {
    background-color: #F7F7F8;
    backdrop-filter: blur(5px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.contact-form-wrapper .form-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.custom-input {
    background-color: transparent;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
    color: var(--clr-dark);
}

.custom-input:focus {
    background-color: transparent;
    border-color: var(--clr-primary);
    box-shadow: none;
    outline: none;
}

/* Footer Section */
.site-footer-links {
    color: var(--clr-dark);
    background: rgba(221, 221, 222, 0.65);
    backdrop-filter: blur(2px);
}

.footer-logo {
    display: block;
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: var(--fw-bold);
    color: var(--clr-dark);
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--clr-dark);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--clr-primary);
}

.footer-text-small {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-bottom-links {
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer-bottom-links a {
    color: var(--clr-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 0.4rem;
}

.footer-bottom-links a:hover {
    color: var(--clr-primary);
}

.footer-watermark {
    width: 100%;
    max-width: 1400px;
    object-fit: contain;
    pointer-events: none;
    display: block;
    margin: auto;
}


@media (max-width: 568px) {
    .btn {
        font-size: var(--fs-small);
        padding: 0.75rem 1.3rem;
    }
}


/* ============================================================
 * Goodmans Animation Engine — animation.css
 * Companion stylesheet for animations.js
 * ============================================================ */


/* ──────────────────────────────────────────────────────────
 * 1. GRADIENT TEXT
 * ────────────────────────────────────────────────────────── */

/**
 * .gm-gradient-text
 *
 * Applied automatically by JS to [data-anim="gradient-text"].
 * The --gm-gradient CSS variable is injected per-frame via JS,
 * which means the browser only repaints the gradient — no layout.
 *
 * We OVERRIDE the static hero-title gradient here so the JS
 * dynamic version takes full control. Specificity is handled by
 * combining both class selectors.
 */
.hero-title.gm-gradient-text,
.gm-gradient-text {
    background: var(--gm-gradient, linear-gradient(90deg, #A67350 0.3%, #CF9465 40.54%, #EDC2A0 71.57%, #DA9067 85%, #C77240 101.14%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* GPU-accelerated: tell the browser this element will change */
    will-change: background;
}


/* ──────────────────────────────────────────────────────────
 * 2. SCROLL REVEAL
 * ────────────────────────────────────────────────────────── */

/**
 * Base hidden state — applied by JS before the element enters
 * the viewport. Uses transform + opacity so only the compositor
 * layer is touched (no layout thrash).
 */
.gm-reveal {
    opacity: 0;
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

/* Direction variants */
.gm-reveal--up {
    transform: translateY(40px);
}

.gm-reveal--down {
    transform: translateY(-40px);
}

.gm-reveal--left {
    transform: translateX(40px);
}

.gm-reveal--right {
    transform: translateX(-40px);
}

/**
 * Visible state — added by IntersectionObserver in JS when
 * the element enters the viewport. The transition on .gm-reveal
 * handles the animation automatically.
 */
.gm-reveal--visible {
    opacity: 1;
    transform: translate(0, 0);
}


/* ──────────────────────────────────────────────────────────
 * 3. PARALLAX
 * ────────────────────────────────────────────────────────── */

/**
 * .gm-parallax
 *
 * Applied by JS to [data-anim="parallax"] elements.
 * The transform is applied directly via JS in the rAF loop.
 * We only declare will-change here to hint the browser.
 */
.gm-parallax {
    will-change: transform;
    transition: transform 0.1s linear;
    /* fallback for reduced-motion */
}

/* ──────────────────────────────────────────────────────────
 * 4. EXPLORE PRODUCTS CATALOG
 * ────────────────────────────────────────────────────────── */
.products-catalog-container {
    padding-top: 120px;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 32px;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
}

.breadcrumbs a {
    color: var(--clr-dark);
    opacity: 0.65;
    text-decoration: none;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.breadcrumbs a:hover {
    opacity: 1;
    color: var(--clr-primary);
}

.breadcrumbs a.active {
    opacity: 1;
    font-weight: 600;
}

.breadcrumbs .material-symbols-outlined {
    font-size: 1rem;
    opacity: 0.5;
}

/* Catalog Header */
.catalog-header {
    margin-bottom: 48px;
}

.catalog-title {
    font-family: 'Noto Serif', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 16px;
}

.catalog-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--clr-dark);
    opacity: 0.75;
    max-width: 650px;
    margin: 0;
}

/* Category Bento Grid */
/* .category-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .category-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-card-large {
        grid-column: span 2;
        grid-row: span 2;
        height: 520px !important;
    }
}

@media (min-width: 992px) {
    .category-bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bento-card-large {
        grid-column: span 2;
        grid-row: span 2;
    }
} */

/* Bento Card styling */
/* .bento-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 248px;
    border-radius: 24px;
    overflow: hidden;
    padding: 32px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.bento-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bento-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.bento-card:hover .bento-card-bg img {
    transform: scale(1.05);
} */

/* .bento-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 2;
} */

.bento-card-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
}

.bento-card-title {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff !important;
}

.bento-card-title .material-symbols-outlined {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-card-title .material-symbols-outlined {
    transform: translateX(4px);
}

/* .bento-card-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.85;
    margin: 0;
    max-width: 420px;
    display: none;
    color: #ffffff;
}

@media (min-width: 768px) {
    .bento-card .bento-card-desc {
        display: block;
    }
} */

/* Standard Section */
.standard-section {
    padding: 120px 24px;
}

.standard-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px auto;
}

.standard-heading {
    font-family: var(--font-headline);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: var(--fw-bold);
    margin-bottom: 16px;
}

.standard-sub {
    font-size: 1.05rem;
    color: var(--clr-dark);
    opacity: 0.75;
}

.standards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .standards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.standard-card {
    background-color: var(--clr-light);
    border: 1px solid rgba(33, 33, 34, 0.05);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 24px;
    /* Matches support-card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.standard-card .material-symbols-outlined {
    font-size: 3rem;
    color: var(--clr-primary);
    margin-bottom: 24px;
}

.standard-card h3 {
    font-size: 0.95rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 12px 0;
    color: var(--clr-dark);
}

.standard-card p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--clr-dark);
    opacity: 0.75;
    margin: 0;
}

/* End */

/* ══════════════════════════════════════════════════════════
 * About Us Page Styles
 * ══════════════════════════════════════════════════════════ */

/* About Hero */
.about-hero-section {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(247, 245, 240, 1) 0%, rgba(238, 235, 225, 1) 100%);
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(186, 141, 109, 0.1) 0%, rgba(250, 250, 250, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.about-hero-section .container {
    position: relative;
    z-index: 1;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Timeline Section */
.timeline-section {
    background-color: var(--clr-light);
}

.timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(186, 141, 109, 0.3);
    /* Copper accent line */
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    width: 100%;
}

.timeline-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.timeline-item:nth-child(even) .timeline-row {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--clr-light);
    border: 5px solid var(--clr-primary);
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(250, 250, 250, 1);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-item:hover .timeline-dot {
    transform: translate(-50%, -50%) scale(1.4);
    background-color: var(--clr-primary);
    box-shadow: 0 0 20px rgba(186, 141, 109, 0.4);
}

.timeline-image-col,
.timeline-text-col {
    width: 44%;
}

.timeline-image-wrapper {
    width: 100%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
}

.timeline-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.5s ease;
    z-index: 1;
}

.timeline-item:hover .timeline-image-wrapper::after {
    background: rgba(0, 0, 0, 0);
}

.timeline-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-item:hover .timeline-img {
    transform: scale(1.08);
}

.timeline-content {
    width: 100%;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.timeline-year {
    font-family: var(--ff-serif);
    font-size: 2.5rem;
    font-weight: var(--fw-bold);
    margin-bottom: 15px;
    display: inline-block;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: var(--fw-semibold);
    color: var(--clr-dark);
    margin-bottom: 12px;
}

.timeline-desc {
    color: var(--clr-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        margin-bottom: 60px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-row,
    .timeline-item:nth-child(even) .timeline-row {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 70px;
        width: calc(100% - 70px);
    }

    .timeline-image-col,
    .timeline-text-col {
        width: 100%;
    }

    .timeline-image-wrapper {
        height: 250px;
        margin-bottom: 25px;
    }

    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.bento-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.bento-icon {
    font-size: 2.5rem;
    color: var(--clr-primary);
    margin-bottom: 20px;
}

.bento-item h3 {
    font-size: 1.25rem;
    font-weight: var(--fw-semibold);
    color: var(--clr-dark);
    margin-bottom: 15px;
}

.bento-item p {
    color: var(--clr-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 50px;
}

.bento-large .bento-icon {
    font-size: 3rem;
}

.bento-large h3 {
    font-size: 1.8rem;
}

.bento-large p {
    font-size: 1.1rem;
}

.bento-wide {
    grid-column: span 2;
}

@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 576px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-wide,
    .bento-large {
        grid-column: span 1;
    }
}

/* Stats Section */
.stats-section {
    background-color: var(--clr-dark);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-box {
    padding: 20px;
}

.stat-number {
    font-family: var(--ff-serif);
    font-size: 4rem;
    font-weight: var(--fw-bold);
    color: var(--clr-primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: var(--fw-medium);
    opacity: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* ══════════════════════════════════════════════════════════
 * Explore Products Premium Page Styles
 * ══════════════════════════════════════════════════════════ */

/* Cinematic Hero */
.explore-hero {
    position: relative;
    padding: 150px 0 100px;
    background-color: #000;
    overflow: hidden;
    color: #fff;
}

.explore-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
    animation: slowZoomOut 20s infinite alternate linear;
}

@keyframes slowZoomOut {
    0% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.explore-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to top, #000 0%, transparent 100%); */
    z-index: 1;
}

.explore-hero .container {
    position: relative;
    z-index: 2;
}

.explore-hero-title {
    font-family: var(--ff-serif);
    font-size: 4.5rem;
    font-weight: var(--fw-bold);
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.explore-hero-desc {
    font-size: 1.25rem;
    max-width: 600px;
    opacity: 0.8;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .explore-hero {
        padding: 100px 0 60px;
    }

    .explore-hero-title {
        font-size: 3rem;
    }
}

/* Enhanced Category Bento Grid */
.premium-category-grid {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.category-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 290px;
    gap: 20px;
}

.bento-card {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #000;
    height: 100%;
}

.bento-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-card-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bento-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0.8;
}

.bento-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    transition: opacity 0.5s ease;
}

.bento-card-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
    color: #fff;
}

.bento-card-title {
    font-size: 1.5rem;
    font-weight: var(--fw-semibold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.4s ease;
}

.bento-card-title span {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.bento-card-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}

/* Enhanced Hover Effects */
.bento-card:hover .bento-card-bg img {
    transform: scale(1.08);
    opacity: 0.5;
}

.bento-card:hover .bento-card-title {
    transform: translateY(-5px);
}

.bento-card:hover .bento-card-title span {
    opacity: 1;
    transform: translateX(0);
}

.bento-card:hover .bento-card-desc {
    max-height: 100px;
    opacity: 1;
}

@media (max-width: 991px) {
    .category-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 270px;
    }
}

@media (max-width: 576px) {
    .category-bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card-large,
    .bento-card-wide {
        grid-column: span 1;
    }
}

/* Featured Spotlight */
.featured-spotlight {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--clr-dark);
    color: #fff;
}

.spotlight-image {
    flex: 1 1 50%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.spotlight-content {
    flex: 1 1 50%;
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* .spotlight-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-primary);
    margin-bottom: 20px;
    font-weight: var(--fw-bold);
} */

.spotlight-title {
    font-family: var(--ff-serif);
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.spotlight-desc {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 450px;
}

@media (max-width: 991px) {

    .spotlight-image,
    .spotlight-content {
        flex: 1 1 100%;
    }

    .spotlight-title {
        font-size: 2.5rem;
    }

    .spotlight-content {
        padding: 60px 5%;
    }
}

/* Shop By Room Carousel */
.shop-by-room {
    padding: 100px 0;
    overflow: hidden;
}

.room-slide {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    cursor: pointer;
}

.room-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.room-slide:hover img {
    transform: scale(1.05);
}

.room-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    z-index: 2;
}

.room-title {
    font-size: 1.8rem;
    font-weight: var(--fw-semibold);
    margin-bottom: 5px;
}

.room-subtitle {
    font-size: 1rem;
    opacity: 0.8;
}

/* Custom Swiper Navigation */
.room-swiper-nav {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: flex-end;
}

.room-swiper-nav .swiper-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--clr-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--clr-dark);
    transition: all 0.3s ease;
    cursor: pointer;
}

.room-swiper-nav .swiper-btn:hover {
    background: var(--clr-dark);
    color: #fff;
}

/* Trending Section Styles */
.trending-section {
    padding-top: 100px;
    padding-bottom: 50px;
    background-color: #f9f9f9;
}

.trending-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.trending-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.trending-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f0f0f0;
    overflow: hidden;
}

.trending-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.trending-actions {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 15px;
    transition: bottom 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 2;
}

.trending-card:hover .trending-actions {
    bottom: 0;
}

.trending-info {
    padding: 20px;
    text-align: center;
}

.trending-name {
    font-size: 1.1rem;
    font-weight: var(--fw-semibold);
    color: var(--clr-dark);
    margin-bottom: 5px;
}

.trending-price {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

/* Trending Swiper Navigation */
.trending-swiper-nav {
    display: flex;
    gap: 15px;
}

.trending-swiper-nav .swiper-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--clr-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--clr-dark);
    transition: all 0.3s ease;
    cursor: pointer;
}

.trending-swiper-nav .swiper-btn:hover {
    background: var(--clr-dark);
    color: #fff;
}



/* --- Product Detail Page Styles --- */
.pd-container {
    padding-top: 130px;
    padding-bottom: 80px;
}

.pd-breadcrumbs {
    font-size: 13px;
    font-weight: 500;
    color: #808080;
    margin-bottom: 50px;
}

.pd-breadcrumbs a {
    color: #808080;
    text-decoration: none;
    transition: color 0.3s;
}

.pd-breadcrumbs a:hover {
    color: #1a1a1a;
}

.pd-breadcrumbs .sep {
    margin: 0 8px;
    color: #d1d1d1;
}

.pd-breadcrumbs .curr {
    color: #b3b3b3;
}

.pd-main-row {
    gap: 40px 0;
    margin-bottom:40px;
}

.pd-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pd-main-img-box {
    background-color: #F5F5F0;
    border-radius: 22px;
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
}

.pd-thumb-row {
    display: flex;
    gap: 16px;
}

.pd-thumb-box {
    background-color: #F5F5F0;
    border-radius: 22px;
    width: calc((100% - 32px) / 4);
    aspect-ratio: 1 / 1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
    overflow: hidden;
}

.pd-thumb-box:hover,
.pd-thumb-box.active {
    border-color: var(--clr-primary);
}

.pd-info {
    padding-left: 30px;
}

@media (max-width: 991px) {
    .pd-info {
        padding-left: 0;
    }
}

.pd-category-label {
    font-size: 11px;
    color: var(--clr-primary);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pd-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: var(--font-headline);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.pd-desc {
    font-size: 16px;
    color: #6b6b6b;
    line-height: 1.6;
    margin-bottom: 40px;
}

.pd-section {
    margin-bottom: 35px;
}

.pd-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.pd-colours,
.pd-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pd-pill {
    background-color: #F8F8F6;
    font-size: 13px;
    color: #4d4d4d;
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
}

.color-dot.matt-black,
.color-dot.black {
    background-color: #1a1a1a;
}

.color-dot.grey {
    background-color: #999999;
}

.color-dot.rose-gold,
.color-dot.rose {
    background-color: #d8a08d;
}

.pd-pill-feature {
    background-color: #F8F8F6;
    font-size: 13px;
    color: #4d4d4d;
    padding: 8px 16px 8px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.pd-pill-feature .check {
    font-size: 16px;
    color: var(--clr-primary);
    font-weight: 700;
}

.pd-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.pd-specs-table tr:nth-child(even) {
    background-color: #F8F8F6;
}

.pd-specs-table td {
    padding: 14px 12px;
    color: #4d4d4d;
}

.pd-specs-table td:last-child {
    text-align: right;
    font-weight: 500;
    color: #1a1a1a;
}

.pd-related-section {
    background-color: #f6f6f4;
    padding: 100px 0;
}

.pd-related-header {
    margin-bottom: 50px;
}

.related-card {
    background-color: #fff;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    cursor: default;
}

.pdRelatedSwiper .swiper-wrapper {
    padding: 24px 0;
}

.pdRelatedSwiper .swiper-slide {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 24px;
}

.pdRelatedSwiper .swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f5f5f5;
}

.related-img-wrapper img.related-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.related-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: rgba(166, 124, 82, 0.85);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.related-logo-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #e6e6e7;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.related-logo-badge img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.related-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.related-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.related-subtitle {
    font-size: 0.95rem;
    color: #808080;
    margin-bottom: 12px;
    font-weight: 500;
}

.related-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.related-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-outline-pill {
    flex: 1;
    border: 1px solid #A67C52;
    color: #A67C52;
    background: transparent;
    padding: 10px 16px;
    border-radius: 30px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.btn-outline-pill:hover {
    background: #A67C52;
    color: #fff;
}

.btn-solid-pill {
    flex: 1;
    background: #1a1a1a;
    color: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.btn-solid-pill:hover {
    background: #333;
    color: #fff;
}

@media (max-width: 768px) {
    .pd-related-title {
        font-size: 26px;
    }

    .related-img-box {
        height: 180px;
    }

    .pd-title {
        font-size: 28px;
    }

    .pd-related-section {
        margin-top: 0;
    }
}

/* End */

/* ==========================================================================
   Kitchen Appliances Page Styles
   ========================================================================== */
/* Hero Section */
.appliances-hero {
    position: relative;
    height: 91vh;
    min-height: 550px;
    max-height: 750px;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.appliances-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.appliances-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appliances-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(33, 33, 34, 0.4) 0%, rgba(33, 33, 34, 0.75) 100%);
}

.appliances-hero-content {
    position: relative;
    z-index: 10;
    color: #ffffff;
}

.appliances-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: var(--fw-bold);
}

.appliances-hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 650px;
    margin-bottom: 40px;
    color: #f3f3f3;
}

/* Intro Section */
.intro-section {
    padding: 120px 24px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 992px) {
    .intro-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.intro-heading {
    font-family: var(--font-headline);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: var(--fw-bold);
    color: var(--clr-dark);
    margin-bottom: 24px;
}

.intro-desc {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--clr-dark);
    opacity: 0.8;
    margin-bottom: 48px;
}

.intro-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 576px) {
    .intro-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-item .material-symbols-outlined {
    color: var(--clr-primary);
    font-size: 2.5rem;
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: var(--fw-bold);
    margin: 0 0 6px 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--clr-dark);
}

.feature-item p {
    font-size: 0.88rem;
    color: var(--clr-dark);
    opacity: 0.7;
    margin: 0;
    line-height: 1.5;
}

.intro-image-column {
    position: relative;
}

.intro-image-wrapper {
    overflow: hidden;
    border-radius: 30px;
    /* Matched to homepage cards */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.intro-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.intro-image-column:hover .intro-image-wrapper img {
    transform: scale(1.05);
}

.intro-quote-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--copper-gradient);
    color: var(--clr-dark);
    padding: 24px 36px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(186, 141, 109, 0.25);
    display: none;
}

@media (min-width: 1200px) {
    .intro-quote-badge {
        display: block;
    }
}

.intro-quote {
    font-family: var(--font-headline);
    font-size: 1.35rem;
    font-style: italic;
    margin: 0;
    font-weight: 600;
}

/* Catalog Section */
.catalog-section {
    background-color: #f4f3f2;
    /* padding-top: 48px; */
    padding-bottom: 120px;
}

.sticky-filter-bar {
    position: sticky;
    top: 97px;
    z-index: 40;
    background: rgba(235, 235, 229, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(33, 33, 34, 0.08);
    border-bottom: 1px solid rgba(33, 33, 34, 0.08);
    padding: 12px 0;
    margin-bottom: 64px;
}

.filter-bar-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    position: relative;
    width: 100%;
}

.filter-categories {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-width: 0;
    flex-grow: 1;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    cursor: grab;
    user-select: none;
    padding: 4px 2px;
}

.filter-categories.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.filter-categories::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    background: none;
    border: none;
    padding: 6px 0;
    margin: 0;
    font-size: 0.85rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-gray);
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.25s ease, border-color 0.25s ease;
    border-bottom: 2px solid transparent;
    flex-shrink: 0;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--clr-primary);
    border-bottom-color: var(--clr-primary);
}

/* Scroll Arrow Navigation Buttons */
.filter-scroll-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--clr-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
    padding: 0;
}

.filter-scroll-btn:hover:not(:disabled) {
    background: var(--clr-dark);
    color: #ffffff;
    border-color: var(--clr-dark);
    transform: scale(1.05);
}

.filter-scroll-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}

.filter-scroll-btn .material-symbols-outlined {
    font-size: 20px;
    line-height: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px 24px;
}

@media (min-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: #ffffff;
    border: 1px solid rgba(33, 33, 34, 0.06);
    padding: 24px;
    border-radius: 24px;
    /* Matches bento-card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.product-info-top {
    margin-bottom: 16px;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-primary);
    font-weight: var(--fw-semibold);
}

.product-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    margin: 4px 0 0 0;
    color: var(--clr-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.product-image-box {
    aspect-ratio: 1;
    background: #fafaf9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 24px;
    border-radius: 16px;
}

.product-image-box a {
    height: 100%;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-desc {
    font-size: 0.88rem;
    color: var(--clr-dark);
    opacity: 0.75;
    margin-bottom: 16px;
    line-height: 1.5;
    height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.product-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.product-specs span {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: var(--fw-bold);
    color: var(--clr-gray);
    background: rgba(33, 33, 34, 0.05);
    padding: 4px 8px;
    border-radius: 6px;
}

.product-actions {
    display: flex;
    gap: 8px;
}

.product-actions .btn {
    flex: 1;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    border-radius: var(--radius-pill);
}

/* Spotlight Section */
.spotlight-section {
    background-color: var(--clr-dark);
    color: #ffffff;
    padding: 120px 24px;
}

.spotlight-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 992px) {
    .spotlight-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.spotlight-content {
    order: 2;
}

@media (min-width: 992px) {
    .spotlight-content {
        order: 1;
    }
}

.spotlight-image-box {
    order: 1;
    display: flex;
    justify-content: center;
}

@media (min-width: 992px) {
    .spotlight-image-box {
        order: 2;
    }
}

.spotlight-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clr-primary);
    font-weight: var(--fw-semibold);
    margin-bottom: 16px;
    display: block;
}

.spotlight-heading {
    font-family: var(--font-headline);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: var(--fw-bold);
    margin-bottom: 24px;
}

.spotlight-desc {
    font-size: 1.1rem;
    line-height: 1.75;
    opacity: 0.85;
    margin-bottom: 32px;
}

.spotlight-specs {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.spec-col {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 16px;
}

.spec-val {
    font-size: 1.6rem;
    font-weight: var(--fw-bold);
}

.spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 4px;
    letter-spacing: 0.05em;
}

.spotlight-btn {
    border-radius: var(--radius-pill);
}

.spotlight-image-box img {
    width: 90%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}

/* Comparison Section */
.comparison-section {
    background-color: #ffffff;
    padding: 120px 24px;
}

.comparison-heading {
    font-family: var(--font-headline);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: var(--fw-bold);
    margin-bottom: 48px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    padding: 24px;
    text-align: left;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: var(--fw-bold);
    border-bottom: 2px solid var(--clr-dark);
    color: var(--clr-dark);
}

.comparison-table td {
    padding: 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(33, 33, 34, 0.08);
    transition: background-color 0.2s ease;
    color: var(--clr-dark);
}

.comparison-table tr:hover td {
    background-color: #fafaf9;
}

.comparison-table .model-name {
    font-weight: var(--fw-bold);
}

.comparison-table .price {
    font-weight: var(--fw-bold);
    color: var(--clr-primary);
}

.comparison-action {
    margin-top: 48px;
    text-align: center;
}

/* Support Section */
.support-section {
    padding: 120px 24px;
}

.support-heading {
    font-family: var(--font-headline);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: var(--fw-bold);
    margin-bottom: 48px;
}

.support-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .support-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .support-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.support-card-item {
    background-color: var(--clr-light);
    border: 1px solid rgba(33, 33, 34, 0.05);
    padding: 40px 30px;
    text-decoration: none;
    border-radius: 24px;
    /* Matches support-card on homepage */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.support-card-item:hover {
    border-color: var(--clr-primary);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.support-card-item .material-symbols-outlined {
    font-size: 2.8rem;
    color: var(--clr-dark);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.support-card-item:hover .material-symbols-outlined {
    color: var(--clr-primary);
}

.support-card-item h4 {
    font-size: 0.95rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-dark);
    margin: 0 0 12px 0;
}

.support-card-item p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--clr-dark);
    opacity: 0.75;
    margin: 0;
}

/* Related Categories (Discover More) */
.discover-section {
    padding-bottom: 120px;
}

.discover-heading {
    font-family: var(--font-headline);
    font-size: 1.75rem;
    font-weight: var(--fw-bold);
    margin-bottom: 32px;
    color: var(--clr-dark);
}

.discover-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .discover-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.discover-card {
    position: relative;
    height: 256px;
    border-radius: 30px;
    /* Matches homepage category-card */
    overflow: hidden;
}

.discover-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.discover-card:hover img {
    transform: scale(1.06);
}

.discover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(33, 33, 34, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: background-color 0.3s ease;
}

.discover-card:hover .discover-overlay {
    background-color: rgba(33, 33, 34, 0.45);
}

.discover-overlay h3 {
    font-family: var(--font-headline);
    font-size: 1.6rem;
    color: #ffffff;
    margin: 0;
    font-weight: var(--fw-bold);
}

.discover-link {
    position: absolute;
    inset: 0;
    z-index: 10;
}


/* Kitchen Appliances Styles */
/* Hero Section */
.appliances-hero {
    position: relative;
    height: 91vh;
    min-height: 550px;
    max-height: 750px;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.appliances-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.appliances-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appliances-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(33, 33, 34, 0.4) 0%, rgba(33, 33, 34, 0.75) 100%);
}

.appliances-hero-content {
    position: relative;
    z-index: 10;
    color: #ffffff;
}

.appliances-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: var(--fw-bold);
}

.appliances-hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 650px;
    margin-bottom: 40px;
    color: #f3f3f3;
}

/* Intro Section */
.intro-section {
    padding: 120px 24px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 992px) {
    .intro-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.intro-heading {
    font-family: var(--font-headline);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: var(--fw-bold);
    color: var(--clr-dark);
    margin-bottom: 24px;
}

.intro-desc {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--clr-dark);
    opacity: 0.8;
    margin-bottom: 48px;
}

.intro-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 576px) {
    .intro-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-item .material-symbols-outlined {
    color: var(--clr-primary);
    font-size: 2.5rem;
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: var(--fw-bold);
    margin: 0 0 6px 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--clr-dark);
}

.feature-item p {
    font-size: 0.88rem;
    color: var(--clr-dark);
    opacity: 0.7;
    margin: 0;
    line-height: 1.5;
}

.intro-image-column {
    position: relative;
}

.intro-image-wrapper {
    overflow: hidden;
    border-radius: 30px;
    /* Matched to homepage cards */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.intro-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.intro-image-column:hover .intro-image-wrapper img {
    transform: scale(1.05);
}

.intro-quote-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--copper-gradient);
    color: var(--clr-dark);
    padding: 24px 36px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(186, 141, 109, 0.25);
    display: none;
}

@media (min-width: 1200px) {
    .intro-quote-badge {
        display: block;
    }
}

.intro-quote {
    font-family: var(--font-headline);
    font-size: 1.35rem;
    font-style: italic;
    margin: 0;
    font-weight: 600;
}

/* Catalog Section */
.catalog-section {
    background-color: #f4f3f2;
    /* padding-top: 48px; */
    padding-bottom: 120px;
}



.filter-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-categories {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scrollbar-width: none;
}

.filter-categories::-webkit-scrollbar {
    display: none;
}



.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px 24px;
}

@media (min-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: #ffffff;
    border: 1px solid rgba(33, 33, 34, 0.06);
    padding: 24px;
    border-radius: 24px;
    /* Matches bento-card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.product-info-top {
    margin-bottom: 16px;
}













.spotlight-heading {
    font-family: var(--font-headline);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: var(--fw-bold);
    margin-bottom: 24px;
}

.spotlight-desc {
    font-size: 1.1rem;
    line-height: 1.75;
    opacity: 0.85;
    margin-bottom: 32px;
}

.spotlight-specs {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.spec-col {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 16px;
}

.spec-val {
    font-size: 1.6rem;
    font-weight: var(--fw-bold);
}

.spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 4px;
    letter-spacing: 0.05em;
}

.spotlight-btn {
    border-radius: var(--radius-pill);
}

.spotlight-image-box img {
    width: 90%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}

/* Comparison Section */
.comparison-section {
    background-color: #ffffff;
    padding: 120px 24px;
}

.comparison-heading {
    font-family: var(--font-headline);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: var(--fw-bold);
    margin-bottom: 48px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    padding: 24px;
    text-align: left;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: var(--fw-bold);
    border-bottom: 2px solid var(--clr-dark);
    color: var(--clr-dark);
}

.comparison-table td {
    padding: 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(33, 33, 34, 0.08);
    transition: background-color 0.2s ease;
    color: var(--clr-dark);
}

.comparison-table tr:hover td {
    background-color: #fafaf9;
}

.comparison-table .model-name {
    font-weight: var(--fw-bold);
}

.comparison-table .price {
    font-weight: var(--fw-bold);
    color: var(--clr-primary);
}

.comparison-action {
    margin-top: 48px;
    text-align: center;
}

/* Support Section */
.support-section {
    padding: 120px 24px;
}

.support-heading {
    font-family: var(--font-headline);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: var(--fw-bold);
    margin-bottom: 48px;
}

.support-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .support-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .support-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.support-card-item {
    background-color: var(--clr-light);
    border: 1px solid rgba(33, 33, 34, 0.05);
    padding: 40px 30px;
    text-decoration: none;
    border-radius: 24px;
    /* Matches support-card on homepage */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.support-card-item:hover {
    border-color: var(--clr-primary);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.support-card-item .material-symbols-outlined {
    font-size: 2.8rem;
    color: var(--clr-dark);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.support-card-item:hover .material-symbols-outlined {
    color: var(--clr-primary);
}

.support-card-item h4 {
    font-size: 0.95rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-dark);
    margin: 0 0 12px 0;
}

.support-card-item p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--clr-dark);
    opacity: 0.75;
    margin: 0;
}

/* Related Categories (Discover More) */
.discover-section {
    padding-bottom: 120px;
}

.discover-heading {
    font-family: var(--font-headline);
    font-size: 1.75rem;
    font-weight: var(--fw-bold);
    margin-bottom: 32px;
    color: var(--clr-dark);
}

.discover-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .discover-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.discover-card {
    position: relative;
    height: 256px;
    border-radius: 30px;
    /* Matches homepage category-card */
    overflow: hidden;
}

.discover-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.discover-card:hover img {
    transform: scale(1.06);
}

.discover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(33, 33, 34, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: background-color 0.3s ease;
}

.discover-card:hover .discover-overlay {
    background-color: rgba(33, 33, 34, 0.45);
}

.discover-overlay h3 {
    font-family: var(--font-headline);
    font-size: 1.6rem;
    color: #ffffff;
    margin: 0;
    font-weight: var(--fw-bold);
}

.discover-link {
    position: absolute;
    inset: 0;
    z-index: 10;
}

/* ==========================================================================
   Distributors Page Styles
   ========================================================================== */
.dist-hero-section {
    padding: 120px 24px 80px;
    background-color: #f6f6f4;
    position: relative;
    overflow: hidden;
}

.dist-hero-img-box {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    height: 100%;
    max-height: 520px;
}

.dist-hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Feature & Benefit Cards */
.dist-feature-card,
.dist-benefit-card,
.dist-resource-card {
    background: #ffffff;
    border: 1px solid rgba(33, 33, 34, 0.05);
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dist-feature-card:hover,
.dist-benefit-card:hover,
.dist-resource-card:hover {
    border-color: var(--clr-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.dist-icon {
    font-size: 2.8rem;
    color: var(--clr-dark);
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.dist-feature-card:hover .dist-icon {
    color: var(--clr-primary);
}

/* Timeline/Process */
.dist-process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

@media(min-width: 992px) {
    .dist-process-steps {
        flex-direction: row;
    }
}

.dist-step-card {
    flex: 1;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dist-step-card:hover {
    border-color: var(--clr-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.dist-step-num {
    width: 50px;
    height: 50px;
    background: var(--clr-dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-family: var(--font-headline);
    font-weight: bold;
    margin-bottom: 24px;
}

/* Testimonials */
.dist-testimonial-section {
    padding: 120px 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px;
    border-radius: 30px;
}

.testimonial-quote {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.testimonial-author {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-primary);
}

/* Gateway Cards (Sub Nav) */
.gateway-card {
    background: #ffffff;
    padding: 48px 40px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.gateway-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--clr-primary);
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.faq-accordion .accordion-button {
    background: transparent;
    padding: 24px 0;
    font-family: var(--font-headline);
    font-size: 1.25rem;
    color: var(--clr-dark);
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--clr-primary);
}

.faq-accordion .accordion-body {
    padding: 0 0 24px 0;
    color: var(--clr-dark);
    opacity: 0.8;
    line-height: 1.7;
}

/* Base Spacing */
.dist-section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.bg-light-custom {
    background-color: #f6f6f4;
}

/* ==========================================================================
   Contact Us Page Styles
   ========================================================================== */
.contact-hero-section {
    padding-bottom: 160px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.contact-card:hover {
    border-color: var(--clr-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.contact-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f6f6f4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--clr-dark);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
    background: var(--clr-primary);
    color: #ffffff;
}

/* Premium Form Styles */
.premium-form-control {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 1rem;
    color: var(--clr-dark);
    transition: all 0.3s ease;
    box-shadow: none;
}

.premium-form-control:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 4px rgba(107, 88, 69, 0.1);
    outline: none;
    background-color: #ffffff;
}

.premium-form-control::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.premium-form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--clr-dark);
    font-size: 0.95rem;
}

/* Location Cards */
.location-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.location-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.location-img-box {
    height: 240px;
    background-color: #f6f6f4;
    position: relative;
}

.location-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-content {
    padding: 40px;
}

.location-title {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    color: var(--clr-dark);
    margin-bottom: 16px;
}

.location-address {
    color: var(--clr-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 24px;
}