@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/* --- CSS RESET & VARIABLES --- */
:root {
    --primary-color: #e04a00;
    /* Distinct orange accent */
    --bg-dark: #000000;
    --bg-dark-gray: #111111;
    --text-light: #ffffff;
    --text-gray: #aaaaaa;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Urbanist', sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden;
}

/* --- 1. ANNOUNCEMENT BAR --- */
.announcement-bar {
    background-color: #0b1a0e;
    color: var(--text-light);
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.announcement-container span strong {
    color: #fff;
    font-weight: 700;
}

.view-now-btn {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--text-light);
    padding-bottom: 1px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-smooth);
}

.view-now-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* --- 2. HEADER --- */
.header {
    background-color: #414141;
    color: var(--text-gray);
    font-size: 14px;
    padding: 8px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-left i {
    margin-right: 4px;
}

.header-left strong {
    color: #fff;
}

.divider {
    color: rgba(255, 255, 255, 0.15);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.dropdown {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.dropdown:hover {
    color: #fff;
}

.lang-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
}

.flag-icon {
    font-size: 14px;
}

/* --- 3. NAVBAR --- */
.navbar {
    background-color: #ffffff;
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Articulations */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    position: relative;
    width: 32px;
    height: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.logo-icon span {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.logo-icon span:nth-child(1),
.logo-icon span:nth-child(4) {
    background-color: #333;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.5px;
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.logo-text small {
    font-size: 14px;
    letter-spacing: 2.5px;
    color: #666;
    margin-top: 3px;
    font-weight: 600;
}

.navbar-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 400;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
    color: #000;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0b1a0e;
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Custom requested Dashboard Button animation */
.dashboard-btn {
    background-color: #0d1a0e;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 400;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    gap: 10px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

.dashboard-btn .btn-text {
    transition: var(--transition-smooth);
    transform: translateX(0);
}

.dashboard-btn .btn-icon {
    transition: var(--transition-smooth);
    transform: translateX(0);
}

/* Hover effect: icon slides to far right, text shifts slightly left */
.dashboard-btn:hover {
    background-color: var(--primary-color);
}

.dashboard-btn:hover .btn-text {
    transform: translateX(-35%);
}

.dashboard-btn:hover .btn-icon {
    transform: translateX(650%);
}

/* --- HERO INNER (STATIC HERO) --- */
.hero-inner {
    width: 100%;
    height: 550px;
    background-image: url('assets/hero-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    padding-bottom: 48px;
    position: relative;
    font-family: 'Urbanist', sans-serif;
    color: #ffffff;
}

.hero-inner-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-inner-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-inner-left {
    flex: 1;
}

.hero-inner-left h1 {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.15;
    margin: 0;
    color: #ffffff;
}

.hero-inner-divider {
    width: 1px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.25);
    align-self: center;
}

.hero-inner-right {
    flex: 1.5;
}

.hero-inner-right p {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

@media (max-width: 768px) {
    .hero-inner {
        height: auto;
        padding: 80px 0;
    }

    .hero-inner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .hero-inner-left h1 {
        font-size: 24px;
    }

    .hero-inner-divider {
        width: 100%;
        height: 1px;
    }

    .hero-inner-right p {
        font-size: 14px;
    }
}

/* --- 4. HERO SECTION --- */
.hero-section {
    background-color: #000;
    position: relative;
    height: 600px;
    overflow: visible;
}

.hero-carousel-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slides {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.8s ease-in-out;
    transform: translateY(100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    align-items: center;
}

.hero-content {
    z-index: 5;
    color: #fff;
}

.badge {
    background-color: var(--primary-color);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-content p {
    color: #8c8c8c;
    font-size: 17px;
    letter-spacing: 1px;
}

/* Hero Imagery Styling resembling layout */
.hero-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.orange-path {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 140px;
    background: var(--primary-color);
    border-radius: 120px 0 0 0;
    transform: skewY(-4deg);
    z-index: 1;
}

.hero-car {
    width: 70%;
    max-width: 480px;
    z-index: 2;
    transform: translate(-30px, 30px);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

.container-box {
    position: absolute;
    right: 0;
    top: 15%;
    width: 320px;
    height: 200px;
    background: linear-gradient(135deg, #d35400, #c0392b);
    border-radius: 12px;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.container-text {
    color: rgba(255, 255, 255, 0.2);
    font-size: 24px;
    font-weight: 700;
    padding: 10px;
}

.container-car {
    position: absolute;
    bottom: -10px;
    right: -30px;
    width: 100%;
    transform: scale(0.9);
}

/* Vertical Carousel Controls */
.carousel-dots-vertical {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.carousel-dots-vertical .dot {
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dots-vertical .dot.active {
    background-color: var(--primary-color);
    transform: scale(1.8);
    height: 18px;
    border-radius: 4px;
}

/* --- 5. FILTER BAR (Glassmorphism overlap) --- */
.filter-bar {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    z-index: 20;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.filter-dropdown {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid rgb(0, 0, 0, 0.2);
}

.filter-dropdown:hover {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.filter-label {
    font-size: 14px;
    color: #555;
    font-weight: 600;
}

.filter-dropdown i {
    color: var(--primary-color);
    font-size: 14px;
}

.search-btn {
    background-color: #0d1a0e;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    gap: 10px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

.search-btn .btn-text {
    transition: var(--transition-smooth);
    transform: translateX(0);
}

.search-btn .btn-icon {
    transition: var(--transition-smooth);
    transform: translateX(0);
}

/* Hover effect: icon slides to far right, text shifts slightly left */
.search-btn:hover {
    background-color: var(--primary-color);
}

.search-btn:hover .btn-text {
    transform: translateX(-50%);
}

.search-btn:hover .btn-icon {
    transform: translateX(500%);
}

/* --- 6. NEWS SECTION --- */
.news-section {
    max-width: 1400px;
    margin: 120px auto 80px auto;
    padding: 0 40px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--bg-dark);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.orange-square {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    transform: rotate(45deg);
}

.news-header h2 {
    font-size: 64px;
    font-weight: 400;
    letter-spacing: -1px;
    color: #000;
}

/* Slider Custom controls */
.slider-controls {
    display: flex;
    gap: 12px;
}

.slider-arrow {
    background-color: #f1f2f6;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: var(--transition-smooth);
}

.slider-arrow.prev {
    background-color: #eaeaea;
    color: #111;
}

.slider-arrow.next {
    background-color: #121c13;
    color: #fff;
}

/* Smooth color-changing transition animations for carousel buttons */
.slider-arrow.prev:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: scale(1.05);
}

.slider-arrow.next:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: scale(1.05);
}

/* News Slider Viewport and Track */
.news-slider-viewport {
    overflow: hidden;
    padding: 10px 0;
}

.news-slider-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-card {
    min-width: calc(33.333% - 17px);
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    /* height: 250px; */
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-overlay-text {
    position: absolute;
    top: 25px;
    left: 30px;
    z-index: 2;
}

.card-overlay-text h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.card-overlay-text p {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.card-overlay-text.text-white {
    color: #fff;
}

.card-overlay-text.text-dark {
    color: #111;
}

.card-overlay-text p.highlight {
    background-color: #fff;
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
}


/* --- BRANDS WE WORK WITH SECTION --- */
.brands-section {
    width: 100%;
    position: relative;
    background-color: #ffffff;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
    margin-top: 120px;
    /* Adjust spacing depending on surrounding sections */
}

/* Tab Header Layout matching the design */
.brands-tab-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.brands-tab {
    position: absolute;
    top: -41px;
    /* Overlaps precisely onto the top border */
    left: 40px;
    background-color: #E5E5E5;
    color: #111111;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 12px 12px 0 0;
    border: 1px solid #e2e2e2;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

/* Hexagon/Shape icon */
.green-hexagon {
    width: 10px;
    height: 10px;
    background-color: #1b321a;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: inline-block;
}

/* Brand Slider Track */
.brands-slider-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 30px 0;
    display: flex;
    align-items: center;
}

.brands-slider-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: scrollInfinite 25s linear infinite;
}

.brand-slide {
    padding: 0 100px;
    /* Equal spacing on both sides of each logo */
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-slide img {
    height: 42px;
    /* Set standard height constraint for proportional scaling */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(20%) opacity(0.85);
}

/* Subtle Hover Animations */
.brand-slide img:hover {
    transform: scale(1.08);
    filter: grayscale(0%) opacity(1);
}

/* CSS-only Hover-to-Pause configuration */
.brands-slider-track:hover {
    animation-play-state: paused;
}

/* Seamless Slide Keyframes */
@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Moves exactly halfway to align the duplicates */
    }
}

/* --- SHOP BY COUNTRY SECTION --- */
.country-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
}

.country-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.country-header {
    margin-bottom: 40px;
}

.country-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #e04a00;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.country-header h2 {
    font-size: 64px;
    font-weight: 400;
    color: #111111;
    letter-spacing: -1px;
}

/* Base Grid Setup - 12 Columns */
.country-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 170px;
    gap: 20px;
}

/* Base Card Styling */
.country-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    cursor: pointer;
    background-color: #f5f5f5;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* --- MANUAL PIXEL-PERFECT GRID COORDINATES --- */

/* Row 1 & 2 (Top Half: 3 columns of 4 units wide) */
.card-jamaica {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
    /* Spans rows 1 and 2 */
}

.card-antigua {
    grid-column: 7 / 10;
    grid-row: 1 / 3;
    /* Spans rows 1 and 2 */
}

.card-guyana {
    grid-column: 10 / 13;
    grid-row: 1;
    /* Spans row 1 only */
}

.card-bahamas {
    grid-column: 10 / 13;
    grid-row: 2;
    /* Spans row 2 only */
}


/* Row 3 & 4 (Bottom Half: 4 columns of 3 units wide) */
.card-barbados {
    grid-column: 1 / 4;
    grid-row: 3 / 5;
    /* Spans rows 3 and 4 */
}

.card-kenya {
    grid-column: 4 / 7;
    grid-row: 3;
    /* Spans row 3 only */
}

.card-tanzania {
    grid-column: 4 / 7;
    grid-row: 4;
    /* Spans row 4 only */
}

.card-ireland {
    grid-column: 7 / 10;
    grid-row: 3;
    /* Spans row 3 only */
}

.card-mauritius {
    grid-column: 7 / 10;
    grid-row: 4;
    /* Spans row 4 only */
}

.card-uk {
    grid-column: 10 / 13;
    grid-row: 3 / 5;
    /* Spans rows 3 and 4 */
}


/* --- GRAPHICS & HOVERS --- */
.card-bg {
    position: absolute;
    top: -4px;
    left: -8px;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Transparent Overlay for Text Contrast */
.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

/* Warm Red Gradient Overlay (Visible on Hover) */
.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(162, 28, 14, 0.9) 0%, rgba(162, 28, 14, 0.3) 60%, transparent 100%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-content {
    position: relative;
    z-index: 4;
    color: #ffffff;
}

.country-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.flag img {
    height: 20px;
    width: auto;
    border-radius: 4px;
    object-fit: contain;
    display: block;
}

.country-name {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.country-product-count {
    font-size: 16px;
    opacity: 0.85;
    font-weight: 300;
    color: white;
}

.arrow-btn {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 4;
    color: #ffffff;
    font-size: 24px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover Animations */
.country-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 15px 30px rgba(162, 28, 14, 0.25);
}

.country-card:hover .card-bg {
    transform: scale(1.05);
}

.country-card:hover::before {
    opacity: 0;
}

.country-card:hover .card-hover-overlay {
    opacity: 1;
}

.country-card:hover .arrow-btn {
    transform: translateX(6px);
}

/* --- MOBILE RESPONSIVE WRITING --- */
@media (max-width: 992px) {
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    /* Reset manually mapped layout elements on tablet to flow naturally */
    .country-card {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    /* Select specific tall items to make layout look organized on 2-col */
    .card-jamaica,
    .card-antigua,
    .card-barbados,
    .card-uk {
        grid-row: span 2 !important;
    }
}

@media (max-width: 576px) {
    .country-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .country-card {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

/* --- FEATURED VEHICLES SECTION --- */
.featured-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
    font-family: 'Urbanist', sans-serif;
}

.featured-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.featured-title-area {
    display: flex;
    flex-direction: column;
}

.featured-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.orange-hexagon {
    width: 10px;
    height: 10px;
    background-color: #e04a00;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: inline-block;
}

.featured-header h2 {
    font-size: 64px;
    font-weight: 400;
    color: var(--bg-dark);
    letter-spacing: -1.5px;
    margin: 0;
}

.featured-view-all-btn {
    background-color: #0f1d11;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.featured-view-all-btn:hover {
    background-color: var(--primary-color);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* --- COLLECTION CONTAINER --- */
.products-section {
    width: 100%;
    background-color: #e3e4e6;
    /* Soft cool grey layout background matching image 3 */
    padding: 80px 0;
    font-family: 'Urbanist', sans-serif;
}

.products-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- SECTION HEADER STYLING --- */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.products-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.orange-square {
    width: 10px;
    height: 10px;
    background-color: #e04a00;
    display: inline-block;
    border-radius: 2px;
}

.products-header h2 {
    font-size: 64px;
    /* Title: Urbanist Bold/Medium size */
    font-weight: 400;
    color: var(--bg-dark);
    letter-spacing: -1.5px;
    margin: 0;
}

/* --- FILTER PILLS --- */
.filter-pills {
    display: flex;
    padding: 6px;
    gap: 5px
}

.pill-btn {
    border: none;
    background: rgba(0, 0, 0, 0.10);
    padding: 10px 20px;
    font-family: 'Urbanist', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--bg-dark);
    border: 1px solid rgb(0, 0, 0, 0.50);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.pill-btn.active {
    background-color: #ffffff;
    color: #111111;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* --- THE 4-COLUMN PRODUCTS GRID --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

/* --- PRODUCT CARD STYLING --- */
.product-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, opacity 0.4s ease;
}

/* Hidden cards handling during filter execution */
.product-card.hidden {
    display: none;
    opacity: 0;
}

/* --- IMAGE BLOCK & HOVER ZOOM --- */
.card-image-wrapper {
    width: 100%;
    background: radial-gradient(circle, #f9f9f9 0%, #ececec 100%);
    border: 1px solid rgb(0, 0, 0, 0.26);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Slight Zoom Animation on Hover */
.product-card:hover .product-img {
    transform: scale(1.06);
}

/* --- DETAILS AREA --- */
.product-details {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-origin {
    font-size: 14px;
    font-weight: 600;
    color: #888888;
    margin-bottom: 6px;
}

.product-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    margin: 0;
}

.product-price {
    font-size: 22px;
    font-weight: 800;
    color: #e04a00;
    /* Distinct orange accent color matching original */
}

/* --- SPECS ROW --- */
.specs-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    margin-bottom: 20px;
    gap: 8px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-icon {
    width: 20px;
    height: auto;
    object-fit: contain;
}

.spec-text {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 10px;
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 13px;
    font-weight: 700;
    color: #222222;
}

/* --- VIEW DETAILS BUTTON & ANIMATION --- */
.view-details-btn {
    display: block;
    text-align: center;
    background-color: #0f1d11;
    /* Off-black green matching mockup */
    color: #ffffff;
    padding: 16px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.2s ease;
}

/* Button Color Animation */
.product-card:hover .view-details-btn {
    background-color: var(--primary-color);
    /* Subtle lighter green variation on hover */
}

.view-details-btn:active {
    transform: scale(0.98);
}

/* --- FOOTER SECTIONS --- */
.products-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 30px;
}

.count-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--bg-dark);
}

.view-all-btn {
    background-color: #0f1d11;
    color: #ffffff;
    padding: 18px 32px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.view-all-btn:hover {
    background-color: #1a321e;
}

/* --- MOBILE RESPONSIVE ADAPTATIONS --- */
@media (max-width: 1200px) {

    .products-grid,
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {

    .products-header,
    .featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .products-grid,
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .products-grid,
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .products-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

/* --- SECTION STYLE --- */
.trending-tags-section {
    width: 100%;
    background-color: #f7f8f9;
    /* Soft cool-toned background matching layout */
    padding: 80px 0;
    font-family: 'Urbanist', sans-serif;
    overflow: hidden;
    /* Avoid horizontal scrollbar breaks */
}

.tags-container {
    max-width: 100%;
    margin: 0 auto;
}

/* --- SECTION HEADER --- */
.tags-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.tags-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}


.tags-header h2 {
    font-size: 64px;
    font-weight: 400;
    color: var(--bg-dark);
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin: 0;
}

/* --- MARQUEE SLIDERS SETUP --- */
.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* Perfect uniform row-to-row spacing */
    width: 100%;
    position: relative;
}

.marquee-row {
    overflow: hidden;
    user-select: none;
    display: flex;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    /* gap: 16px; */
    /* Space between pills */
}

.marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    /* justify-content: space-around; */
    gap: 10px;
    /* min-width: 100%; */
}

/* --- PILL DESIGN & INTERACTION --- */
.tag-pill {
    display: inline-block;
    background-color: #e3e5e8;
    /* Base pill color */
    border: 1px solid rgba(0, 0, 0, 0.2);
    /* Distinct grey stroke border */
    color: var(--bg-dark);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    /* Capsule pill layout */
    font-size: 18px;
    font-weight: 500;
    /* white-space: nowrap; */
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

/* Active Highlight Hover State */
.tag-pill:hover {
    border-color: #0f1d11;
}

/* --- INFINITE ROTATION ANIMATION --- */

/* Right to Left Slider */
.dir-rtl .marquee-group {
    animation: scroll-rtl 35s linear infinite;
}

/* Left to Right Slider */
.dir-ltr .marquee-group {
    animation: scroll-ltr 35s linear infinite;
}

/* Perfect hover lock trigger across children track elements */
.marquee-row:hover .marquee-group {
    animation-play-state: paused;
}

@keyframes scroll-rtl {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll-ltr {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .tags-header h2 {
        font-size: 38px;
        letter-spacing: -0.8px;
    }

    .tag-pill {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* --- SECTION CONTAINER --- */
.testimonials-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 0;
    font-family: 'Urbanist', sans-serif;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- HEADER AREA --- */
.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.testimonial-title-area h2 {
    font-size: 64px;
    font-weight: 400;
    color: var(--bg-dark);
    letter-spacing: -1.5px;
    margin: 0;
}

/* --- NAVIGATION BUTTONS --- */
.slider-controls {
    display: flex;
    gap: 16px;
}

.control-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #e0e2e5;
    background-color: #f3f5f6;
    color: var(--bg-dark);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}


.control-btn.next-btn {
    background-color: #121c13;
    color: #ffffff;
}

.control-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

/* --- SLIDER WINDOW & TRACK --- */
.carousel-window {
    width: 100%;
    overflow: visible;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* --- TESTIMONIAL CARD --- */
.testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background-color: #f7f8f9;
    border: 1px solid rgb(0, 0, 0, 0.4);
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Crucial: Clips the expanding radial circle inside card boundaries */
    z-index: 1;
    /* Establishes a local stacking context */

    /* Card movement physics */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- RADIAL CORNER OVERLAY (THE MAGIC) --- */
.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e04a00;
    /* Target background brand color */
    z-index: -1;
    /* Keeps it behind the card's text and avatar elements */

    /* Starts as a tiny 0px circle tucked directly in the bottom-left corner */
    clip-path: circle(0px at 0% 100%);

    /* Custom transition curve for smooth ease-out and contraction on mouse-out */
    transition: clip-path 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- PROFILE DETAILS --- */
.profile-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    /* Ensures text stays layered above background */
}

.avatar-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e5e5e5;
    margin-bottom: 20px;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--bg-dark);
    margin: 0 0 6px 0;
    transition: color 0.5s ease;
}

.client-role {
    font-size: 16px;
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    transition: color 0.5s ease;
}

/* --- STAR RATING --- */
.rating-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.star {
    color: #e04a00;
    font-size: 18px;
    transition: color 0.5s ease;
}

/* --- QUOTE AREA WITH BACKGROUND ICON --- */
.quote-content {
    position: relative;
    width: 100%;
    padding-top: 15px;
    z-index: 2;
}

.bg-quote-icon {
    position: absolute;
    top: -15px;
    left: 5%;
    width: 50px;
    height: auto;
    opacity: 0.12;
    pointer-events: none;
    transition: filter 0.5s ease, opacity 0.5s ease;
}

.quote-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4f585e;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 2;
    transition: color 0.5s ease;
}


/* ==================== RADIAL CORNER HOVER ANIMATION ==================== */

.testimonial-card:hover {
    border-color: #e04a00;
    /* transform: translateY(-8px); */
    box-shadow: 0 20px 40px rgba(224, 74, 0, 0.22);
}

/* 1. Triggers the circle to scale out diagonally from bottom-left (0% 100%) covering the whole card */
.testimonial-card:hover::before {
    clip-path: circle(145% at 0% 100%);
}

/* 2. Text colors adapt dynamically inside the radial wave */
.testimonial-card:hover .client-name,
.testimonial-card:hover .quote-text {
    color: #ffffff;
}

.testimonial-card:hover .client-role {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-card:hover .star {
    color: #ffffff;
}

.testimonial-card:hover .bg-quote-icon {
    filter: brightness(0) invert(1);
    opacity: 0.22;
}


/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1100px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .testimonials-header h2 {
        font-size: 38px;
    }

    .testimonial-card {
        flex: 0 0 100%;
        padding: 30px 20px;
    }
}

/* --- FOOTER MAIN CONTAINER --- */
.footer-section {
    width: 100%;
    position: relative;
    /* Dark ocean blue fallback color behind the background image */
    background-color: #031424;
    /* Replace with your background PNG path */
    background-image: url('assets//footer-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 80px 0 35px 0;
    font-family: 'Urbanist', sans-serif;
    color: #ffffff;
    overflow: hidden;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}

/* --- GRID LAYOUT --- */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    /* Exact proportions from visual mock */
    gap: 50px;
    align-items: start;
    padding-bottom: 60px;
}

/* --- TYPOGRAPHY & COLUMN STYLING --- */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px 0;
    letter-spacing: -0.5px;
}

.footer-text {
    font-size: 16px;
    line-height: 1.62;
    color: #a0b2c6;
    /* Soft, readable gray-blue text */
    font-weight: 400;
    margin: 0;
    max-width: 480px;
}

/* --- QUICK LINKS --- */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list li a {
    font-size: 16px;
    font-weight: 500;
    color: #a0b2c6;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

/* Link interactive states */
.footer-links-list li a:hover {
    color: #ffffff;
    transform: translateX(4px);
    /* Sleek nudge right on hover */
}

/* --- LOGO PLACEMENT --- */
.logo-col {
    align-items: flex-end;
    /* Pushes logo to the far right edge */
    justify-content: flex-start;
}

.footer-logo {
    max-width: 160px;
    height: auto;
    display: block;
}

/* --- DIVIDER LINE --- */
.footer-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    /* Soft transparent line */
    margin: 0 0 30px 0;
}

/* --- BOTTOM BAR --- */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #7b8e9b;
    /* Subtle gray-blue */
}

/* Left Section: Copyright */
.copyright-text {
    letter-spacing: 0.2px;
}

/* Center Section: Policies */
.bottom-center {
    display: flex;
    gap: 28px;
}

.bottom-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-link:hover {
    color: #e04a00;
    /* Subtle switch to brand highlight orange */
}

/* Right Section: Author Attribution */
.attribution-text {
    letter-spacing: 0.2px;
}

.author-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.author-link:hover {
    color: #e04a00;
}

/* --- RESPONSIVE MEDIA BREAKPOINTS --- */
@media (max-width: 1024px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .logo-col {
        grid-column: span 2;
        align-items: flex-start;
        /* Align logo left on smaller viewports */
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0 30px 0;
    }

    .footer-container {
        padding: 0 24px;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }

    .logo-col {
        grid-column: span 1;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .bottom-center {
        flex-direction: column;
        gap: 12px;
    }
}

/* --- SECTION CONTAINER --- */
.about-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 0;
    font-family: 'Urbanist', sans-serif;
    overflow: hidden;
}

.about-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* --- HEADER AREA --- */
.about-header {
    margin-bottom: 24px;
}

.about-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}


.about-heading-block .about-heading {
    font-size: 48px;
    font-weight: 300;
    color: var(--bg-dark);
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin: 0;
}

/* --- GRID LAYOUT --- */
.about-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    /* Custom visual ratio for left and right columns */
    gap: 40px;
    align-items: start;
}

/* --- LEFT COLUMN: VIDEO CARD --- */
.about-left-col {
    width: 100%;
}

.video-card-wrapper {
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 10;
    /* Perfect widescreen container framing */
    overflow: hidden;
    background-color: #031424;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    color: rgba(255, 255, 255, 0.85);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-card-wrapper:hover .video-play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* --- RIGHT COLUMN: IMAGE & TEXT --- */
.about-right-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.about-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- NARRATIVE DESCRIPTION --- */
.about-description-block {
    width: 100%;
}

.about-narrative {
    font-size: 18px;
    line-height: 1.6;
    color: var(--bg-dark);
    font-weight: 500;
    margin: 0;
    text-align: justify;
    /* Matches the formal editorial layout of the reference image */
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
    .about-header h2 {
        font-size: 38px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        /* Switch to single-column stack on tablets */
        gap: 30px;
    }

    .video-card-wrapper {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-container {
        padding: 0 24px;
    }

    .about-header h2 {
        font-size: 30px;
    }

    .about-narrative {
        text-align: left;
        /* Reset to natural reading alignment on narrow screens */
    }
}

/* --- MAIN SECTION CONFIG --- */
.bank-details-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
    font-family: 'Urbanist', sans-serif;
    color: #111111;
}

.bank-details-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* --- MAIN SPLIT GRID (IMAGE VS CONTENT) --- */
.bank-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    /* Matches visual proportions exactly */
    gap: 40px;
    align-items: stretch;
}

/* --- LEFT SIDE: HERO IMAGE --- */
.bank-img-col {
    width: 100%;
    overflow: hidden;
}

.bank-hero-image {
    width: 100%;
    height: 93%;
    object-fit: cover;
    display: block;
}

/* --- RIGHT SIDE: CONTAINER BOX --- */
.bank-content-box {
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e8eb;
    background-color: #ffffff;
}

/* Part A: Header */
.bank-box-header {
    padding: 40px;
    border-bottom: 1px solid #e5e8eb;
}

.bank-box-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.bank-box-header p {
    font-size: 15px;
    line-height: 1.5;
    color: #727a82;
    margin: 0;
    max-width: 90%;
}

/* Part B: Four-Column Bank Credentials */
.bank-credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid #e5e8eb;
}

.credential-item {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

/* Adds right vertical line borders on items, except last */
.credential-item:not(:last-child) {
    border-right: 1px solid #e5e8eb;
}

.credential-label {
    font-size: 14px;
    font-weight: 600;
    color: #727a82;
}

.credential-value {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    color: #111111;
    text-transform: uppercase;
}

/* Part C: Split Bottom Guidelines */
.bank-guidelines-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-grow: 1;
}

.guideline-col {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

/* Vertical divider border between the two rule columns */
.guideline-col:first-child {
    border-right: 1px solid #e5e8eb;
}

.guideline-col h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 16px 0;
    letter-spacing: -0.3px;
}

.guideline-intro {
    font-size: 14px;
    line-height: 1.5;
    color: #727a82;
    margin: 0 0 24px 0;
}

/* Numbered terms styling */
.guideline-list {
    padding-left: 0;
    margin: 0;
    list-style: none;
    /* Reset standard list spacing */
    counter-reset: guideline-counter;
}

.guideline-list li {
    counter-increment: guideline-counter;
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.5;
    color: #727a82;
    margin-bottom: 12px;
}

/* Numerical decimal generator */
.guideline-list li::before {
    content: counter(guideline-counter) ". ";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
    color: #727a82;
}


/* --- RESPONSIVE ADAPTABILITY --- */
@media (max-width: 1200px) {
    .bank-credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .credential-item:nth-child(2) {
        border-right: none;
    }

    .credential-item:nth-child(-n+2) {
        border-bottom: 1px solid #e5e8eb;
    }
}

@media (max-width: 991px) {
    .bank-main-grid {
        grid-template-columns: 1fr;
        /* Stack picture and container block vertically */
    }

    .bank-img-col {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .bank-guidelines-split {
        grid-template-columns: 1fr;
        /* Stack guidelines columns */
    }

    .guideline-col:first-child {
        border-right: none;
        border-bottom: 1px solid #e5e8eb;
    }

    .bank-credentials-grid {
        grid-template-columns: 1fr;
    }

    .credential-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #e5e8eb;
    }

    .bank-box-header,
    .guideline-col {
        padding: 24px;
    }
}

/* --- MAIN SECTION CONFIG --- */
.contact-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 0;
    font-family: 'Urbanist', sans-serif;
    color: #111111;
}

.contact-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* --- BADGE & SECTION LINE HEADER --- */
.contact-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.contact-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.dark-hexagon {
    width: 10px;
    height: 10px;
    background-color: #111111;
    display: inline-block;
    transform: rotate(45deg);
    border-radius: 2px;
}

.header-line {
    flex-grow: 1;
    border: 0;
    height: 1px;
    background: #e5e8eb;
    margin: 0;
}

/* --- MAIN GRID LAYOUT --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    /* Elegant asymmetry matching the design ratio */
    gap: 80px;
    align-items: start;
}

/* --- LEFT COLUMN: INFO AREA --- */
.contact-info-col {
    display: flex;
    flex-direction: column;
}

.contact-main-title {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 24px 0;
}

.contact-lead-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--bg-dark-gray);
    font-weight: 500;
    margin: 0 0 48px 0;
    max-width: 90%;
}

/* Direct reach section */
.direct-reach-box {
    border-top: 1px solid #e5e8eb;
    padding-top: 32px;
}

.reach-title {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 20px 0;
}

.contact-pills-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.contact-pill-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #111111;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 400;
    color: #111111;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.contact-pill-btn:hover {
    background-color: #0b1a0e;
    color: #ffffff;
}

/* --- RIGHT COLUMN: CONTACT FORM --- */
.contact-form-col {
    width: 100%;
}

.static-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    gap: 24px;
    width: 100%;
}

.form-row.two-cols {
    grid-template-columns: 1fr 1fr;
}

.form-row.single-col {
    grid-template-columns: 1fr;
}

/* Input structures */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--bg-dark);
}

.input-group input,
.input-group textarea {
    width: 100%;
    box-sizing: border-box;
    background-color: #fcfcfc;
    border: 1px solid #e2e5e8;
    border-radius: 20px;
    /* Highly rounded matching design inputs */
    padding: 16px 24px;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--bg-dark);
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.input-group textarea {
    border-radius: 20px;
    /* Kept rounded to follow consistent form UI theme */
    resize: vertical;
}

/* Placeholders visual config */
.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #a4abb1;
    font-weight: 500;
}

/* Focus styling */
.input-group input:focus,
.input-group textarea:focus {
    border-color: #111111;
    background-color: #ffffff;
}

/* Submit Action Button */
.form-submit-row {
    display: flex;
    justify-content: flex-start;
    margin-top: 8px;
}

.submit-btn {
    background-color: #0f1d11;
    /* Extremely dark evergreen / near-black signature brand button color */
    color: #ffffff;
    border: none;
    border-radius: 100px;
    padding: 18px 40px;
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: var(--primary-color);
    background-color: var(--primary-color);
}

.submit-btn:active {
    transform: translateY(0);
}


/* --- RESPONSIVE ADAPTABILITY --- */
@media (max-width: 1100px) {
    .contact-main-title {
        font-size: 42px;
    }

    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        /* Switch to single-column vertical flow */
        gap: 60px;
    }

    .contact-info-col {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-container {
        padding: 0 24px;
    }

    .contact-main-title {
        font-size: 36px;
    }

    .form-row.two-cols {
        grid-template-columns: 1fr;
        /* Individual inputs stack on small viewports */
        gap: 24px;
    }
}

/* --- CONTACT HERO SECTION --- */
.contact-hero-section {
    width: 100%;
    background-color: #111111;
    /* Dark theme */
    padding: 80px 0 100px 0;
    /* Bottom padding accommodates the hanging map */
    font-family: 'Urbanist', sans-serif;
    color: #ffffff;
    position: relative;
    overflow: visible;
    /* Crucial for map shadow and hanging */
}

.contact-hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-hero-title {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 50px 285px;
    color: #ffffff;
    letter-spacing: -1.5px;
}

.contact-hero-layout {
    position: relative;
    width: 100%;
    height: 400px;
}

.contact-hero-top-row {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 0;
}

.contact-hero-left-card {
    width: 100%;
    height: 100%;
    background-image: url('assets/contact-left.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    /* align-items: center; */
    padding: 40px;
    box-sizing: border-box;
}

.contact-hero-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 250px;
}

.office-location-pill {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.office-head {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.office-address-link {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    text-decoration: underline;
    line-height: 1.4;
    transition: opacity 0.3s ease;
}

.office-address-link:hover {
    opacity: 0.8;
}

.contact-hero-right-card {
    width: 100%;
    height: 100%;
    background-image: url('assets/contact-right.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-hero-map-overlay {
    position: absolute;
    bottom: -175px;
    right: 0;
    width: 60%;
    height: 380px;
    background-color: #222222;
    overflow: hidden;
    z-index: 10;
}

.contact-hero-map-overlay iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(90%) contrast(90%);
}

@media (max-width: 991px) {
    .contact-hero-section {
        padding: 60px 0 80px 0;
    }

    .contact-hero-title {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .contact-hero-layout {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .contact-hero-top-row {
        flex-direction: column;
        height: auto;
        gap: 24px;
    }

    .contact-hero-left-card,
    .contact-hero-right-card {
        width: 100%;
        height: 300px;
    }

    .contact-hero-map-overlay {
        position: relative;
        bottom: 0;
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-hero-left-card {
        padding: 24px;
    }

    .office-head {
        font-size: 20px;
    }

    .office-address-link {
        font-size: 14px;
    }
}

/* --- SHOP PAGE MAIN LAYOUT --- */
.shop-main-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0 100px 0;
    font-family: 'Urbanist', sans-serif;
}

.shop-main-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.shop-layout {
    display: flex;
    gap: 40px;
    align-items: start;
}

/* --- SIDEBAR PANEL --- */
.shop-sidebar {
    width: 320px;
    background-color: #f7f8f9;
    border: 1px solid #e5e8eb;
    border-radius: 16px;
    padding: 24px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e8eb;
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.sidebar-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin: 0;
}

.reset-filters-btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.reset-filters-btn:hover {
    opacity: 0.8;
}

/* --- SEARCH BAR --- */
.filter-search-box {
    display: flex;
    background-color: #ffffff;
    border: 1px solid #e2e5e8;
    border-radius: 30px;
    padding: 6px 6px 6px 16px;
    margin-bottom: 24px;
    align-items: center;
}

.filter-search-box input {
    border: none;
    outline: none;
    font-size: 14px;
    font-family: 'Urbanist', sans-serif;
    color: #111111;
    flex-grow: 1;
}

.filter-search-box button {
    background-color: #121c13;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Urbanist', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.filter-search-box button:hover {
    background-color: var(--primary-color);
}

/* --- COLLAPSIBLE GROUPS --- */
.filter-group {
    border-bottom: 1px solid #e5e8eb;
    padding: 16px 0;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.filter-group-header span {
    font-size: 14px;
    font-weight: 700;
    color: #111111;
}

.filter-group-header i {
    font-size: 12px;
    color: #888888;
    transition: transform 0.3s ease;
}

.filter-group-content {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Dropdown select inside filters */
.filter-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e5e8;
    background-color: #ffffff;
    border-radius: 12px;
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #555555;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e04a00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

/* Checkbox design */
.filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #555555;
    cursor: pointer;
}

.filter-checkbox-label input[type="checkbox"] {
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
}

/* Sliders elements styling */
.slider-track-bar {
    position: relative;
    width: 100%;
    height: 4px;
    background-color: #e5e8eb;
    border-radius: 2px;
    margin: 15px 0;
}

.slider-track-highlight {
    position: absolute;
    height: 100%;
    background-color: var(--primary-color);
    left: 0;
    right: 0;
}

.slider-handle {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    background-color: #ffffff;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.slider-handle.min {
    left: 0%;
}

.slider-handle.max {
    left: 100%;
}

.slider-inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.slider-inputs span {
    font-size: 11px;
    font-weight: 700;
    color: #888888;
    text-transform: uppercase;
}

.slider-val-box {
    width: 65px;
    padding: 6px 8px;
    border: 1px solid #e2e5e8;
    background-color: #ffffff;
    border-radius: 8px;
    font-family: 'Urbanist', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #111111;
    text-align: center;
    outline: none;
}

/* --- MAIN CONTENT AREA --- */
.shop-content-area {
    flex-grow: 1;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.view-toggle-buttons {
    display: flex;
    gap: 12px;
}

.toggle-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #e0e2e5;
    background-color: #ffffff;
    color: #111111;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.toggle-btn.active {
    background-color: #121c13;
    color: #ffffff;
    border-color: #121c13;
}

.toggle-btn:hover:not(.active) {
    background-color: #f7f8f9;
}

.shop-sort-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e2e5e8;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 10px 20px;
    gap: 10px;
}

.shop-sort-wrapper i {
    font-size: 14px;
    color: #888888;
}

.shop-sort-select {
    border: none;
    outline: none;
    background-color: transparent;
    font-family: 'Urbanist', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    cursor: pointer;
}

/* Grid columns for shop */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* --- LIST VIEW OVERRIDES --- */
.shop-products-grid.list-view {
    grid-template-columns: 1fr;
}

.shop-products-grid.list-view .product-card {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 20px;
}

.shop-products-grid.list-view .card-image-wrapper {
    width: 280px;
    height: 180px;
    flex-shrink: 0;
}

.shop-products-grid.list-view .product-details {
    padding-top: 0;
    flex-grow: 1;
}

.shop-products-grid.list-view .product-meta-row {
    margin-bottom: 12px;
}

.shop-products-grid.list-view .specs-row {
    padding: 8px 0;
    margin-bottom: 12px;
}

.shop-products-grid.list-view .view-details-btn {
    align-self: flex-start;
    padding: 12px 30px;
}

/* --- RESPONSIVE ADAPTATIONS --- */
@media (max-width: 1200px) {
    .shop-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .shop-layout {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-sidebar {
        width: 100%;
    }

    .shop-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-main-container {
        padding: 0 24px;
    }

    .shop-products-grid.list-view .product-card {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-products-grid.list-view .card-image-wrapper {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .shop-products-grid {
        grid-template-columns: 1fr;
    }

    .shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* --- PRODUCT DETAIL SECTION --- */
.product-detail-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0 100px 0;
    font-family: 'Urbanist', sans-serif;
}

.product-detail-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* --- BACK BUTTON --- */
.back-to-listing-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    border-bottom: 1px solid #111111;
    padding-bottom: 4px;
    margin-bottom: 30px;
    transition: opacity 0.3s ease;
}

.back-to-listing-link:hover {
    border-bottom: 1px solid var(--primary-color);
}

/* --- LAYOUT SPLIT --- */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 50px;
    align-items: start;
}

/* --- LEFT DETAIL COLUMN --- */
.detail-main-content {
    display: flex;
    flex-direction: column;
}

.detail-main-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f7f8f9;
    margin-bottom: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.detail-main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Thumbnail slider */
.detail-thumbnails-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

/* Webkit scrollbar for clean horizontal scrolling */
.detail-thumbnails-row::-webkit-scrollbar {
    height: 6px;
}

.detail-thumbnails-row::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.detail-thumbnails-row::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.detail-thumbnails-row::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.detail-thumbnail-item {
    width: 80px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.detail-thumbnail-item.active,
.detail-thumbnail-item:hover {
    border-color: var(--primary-color);
}

.detail-thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Title & Meta Header */
.detail-title-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.detail-title-block h1 {
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0 0 8px 0;
    color: var(--bg-dark);
    letter-spacing: -1px;
}

.detail-origin {
    font-size: 24px;
    font-weight: 400;
    color: #727a82;
    margin: 0;
}

.detail-ref-no {
    font-size: 14px;
    font-weight: 600;
    color: #888888;
    background-color: #f7f8f9;
    padding: 6px 12px;
    border-radius: 6px;
}

/* Price */
.detail-price-tag {
    font-size: 64px;
    font-weight: 500;
    color: #111C0B;
    margin: 20px 0;
}

.detail-divider {
    border: 0;
    height: 1px;
    background-color: #e5e8eb;
    margin: 30px 0;
}

/* Badges */
.detail-badges-row {
    display: flex;
    gap: 16px;
}

.detail-badge-pill {
    font-size: 17px;
    font-weight: 600;
    color: #111111;
    border: 1px solid rgb(0, 0, 0, 0.2);
    background-color: #fce4e4;
    padding: 10px 28px;
    border-radius: 100px;
}

/* Action buttons */
.detail-actions-row {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.detail-btn-contact {
    flex: 2;
    background-color: #121c13;
    color: #ffffff;
    border: none;
    border-radius: 100px;
    padding: 15px 0;
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
}

/* .detail-btn-contact:hover {
    background-color: var(--primary-color);
} */

.detail-btn-print {
    flex: 1;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 100px;
    padding: 15px 0;
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
}

/* .detail-btn-print:hover {
    background-color: #121c13;
} */

/* --- SIDEBAR COLUMN --- */
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Quick Info Box */
.info-box-card {
    background-color: #ffffff;
    border: 1px solid #e5e8eb;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.info-box-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 24px 0;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.info-list-label {
    font-weight: 600;
    color: var(--bg-dark);
}

.info-list-value {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-status-badge {
    background-color: #121c13;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Send Inquiry Box */
.inquiry-box-card {
    background-color: #ffffff;
    border: 1px solid #e5e8eb;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.inquiry-box-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 24px 0;
}

.inquiry-form-wrapper {
    background-color: #F2F2F2;
    border: 1px solid rgb(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px;
}

.inquiry-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.inquiry-input-group label {
    font-size: 14px;
    font-weight: 600;
    color: #666666;
}

.inquiry-input-group input,
.inquiry-input-group textarea {
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    border: 1px solid #e2e5e8;
    border-radius: 30px;
    padding: 14px 20px;
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    outline: none;
    transition: border-color 0.3s ease;
}

.inquiry-input-group textarea {
    border-radius: 16px;
    resize: vertical;
}

.inquiry-input-group input:focus,
.inquiry-input-group textarea:focus {
    border-color: #111111;
}

.inquiry-submit-btn {
    width: 100%;
    background-color: #121c13;
    color: #ffffff;
    border: none;
    border-radius: 100px;
    padding: 16px 0;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 8px;
}

.inquiry-submit-btn:hover {
    background-color: var(--primary-color);
}

/* --- RESPONSIVE DETAIL PAGE --- */
@media (max-width: 991px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .product-detail-container {
        padding: 0 24px;
    }
}

@media (max-width: 576px) {
    .detail-title-block h1 {
        font-size: 38px;
    }

    .detail-price-tag {
        font-size: 38px;
    }

    .detail-actions-row {
        flex-direction: column;
        gap: 16px;
    }

    .detail-btn-contact,
    .detail-btn-print {
        width: 100%;
    }
}

/* --- SPECIFICATIONS SECTION --- */
.specifications-section {
    width: 100%;
    background-color: #ffffff;
    padding: 0 0 80px 0;
    font-family: 'Urbanist', sans-serif;
}

.specifications-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px;
    box-sizing: border-box;
    border: 1px solid #e5e8eb;
    border-radius: 16px;
    background-color: #ffffff;
}

.specs-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-dark);
    margin: 0 0 30px 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.spec-card {
    background-color: #f7f8f9;
    border: 1px solid #e5e8eb;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    background-color: rgb(0, 0, 0, 0.18);
}

.spec-card-icon-wrapper {
    font-size: 32px;
    color: #121c13;
    margin-bottom: 16px;
}

.spec-card-label {
    font-size: 12px;
    font-weight: 700;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.spec-card-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--bg-dark);
}

@media (max-width: 991px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .specifications-container {
        padding: 24px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }
}

/* --- WHY CHOOSE US SECTION --- */
.choose-us-section {
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/why-choose-us-cover.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    color: #ffffff;
    font-family: 'Urbanist', sans-serif;
    overflow: hidden;
}

.choose-us-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.choose-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.choose-us-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.choose-us-header h2 {
    font-size: 64px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -1.5px;
}

.choose-us-layout {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

/* SVG Lines container */
.choose-us-svg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.choose-us-base-line {
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 3;
    fill: none;
}

.choose-us-pulse-line {
    stroke: #ffffff;
    stroke-width: 2.5;
    fill: none;
    stroke-dasharray: 60 80;
    animation: linePulse 3s linear infinite;
}

@keyframes linePulse {
    to {
        stroke-dashoffset: -160;
    }
}

/* Columns */
.choose-us-left-col {
    width: 320px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 5;
}

.choose-us-right-col {
    width: 320px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 5;
}

.choose-us-center-col {
    width: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

/* Logo Box */
.choose-us-logo-wrapper {
    width: 170px;
    height: 170px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(224, 74, 0, 1);
    position: relative;
    z-index: 10;
}

.choose-us-center-logo {
    object-fit: contain;
}

/* Cards */
.choose-us-card {
    width: 300px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}


.choose-us-card-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.choose-us-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--bg-dark);
    margin: 0;
}

.choose-us-card-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
    margin: 0;
    font-weight: 500;
}

/* Card Hover Connectivity Highlight */
.choose-us-card {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid white;
}

.choose-us-card:hover {
    border: 2px solid var(--primary-color);
}

.choose-us-layout:has(.card-top-left:hover) #line-top-left,
.choose-us-layout:has(.card-mid-left:hover) #line-mid-left,
.choose-us-layout:has(.card-bottom-left:hover) #line-bottom-left,
.choose-us-layout:has(.card-top-right:hover) #line-top-right,
.choose-us-layout:has(.card-mid-right:hover) #line-mid-right,
.choose-us-layout:has(.card-bottom-right:hover) #line-bottom-right {
    stroke: var(--primary-color);
}

/* Mobile Media Queries */
@media (max-width: 991px) {
    .choose-us-section {
        padding: 80px 0;
    }

    .choose-us-header h2 {
        font-size: 38px;
    }

    .choose-us-layout {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .choose-us-svg-lines {
        display: none;
    }

    .choose-us-left-col,
    .choose-us-right-col {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        align-items: stretch;
    }

    .choose-us-center-col {
        order: -1;
        height: auto;
        padding-bottom: 20px;
    }

    .choose-us-card {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .choose-us-left-col,
    .choose-us-right-col {
        grid-template-columns: 1fr;
    }

    .choose-us-container {
        padding: 0 24px;
    }
}

/* --- MAIN LAYOUT BASE --- */
.shop-type-section {
    width: 100%;
    background-color: #ededed;
    padding: 100px 0;
    font-family: 'Urbanist', sans-serif;
    overflow: hidden;
}

.shop-type-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.shop-type-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    overflow: hidden;
    min-height: 700px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05); */
}

/* --- LEFT SIDE: COVER SLIDER --- */
.type-slider-left {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #031424;
}

.cover-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.cover-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* --- RIGHT SIDE: CONTAINER & HERO TEXT --- */
.type-content-right {
    padding: 80px 30px 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.type-header {
    margin-bottom: 40px;
}

.type-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.orange-hexagon {
    width: 10px;
    height: 10px;
    background-color: #e04a00;
    display: inline-block;
    transform: rotate(45deg);
    border-radius: 2px;
}

.type-header h2 {
    font-size: 64px;
    font-weight: 400;
    color: var(--bg-dark);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0;
}

/* --- CAROUSEL TRACK VIEWPORT --- */
.carousel-viewport {
    position: relative;
    width: 100%;
    height: 420px;
    /* Rigid container constraints to hold the cards grid */
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100px);
    /* Entry state: move in from right */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, visibility 0.6s;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    /* Normal position */
}

/* Slide exiting leftward during animation transition */
.carousel-slide.exit {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100px);
}

/* --- CARDS GRID PATTERN --- */
.cards-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* --- THE PIXEL PERFECT TYPE CARD --- */
.type-card {
    position: relative;
    background-color: rgb(0, 0, 0, 0.18);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 32px 24px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    cursor: pointer;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Bottom-left diagonal radial dark green hover background overlay */
.type-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #111C0B;
    transform: translate(-50%, 50%);
    /* Center the circle exactly at the bottom-left corner */
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1), height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.type-card:hover::before {
    width: 350%;
    height: 350%;
}

.type-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--bg-dark);
    margin: 16px 0 4px 0;
    transition: color 0.3s ease;
}

.product-count {
    font-size: 16px;
    font-weight: 500;
    color: var(--bg-dark);
    transition: color 0.3s ease;
}

/* Typography color flip on hover */
.type-card:hover h3 {
    color: #ffffff;
}

.type-card:hover .product-count {
    color: white;
}

/* --- HOVER ANIMATED GREEN/WHITE ICON BOX --- */
.card-icon-container {
    width: 60px;
    height: 48px;
    background: linear-gradient(180deg, #6BA74A, #111C0B);
    /* Default brand green gradient color */
    border-radius: 8px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    transition: background 0.3s ease;
}

.icon-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.car-vector {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 72px;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
}

/* Hover State: Icon box transforms background color to clean white */
.type-card:hover .card-icon-container {
    background: #ffffff;
}

/* Hover State: Car vector translates to negative X, revealing back half and turns dark green */
.type-card:hover .car-vector {
    filter: none;
    /* Revert filter to reveal the dark green / black icon against white background */
    transform: translate(-50px, -50%);
}

/* --- FOOTER NAVIGATION PANELS --- */
.carousel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

/* Indicator Progress bar pills */
.carousel-pills {
    display: flex;
    gap: 8px;
}

.pill-indicator {
    width: 12px;
    height: 12px;
    background-color: #cdd2d6;
    border-radius: 50%;
    cursor: pointer;
    transition: width 0.3s ease, border-radius 0.3s ease, background-color 0.3s ease;
}

.pill-indicator.active {
    width: 38px;
    /* High contrast oval stretching for current active slide */
    border-radius: 6px;
    background-color: #d84501;
    /* Brand signature high-conversion orange */
}

/* Navigation control buttons */
.carousel-arrows {
    display: flex;
    gap: 12px;
}

.nav-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid #bdc2c7;
    background-color: transparent;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Active Highlight/Orange next button matches Figma defaults */
.nav-arrow.next-btn {
    background-color: #d84501;
    border-color: #d84501;
    color: #ffffff;
}

.nav-arrow:hover {
    background-color: #111111;
    border-color: #111111;
    color: #ffffff;
}

/* --- RESPONSIVE OPTIMIZATION --- */
@media (max-width: 1280px) {
    .shop-type-grid {
        grid-template-columns: 1fr;
        /* Stack picture and cards vertically on standard screens */
    }

    .type-slider-left {
        height: 400px;
    }

    .type-content-right {
        padding: 60px 40px;
    }
}

@media (max-width: 991px) {
    .cards-grid-layout {
        grid-template-columns: 1fr 1fr;
    }

    .carousel-viewport {
        height: 600px;
    }
}

@media (max-width: 640px) {
    .cards-grid-layout {
        grid-template-columns: 1fr;
    }

    .carousel-viewport {
        height: 1050px;
    }

    .type-header h2 {
        font-size: 38px;
    }
}

/* --- DROPDOWN MENUS --- */
.filter-dropdown {
    position: relative;
}

.filter-dropdown-menu {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin: 0;
    list-style: none;
    display: none;
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
}

.filter-dropdown.open .filter-dropdown-menu {
    display: block;
}

.filter-dropdown-menu li {
    padding: 12px 24px;
    font-size: 14px;
    color: #333333;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.filter-dropdown-menu li:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Language Dropdown Menu */
.lang-dropdown {
    position: relative;
    cursor: pointer;
}

.lang-dropdown-menu {
    position: absolute;
    top: 105%;
    right: 0;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin: 0;
    list-style: none;
    display: none;
    z-index: 1000;
    min-width: 120px;
}

.lang-dropdown.open .lang-dropdown-menu {
    display: block;
}

.lang-dropdown-menu li {
    padding: 10px 16px;
    font-size: 13px;
    color: #333333;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-dropdown-menu li:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.lang-dropdown-menu li .flag-icon img {
    width: 20px;
    height: auto;
    display: block;
}