:root {
    --color-bg-dark: #0a0a0a;
    --color-bg-card: #141414;
    --color-primary: #ffffff;
    --color-accent: #f26522;
    --color-text-muted: #999999;
    --color-nav-bg: rgba(40, 40, 40, 0.6);
    --color-blob-1: rgba(242, 101, 34, 0.12);
    --color-blob-2: rgba(255, 255, 255, 0.03);
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Syncopate', sans-serif;
    --container-padding: 0 5%;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease-in-out;
    --header-height: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

html,
body {
    background-color: var(--color-bg-dark);
    color: var(--color-primary);
    font-family: var(--font-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    width: 100%;
}

body.no-scroll,
html.no-scroll {
    overflow: hidden !important;
    height: 100% !important;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#custom-cursor,
#custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s linear, opacity 0.3s ease;
    opacity: 0;
}

#custom-cursor {
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-accent);
}

#custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
}

/* ==========================================================================
   FLOATING GRADIENT BACKDROP BLOBS
   ========================================================================== */
.gradient-bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.g-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    mix-blend-mode: screen;
    opacity: 0.15;
    animation: floatBlob 25s infinite alternate ease-in-out;
}

.g-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation-duration: 20s;
}

.g-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.8) 0%, transparent 70%);
    bottom: -10%;
    left: -10%;
    animation-duration: 25s;
    animation-delay: -5s;
}

.g-blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
    animation-delay: -10s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(5%, 5%) scale(1.1);
    }

    100% {
        transform: translate(-5%, -2%) scale(0.9);
    }
}

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    height: 75px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    height: 44px;
    max-width: 220px;
    width: 100%;
}

.logo img {
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: contain;
}

.main-nav {
    background: var(--color-nav-bg);
    padding: 0 32px;
    height: 44px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    opacity: 0.7;
    line-height: 44px;
    display: block;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 44px;
}

.action-btn,
.mobile-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.02);
    cursor: pointer;
}

.action-btn:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    color: white;
}

.cart-btn {
    background: var(--color-accent);
}

.cart-btn:hover {
    background: #d44d13;
}

.mobile-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    font-size: 1.2rem;
    z-index: 101;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--color-bg-dark);
}

.hero-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.hero-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 max(5%, calc((100vw - 1440px) / 2 + 5%));
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-content {
    width: 50%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.4rem, 4.2vw, 4.8rem);
    font-weight: 800;
    line-height: 1.1;
    text-transform: capitalize;
    letter-spacing: -1px;
    margin-bottom: 35px;
}

.text-accent {
    color: var(--color-accent);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 45px;
}

.btn {
    display: inline-block;
    padding: 16px 38px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
}

.btn-primary:hover {
    background: #ffffff;
    color: var(--color-accent);
}

.btn-video {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.video-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.btn-video:hover .video-icon-wrapper {
    background: var(--color-accent);
    transform: scale(1.1);
}

.hero-reviews {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatar-group {
    display: flex;
}

.avatar-placeholder {
    display: flex;
    align-items: center;
}

.avatar-placeholder img {
    height: 40px;
    width: auto;
}

.review-count {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.stars {
    color: #ffb703;
    font-size: 0.85rem;
}

.hero-graphic {
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.image-wrapper {
    width: 100%;
    /* max-width: 580px; */
    height: 90%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 82vh;
    object-fit: contain;
}

.img-comment {
    width: 100%;
    display: block;
}

.carousel-indicators {
    position: absolute;
    bottom: 50px;
    left: max(5%, calc((100vw - 1440px) / 2 + 5%));
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator.active {
    background: var(--color-accent);
    width: 60px;
}

/* ==========================================================================
   STATS BANNER
   ========================================================================== */
.stats-banner {
    background: var(--color-bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 0;
    position: relative;
    z-index: 5;
}

.stats-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: clamp(2.2rem, 3.8vw, 4.2rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.stat-number::after {
    content: attr(data-append);
}

.stat-item:nth-child(1) .stat-number::after {
    content: '5';
}

.stat-item:nth-child(2) .stat-number::after {
    content: 'K';
}

.stat-item:nth-child(3) .stat-number::after {
    content: '';
}

.stat-item:nth-child(4) .stat-number::after {
    content: '';
}

.stat-label {
    color: var(--color-accent);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   ENTRANCE ANIMATION TRANSITIONS
   ========================================================================== */
.hero-slide.active .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide .reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active .reveal-item:nth-child(1) {
    transition-delay: 0.2s;
}

.hero-slide.active .reveal-item:nth-child(2) {
    transition-delay: 0.4s;
}

.hero-slide.active .reveal-item:nth-child(3) {
    transition-delay: 0.6s;
}

.hero-slide.active .reveal-item:nth-child(4) {
    transition-delay: 0.8s;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE ENGINE)
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-slide {
        justify-content: center;
        gap: 30px;
    }

    .hero-content {
        width: 55%;
    }

    .hero-graphic {
        width: 42%;
    }
}

@media (max-width: 991px) {
    .mobile-toggle {
        display: flex;
    }

    /* Premium Full-Screen Mobile Menu Overlay */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(25px);
        border-radius: 0;
        border: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 99;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .main-nav.mobile-active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        justify-content: center;
    }

    .nav-link {
        line-height: normal;
        font-size: 1.6rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    /* Hero layout structural breakdown */
    .hero-section {
        min-height: auto;
        height: 100vh;
    }

    .hero-slide {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 0 var(--container-padding);
        padding-top: 100px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-badge,
    .hero-cta-group,
    .hero-reviews {
        justify-content: center;
    }

    .hero-graphic {
        display: none;
    }

    .carousel-indicators {
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    .logo {
        height: 38px;
        max-width: 160px;
    }

    .header-actions .action-btn:not(.cart-btn) {
        display: none;
    }

    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 576px) {
    :root {
        --header-height: 80px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-bottom: 35px;
    }

    /* Keep uniform visual UI boundaries unchanged */
    .btn {
        width: auto;
        min-width: 200px;
        text-align: center;
    }

    .hero-reviews {
        flex-direction: column;
        gap: 10px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-badge {
        gap: 4px;
        font-size: 0.7rem;
        letter-spacing: 4px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 32px;
        max-width: 110px;
    }

    .header-actions {
        gap: 10px;
    }

    .action-btn,
    .mobile-toggle {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .hero-badge {
        gap: 3px !important;
        font-size: 0.5rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 25px;
    }
}

@media (max-width: 400px) {

    .action-btn,
    .mobile-toggle {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .hero-badge {
        gap: 3px !important;
        font-size: 0.5rem !important;
        letter-spacing: 0px !important;
        margin-bottom: 25px;
    }
}




/* ==========================================================================
   CORE LAYOUT UTILITIES (Flexbox Grid Framework Protection)
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.align-items-center {
    align-items: center;
}

/* Base structural column sizing defaults */
[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Desktop Grid System (992px and up) */
@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Tablet Grid System (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Mobile Grid System (down to 767px) */
@media (max-width: 767px) {
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ==========================================================================
   ABOUT BRAND SECTION
   ========================================================================== */
.about-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--color-bg-dark);
    overflow: hidden;
    z-index: 5;
}

/* Staggered Image Collage System */
.about-collage-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 580px;
    margin: 0 auto;
}

.about-img-box {
    position: absolute;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Back Left Image Placement */
.img-back {
    width: 320px;
    height: 440px;
    top: 0;
    left: 0;
    z-index: 2;
}

/* Front Overlapping Right Image Placement */
.img-front {
    width: 340px;
    height: 460px;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 12px solid var(--color-bg-dark);
}

/* Interactive Hover Animations */
.about-collage-wrapper:hover .img-back {
    transform: translate(-10px, -5px) scale(1.02);
}

.about-collage-wrapper:hover .img-front {
    transform: translate(10px, 5px) scale(1.02);
}

/* Typography & Content Block Rules */
.about-content-block {
    padding-left: 40px;
}

.about-sub-badge {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.about-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 3.8vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

.about-description {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-description:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   ABOUT RESPONSIVE LAYOUT ENGINE
   ========================================================================== */
@media (max-width: 1200px) {
    .about-content-block {
        padding-left: 20px;
    }

    .about-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 991px) {
    .about-section {
        padding: 80px 0;
    }

    .about-collage-wrapper {
        margin-bottom: 60px;
        /* Air gap divider when stacking underneath graphics on tablets */
        height: 520px;
        max-width: 480px;
    }

    .img-back {
        width: 270px;
        height: 380px;
    }

    .img-front {
        width: 290px;
        height: 400px;
        border-width: 8px;
    }

    .about-content-block {
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .about-collage-wrapper {
        height: 400px;
        max-width: 100%;
    }

    .img-back {
        width: 55%;
        height: 85%;
    }

    .img-front {
        width: 58%;
        height: 90%;
        border-width: 6px;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-description {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   SERVICES (WHAT WE OFFER) SECTION
   ========================================================================== */
.services-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--color-bg-dark);
    overflow: hidden;
    z-index: 5;
}


.services-sub-badge {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.services-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 60px;
}

/* Row wrapper with explicit spacing to maintain alignment across zoom levels */
.services-grid-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
    gap: 24px 0;
}

.service-col-card {
    padding-right: 12px;
    padding-left: 12px;
}

/* Desktop Grid Calculations */
@media (min-width: 768px) {
    .services-grid-row .service-col-card {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Core Service Card Construction */
.service-card {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 4px;
    /* Crisp minimal corners matching categories and about blocks */
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    background-color: #111111;
}

/* SVG background media configurations */
.service-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Dynamic overlay panel layer */
.service-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 20%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 2;
    transition: background 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Component wrapper holding split layers */
.service-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.service-text-side {
    width: 85%;
    display: flex;
    flex-direction: column;
}

.service-tagline {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: capitalize;
    margin-bottom: 8px;
    transition: color 0.4s ease;
}

.service-card-heading {
    font-family: var(--font-primary);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    transition: color 0.4s ease;
}

.service-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
    transition: color 0.4s ease;
}

.service-arrow-side {
    width: 15%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.service-arrow {
    font-size: 1.3rem;
    color: #ffffff;
    opacity: 0.6;
    transform: translateX(0);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        color 0.4s ease,
        opacity 0.4s ease;
}

/* ==========================================================================
   PIXEL-PERFECT INTERACTIVE COLOR ANIMATIONS (NO SHADOWS)
   ========================================================================== */
.service-card:hover .service-dark-overlay {
    /* Shifts overlay gradient background structure to illuminate the brand accent flavor */
    background: linear-gradient(to top, rgba(242, 101, 34, 0.9) 10%, rgba(10, 10, 10, 0.5) 100%);
}

.service-card:hover .service-bg-img {
    transform: scale(1.04);
    /* Safe focal change without visual warp */
}

/* Text transitions to invert contrast color on backdrop hover states */
.service-card:hover .service-tagline {
    color: #ffffff;
}

.service-card:hover .service-card-heading {
    color: #000000;
    /* High contrast dark header popup over accent orange base */
}

.service-card:hover .service-desc {
    color: #111111;
    font-weight: 500;
}

.service-card:hover .service-arrow {
    opacity: 1;
    color: #000000;
    transform: translateX(6px);
    /* Arrow glides softly to the right inside the row line */
}

/* ==========================================================================
   SERVICES RESPONSIVE SYSTEM BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .service-card {
        height: 340px;
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .services-section {
        padding: 80px 0;
    }

    .services-title {
        margin-bottom: 40px;
    }

    .service-card {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .services-grid-row {
        flex-direction: column;
        gap: 20px 0;
    }

    .services-grid-row .service-col-card {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .service-card {
        height: auto;
        min-height: 240px;
        padding: 35px 25px;
    }

    .service-content-wrapper {
        align-items: center;
    }

    .service-text-side {
        width: 88%;
    }

    .service-arrow-side {
        width: 12%;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 60px 0;
    }

    .service-card {
        min-height: 210px;
        padding: 25px 20px;
    }

    .service-card-heading {
        margin-bottom: 8px;
    }

    .service-desc {
        font-size: 0.88rem;
        line-height: 1.4;
    }

    .service-arrow {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   cliental BRANDS TICKER SECTION
   ========================================================================== */
.cliental-section {
    background-color: var(--color-accent);
    padding: 35px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Fluid helper container mapping edge-to-edge tracking rules */
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Outer mask window to hide overflow scrolling */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

/* The continuous rolling ribbon conveyor */
.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    /* Uniform brand pacing gutter gap */
    padding-right: 80px;
    animation: smoothTicker 20s linear infinite;
    will-change: transform;
}

/* Logo placement wrappers */
.ticker-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

/* Standardized responsive logo boundaries */
.ticker-item img {
    height: clamp(28px, 4vw, 36px);
    /* Fluid height sizing matching lookups */
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Forces logos to render crisp, solid white overlay layers */
    opacity: 0.9;
    transition: var(--transition-fast);
}

/* Interaction Controls */
.ticker-wrap:hover .ticker-track {
    animation-play-state: paused;
    /* Halts linear loop sequence globally */
}

.ticker-item:hover {
    transform: scale(1.12);
    /* Subtle structural pop up animation */
}

.ticker-item:hover img {
    opacity: 1;
}

/* Linear Infinite Translation Calculations */
@keyframes smoothTicker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
        /* Perfectly cuts tracking width halfway to loop flawlessly */
    }
}

/* ==========================================================================
   cliental RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 991px) {
    .cliental-section {
        padding: 28px 0;
    }

    .ticker-track {
        gap: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 576px) {
    .cliental-section {
        padding: 22px 0;
    }

    .ticker-track {
        gap: 45px;
        padding-right: 45px;
        animation-duration: 15s;
        /* Speeds up timing index tracking context on short viewports */
    }
}

/* ==========================================================================
   CINEMA REEL 3D GALLERY SECTION
   ========================================================================== */
.cinema-gallery-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--color-bg-dark);
    overflow: hidden;
    z-index: 5;
    width: 100%;
}


.gallery-sub-badge {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.gallery-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.gallery-description {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 50px auto;
}

/* ── 3D Mathematical Stage Engine Bounds ─────────────────── */
.cinema-gallery-section .scene {
    perspective: 1100px;
    width: 100%;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cinema-gallery-section .carousel {
    position: relative;
    width: 320px;
    height: 210px;
    transform-style: preserve-3d;
    cursor: grab;
}

.cinema-gallery-section .carousel.dragging {
    cursor: grabbing;
}

.cinema-gallery-section .carousel-item {
    position: absolute;
    inset: 0;
    border-radius: 4px;
    overflow: hidden;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9); */
    backface-visibility: hidden;
    will-change: transform, opacity;
}

.cinema-gallery-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Caption Typography Layer Content Overlay */
.cinema-gallery-section .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 18px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.cinema-gallery-section .caption span {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* .cinema-gallery-section .carousel-item.is-active {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(242, 101, 34, 0.25);
} */

.cinema-gallery-section .carousel-item.is-active .caption {
    opacity: 1;
}

/* ==========================================================================
   CINEMA REEL RESPONSIVE ENGINE BREAKPOINTS
   ========================================================================== */
@media (max-width: 991px) {
    .cinema-gallery-section {
        padding: 80px 0;
    }

    .cinema-gallery-section .scene {
        height: 320px;
    }
}

@media (max-width: 576px) {
    .cinema-gallery-section {
        padding: 60px 0;
    }

    .cinema-gallery-section .scene {
        height: 280px;
    }

    .cinema-gallery-section .carousel {
        width: 260px;
        height: 170px;
    }
}

/* ==========================================================================
   TOP PRODUCTS SECTION
   ========================================================================== */
.products-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--color-bg-dark);
    overflow: hidden;
    z-index: 5;
}

.products-sub-badge {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.products-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    /* letter-spacing: -1px; */
    margin-bottom: 60px;
}

/* Slider Mask Layout Framework */
.products-slider-mask {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.products-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.product-card-wrapper {
    flex: 0 0 25%;
    width: 25%;
    padding: 0 12px;
}

.product-card {
    background-color: var(--color-bg-card);
    border-radius: 24px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    /* Clean primary-gradient simulation mask technique */
    border: 1px solid var(--color-accent);
    background-clip: padding-box;
    transition: background-image 0.5s ease, border-color 0.5s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Top Media Pedestal Area */
.product-media-box {
    position: relative;
    width: 100%;
    height: 200px;
    /* background-color: #1a1b1f; */
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-pill {
    position: absolute;
    top: 18px;
    left: 14px;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-img-holder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 20px; */
}

.product-img-holder img {
    max-width: 100%;
    /* max-height: 140px; */
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    /* filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4)); */
}

/* Bottom Content Area Structure */
.product-info-box {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.product-desc {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.4;
    margin-bottom: 14px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px;
    /* Restricts descriptions to equal bounding heights */
}

.product-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.stars-gold {
    color: #f26522;
    /* Mockup stars align directly to accent orange color code */
    font-size: 0.75rem;
}

.rating-num {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Action Control Strip Line */
.product-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price-block {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-current {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
}

.price-slashed {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
    font-weight: 400;
}

/* Custom Add To Cart Action Button */
.btn-add-cart {
    background-color: var(--color-accent);
    color: #ffffff;
    border: none;
    outline: none;
    padding: 12px 14px;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    overflow: hidden;
    position: relative;
    transition: background-color 0.4s ease, transform 0.3s ease;
}

.btn-cart-icons {
    position: relative;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-cart,
.icon-arrow {
    font-size: 0.85rem;
    position: absolute;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.icon-arrow {
    opacity: 0;
    transform: translateX(-15px);
}

/* ==========================================================================
   PIXEL-PERFECT PIXEL INTERACTIONS & GRAPHIC OVERRIDES
   ========================================================================== */
.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-accent);
    /* Diagonal gradient overlay tracking mockup request (Orange to Black setup) */
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 40%, #f26522 100%);
}

.product-card:hover .product-img-holder img {
    transform: scale(1);
    /* Soft upscaling zoom look on image assets */
}

/* Button Interactions */
.product-card:hover .btn-add-cart {
    background-color: #000000;
    /* Shifts background color parameters dynamically to deep black */
}

/* On hovering the structural button directly, transition target sub-icons cleanly */
.btn-add-cart:hover .icon-cart {
    opacity: 0;
    transform: translateX(15px);
}

.btn-add-cart:hover .icon-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   PRODUCTS RESPONSIVE SYSTEM BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .product-card-wrapper {
        flex: 0 0 33.3333%;
        width: 33.3333%;
    }

    /* 3 Columns on compact screens */
    .product-card {
        padding: 20px;
        border-radius: 18px;
    }

    .product-media-box {
        height: 180px;
    }
}

@media (max-width: 991px) {
    .products-section {
        padding: 80px 0;
    }

    .products-title {
        margin-bottom: 40px;
    }

    .product-card-wrapper {
        flex: 0 0 50%;
        width: 50%;
    }

    /* 2 Columns on tablet frames */
}

@media (max-width: 576px) {
    .products-section {
        padding: 60px 0;
    }

    .product-card-wrapper {
        flex: 0 0 100%;
        width: 100%;
    }

    /* Stacks 1 item on phones */
    .product-media-box {
        height: 200px;
    }

    .price-current {
        font-size: 1.4rem;
    }

    .btn-add-cart {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--color-bg-dark);
    overflow: hidden;
    z-index: 5;
}

.text-center-force {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.testimonial-sub-badge {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.testimonial-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.testimonial-description {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 60px auto;
}

/* Slider Mask Viewport Windows */
.testimonial-slider-mask {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
}

/* Linear Conveyor Container Panel */
.testimonial-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Column Flex item containers (Forces 3 cards per row on desktops) */
.testimonial-card-wrapper {
    flex: 0 0 33.3333%;
    width: 33.3333%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Individual Content Cards layout nodes */
.testimonial-card {
    background-color: rgba(40, 40, 40, 0.45);
    /* border: 1px solid rgba(255, 255, 255, 0.04); */
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
}

.stars-row {
    color: #ffb703;
    font-size: 0.9rem;
    margin-bottom: 25px;
    transition: var(--transition-fast);
}

.feedback-text {
    color: #dddddd;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 400;
    transition: var(--transition-fast);
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Strict 40x40 User Avatar Mask rules */
.client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-meta {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2px;
    transition: var(--transition-fast);
}

.client-location {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
    transition: var(--transition-fast);
}

/* ==========================================================================
   PREMIUM ACCENT HOVER EFFECTS
   ========================================================================== */
.testimonial-card:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-6px);
}

.testimonial-card:hover .stars-row {
    color: #ffffff;
}

.testimonial-card:hover .feedback-text {
    color: #ffffff;
}

.testimonial-card:hover .client-name {
    color: #ffffff;
}

.testimonial-card:hover .client-location {
    color: rgba(255, 255, 255, 0.75);
}

.testimonial-card:hover .client-avatar {
    border-color: #ffffff;
}

/* ==========================================================================
   PAGINATION DOT CONTROLS
   ========================================================================== */
.dot-pagination-container {
    display: flex;
    gap: 10px;
    margin-top: 45px;
    align-items: center;
}

.page-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.page-dot.active {
    background-color: var(--color-accent);
    transform: scale(1.3);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   TESTIMONIAL BREAKPOINTS
   ========================================================================== */
@media (max-width: 991px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonial-card-wrapper {
        flex: 0 0 50%;
        width: 50%;
    }

    /* Standardizes layout rules for 2 items on tablets */
    .testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .testimonial-card-wrapper {
        flex: 0 0 100%;
        width: 100%;
    }

    /* Locks structural space down to 1 item on mobile viewports */
    .testimonial-description {
        margin-bottom: 40px;
    }
}

/* ==========================================================================
   THE EVOLVE ADVANTAGE (CATEGORIES PAGE SECTION)
   ========================================================================== */
.categories-page-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--color-bg-dark);
    overflow: hidden;
    z-index: 5;
    width: 100%;
}

.categories-sub-badge {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.categories-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 60px;
}

/* Framework Grid Sizing Proportional Helpers */
.categories-grid-container {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    gap: 40px 0;
}

@media (min-width: 992px) {
    .categories-grid-container .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .categories-grid-container .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .categories-grid-container .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .categories-grid-container .col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

/* ── LEFT SIDEBAR TABS LAYOUT ───────────────────────────── */
.categories-side-nav {
    /* display: flex; */
    flex-direction: column;
    gap: 20px;
}

.category-nav-btn {
    /* width: 100%; */
    min-width: 100% !important;
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.nav-btn-text {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    margin-right: 10px;
}

.nav-btn-arrow {
    font-size: 0.85rem;
    color: #ffffff;
    opacity: 0;
    transform: translateX(-10px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

/* Nav Button Interaction Mechanics */
.category-nav-btn:hover .nav-btn-text,
.category-nav-btn.active .nav-btn-text {
    color: var(--color-accent);
}

.category-nav-btn:hover .nav-btn-arrow,
.category-nav-btn.active .nav-btn-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--color-accent);
}

.category-nav-btn.active {
    border-bottom-color: var(--color-accent);
}

/* ── RIGHT ACCURATE CONTENT CARD PLATFORM ───────────────── */
.categories-content-window {
    position: relative;
    width: 100%;
    height: 400px;
    /* Standardize baseline dimensions based on categories.png aspect */
}

.category-content-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.5s;
    background-color: #d1561d;
    /* Base brand premium deep backdrop orange */
    border-radius: 8px;
    overflow: hidden;
}

.category-content-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Stack 1: Absolute Backplane Background Graphics */
.card-bg-graphics-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.card-backplane-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.25;
}

/* Stack 2: Interactive Coordinates Interface Plane */
.card-interactive-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-info-pane {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.black-box-tags {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Solid Minimalist Tags from categories.png */
.info-tag-item {
    background-color: var(--color-bg-card);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 2px;
    letter-spacing: 0.5px;
    width: max-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}


/* Pristine Rounded White Shop CTA Button Overlay */
.btn-shop-now {
    background-color: #ffffff;
    color: #000000;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 30px;
    text-transform: capitalize;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.btn-shop-now:hover {
    background-color: var(--color-bg-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.card-visual-pane {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-group-stack-wrapper {
    width: 125%;
    /* Scales slightly past core boundaries to reproduce overlay float */
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-group-stack-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.4));
}

/* Interactive Front Layer Products Scaling Zoom Animation */
.category-content-card:hover .product-group-stack-wrapper {
    transform: scale(1.25) rotate(1deg);
}


/* ==========================================================================
   CATEGORIES RESPONSIVE LAYOUT ENGINE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .categories-content-window {
        height: 400px;
    }

    .card-interactive-grid {
        padding: 40px;
    }

    .info-tag-item {
        font-size: 0.8rem;
        padding: 12px;
    }
}

@media (max-width: 991px) {
    .categories-page-section {
        padding: 80px 0;
    }

    .categories-title {
        margin-bottom: 40px;
    }

    .categories-content-window {
        height: 380px;
    }

    .product-group-stack-wrapper {
        width: 110%;
    }
}

@media (max-width: 767px) {
    .categories-side-nav {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .category-nav-btn {
        flex: 0 0 auto;
        width: max-content;
        padding: 10px 20px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    }

    .category-nav-btn .nav-btn-arrow {
        display: none !important;
    }

    /* Hide decoration icon rows inside responsive text lists */
    .category-nav-btn.active {
        border-bottom-color: var(--color-accent);
    }

    .categories-content-window {
        height: 560px;
        margin-top: 20px;
    }

    .category-content-card {
        position: absolute;
        display: none;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    }

    .category-content-card.active {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .card-interactive-grid {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: center;
        padding: 30px;
        gap: 20px;
    }

    .card-info-pane {
        width: 100%;
        height: auto;
        align-items: center;
        gap: 20px;
    }

    .black-box-tags {
        width: 100%;
        align-items: center;
    }

    .info-tag-item {
        /* width: 100%; */
        text-align: center;
        max-width: 320px;
    }

    .card-visual-pane {
        width: 100%;
        height: 260px;
    }

    .product-group-stack-wrapper {
        width: 70%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .categories-page-section {
        padding: 60px 0;
    }

    .nav-btn-text {
        font-size: 0.95rem;
    }

    .card-visual-pane {
        height: 200px;
    }

    .product-group-stack-wrapper {
        width: 85%;
    }

    .btn-shop-now {
        /* width: 100%; */
        max-width: 320px;
        text-align: center;
    }
}

/* ==========================================================================
   REELS (SEE EVOLVE IN ACTION) SECTION
   ========================================================================== */
.reels-section {
    position: relative;
    padding: 100px 0 120px 0;
    background-color: var(--color-bg-dark);
    overflow: hidden;
    z-index: 5;
}

.reels-sub-badge {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.reels-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 60px;
}

/* Panoramic Slider Mask Viewport */
.reels-stage-mask {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    position: relative;
}

.reels-stage-track {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    position: relative;
    height: 540px;
}

/* Card Proportional Sizing Coordinates */
.reel-card {
    position: absolute;
    width: 290px;
    height: 460px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.4s ease,
        z-index 0.6s ease;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    border: 1px solid transparent;
}

.reel-media-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #111111;
}

.reel-poster,
.reel-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-video {
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Non-active cards default layout (Muted gradient layer) */
.reel-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.65) 100%);
    z-index: 3;
    transition: background 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Brand orange round play controllers */
.btn-reel-play {
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-accent);
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 4;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.btn-reel-play i {
    transform: translateX(1px);
}

/* ==========================================================================
   5-CARD VISUAL PERSPECTIVE HARMONICS (DESKTOP MODULAR HOOKS)
   ========================================================================== */
.reel-card.far-left {
    transform: translate3d(-480px, 0, 0) scale(0.8);
    opacity: 0.5;
    z-index: 2;
    pointer-events: auto;
}

.reel-card.near-left {
    transform: translate3d(-240px, 0, 0) scale(0.9);
    opacity: 0.7;
    z-index: 3;
    pointer-events: auto;
}

.reel-card.center-active {
    transform: translate3d(0, 0, 0) scale(1.05);
    opacity: 1;
    z-index: 5;
    pointer-events: auto;
    border-color: var(--color-accent);
}

.reel-card.near-right {
    transform: translate3d(240px, 0, 0) scale(0.9);
    opacity: 0.7;
    z-index: 3;
    pointer-events: auto;
}

.reel-card.far-right {
    transform: translate3d(480px, 0, 0) scale(0.8);
    opacity: 0.5;
    z-index: 2;
    pointer-events: auto;
}

/* ==========================================================================
   DYNAMIC REACTIVE HOVER MECHANICS
   ========================================================================== */
.reel-card.center-active .reel-gradient-overlay {
    background: rgba(0, 0, 0, 0.05);
}

.reel-card:not(.center-active):hover .reel-gradient-overlay {
    background: linear-gradient(to top, rgba(242, 101, 34, 0.35) 0%, rgba(10, 10, 10, 0.7) 100%);
}

.reel-card:not(.center-active):hover .btn-reel-play {
    background-color: #ffffff;
    color: var(--color-accent);
    transform: scale(1.1);
}

.reel-card.video-playing .reel-video {
    opacity: 1;
}

.reel-card.video-playing .reel-poster,
.reel-card.video-playing .btn-reel-play {
    opacity: 0;
    pointer-events: none;
}

/* ==========================================================================
   ISOLATED REELS UNIQUE PAGINATION ENGINE
   ========================================================================== */
.reels-dot-pagination {
    display: flex;
    gap: 10px;
    margin-top: 45px;
    align-items: center;
}

.reels-dot-pagination .reels-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.reels-dot-pagination .reels-dot.active {
    background-color: var(--color-accent);
    transform: scale(1.3);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   REELS RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .reels-stage-track {
        height: 480px;
    }

    .reel-card {
        width: 250px;
        height: 400px;
    }

    .reel-card.far-left {
        transform: translate3d(-380px, 0, 0) scale(0.8);
    }

    .reel-card.near-left {
        transform: translate3d(-190px, 0, 0) scale(0.9);
    }

    .reel-card.near-right {
        transform: translate3d(190px, 0, 0) scale(0.9);
    }

    .reel-card.far-right {
        transform: translate3d(380px, 0, 0) scale(0.8);
    }
}

@media (max-width: 991px) {

    .reel-card.far-left,
    .reel-card.far-right {
        display: none !important;
    }

    .reel-card.near-left {
        transform: translate3d(-180px, 0, 0) scale(0.9);
        opacity: 0.5;
    }

    .reel-card.near-right {
        transform: translate3d(180px, 0, 0) scale(0.9);
        opacity: 0.5;
    }
}

@media (max-width: 767px) {
    .reels-section {
        padding: 60px 0;
    }

    .reels-title {
        margin-bottom: 40px;
    }

    .reel-card.near-left,
    .reel-card.near-right {
        display: none !important;
    }

    .reels-stage-track {
        height: 440px;
    }

    .reel-card {
        width: 260px;
        height: 410px;
    }
}

/* ==========================================================================
   CONTACT (GET IN TOUCH) SECTION
   ========================================================================== */
.contact-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--color-bg-dark);
    overflow: hidden;
    z-index: 5;
}


.contact-sub-badge {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.contact-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 60px;
}

.contact-content-grid {
    gap: 40px 0;
    align-items: stretch;
    /* Forces left map container and right form layer to match heights */
}

/* ==========================================================================
   LEFT SIDE: GOOGLE MAP CONTAINER
   ========================================================================== */
.map-viewport-frame {
    width: 100%;
    height: 100%;
    min-height: 440px;
    background-color: var(--color-bg-card);
    border-radius: 16px;
    /* Smooth rounded boundary curves mapping your file mockup exactly */
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4); */
}

/* Subtle grayscale map overlay to match dark UI theme */
.map-viewport-frame iframe {
    filter: grayscale(0.9) invert(0.92) contrast(1.1);
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.map-viewport-frame:hover iframe {
    filter: grayscale(0.2) invert(0) contrast(1);
    opacity: 1;
}

/* ==========================================================================
   RIGHT SIDE: INTERACTIVE INPUT NODES
   ========================================================================== */
.gym-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
    justify-content: center;
}

/* Horizon Alignment Split Processing for Name & Age Box */
.form-row-split {
    display: flex;
    gap: 20px;
    width: 100%;
}

.field-name {
    flex: 0 0 calc(70% - 10px);
}

.field-age {
    flex: 0 0 calc(30% - 10px);
}

.form-field-group {
    position: relative;
    width: 100%;
}

/* Standardized Base Node Layout Elements */
.form-input-node {
    width: 100%;
    padding: 18px 28px;
    background-color: #6d6d6d;
    /* Muted matte gray color tone directly from mockup */
    border: 1px solid transparent;
    border-radius: 14px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 500;
    outline: none;
    transition: background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Typography styles inside placeholder bounds */
.form-input-node::placeholder {
    color: #cccccc;
    opacity: 0.8;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.text-area-node {
    min-height: 160px;
    resize: none;
    line-height: 1.5;
}

/* Active Highlight Focus Trigger Actions */
.form-input-node:focus {
    background-color: rgba(40, 40, 40, 0.8);
    /* Shifts background color dynamically to dark contrast */
    border-color: var(--color-accent);
    /* Orange highlight border injection */
    box-shadow: 0 0 15px rgba(242, 101, 34, 0.15);
}

/* Shift placeholder string slightly on selection focus to give a responsive feel */
.form-input-node:focus::placeholder {
    transform: translateX(4px);
    opacity: 0.5;
}

/* ==========================================================================
   FORM ACTION SUBMIT BUTTON
   ========================================================================== */
.btn-submit-form {
    width: 100%;
    background-color: var(--color-accent);
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 20px 0;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-transform: capitalize;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-submit-form:hover {
    background-color: #ffffff;
    color: var(--color-accent);
}

.btn-submit-form:active {
    transform: translateY(0);
}

/* ==========================================================================
   CONTACT RESPONSIVE SYSTEM LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 991px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-title {
        margin-bottom: 40px;
    }

    .map-viewport-frame {
        min-height: 360px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }

    .form-row-split {
        flex-direction: column;
        gap: 24px;
    }

    .field-name,
    .field-age {
        flex: none;
        width: 100%;
    }

    .form-input-node {
        padding: 16px 22px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .btn-submit-form {
        padding: 16px 0;
        font-size: 1rem;
        border-radius: 10px;
    }

    .map-viewport-frame {
        min-height: 300px;
        border-radius: 12px;
    }
}


/* ==========================================================================
   CUSTOMER FAQ'S SECTION
   ========================================================================== */
.faq-section {
    position: relative;
    padding: 100px 0 120px 0;
    background-color: var(--color-bg-dark);
    overflow: hidden;
    z-index: 5;
}

.faq-sub-badge {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.faq-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 60px;
}

/* Accordion Grid Stack Wrapper */
.gym-accordion-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--color-bg-dark);
    border-radius: 4px;
    overflow: hidden;
}

/* Individual Accordion Base Row Items */
.accordion-item {
    background-color: #1e1f22;
    /* Flat dark gray rows exactly from layout */
    border-bottom: 1px solid rgba(10, 10, 10, 0.5);
    /* Discrete separators */
    transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.accordion-item:last-child {
    border-bottom: none;
}

/* Interactive Trigger Box Header Button */
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 35px 50px;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

/* Index Number Formatting */
.faq-index {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-right: 40px;
    width: 40px;
    flex-shrink: 0;
    transition: color 0.4s ease;
}

.faq-question {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 700;
    color: #cccccc;
    flex-grow: 1;
    padding-right: 30px;
    line-height: 1.4;
    transition: color 0.4s ease;
}

/* Custom Minimal State Circular Toggle */
.faq-toggle-icon {
    width: 36px;
    height: 36px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

/* ==========================================================================
   ACTIVE REACTIVE STATE CONFIGURATION
   ========================================================================== */
.accordion-item.active {
    background-color: var(--color-accent);
    /* Injects brand orange backdrops seamlessly */
}

.accordion-item.active .faq-index {
    color: #0a0a0a;
    /* Numbers convert to black contrast overlay */
}

.accordion-item.active .faq-question {
    color: #000000;
    /* Questions convert to high-contrast black string text */
}

.accordion-item.active .faq-toggle-icon {
    background-color: #000000;
    /* Buttons convert to solid black circles */
    color: var(--color-accent);
    /* Icon switches back to dynamic orange color markup */
}

/* ==========================================================================
   SMOOTH TRANSITION HEIGHT COLLAPSIBLE TRACKS
   ========================================================================== */
.accordion-collapse {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        visibility 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: height, visibility;
}

/* REMOVED 'height: auto' to prevent breaking first-click calculations */
.accordion-item.active .accordion-collapse {
    visibility: visible;
}

.accordion-body {
    padding: 0 50px 40px calc(40px + 40px + 50px);
}

/* ==========================================================================
   FAQ RESPONSIVE LAYOUT ENGINE BREAKPOINTS
   ========================================================================== */
@media (max-width: 991px) {
    .faq-section {
        padding: 80px 0;
    }

    .accordion-header {
        padding: 30px 40px;
    }

    .accordion-body {
        padding: 0 40px 30px calc(40px + 30px + 40px);
    }

    .faq-index {
        margin-right: 30px;
        width: 30px;
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        margin-bottom: 40px;
    }

    .accordion-header {
        padding: 24px 20px;
        gap: 15px;
    }

    .faq-index {
        font-size: 1.1rem;
        margin-right: 0;
        width: auto;
    }

    .faq-question {
        padding-right: 10px;
        font-size: 1rem;
    }

    .faq-toggle-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .accordion-body {
        padding: 0 20px 24px 20px;
    }

    /* Pull answer blocks down flat to reclaim narrow display margins */
    .faq-answer {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}


/* ==========================================================================
   PROMO TICKER BANNER
   ========================================================================== */
.promo-ticker-banner {
    background-color: var(--color-accent);
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 10;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.promo-ticker-track {
    display: inline-flex;
    align-items: center;
    animation: smoothPromoScroll 25s linear infinite;
    will-change: transform;
}

.promo-item {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 1.8vw, 1.5rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
    padding-right: 40px;
    /* Distance space gap between statements */
}

.promo-divider {
    color: #ffffff;
    margin-left: 40px;
    font-size: 1.2rem;
    display: inline-block;
}

@keyframes smoothPromoScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ==========================================================================
   SITE FOOTER PLATFORM
   ========================================================================== */
.site-footer {
    background-color: #050505;
    padding: 90px 0 40px 0;
    position: relative;
    width: 100%;
    z-index: 5;
    overflow: hidden;
}

.footer-widgets-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    align-items: flex-start;
}

.footer-widget-col {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* --- Base Typography & UI Nodes --- */
.footer-brand-block {
    max-width: 420px;
}

.footer-logo {
    height: 48px;
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.footer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.footer-brand-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
}

.footer-social-links {
    display: flex;
    gap: 14px;
}

.social-circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.social-circle-btn:hover {
    background-color: #ffffff;
    color: #050505;
    border-color: #ffffff;
    transform: translateY(-3px);
}

.footer-widget-title {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: capitalize;
    letter-spacing: 0.2px;
}

.text-accent-force {
    color: var(--color-accent) !important;
}

.footer-data-list,
.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-data-list li {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
}

.timing-days {
    color: var(--color-text-muted);
    font-weight: 500;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-link:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

.footer-divider-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 50px 0 35px 0;
}

.footer-copyright-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    align-items: center;
    gap: 15px 0;
}

.copyright-text,
.developer-text {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 500;
}

.dev-brand {
    color: var(--color-accent);
    font-weight: 600;
}

/* ==========================================================================
   FOOTER RESPONSIVE PLATFORM BREAKPOINTS
   ========================================================================== */

/* Large PC & Laptop Sizing (Enforces Row Columns Alignment Side-by-Side) */
@media (min-width: 992px) {
    .site-footer .footer-widgets-row .footer-widget-col:nth-child(1) {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .site-footer .footer-widgets-row .footer-widget-col:nth-child(2) {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .site-footer .footer-widgets-row .footer-widget-col:nth-child(3) {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .timing-block-shift {
        padding-left: 45px;
    }

    .link-block-alignment {
        padding-left: 80px;
        text-align: left;
    }

    .text-right-md-center {
        text-align: right;
    }
}

/* Tablet Sizing (Grid Split) */
@media (max-width: 991px) and (min-width: 768px) {
    .site-footer .footer-widgets-row .footer-widget-col:nth-child(1) {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .site-footer .footer-widgets-row .footer-widget-col:nth-child(2) {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .site-footer .footer-widgets-row .footer-widget-col:nth-child(3) {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .site-footer {
        padding: 70px 0 35px 0;
    }

    .timing-block-shift,
    .link-block-alignment {
        padding-left: 15px;
    }

    .text-right-md-center {
        text-align: right;
    }
}

/* Mobile Devices Sizing (Clean Fluid Vertical Stacking) */
@media (max-width: 767px) {
    .footer-widgets-row {
        flex-direction: column;
        gap: 45px 0;
        text-align: left;
    }

    .site-footer .footer-widgets-row .footer-widget-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .timing-block-shift,
    .link-block-alignment {
        padding-left: 15px;
    }

    .text-left-md-center,
    .text-right-md-center {
        text-align: center;
        width: 100%;
    }

    .footer-divider-line {
        margin: 40px 0 30px 0;
    }

    .copyright-text,
    .developer-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .promo-ticker-banner {
        padding: 16px 0;
    }

    .site-footer {
        padding: 55px 0 30px 0;
    }

    .footer-logo {
        margin-bottom: 20px;
        height: 40px;
    }

    .footer-brand-desc {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .social-circle-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}



/* ==========================================================================
   INNER PACKAGES SHARED HERO LAYOUT STRIP
   ========================================================================== */
.inner-page-hero {
    position: relative;
    width: 100%;
    height: 350px;
    background: radial-gradient(circle at top right, #1d1e22 0%, #0a0a0a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    z-index: 5;
    padding-top: var(--header-height);
}

.inner-hero-content {
    display: flex;
    flex-direction: column;
}

.inner-hero-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.breadcrumb-link {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-link:hover {
    color: var(--color-accent);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
}

.breadcrumb-current {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.inner-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    text-transform: capitalize;
    letter-spacing: -1px;
}

.inner-hero-description {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 400;
    padding-left: 20px;
    border-left: 2px solid var(--color-accent);
}

/* ==========================================================================
   MAIN INTERACTIVE SHOP PLATFORM WIDGETS
   ========================================================================== */
.shop-catalog-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--color-bg-dark);
    z-index: 5;
}

/* --- Left Filters Sidebar Elements --- */
.shop-sidebar-filters {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.filter-main-title {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.btn-reset-filters {
    background: none;
    border: none;
    outline: none;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-reset-filters:hover {
    color: #ffffff;
    text-decoration: underline;
}

.sidebar-search-group {
    position: relative;
    width: 100%;
}

.sidebar-search-input {
    width: 100%;
    background-color: #121316;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 14px 44px 14px 16px;
    color: #ffffff;
    font-family: var(--font-primary);
    outline: none;
    transition: var(--transition-fast);
}

.sidebar-search-input:focus {
    border-color: var(--color-accent);
    background-color: rgba(20, 20, 20, 0.8);
}

.search-box-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.filter-widget-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.filter-widget-toggle {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
}

.widget-toggle-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.toggle-chevron {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.filter-widget-box.collapsible-active .toggle-chevron {
    transform: rotate(180deg);
}

.filter-widget-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 15px;
    height: auto;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.filter-widget-box:not(.collapsible-active) .filter-widget-content {
    max-height: 0 !important;
    margin-top: 0;
    opacity: 0;
    pointer-events: none;
}

/* Custom Standard Checkbox Indicator Blocks */
.custom-checkbox-row {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
}

.filter-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-indicator {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: #121316;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.custom-checkbox-row:hover .checkbox-indicator {
    border-color: var(--color-accent);
}

.filter-checkbox:checked~.checkbox-indicator {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.checkbox-indicator:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-checkbox:checked~.checkbox-indicator:after {
    display: block;
}

.checkbox-label-text {
    font-size: 0.95rem;
    color: #dddddd;
    font-weight: 500;
}

/* Range Sliders Controls */
.price-range-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 15px 0 10px 0;
}

.range-slider-node {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
    position: relative;
    z-index: 5;
}

.range-slider-node::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-accent);
    cursor: pointer;
    transition: transform 0.15s ease;
    /* box-shadow: 0 0 10px rgba(242, 101, 34, 0.4); */
}


.price-numeric-inputs-row {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: 10px;
}

.price-input-box {
    display: flex;
    align-items: center;
    background-color: #121316;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 10px 12px;
    width: 50%;
}

.currency-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-right: 8px;
}

.numeric-price-node {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: right;
}

/* --- Right Side Feed platform Actions Ribbon --- */
.catalog-feed-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.catalog-top-ribbon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #121316;
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 16px 24px;
    border-radius: 12px;
}

.items-counter-string {
    font-size: 0.95rem;
    color: #dddddd;
    font-weight: 500;
}

.ribbon-interactive-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.layout-toggle-buttons {
    display: flex;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 4px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.layout-toggle-btn {
    background: none;
    border: none;
    outline: none;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.layout-toggle-btn:hover {
    color: #ffffff;
}

.layout-toggle-btn.active {
    background-color: var(--color-accent);
    color: #ffffff;
}

.sorting-dropdown-wrapper {
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0 36px 0 16px;
    height: 42px;
    display: flex;
    align-items: center;
}

.catalog-native-select {
    background: none;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    padding-right: 10px;
}

.dropdown-select-chevron {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    pointer-events: none;
}

/* --- Dynamic Render Track Engine Modes --- */
.products-grid-render-track {
    display: grid;
    gap: 24px 18px;
    transition: opacity 0.3s ease;
}

/* Dynamic Grid Execution View mode rules mapped explicitly from homepage card profiles */
.products-grid-render-track.grid-mode {
    grid-template-columns: repeat(3, 1fr);
}

.products-grid-render-track.grid-mode .product-card-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 0 !important;
}

/* Dynamic List Execution View mode layout tracking overrides */
.products-grid-render-track.list-mode {
    grid-template-columns: 1fr;
}

.products-grid-render-track.list-mode .product-card {
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding: 24px 35px;
    border-radius: 16px;
}

.products-grid-render-track.list-mode .product-media-box {
    width: 200px;
    height: 160px;
    flex-shrink: 0;
}

.products-grid-render-track.list-mode .product-info-box {
    margin-top: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 40px;
}

.products-grid-render-track.list-mode .product-rating-row {
    margin-bottom: 15px;
    justify-self: end;
}

.products-grid-render-track.list-mode .product-action-row {
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    margin-top: 0;
    flex-shrink: 0;
}

/* --- Catalog Footer Index Pagination Bar --- */
.catalog-pagination-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    margin-top: 20px;
}

.pagination-index-string {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #ffffff;
}

.pagination-arrow-buttons {
    display: flex;
    gap: 12px;
}

.pagination-arrow-btn {
    width: 46px;
    height: 44px;
    border-radius: 50%;
    background-color: #121316;
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-size: 0.9rem;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.pagination-arrow-btn:hover:not(:disabled) {
    background-color: var(--color-accent);
    transform: scale(1.05);
}

.pagination-arrow-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

/* ==========================================================================
   SHOP CATALOG RESPONSIVE DETAILED ENGINE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .inner-page-hero {
        height: 300px;
    }

    .products-grid-render-track.grid-mode {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .inner-page-hero {
        height: auto;
        padding-top: calc(var(--header-height) + 30px);
        padding-bottom: 40px;
    }

    .inner-hero-description {
        margin-top: 20px;
        padding-left: 20px;
        border-left: 2px solid var(--color-accent);
    }

    .shop-catalog-section {
        padding: 50px 0;
    }

    .shop-sidebar-filters {
        margin-bottom: 45px;
    }

    .products-grid-render-track.list-mode .product-card {
        flex-direction: column;
        align-items: stretch;
    }

    .products-grid-render-track.list-mode .product-media-box {
        width: 100%;
        height: 180px;
    }

    .products-grid-render-track.list-mode .product-info-box {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .products-grid-render-track.list-mode .product-action-row {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 900px) {
    .products-grid-render-track.grid-mode {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 576px) {
    .inner-page-hero {
        height: auto;
        padding-top: calc(var(--header-height) + 20px);
        padding-bottom: 30px;
    }

    .inner-hero-description {
        padding-left: 0;
        border-left: none;
        margin-top: 16px;
        font-size: 0.95rem;
    }

    .catalog-top-ribbon {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding: 16px;
    }

    .ribbon-interactive-actions {
        width: 100%;
        justify-content: space-between;
    }

}

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */

/* ==========================================================================
   CART PAGE
   ========================================================================== */

/* ==========================================================================
   CHECKOUT PAGE
   ========================================================================== */

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
/* ==========================================================================
   CONTACT PAGE SPECIFIC ARCHITECTURE (PIXEL-PERFECT EXTENSION)
   ========================================================================== */
.contact-page-section {
    position: relative;
    padding: 100px 0 120px 0;
    background-color: var(--color-bg-dark);
    z-index: 5;
    width: 100%;
}

.contact-page-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

.contact-main-row {
    gap: 40px 0;
}

/* --- Left Side Typography & Informative Data Strips --- */
.contact-info-block-left {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
}

.contact-block-heading {
    font-family: var(--font-primary);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-block-subtext {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 50px;
    max-width: 380px;
}

.contact-data-strips-group {
    display: flex;
    flex-direction: column;
}

.info-data-strip {
    display: flex;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-data-strip.align-start {
    align-items: flex-start;
    border-bottom: none;
}

.strip-icon-box {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-accent);
    font-size: 1.15rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.strip-detail-text {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
    line-height: 1.4;
}

a.strip-detail-text:hover {
    color: var(--color-accent);
}

.location-address {
    font-weight: 600;
    font-size: 1.05rem;
    color: #ffffff;
}

/* --- Right Side: High-Performance Rounded Form Frame --- */
.contact-form-card-right {
    background-color: #1a1a1a;
    /* Dark grayish solid canvas block from picture */
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 50px;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3); */
}

.contact-portal-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-grid-row {
    display: flex;
    gap: 24px;
    width: 100%;
}

.form-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.form-node-label {
    color: #b3b3b3;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: capitalize;
}

.form-input-field,
.form-textarea-field {
    width: 100%;
    padding: 16px 24px;
    background-color: #333333;
    /* Matte inner input grey layer token */
    border: 1px solid transparent;
    border-radius: 14px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    outline: none;
    transition: var(--transition-fast);
}

.form-input-field::placeholder,
.form-textarea-field::placeholder,
.form-phone-field::placeholder {
    color: #666666;
    font-weight: 500;
}

.form-input-field:focus,
.form-textarea-field:focus,
.form-phone-field:focus {
    border-color: var(--color-accent);
    background-color: #262626;
}

.form-textarea-field {
    min-height: 120px;
    resize: none;
    line-height: 1.5;
}

/* Custom Flag combo structure from image_8e8dc2.png */
.phone-input-combo-box {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #333333;
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 0 24px;
    transition: var(--transition-fast);
}

.phone-input-combo-box:focus-within {
    border-color: var(--color-accent);
    background-color: #262626;
}

.phone-flag-area {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.usa-flag-icon {
    width: 22px;
    height: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1px;
    background-color: #ffffff;
}

/* Blue canton field container */
.usa-canton {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 8px;
    background-color: #0a3161;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.usa-mini-star {
    font-size: 5px !important;
    color: #ffffff !important;
    transform: scale(0.8);
}

/* Horizontal standard stripes structure */
.usa-stripes {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.stripe-red {
    height: 20%;
    width: 100%;
    background-color: #b31942;
}

.stripe-white {
    height: 20%;
    width: 100%;
    background-color: #ffffff;
}

.country-dial-code {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
}

.form-phone-field {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 16px 0 16px 16px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
}

/* Actions control foot layout elements */
.form-actions-row {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.btn-action-submit,
.btn-action-clear {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 0;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-action-submit {
    flex: 0 0 60%;
    background-color: var(--color-accent);
    color: #ffffff;
}

.btn-action-submit:hover {
    background-color: #ffffff;
    color: var(--color-accent);
}

.btn-action-clear {
    flex: 0 0 40%;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-action-clear:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
}

/* --- Bottom Section: Map Component Viewport --- */
.contact-map-row {
    margin-top: 100px;
    /* width: 100%; */
}

.contact-map-wrapper-box {
    width: 100%;
    height: 520px;
    border-radius: 20px;
    border: 2px solid var(--color-accent);
    /* Orange boundary accent bounding ring from image */
    overflow: hidden;
    padding: 2px;
    /* Emulates precision outer margin alignment */
    background-color: var(--color-accent);
}

.map-iframe-container {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 17px;
    overflow: hidden;
}

/* Monochromatic low contrast map filtering architecture */
.map-iframe-container iframe {
    filter: grayscale(0.85) invert(0.9) contrast(1.15) brightness(0.95);
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.map-iframe-container:hover iframe {
    filter: grayscale(0.1) invert(0) contrast(1) brightness(1);
    opacity: 1;
}

/* Floating custom overlay badge widget asset */
.map-location-tag {
    position: absolute;
    top: 35%;
    left: 45%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    z-index: 4;
}

.location-tag-text {
    background-color: var(--color-accent);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.location-tag-pin {
    font-size: 1.8rem;
    color: var(--color-accent);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: smoothPinPulse 2s infinite ease-in-out;
}

@keyframes smoothPinPulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ==========================================================================
   CONTACT RESPONSIVE SCREEN MATRIX BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .contact-form-card-right {
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .contact-page-section {
        padding: 60px 0 80px 0;
    }

    .contact-block-subtext {
        margin-bottom: 30px;
    }

    .contact-map-row {
        margin-top: 60px;
    }

    .contact-map-wrapper-box {
        height: 400px;
    }

    .map-location-tag {
        top: 40%;
        left: 50%;
    }
}

@media (max-width: 767px) {
    .form-grid-row {
        flex-direction: column;
        gap: 28px;
    }

    .contact-form-card-right {
        padding: 30px 24px;
    }
}

@media (max-width: 576px) {
    .contact-block-heading {
        font-size: 2.2rem;
    }

    .form-actions-row {
        flex-direction: column;
        gap: 14px;
    }

    .btn-action-submit,
    .btn-action-clear {
        flex: 0 0 100%;
        width: 100%;
    }

    .contact-map-wrapper-box {
        height: 320px;
    }

    .phone-input-combo-box {
        padding: 0 16px;
    }

    .form-phone-field {
        padding: 16px 0 16px 12px;
    }
}

/* ==========================================================================
   ISOLATED SHOP PAGE CONTAINER LAYOUT FIXES
   ========================================================================== */

/* Scoped shop page column split definitions */
@media (min-width: 992px) {
    .shop-sidebar-column {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .shop-main-column {
        flex: 0 0 75%;
        max-width: 75%;
    }

    /* Inner Page Hero column split */
    .inner-page-hero .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .inner-page-hero .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .shop-sidebar-column {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .shop-main-column {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

@media (max-width: 767px) {
    .shop-sidebar-column {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .shop-main-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Inner hero glow design enhancement */
.inner-page-hero {
    position: relative;
    background: radial-gradient(circle at top right, #1d1e22 0%, #0a0a0a 100%) !important;
}

.inner-page-hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.06) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(50px);
}

/* Shop list layout card width overrides (1 card per row) */
.products-grid-render-track.list-mode .product-card-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0 !important;
}

.products-grid-render-track.list-mode .product-desc {
    height: auto !important;
    margin-bottom: 0 !important;
}

/* Scoped contact page main section columns */
@media (min-width: 992px) {
    .contact-main-row>.col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .contact-main-row>.col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
}

/* ==========================================================================
   CART MARKETPLACE CHECKOUT PAGE COMPONENT
   ========================================================================== */
.cart-marketplace-section {
    position: relative;
    padding: 80px 0 120px 0;
    background-color: var(--color-bg-dark);
    z-index: 5;
}

.cart-marketplace-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Outer Table Presentation Board Grid */
.cart-table-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Grid Layout Column Width Standardizations */
.th-col,
.td-col {
    display: flex;
    align-items: center;
}

.col-product {
    width: 55%;
}

.col-quantity {
    width: 25%;
    justify-content: center;
}

.col-total {
    width: 20%;
    justify-content: flex-end;
}

.text-center {
    justify-content: center !important;
}

.text-right {
    justify-content: flex-end !important;
}

/* Table Section Header */
.cart-table-header-row {
    display: flex;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    /* Clean horizontal guide path lines */
    padding-bottom: 20px;
    margin-bottom: 10px;
}

.cart-table-header-row .th-col {
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* --- SCROLL COMPRESSION TRACK SCENARIO (LOCKED TO MAX 4 ITEMS HEIGHT HEIGHT BOUNDS) --- */
.cart-items-scroll-track {
    width: 100%;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 8px;
}

/* Custom Minimalist High Contrast Scrollbar Engine */
.cart-items-scroll-track::-webkit-scrollbar {
    width: 4px;
}

.cart-items-scroll-track::-webkit-scrollbar-track {
    background: transparent;
}

.cart-items-scroll-track::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.cart-items-scroll-track::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-accent);
}

/* Table Dynamic Row Block Element */
.cart-item-row {
    display: flex;
    width: 100%;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-fast);
}

.cart-product-profile {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Image Presentation Box pedistal block */
.cart-product-media {
    width: 110px;
    height: 110px;
    /* background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04); */
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    flex-shrink: 0;
}

.cart-product-media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3)); */
}

.cart-product-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-title {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

.cart-item-unit-price {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* --- Custom Quantity Multiplier Node Box widget --- */
.quantity-counter-widget {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 30px;
    padding: 6px 14px;
    width: max-content;
}

.qty-btn {
    background: none;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    color: var(--color-accent);
    transform: scale(1.1);
}

.qty-display-node {
    width: 36px;
    background: none;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
}

/* Remove button selector alignment element */
.btn-remove-item {
    background: none;
    border: none;
    outline: none;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    cursor: pointer;
    margin-left: 20px;
    transition: var(--transition-fast);
}

.btn-remove-item:hover {
    color: #ff3b30;
    transform: scale(1.05);
}

.total-price-string {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* ==========================================================================
   CART FOOTER SUMMARY BLOCK ARCHITECTURE
   ========================================================================== */
.cart-summary-footer {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 40px;
}

.summary-receipt-card {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    margin-bottom: 14px;
}

.receipt-label {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.receipt-value-total {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-accent);
}

.summary-legal-disclaimer {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 420px;
}

/* Premium solid orange action submission checkout link CTA */
.btn-checkout-submit {
    display: block;
    width: max-content;
    min-width: 220px;
    background-color: var(--color-accent);
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 18px 44px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    /* box-shadow: 0 10px 25px rgba(242, 101, 34, 0.2); */
    transition: var(--transition-smooth);
}

.btn-checkout-submit:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    /* box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1); */
}

/* ==========================================================================
   CART PAGES RESPONSIVE SYSTEM BREAKPOINTS
   ========================================================================== */
@media (max-width: 991px) {
    .cart-item-row {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
        padding: 24px 0;
    }

    .col-product,
    .col-quantity,
    .col-total {
        width: 100% !important;
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .cart-table-header-row {
        display: none !important;
    }

    /* Strips header bar logic cleanly on medium devices */
    .total-price-string {
        font-size: 1.15rem;
    }

    .cart-summary-footer {
        justify-content: center;
    }

    .summary-receipt-card {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .receipt-row {
        justify-content: center;
        gap: 20px;
    }

    .summary-legal-disclaimer {
        max-width: 100%;
    }

    .btn-checkout-submit {
        width: 100%;
        max-width: 340px;
    }
}

@media (max-width: 576px) {
    .cart-product-profile {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cart-product-media {
        width: 100%;
        height: 180px;
        padding: 0;
    }
}

/* ==========================================================================
   CHECKOUT PORTAL SPLIT SYSTEM STYLES EXTENSION
   ========================================================================== */
.checkout-portal-section {
    position: relative;
    padding: 80px 0 120px 0;
    background-color: var(--color-bg-dark);
    z-index: 5;
}

.checkout-portal-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

.checkout-grid-gap {
    gap: 40px 0;
    align-items: flex-start;
}

/* --- Left Side Accordion Architecture System --- */
.checkout-accordion-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-acc-item {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.4s ease;
}

.checkout-acc-item.active {
    border-color: rgba(242, 101, 34, 0.3);
}

.checkout-acc-trigger {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.step-num {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-right: 20px;
}

.step-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    flex-grow: 1;
}

.acc-indicator-arrow {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.checkout-acc-item.active .acc-indicator-arrow {
    transform: rotate(-180deg);
    color: var(--color-accent);
}

.checkout-acc-panel {
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.checkout-panel-body {
    padding: 10px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.panel-action-footer {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.btn-step-next {
    background-color: #ffffff;
    color: #000000;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}

.btn-step-next:hover {
    background-color: var(--color-accent);
    color: #ffffff;
}

/* --- Payment Grid Cards Modules --- */
.payment-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    margin-bottom: 6px;
}

.payment-method-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 24px 16px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.payment-method-card:hover {
    border-color: rgba(242, 101, 34, 0.4);
}

.payment-method-card.active {
    background-color: rgba(242, 101, 34, 0.02);
    border-color: var(--color-accent);
}

/* Brand accent orange selection focal indicator point dot tracking mockup */
.payment-method-card.active::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-accent);
}

.payment-radio-hidden {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-card-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.payment-card-icon {
    font-size: 1.8rem;
    color: #ffffff;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.payment-method-card.active .payment-card-icon {
    color: var(--color-accent);
    opacity: 1;
}

.payment-card-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.payment-method-card.active .payment-card-label {
    color: #ffffff;
}

.dynamic-payment-fields-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: var(--transition-smooth);
}

.display-hide-field {
    display: none !important;
}

/* Inactive billing textarea states layout styling constraints */
.style-billing-input textarea:disabled {
    opacity: 0.15;
    cursor: not-allowed;
    background-color: #222222;
    border-color: transparent !important;
}

/* --- Right Side: Checkout Summary Sidebar --- */
.checkout-summary-sidebar {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.summary-sidebar-title {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 20px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.summary-pricing-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.summary-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.pricing-label {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.pricing-value {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.text-accent-bold {
    color: var(--color-accent) !important;
    font-weight: 700;
}

.summary-divider-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 8px 0;
}

.total-highlight-row {
    margin-top: 4px;
}

.pricing-label-total {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.pricing-value-total {
    font-family: var(--font-primary);
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
}

/* Coupon Interaction elements */
.coupon-apply-widget {
    display: flex;
    gap: 12px;
    width: 100%;
    margin: 35px 0 25px 0;
}

.coupon-input-node {
    flex-grow: 1;
    padding: 14px 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

.coupon-input-node:focus {
    border-color: var(--color-accent);
}

.btn-coupon-apply {
    background-color: #333333;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0 28px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-coupon-apply:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Master Order Placement CTA Button Layout Module */
.btn-master-confirm-order {
    width: 100%;
    background-color: var(--color-accent);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 24px 16px 35px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
    transition: background-color 0.4s ease, transform 0.3s ease, box-shadow 0.4s ease;
    /* box-shadow: 0 10px 25px rgba(242, 101, 34, 0.2); */
    text-transform: capitalize;
}

.btn-master-confirm-order:hover {
    background-color: #000000;
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.confirm-btn-icons {
    position: relative;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirm-btn-icons .icon-confirm,
.confirm-btn-icons .icon-arrow {
    font-size: 0.85rem;
    position: absolute;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.confirm-btn-icons .icon-arrow {
    opacity: 0;
    transform: translateX(-15px);
}

.btn-master-confirm-order:hover .icon-confirm {
    opacity: 0;
    transform: translateX(15px);
}

.btn-master-confirm-order:hover .icon-arrow {
    opacity: 1;
    transform: translateX(0);
}

.back-to-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 25px auto 0 auto;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.back-to-cart-link:hover {
    color: var(--color-accent);
}

/* Scoped layout column overrides for checkout page */
@media (min-width: 992px) {
    .checkout-grid-gap>.col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .checkout-grid-gap>.col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
}

/* Custom checkbox states */
.custom-checkbox-row input[type="checkbox"]:checked~.checkbox-indicator {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.custom-checkbox-row input[type="checkbox"]:checked~.checkbox-indicator:after {
    display: block;
}

/* ==========================================================================
   CHECKOUT RESPONSIVE GRID MATRIX BREAKPOINTS
   ========================================================================== */
@media (max-width: 991px) {
    .checkout-acc-trigger {
        padding: 24px 30px;
    }

    .checkout-panel-body {
        padding: 10px 30px 30px 30px;
    }

    .checkout-summary-sidebar {
        padding: 30px;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .payment-cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .payment-method-card {
        padding: 16px;
    }

    .payment-card-ui {
        flex-direction: row;
        gap: 16px;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .checkout-acc-trigger {
        padding: 20px 15px;
    }

    .step-num {
        margin-right: 12px;
        font-size: 1rem;
    }

    .step-title {
        font-size: 1.05rem;
    }

    .checkout-panel-body {
        padding: 10px 15px 24px 15px;
        gap: 20px;
    }

    .coupon-apply-widget {
        flex-direction: column;
        border-radius: 0;
        background: none;
        gap: 12px;
    }

    .btn-coupon-apply {
        padding: 14px 0;
    }

    .btn-master-confirm-order {
        padding: 14px 20px 14px 25px;
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   PRODUCT DETAIL SHOWCASE PAGE (PIXEL-PERFECT GRAPHIC MAPPING)
   ========================================================================== */
.product-detail-showcase-section {
    position: relative;
    padding: 140px 0 120px 0;
    background-color: var(--color-bg-dark);
    z-index: 5;
    width: 100%;
}

.product-detail-showcase-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

.detail-main-grid-row {
    gap: 50px 0;
    align-items: flex-start;
}

/* --- Left Side: Presentation Media Deck Platform --- */
.detail-gallery-stage {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
}

.main-focal-pedestal {
    width: 100%;
    height: 450px;
    /* background-color: #121316; */
    border-radius: 12px;
    /* border: 1px solid rgba(255, 255, 255, 0.03); */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* overflow: hidden; */
}

.pedestal-img-holder {
    width: 100%;
    height: 100%;
    display: flex;
    /* justify-content: center;
    align-items: center;
    padding: 40px; */
}

.pedestal-img-holder img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    /* filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.6)); */
    transition: var(--transition-smooth);
}

.main-focal-pedestal:hover .pedestal-img-holder img {
    transform: scale(1.03);
}

/* Gallery Carousel Navigation Thumb Row Track */
.gallery-thumbnails-strip-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.thumb-track-container {
    display: flex;
    gap: 12px;
    flex-grow: 1;
}

.thumb-item {
    width: 76px;
    height: 76px;
    /* background-color: #121316; */
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: var(--transition-fast);
}

.thumb-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0.4);
    opacity: 0.6;
}

.thumb-item:hover img,
.thumb-item.active img {
    filter: grayscale(0) invert(0);
    opacity: 1;
}

.thumb-item.active {
    border-color: var(--color-accent);
}

/* Mini Nav Indicators attached below thumb gallery deck */
.thumb-navigation-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.thumb-navigation-controls .pagination-page-indicator .current-num {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.thumb-navigation-controls .pagination-page-indicator .num-divider {
    color: rgba(255, 255, 255, 0.15);
    margin: 0 6px;
    font-size: 0.9rem;
}

.thumb-navigation-controls .pagination-page-indicator .max-num {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.thumb-navigation-controls .pagination-arrow-btn {
    width: 32px;
    height: 36px;
    font-size: 0.8rem;
}

/* --- Right Side: Contextual Product Information Deck --- */
.product-specs-info-pane {
    display: flex;
    flex-direction: column;
}

/* Return Navigation button styling elements */
.return-listing-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    opacity: 0.6;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    transition: var(--transition-fast);
    width: max-content;
}

.return-icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.65rem;
    transition: var(--transition-fast);
}

.return-listing-btn:hover {
    opacity: 1;
    color: var(--color-accent);
}

.return-listing-btn:hover .return-icon-circle {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
    color: #ffffff;
}

.specs-product-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.specs-product-intro {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 35px;
}

/* Vector SVG High Performance badges track */
.specs-features-vector-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 30px;
}

.vector-badge-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.svg-badge-icon {
    width: 28px;
    height: 28px;
    color: var(--color-accent);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.svg-badge-icon svg {
    width: 100%;
    height: 100%;
}

.badge-label-text {
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: capitalize;
}

/* Actions trigger strip mapping unified mockup styles */
.specs-action-strip-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.spec-qty-modifier {
    background-color: rgba(255, 255, 255, 0.04) !important;
    padding: 10px 18px !important;
    border-radius: 30px !important;
}

.btn-specs-add-to-cart {
    flex-grow: 1;
    background-color: var(--color-accent);
    color: #ffffff;
    border: none;
    outline: none;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 18px 0;
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
    /* box-shadow: 0 10px 25px rgba(242, 101, 34, 0.2); */
    transition: var(--transition-smooth);
}

.btn-specs-add-to-cart:hover {
    background-color: #ffffff;
    color: #000000;
    /* box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1); */
    transform: translateY(-2px);
}

/* Right Detail Accordion Stack Sub-Engine Modules */
.specs-details-accordion-group {
    display: flex;
    flex-direction: column;
}

.specs-accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.specs-accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-family: var(--font-primary);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.specs-accordion-trigger i {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.specs-accordion-item.unique-active .specs-accordion-trigger i {
    transform: rotate(-180deg);
    color: var(--color-accent);
}

.specs-accordion-collapse {
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.specs-accordion-body {
    padding: 0 0 28px 0;
}

.accordion-text-paragraph {
    color: var(--color-text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Checked custom vectors bulleted array mapping */
.vector-checked-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vector-checked-bullet-list li {
    display: flex;
    align-items: flex-start;
}

.bullet-icon-box {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
    margin-right: 14px;
    margin-top: 3px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bullet-icon-box svg {
    width: 100%;
    height: 100%;
}

.bullet-text-node {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.text-white {
    color: #ffffff !important;
}

/* ==========================================================================
   PRODUCT DETAIL SCREEN RESPONSIVE SYSTEM LAYOUT
   ========================================================================== */
@media (max-width: 1200px) {
    .main-focal-pedestal {
        height: 400px;
    }

    .thumb-item {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 991px) {
    .product-detail-showcase-section {
        padding: 100px 0 80px 0;
    }

    .specs-features-vector-grid {
        gap: 24px;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .gallery-thumbnails-strip-row {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .thumb-track-container {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }

    .thumb-navigation-controls {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .product-detail-showcase-section {
        padding: 80px 0 60px 0;
    }

    .main-focal-pedestal {
        height: 320px;
    }

    .thumb-item {
        width: 52px;
        height: 52px;
        padding: 6px;
    }

    .specs-action-strip-row {
        flex-direction: column;
        align-items: stretch;
    }

    .spec-qty-modifier {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   AUTHENTICATION MODAL & LOGGED-IN PROFILE STATES
   ========================================================================== */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.auth-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.auth-modal-card {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    width: 100%;
    max-width: 460px;
    padding: 40px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); */
}

.auth-modal-overlay.active .auth-modal-card {
    transform: translateY(0) scale(1);
}

.auth-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    outline: none;
    color: var(--color-text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-modal-close:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.auth-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-modal-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.auth-modal-title {
    font-family: var(--font-primary);
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.auth-modal-subtitle {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.auth-form-wrapper {
    display: none;
}

.auth-form-wrapper.active {
    display: block;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-input-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-input {
    width: 100%;
    padding: 14px 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.92rem;
    outline: none;
    transition: var(--transition-fast);
}

.auth-input:focus {
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.04);
}

.auth-button-submit {
    background-color: var(--color-accent);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 0;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    margin-top: 10px;
}

.auth-button-submit:hover {
    background-color: #ffffff;
    color: #000000;
}

.auth-modal-switch-prompt {
    text-align: center;
    margin-top: 24px;
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.auth-modal-switch-btn {
    background: none;
    border: none;
    outline: none;
    color: var(--color-accent);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0 4px;
}

.auth-modal-switch-btn:hover {
    text-decoration: underline;
    color: #ffffff;
}

/* User Account Info Dashboard View styles */
.auth-dashboard-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.auth-avatar-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(242, 101, 34, 0.1);
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.auth-user-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.auth-user-email {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.auth-button-logout {
    background-color: #222222;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    padding: 14px 0;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 15px;
}

.auth-button-logout:hover {
    background-color: #cc3333;
    color: #ffffff;
    border-color: transparent;
}

.auth-alert-message {
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    margin-top: 15px;
    text-align: left;
    display: none;
}

.auth-alert-message.error {
    background-color: rgba(244, 67, 54, 0.1);
    /* border: 1px solid rgba(244, 67, 54, 0.2); */
    color: #ff5252;
    display: block;
    margin: 10px;
}

.auth-alert-message.success {
    background-color: rgba(76, 175, 80, 0.1);
    /* border: 1px solid rgba(76, 175, 80, 0.2); */
    color: #4caf50;
    display: block;
    margin: 10px;
}

/* Header Action Button Logged-In Active State */
.action-btn.logged-in {
    border-color: var(--color-accent) !important;
    position: relative;
}

.action-btn.logged-in:hover {
    background-color: var(--color-bg-dark) !important;
    position: relative;
}

.action-btn.logged-in i {
    color: var(--color-accent);
}

.action-btn.logged-in i:hover {
    color: var(--color-primary) !important;
}

.action-btn.logged-in::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 7px;
    color: #ffffff;
    background-color: var(--color-accent);
    border-radius: 50%;
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 12px;
    height: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-bg-dark);
}

/* Mobile Profile NavLink Custom Styling */
.mobile-only-profile {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only-profile {
        display: block;
        margin-top: 15px;
        width: 100%;
        max-width: 280px;
    }

    .mobile-profile-link {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background-color: rgba(242, 101, 34, 0.08) !important;
        border: 1px solid rgba(242, 101, 34, 0.2) !important;
        border-radius: 30px;
        padding: 12px 24px !important;
        font-size: 1.1rem !important;
        color: var(--color-accent) !important;
        font-weight: 600 !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: var(--transition-smooth) !important;
        text-align: center;
        width: 100%;
        height: auto !important;
        line-height: normal !important;
        opacity: 0.9 !important;
    }

    .mobile-profile-link:hover,
    .mobile-profile-link:focus {
        background-color: var(--color-accent) !important;
        color: #ffffff !important;
        border-color: var(--color-accent) !important;
        opacity: 1 !important;
    }

    .mobile-profile-link.logged-in {
        background-color: rgba(76, 175, 80, 0.08) !important;
        border: 1px solid rgba(76, 175, 80, 0.2) !important;
        color: #4caf50 !important;
    }

    .mobile-profile-link.logged-in:hover,
    .mobile-profile-link.logged-in:focus {
        background-color: #4caf50 !important;
        color: #ffffff !important;
        border-color: #4caf50 !important;
    }
}