/* ================================
   ROOT VARIABLES & RESETS
   ================================ */
:root {
    --primary-color: #E05600;
    --primary-gradient: linear-gradient(135deg, #E05600 0%, #FF6F1A 100%);
    --white: #FFFFFF;
    --black: #0D0D0D;
    --header-bg: #EAEAEA;
    --text-muted: #A0A0A0;
    --text-dark: #1A1A1A;

    --glass-bg: rgba(20, 20, 20, 0.65);
    --glass-border: rgba(255, 255, 255, 0.15);

    --font-heading: 'Agdasima', sans-serif;
    --font-content: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-content);
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ================================
   ANNOUNCEMENT BAR
   ================================ */
.announcement-bar {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 6px 15px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 0.5px;
}

.announcement-bar .star-icon {
    font-size: 10px;
    opacity: 0.9;
}

/* ================================
   HEADER SECTION
   ================================ */
.header {
    background-color: var(--header-bg);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 5%;
}

.header-container {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-icon {
    width: 14px;
    height: 14px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dropdown-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-group select {
    background: transparent;
    border: none;
    font-family: var(--font-content);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
}

.flag-icon {
    width: 18px;
    height: 12px;
    object-fit: cover;
}

/* ================================
   NAVBAR SECTION
   ================================ */
.navbar {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 5%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.navbar-container {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-item a {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.nav-item.active a {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid transparent;
    border-image: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.1)) 1;
    backdrop-filter: blur(4px);
    color: var(--white) !important;
}

.nav-item a:hover {
    color: var(--primary-color);
}

.nav-item a span {
    font-size: 16px;
}

.cart-box a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cart-box a:hover {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.cart-icon {
    width: 18px;
    height: 18px;
}

/* ================================
   HERO SECTION & CAROUSEL
   ================================ */
.hero-section {
    position: relative;
    min-height: calc(100vh - 65px);
    padding: 140px 5% 60px 5%;
    display: flex;
    align-items: center;
}

/* Background Carousel Slides */
.hero-bg-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1350px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

/* Hero Left Side Layout */
.hero-content-left {
    display: flex;
    flex-direction: column;
}

.hero-title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

/* Number Showcase Indicator */
.slide-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-content);
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 2px;
    padding-top: 15px;
    /* Aligns visually with title top edge */
}

.slide-indicator #current-slide {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.slide-indicator #current-slide.num-swap {
    transform: translateY(-10px);
    opacity: 0;
}

.slide-indicator .divider {
    opacity: 0.6;
}

/* Title Styles */
.hero-title {
    font-family: var(--font-heading);
    font-size: 150px;
    line-height: 0.88;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title .title-white {
    display: block;
    color: var(--white);
}

.hero-title .title-primary {
    display: block;
    color: var(--primary-color);
    margin-left: -85px;
}

.trusted-badge {
    margin-top: -120px;
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1.2;
    text-indent: 525px;
}

.trusted-badge span {
    display: block;
    font-weight: 400;
    opacity: 0.8;
}

.trusted-badge strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

/* Hero Right Side Layout & Description Transitions */
.hero-content-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 460px;
    justify-self: end;
}

.hero-text-slider {
    position: relative;
    min-height: 80px;
}

.hero-description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-indent: 120px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.hero-description.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Glass Card */
.hero-product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 4px;
    padding: 12px;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 15px;
    align-items: center;
}

.card-image-wrapper {
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-details {
    display: flex;
    flex-direction: column;
}

.card-tag {
    width: fit-content;
    margin-bottom: 8px;
}

/* .card-tag:hover {
    filter: brightness(0);
    transition: all 0.3s ease;
    content: "JUST FOR YOU" !important;
    color: var(--white) !important;
} */

.card-title {
    font-family: var(--font-content);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.card-subtext {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.3;
    margin-bottom: 10px;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.card-rating .stars {
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 1px;
}

.card-rating .rating-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.add-to-cart-btn {
    position: relative;
    background-color: var(--white);
    color: var(--black);
    border: none;
    padding: 10px 0;
    width: 100%;
    font-family: var(--font-content);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

/* Pseudo-element for skewed color expansion */
.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateX(-50%) skewX(-20deg);
    transition: width 0.4s ease;
    z-index: -1;
}

/* Button Text Layer */
.add-to-cart-btn span,
.add-to-cart-btn {
    position: relative;
    z-index: 2;
}

/* Hover State */
.add-to-cart-btn:hover {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.add-to-cart-btn:hover::before {
    width: 140%;
}

/* ================================
   CATEGORIES GRID FIX
   ================================ */
.categories-section {
    width: 100%;
    background-color: var(--black);
    overflow: hidden;
}

.categories-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.categories-row {
    display: flex;
    flex-wrap: nowrap;
    /* Ensures all 3 stay side-by-side on desktop */
    width: 100%;
    margin: 0;
    padding: 0;
}

.col-category {
    flex: 0 0 33.333333%;
    /* Exact 1/3 width equal column layout */
    max-width: 33.333333%;
    width: 33.333333%;
}

.category-card {
    position: relative;
    height: 520px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px 20px;
    border: 1px solid var(--white);
}

.col-category:last-child .category-card {
    border-right: none;
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.category-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.category-card:hover .category-bg img {
    transform: scale(1.04);
}

.category-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 2;
}

.category-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.category-tag {
    height: 24px;
    object-fit: contain;
    margin-bottom: 12px;
    display: block;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 0.95;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 300px;
}

/* Skew Hover Button Styles */
.btn-skew-hover {
    position: relative;
    background-color: var(--white);
    color: var(--black);
    border: none;
    padding: 12px 0;
    width: 100%;
    font-family: var(--font-content);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-skew-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateX(-50%) skewX(-20deg);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-skew-hover:hover {
    color: var(--white);
}

.btn-skew-hover:hover::before {
    width: 140%;
}

/* Responsive Wrap for Tablet/Mobile */
@media (max-width: 991px) {
    .categories-row {
        flex-wrap: wrap;
    }

    .col-category {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .category-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        height: 420px;
    }
}

/* ================================
   CONTINUOUS OFFER SLIDER (MARQUEE)
   ================================ */
.offer-marquee-section {
    background-color: var(--primary-color);
    color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    user-select: none;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}

.offer-marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-right: 25px;
}

.marquee-content span {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.marquee-content .star-icon {
    font-size: 16px;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ================================
   DISCOVER SECTION
   ================================ */
.discover-section {
    width: 100%;
    background-color: var(--white);
    color: var(--black);
    padding: 80px 5%;
}

.discover-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    align-items: start;
}

/* Left Column Styling */
.discover-left {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.discover-tag {
    object-fit: contain;
    margin-bottom: 12px;
    display: block;
}

.discover-title {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 0.95;
    font-weight: 700;
    text-transform: uppercase;
    /* color: var(--black); */
    letter-spacing: 0.5px;
    max-width: 720px;
}

.discover-title .highlight {
    color: var(--primary-color);
    display: inline;
}

/* Right Column Styling */
.discover-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.discover-description {
    font-family: var(--font-content);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.6px;
    color: var(--text-dark);
    text-transform: uppercase;
}

/* Image Wrapper Common Styles */
.discover-img-wrapper {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.discover-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.5s ease;
}

.discover-img-wrapper:hover img {
    transform: scale(1.02);
}

/* Specific Aspect Ratios for Image Dimensions */
.horizontal-img {
    height: 435px;
}

.vertical-img {
    height: 520px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .discover-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .discover-title {
        font-size: 42px;
    }

    .horizontal-img,
    .vertical-img {
        height: 350px;
    }
}

/* ================================
   PRESENCE / HISTORY SECTION
   ================================ */
.presence-section {
    position: relative;
    width: 100%;
    background-color: var(--black);
    padding: 100px 5% 80px 5%;
    overflow: hidden;
    color: var(--white);
}

/* Background image styling */
.presence-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.presence-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.presence-container {
    position: relative;
    z-index: 2;
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Header */
.presence-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.presence-tag {
    height: 24px;
    object-fit: contain;
    margin-bottom: 16px;
}

.presence-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

/* Grid & Glassmorphism Cards */
.presence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 50px;
}

.presence-card {
    background: rgba(45, 45, 45, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 4px;
    padding: 45px 25px 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Hover color change & subtle lift animation */
.presence-card:hover {
    background: rgba(224, 86, 0, 0.25);
    border-color: var(--primary-color);
    /* transform: translateY(-6px); */
    box-shadow: 0 12px 30px rgba(224, 86, 0, 0.2);
}

/* Stat Numbers */
.stat-number {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.presence-card:hover .stat-number {
    color: var(--white);
}

.stat-desc {
    font-family: var(--font-content);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.7);
    max-width: 220px;
}

.presence-card:hover .stat-desc {
    color: rgba(255, 255, 255, 0.95);
}

/* Footer Description */
.presence-footer-text {
    font-family: var(--font-content);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    max-width: 780px;
}

/* Responsive Grid */
@media (max-width: 991px) {
    .presence-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .presence-title {
        font-size: 48px;
    }
}

@media (max-width: 576px) {
    .presence-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   BRANDING SLIDER SECTION
   ================================ */
.branding-slider-section {
    width: 100%;
    background-color: var(--white);
    padding: 18px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    user-select: none;
}

.branding-track {
    display: flex;
    width: max-content;
    animation: brand-scroll 20s linear infinite;
}

/* Pause ticker on hover */
.branding-slider-section:hover .branding-track {
    animation-play-state: paused;
}

.branding-content {
    display: flex;
    align-items: center;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 35px;
}

.brand-btn:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

/* Smooth Marquee Scroll Animation */
@keyframes brand-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ================================
   SHOWREELS SECTION
   ================================ */
.reels-section {
    width: 100%;
    background-color: var(--white);
    color: var(--black);
    padding: 80px 5%;
}

.reels-container {
    max-width: 1350px;
    margin: 0 auto;
}

/* Header & Socials */
.reels-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.reels-tag {
    height: 24px;
    object-fit: contain;
    margin-bottom: 12px;
    display: block;
}

.reels-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: 0.5px;
}

.reels-social-grid {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-box {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: transparent;
}

.social-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Slider Track Wrapper */
.reels-slider-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.reels-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reel Cards */
.reel-card {
    flex: 0 0 calc(25% - 15px);
    /* Exactly 4 cards visible on desktop */
    max-width: calc(25% - 15px);
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #1a1a1a;
}

.reel-poster {
    position: relative;
    width: 100%;
    /* height: 380px; */
}

.reel-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play Button Top Right */
.reel-play-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background-color: var(--white);
    color: var(--black);
    border: none;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.reel-play-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Bottom Controls Layout */
.reels-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Custom Progress Line Slider */
.reels-progress-bar {
    width: 300px;
    height: 2px;
    background-color: #E0E0E0;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    /* Dynamically updated via JS */
    background-color: var(--black);
    transition: transform 0.3s ease, width 0.3s ease;
}

/* Arrow Controls */
.reels-arrows {
    display: flex;
    align-items: center;
    gap: 12px;
}

.arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.5);
    background: transparent;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-btn:hover {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* Responsive Rules */
@media (max-width: 1200px) {
    .reel-card {
        flex: 0 0 calc(33.333% - 14px);
        max-width: calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .reel-card {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .reels-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .reel-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .reels-progress-bar {
        width: 150px;
    }
}

/* ================================
   FAQ SECTION
   ================================ */
.faq-section {
    width: 100%;
    background-color: var(--white);
    color: var(--black);
    padding: 90px 5%;
}

.faq-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* Left Image Styling */
.faq-image-wrapper {
    width: 100%;
    /* height: 640px; */
    border-radius: 2px;
    overflow: hidden;
}

.faq-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Content Header */
.faq-content {
    display: flex;
    flex-direction: column;
}

.faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 25px;
}

.faq-tag {
    /* height: 24px; */
    object-fit: contain;
    margin-bottom: 12px;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: 0.5px;
}

/* Accordion Layout */
.faq-accordion {
    border-top: 1px solid #E5E5E5;
}

.faq-item {
    border-bottom: 1px solid #E5E5E5;
    transition: background-color 0.3s ease;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-number {
    font-family: var(--font-content);
    font-size: 24px;
    font-weight: 400;
    color: var(--black);
    margin-right: 30px;
}

.faq-question-text {
    font-family: var(--font-content);
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
    flex-grow: 1;
}

.faq-icon {
    font-family: var(--font-content);
    font-size: 30px;
    font-weight: 400;
    color: var(--black);
    transition: transform 0.5s ease;
    margin-left: 15px;
}

/* Accordion Collapsible Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 0 0 50px;
}

.faq-answer p {
    font-family: var(--font-content);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(13, 13, 13, 0.65);
    max-width: 520px;
}

/* Active Expanded State */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-item.active .faq-icon {
    content: "−";
    transform: rotate(180deg);
}

/* Responsive Rules */
@media (max-width: 991px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-image-wrapper {
        height: 420px;
    }

    .faq-title {
        font-size: 42px;
    }

    .faq-answer {
        padding-left: 0;
    }
}

/* ================================
   CONTACT US SECTION
   ================================ */
.contact-section {
    width: 100%;
    background-color: var(--white);
    color: var(--black);
    padding: 80px 5% 100px;
}

.contact-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* Left Column Styling */
.contact-left {
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.contact-title .highlight-text {
    color: var(--primary-color);
}

.contact-subtitle {
    font-family: var(--font-content);
    font-size: 20px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 35px;
}

.contact-social-grid {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Right Column Form Styling */
.contact-right {
    width: 100%;
}

.form-instruction {
    font-family: var(--font-content);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Form Fields */
.form-group {
    width: 100%;
    border: 1px solid rgb(0, 0, 0, 0.2);
    border-radius: 2px;
    padding: 12px 18px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.field-label {
    font-family: var(--font-content);
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    display: block;
}

.form-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-content);
    font-size: 13px;
    color: var(--black);
    padding: 0;
}

.form-input::placeholder {
    color: #555555;
    font-weight: 400;
}

/* Phone Field Specific Alignment */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-select {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-right: 8px;
    user-select: none;
}

.arrow-icon {
    font-size: 10px;
    color: #555555;
}

.flag-img {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50px;
    object-fit: cover;
}

.country-code {
    font-family: var(--font-content);
    font-size: 13px;
    font-weight: 500;
    color: #333333;
}

.form-input.phone-field {
    flex-grow: 1;
}

/* Form Footer */
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-top: 15px;
}

.disclaimer-text {
    font-family: var(--font-content);
    font-size: 14px;
    line-height: 1.4;
    color: #888888;
    max-width: 260px;
}


.contact-submit-btn {
    position: relative;
    background-color: rgb(0, 0, 0, 0.2);
    color: var(--black);
    border: 1px solid rgb(0, 0, 0);
    padding: 10px 0;
    width: 35%;
    font-family: var(--font-content);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

/* Pseudo-element for skewed color expansion */
.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateX(-50%) skewX(-20deg);
    transition: width 0.4s ease;
    z-index: -1;
}

/* Button Text Layer */
.contact-submit-btn span,
.contact-submit-btn {
    position: relative;
    z-index: 2;
}

/* Hover State */
.contact-submit-btn:hover {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.contact-submit-btn:hover::before {
    width: 140%;
}

/* Responsive Layout */
@media (max-width: 991px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-title {
        font-size: 42px;
    }

    .form-footer {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .contact-submit-btn {
        width: 100%;
    }
}

/* ================================
   FOOTER SECTION
   ================================ */
.site-footer {
    width: 100%;
    background-color: #0d0d0d;
    background-image: url('assets/footer-bg.png');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    color: var(--white);
    padding-top: 50px;
    position: relative;
    overflow: hidden;
}

/* 1. Clients Slider */
.clients-slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 30px;
    user-select: none;
}

.clients-track {
    display: flex;
    width: max-content;
    animation: clients-scroll 20s linear infinite;
}

.clients-slider-wrapper:hover .clients-track {
    animation-play-state: paused;
}

.clients-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
}

.client-card {
    width: 175px;
    height: 140px;
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.client-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.85;
    filter: grayscale(20%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.client-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: #1e1e1e;
}

.client-card:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 50px;
}

/* 2. Main Footer Content */
.main-footer {
    padding: 0 5% 40px;
}

.footer-container {
    max-width: 1350px;
    margin: 0 auto;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 70px;
}

/* Brand Column */
.footer-brand-col {
    max-width: 600px;
}

.footer-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

.footer-desc {
    font-family: var(--font-content);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 25px;
}

/* Dark Theme Social Media Icons Overrides */
.footer-social-grid {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-box.dark-theme {
    border-color: rgba(255, 255, 255, 0.2);
}

.social-box.dark-theme img {
    filter: invert(1);
    /* Inverts icon graphics for dark background */
}

/* Navigation Links */
.footer-nav-col {
    padding-top: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-links a {
    font-family: var(--font-content);
    font-size: 15px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--black);
}

/* Bottom Row (Copyright & Credits) */
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding-top: 25px; */
}

.copyright-text {
    font-family: var(--font-content);
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
}

.credits-text {
    font-family: var(--font-content);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

.credits-text strong {
    font-weight: 700;
    color: #000;
}

/* Infinite Marquee Animation Keyframes */
@keyframes clients-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Rules */
@media (max-width: 768px) {
    .footer-top-row {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        align-items: flex-start;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ================================
   TESTIMONIAL SECTION
   ================================ */
.testimonial-section {
    width: 100%;
    /* background-color: var(--primary-color); */
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    width: 100%;
    position: relative;
}

.testimonial-track {
    display: flex;
    width: 100%;
    position: relative;
    height: 680px;
}

/* Slide Transition Animations (In from Right) */
.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, visibility 0.6s;
    z-index: 1;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0%);
    z-index: 2;
}

.testimonial-slide.prev-out {
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
}

/* Left Column Styling */
.testi-left {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.testi-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating Glassmorphic Hero Product Card */
.testimonial-product-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 550px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 12px;
}

.card-inner {
    display: flex;
    gap: 15px;
    align-items: center;
}

.prod-img-box {
    /* width: 100px; */
    border-radius: 3px;
    overflow: hidden;
}

.prod-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prod-details {
    display: flex;
    flex-direction: column;
}

.prod-tag {
    width: fit-content;
    margin-bottom: 8px;
}


.prod-title {
    font-family: var(--font-content);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.prod-desc {
    font-size: 14px;
    color: rgb(255, 255, 255, 0.5);
    line-height: 1.3;
    margin-bottom: 10px;
    font-weight: 300;
}

.prod-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.prod-rating .stars {
    color: var(--primary-color);
    font-size: 16px;
    letter-spacing: 1px;
}

.prod-rating .rating-value {
    font-size: 14px;
    color: rgb(255, 255, 255, 0.5);
    font-weight: 300;
}

.add-to-cart-btn {
    position: relative;
    background-color: var(--white);
    color: var(--black);
    border: none;
    padding: 10px 0;
    width: 100%;
    font-family: var(--font-content);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

/* Pseudo-element for skewed color expansion */
.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateX(-50%) skewX(-20deg);
    transition: width 0.4s ease;
    z-index: -1;
}

/* Button Text Layer */
.add-to-cart-btn span,
.add-to-cart-btn {
    position: relative;
    z-index: 2;
}

/* Hover State */
.add-to-cart-btn:hover {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.add-to-cart-btn:hover::before {
    width: 140%;
}

/* Right Column Styling */
.testi-right {
    position: relative;
    width: 100%;
    height: 100%;
    /* background-color: var(--primary-color); */
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.orange-bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    pointer-events: none;
}

.testi-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testi-header {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testi-tag {
    height: 22px;
    object-fit: contain;
    margin-bottom: 12px;
}

.testi-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.testi-quote {
    font-family: var(--font-content);
    font-size: 24px;
    font-weight: 300;
    line-height: 1.45;
    color: #FFFFFF;
    max-width: 400px;
    margin: 0 0 35px 0;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.verified-badge {
    font-family: var(--font-content);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-badge i {
    font-size: 11px;
}

/* Bottom Controls Overlay Bar */
.testi-controls-bar {
    position: absolute;
    bottom: 40px;
    right: 8%;
    width: calc(50% - 16%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.slide-counter {
    font-family: var(--font-content);
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.testi-progress-track {
    flex-grow: 1;
    max-width: 240px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 20px;
    position: relative;
    overflow: hidden;
}

.progress-fill-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 33.333%;
    background-color: #FFFFFF;
    transition: width 0.4s ease;
}

.testi-nav-arrows {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-arrow {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-arrow:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive Rules */
@media (max-width: 991px) {
    .testimonial-track {
        height: auto;
    }

    .testimonial-slide {
        grid-template-columns: 1fr;
        position: relative;
        height: auto;
    }

    .testi-left {
        height: 480px;
    }

    .testimonial-product-card {
        left: 20px;
        bottom: 20px;
        width: calc(100% - 40px);
    }

    .testi-right {
        padding: 60px 5% 100px;
    }

    .testi-controls-bar {
        width: 90%;
        right: 5%;
        bottom: 30px;
    }
}

/* ================================
   3D CINEMA GALLERY SECTION
   ================================ */
.gallery-section {
    width: 100%;
    background-color: var(--white);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Styling */
.gallery-header {
    text-align: center;
    margin-bottom: 40px;
    z-index: 5;
}

.gallery-tag {
    height: 24px;
    object-fit: contain;
    margin-bottom: 24px;
    display: block;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 400;
    line-height: 1.05;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 3D Curved Perspective Scene */
.gallery-scene {
    perspective: 1200px;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.gallery-carousel {
    position: relative;
    width: 280px;
    height: 320px;
    transform-style: preserve-3d;
    cursor: grab;
}

.gallery-carousel.dragging {
    cursor: grabbing;
}

/* 3D Gallery Items */
.gallery-item {
    position: absolute;
    inset: 0;
    border-radius: 4px;
    overflow: hidden;
    backface-visibility: hidden;
    will-change: transform, opacity;
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.gallery-item.is-active {
    border-color: rgba(255, 255, 255, 0.3);
}

.gallery-item.is-active img {
    filter: brightness(1.05);
}

/* Footer Subtitle */
.gallery-footer-text {
    margin-top: 25px;
    text-align: center;
    z-index: 5;
}

.gallery-footer-text p {
    font-family: var(--font-content);
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0.3px;
}

/* Responsive Rules */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 32px;
    }

    .gallery-scene {
        height: 320px;
    }

    .gallery-carousel {
        width: 220px;
        height: 260px;
    }
}

/* ================================
   INNER HERO SECTION
   ================================ */
.inner-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    padding-top: 140px;
    /* Space for absolute navbar */
    overflow: hidden;
    background-color: #0b0b0b;
}

/* Background Image & Overlay */
.inner-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.inner-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Container & Grid Layout */
.inner-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* Left Column Styling */
.inner-hero-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    font-family: var(--font-content, sans-serif);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #ffffff;
}

.breadcrumb-separator {
    font-family: var(--font-content, sans-serif);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
    font-family: var(--font-content, sans-serif);
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

/* Main Heading Title */
.inner-hero-title {
    font-family: var(--font-heading, sans-serif);
    font-size: 64px;
    font-weight: 400;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

/* Right Column Description */
.inner-hero-right {
    max-width: 460px;
    text-align: right;
    margin-bottom: 8px;
}

.inner-hero-desc {
    font-family: var(--font-content, sans-serif);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 0;
}

/* Responsive Rules */
@media (max-width: 991px) {
    .inner-hero {
        min-height: 380px;
        padding-bottom: 40px;
    }

    .inner-hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .inner-hero-title {
        font-size: 52px;
    }

    .inner-hero-right {
        max-width: 100%;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .inner-hero-title {
        font-size: 38px;
    }

    .inner-hero-desc {
        font-size: 11px;
    }
}

/* ================================
   CART SECTION
   ================================ */
.cart-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0 100px;
    color: #0d0d0d;
}

.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Header & Breadcrumb */
.cart-header {
    margin-bottom: 40px;
}

.cart-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-content, sans-serif);
    font-size: 15px;
    color: #777777;
    margin-bottom: 15px;
}

.cart-breadcrumb a {
    color: #777777;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-breadcrumb a:hover {
    color: #0d0d0d;
}

.cart-breadcrumb .sep {
    color: #999999;
}

.cart-breadcrumb .current {
    color: #0d0d0d;
    font-weight: 700;
}

.cart-main-title {
    font-family: var(--font-heading, sans-serif);
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0d0d0d;
    margin: 0;
}

/* Table Column Headers */
.cart-table-header {
    display: grid;
    grid-template-columns: 2.2fr 1.2fr 1fr;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e2e2;
    font-family: var(--font-content, sans-serif);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #222222;
    text-transform: uppercase;
}

.col-quantity {
    text-align: center;
}

.col-total {
    text-align: right;
}

/* Product List Container (Max-Height + Custom Vertical Scroll) */
.cart-product-list {
    max-height: 380px;
    /* Controls list height for scroll bar */
    overflow-y: auto;
    padding-right: 15px;
    margin-bottom: 30px;
}

/* Custom Scrollbar Styling */
.cart-product-list::-webkit-scrollbar {
    width: 5px;
}

.cart-product-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.cart-product-list::-webkit-scrollbar-thumb {
    background: #0d0d0d;
    border-radius: 2px;
}

.cart-product-list::-webkit-scrollbar-thumb:hover {
    background: #e05600;
}

/* Single Cart Item */
.cart-item {
    display: grid;
    grid-template-columns: 2.2fr 1.2fr 1fr;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e2e2e2;
}

/* Product Info */
.item-product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.item-thumb {
    width: 75px;
    height: 75px;
    background-color: #0d0d0d;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    flex-shrink: 0;
}

.item-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.item-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.item-title {
    font-family: var(--font-heading, sans-serif);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    color: #0d0d0d;
    text-transform: uppercase;
    margin: 0;
    max-width: 320px;
}

.item-price {
    font-family: var(--font-content, sans-serif);
    font-size: 14px;
    font-weight: 700;
    color: #e05600;
}

/* Quantity Control & Trash Button */
.item-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #555555;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0 4px;
}

.qty-btn:hover {
    color: #0d0d0d;
}

.qty-val {
    font-family: var(--font-content, sans-serif);
    font-size: 13px;
    font-weight: 600;
    color: #0d0d0d;
}

.remove-btn {
    background: none;
    border: none;
    color: #444444;
    font-size: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.remove-btn:hover {
    color: #e05600;
}

/* Item Total Column */
.item-total {
    text-align: right;
    font-family: var(--font-content, sans-serif);
    font-size: 15px;
    font-weight: 700;
    color: #e05600;
}

/* Bottom Summary Row */
.cart-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 20px;
}

.summary-details {
    max-width: 420px;
    text-align: right;
    margin-bottom: 25px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 10px;
}

.summary-line .lbl {
    font-family: var(--font-content, sans-serif);
    font-size: 13px;
    font-weight: 800;
    color: #0d0d0d;
    letter-spacing: 0.5px;
}

.summary-line .val {
    font-family: var(--font-content, sans-serif);
    font-size: 14px;
    font-weight: 800;
    color: #0d0d0d;
}

.summary-note {
    font-family: var(--font-content, sans-serif);
    font-size: 12px;
    color: #666666;
    line-height: 1.4;
    margin: 0;
}

/* Metallic Sweep Hover Animated Button */
.cart-checkout-btn {
    position: relative;
    width: 380px;
    height: 52px;
    background-color: #e3e3e3;
    border: 1px solid #1a1a1a;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.cart-checkout-btn span {
    position: relative;
    z-index: 2;
    font-family: var(--font-content, sans-serif);
    font-size: 15px;
    font-weight: 600;
    color: #0d0d0d;
    transition: color 0.4s ease;
}

/* Metallic Sweep Effect */
.cart-checkout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.8) 50%,
            transparent 100%);
    transition: left 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.cart-checkout-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d0d0d;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.cart-checkout-btn:hover {
    border-color: #0d0d0d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cart-checkout-btn:hover::before {
    left: 100%;
}

.cart-checkout-btn:hover::after {
    opacity: 1;
}

.cart-checkout-btn:hover span {
    color: #ffffff;
}

/* Responsive Rules */
@media (max-width: 768px) {
    .cart-main-title {
        font-size: 42px;
    }

    .cart-table-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .col-quantity,
    .item-quantity {
        justify-content: flex-start;
    }

    .item-total {
        text-align: left;
    }

    .cart-summary {
        align-items: stretch;
    }

    .summary-details {
        max-width: 100%;
        text-align: left;
    }

    .cart-checkout-btn {
        width: 100%;
    }
}

/* ================================
   CHECKOUT SECTION
   ================================ */
.checkout-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0 100px;
    color: #0d0d0d;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Header & Breadcrumb */
.checkout-header {
    margin-bottom: 35px;
}

.checkout-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-content, sans-serif);
    font-size: 14px;
    color: #777777;
    margin-bottom: 12px;
}

.checkout-breadcrumb a {
    color: #777777;
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkout-breadcrumb a:hover {
    color: #0d0d0d;
}

.checkout-breadcrumb .sep {
    color: #999999;
}

.checkout-breadcrumb .current {
    color: #0d0d0d;
    font-weight: 700;
}

.checkout-main-title {
    font-family: var(--font-heading, sans-serif);
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0d0d0d;
    margin: 0;
}

/* Split Grid Layout */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* col-md-6 equivalent */
    gap: 50px;
    align-items: start;
}

/* Accordion Component */
.checkout-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.accordion-item.active {
    border-color: #0d0d0d;
}

.accordion-header {
    width: 100%;
    padding: 18px 20px;
    background-color: #fcfcfc;
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.accordion-item.active .accordion-header {
    background-color: #0d0d0d;
    color: #ffffff;
}

.step-num {
    font-family: var(--font-heading, sans-serif);
    font-size: 16px;
    font-weight: 800;
    color: #e05600;
}

.step-title {
    font-family: var(--font-heading, sans-serif);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex: 1;
    color: #0d0d0d;
}

.accordion-item.active .step-title {
    color: #ffffff;
}

.accordion-icon {
    font-size: 14px;
    color: #666666;
    transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: #ffffff;
}

/* Accordion Body & Form Elements */
.accordion-body {
    padding: 22px 20px;
    display: none;
    background-color: #ffffff;
}

.accordion-item.active .accordion-body {
    display: block;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group.half {
    flex: 1;
}

.form-group.full {
    width: 100%;
}

.form-group label {
    font-family: var(--font-content, sans-serif);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #222222;
}

.form-group input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #cccccc;
    background-color: #ffffff;
    font-family: var(--font-content, sans-serif);
    font-size: 13px;
    color: #0d0d0d;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: #0d0d0d;
}

/* Payment COD Styling */
.cod-box {
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    padding: 16px;
    margin-bottom: 20px;
}

.cod-radio-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cod-radio-wrap input[type="radio"] {
    accent-color: #0d0d0d;
    margin-top: 3px;
}

.cod-radio-wrap label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: var(--font-content, sans-serif);
    font-size: 13px;
    color: #222222;
    cursor: pointer;
}

.cod-radio-wrap label span {
    font-size: 12px;
    color: #666666;
}

/* Checkbox Styling */
.billing-checkbox-wrap {
    margin-bottom: 15px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-family: var(--font-content, sans-serif);
    font-size: 13px;
    font-weight: 500;
    color: #222222;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #ffffff;
    border: 1px solid #888888;
}

.checkbox-container:hover input~.checkmark {
    border-color: #0d0d0d;
}

.checkbox-container input:checked~.checkmark {
    background-color: #0d0d0d;
    border-color: #0d0d0d;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.billing-address-preview {
    background-color: #f4f4f4;
    padding: 12px 15px;
    border-left: 3px solid #0d0d0d;
    font-family: var(--font-content, sans-serif);
    font-size: 12px;
    color: #555555;
}

.billing-address-preview p {
    margin: 0;
}

/* Right Column: Order Summary Card */
.order-summary-card {
    background-color: #fafafa;
    border: 1px solid #e2e2e2;
    padding: 30px;
}

.summary-card-title {
    font-family: var(--font-heading, sans-serif);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #0d0d0d;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e2e2;
}

/* Mini Product Items */
.summary-product-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 5px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.summary-item-img {
    width: 65px;
    height: 65px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.summary-item-details {
    flex: 1;
}

.summary-item-name {
    font-family: var(--font-heading, sans-serif);
    font-size: 12px;
    font-weight: 700;
    color: #0d0d0d;
    margin: 0 0 4px 0;
    text-transform: uppercase;
}

.summary-item-qty {
    font-family: var(--font-content, sans-serif);
    font-size: 11px;
    color: #777777;
}

.summary-item-price {
    font-family: var(--font-content, sans-serif);
    font-size: 13px;
    font-weight: 700;
    color: #e05600;
}

/* Pricing Breakdown */
.summary-pricing {
    border-top: 1px solid #e2e2e2;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-content, sans-serif);
    font-size: 13px;
    color: #555555;
}

.price-row.total-row {
    border-top: 1px solid #e2e2e2;
    padding-top: 12px;
    margin-top: 5px;
    font-weight: 800;
    color: #0d0d0d;
}

.price-row .free-text {
    color: #008a00;
    font-weight: 700;
}

.price-row .total-amount {
    font-size: 16px;
    color: #0d0d0d;
}

.summary-tax-note {
    font-family: var(--font-content, sans-serif);
    font-size: 11px;
    color: #888888;
    margin: 15px 0 20px 0;
    line-height: 1.4;
}

/* Place Order Button with Metallic Sweep */
.place-order-btn {
    position: relative;
    width: 100%;
    height: 52px;
    background-color: #e3e3e3;
    border: 1px solid #1a1a1a;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.place-order-btn span {
    position: relative;
    z-index: 2;
    font-family: var(--font-content, sans-serif);
    font-size: 15px;
    font-weight: 700;
    color: #0d0d0d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.4s ease;
}

.place-order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.8) 50%,
            transparent 100%);
    transition: left 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.place-order-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d0d0d;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.place-order-btn:hover {
    border-color: #0d0d0d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.place-order-btn:hover::before {
    left: 100%;
}

.place-order-btn:hover::after {
    opacity: 1;
}

.place-order-btn:hover span {
    color: #ffffff;
}

/* Responsive Rules */
@media (max-width: 991px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .checkout-main-title {
        font-size: 38px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .order-summary-card {
        padding: 20px;
    }
}

/* ================================
   FEATURED PRODUCTS SECTION
   ================================ */
.featured-products-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
    color: #0d0d0d;
}

.featured-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 4%;
}

/* Header Row */
.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
}

.tag-label {
    display: inline-block;
    border: 1px solid #cccccc;
    padding: 2px 8px;
    font-family: var(--font-content);
    font-size: 11px;
    font-weight: 700;
    color: #444444;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.featured-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 400;
    line-height: 1.05;
    color: var(--black);
    margin: 0;
}

/* Filters */
.featured-filters {
    display: flex;
    gap: 12px;
}

.filter-btn {
    background-color: #efefef;
    border: 1px solid transparent;
    padding: 10px 20px;
    font-family: var(--font-content);
    font-size: 13px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn span {
    font-size: 12px;
    margin-left: 4px;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: #ffcfb3;
    color: #e05600;
    border-color: #ffbe99;
}

/* Carousel Scroll Track */
.featured-carousel-wrapper {
    width: 100%;
    overflow: hidden;
}

.featured-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    padding-bottom: 10px;
    cursor: grab;
}

.featured-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.featured-carousel.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

/* ================================
   REUSABLE PRODUCT CARD
   ================================ */
.product-card {
    flex: 0 0 calc(25% - 15px);
    /* Shows 4 cards in view */
    min-width: 270px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

/* Dark Stone Pedestal Background Image Container */
.card-image-box {
    position: relative;
    width: 100%;
    /* height: 240px; */
    /* background-color: #1c1c1c; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.card-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .card-image-box img {
    transform: scale(1.02);
}

/* Card Content Details */
.card-body {
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.card-rating .stars {
    color: #e05600;
    font-size: 11px;
    letter-spacing: 1px;
}

.card-rating .rating-num {
    font-family: var(--font-content, sans-serif);
    font-size: 11px;
    font-weight: 600;
    color: #666666;
}

.product-title {
    font-family: var(--font-heading, sans-serif);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    color: #0d0d0d;
    text-transform: uppercase;
    margin: 0 0 6px 0;
}

.product-desc {
    font-family: var(--font-content, sans-serif);
    font-size: 16px;
    color: #777777;
    line-height: 1.35;
    margin: 0 0 12px 0;
}

.product-price {
    font-family: var(--font-heading, sans-serif);
    font-size: 32px;
    font-weight: 800;
    color: #0d0d0d;
    margin-bottom: 15px;
    margin-top: auto;
}

/* Metallic Sweep Button */
.add-cart-btn {
    position: relative;
    width: 100%;
    height: 44px;
    background-color: #e3e3e3;
    border: 1px solid #1a1a1a;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.add-cart-btn span {
    position: relative;
    z-index: 2;
    font-family: var(--font-content, sans-serif);
    font-size: 16px;
    font-weight: 500;
    color: #0d0d0d;
    transition: color 0.4s ease;
}

.add-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.8) 50%,
            transparent 100%);
    transition: left 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.add-cart-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d0d0d;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.add-cart-btn:hover {
    border-color: #0d0d0d;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.add-cart-btn:hover::before {
    left: 100%;
}

.add-cart-btn:hover::after {
    opacity: 1;
}

.add-cart-btn:hover span {
    color: #ffffff;
}

/* Bottom Controls (Progress Bar + Navigation) */
.carousel-bottom-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
}

.progress-bar-track {
    width: 260px;
    height: 3px;
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.progress-bar-fill {
    width: 25%;
    height: 100%;
    background-color: #0d0d0d;
    transition: width 0.3s ease;
}

.carousel-nav-btns {
    display: flex;
    gap: 12px;
}

.nav-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #cccccc;
    background-color: #ffffff;
    color: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background-color: #0d0d0d;
    border-color: #0d0d0d;
    color: #ffffff;
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .product-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .featured-title {
        font-size: 36px;
    }

    .product-card {
        flex: 0 0 calc(50% - 10px);
    }

    .progress-bar-track {
        width: 160px;
    }
}

@media (max-width: 576px) {
    .product-card {
        flex: 0 0 85%;
    }
}

/* ================================
   SHOP PREMIUM PRODUCTS SECTION
   ================================ */
.premium-listing-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0 100px;
    color: #0d0d0d;
}

.premium-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 4%;
}

/* Header Row */
.premium-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
}

.premium-title {
    font-family: var(--font-heading, sans-serif);
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
    color: #0d0d0d;
    margin: 0;
}

.premium-filters {
    display: flex;
    gap: 12px;
}

/* Grid Layout with Sticky Left Column */
.premium-content-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    align-items: start;
}

/* Sticky Container Left */
.sticky-banner-wrapper {
    height: 100%;
}

.premium-sticky-banner {
    position: sticky;
    top: 10px;
    /* Distance from top when scrolling */
    width: 100%;
    height: 550px;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 35px 25px 30px;
    box-sizing: border-box;
}

.banner-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

/* Banner Inner Typography & Button */
.banner-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    justify-content: space-between;
}

.banner-heading {
    font-family: var(--font-heading, sans-serif);
    font-size: 44px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.banner-text {
    font-family: var(--font-content, sans-serif);
    font-size: 16px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
    max-width: 280px;
    margin: 0;
}

.banner-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 20px;
}

.banner-rating .stars {
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 2px;
}

.banner-rating .rating-value {
    font-family: var(--font-content, sans-serif);
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 200px;
    height: 42px;
    background-color: #ffffff;
    color: #0d0d0d;
    font-family: var(--font-content, sans-serif);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.banner-btn:hover {
    background-color: #0d0d0d;
    color: #ffffff;
}

/* Products 2-Column Right Sub-Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
}

/* Responsive Rules */
@media (max-width: 991px) {
    .premium-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .premium-sticky-banner {
        position: relative;
        top: 0;
        height: 420px;
    }
}

@media (max-width: 640px) {
    .premium-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .premium-title {
        font-size: 36px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   SHOP SECTION & FILTER SIDEBAR
   ================================ */
.shop-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0 100px;
    color: #0d0d0d;
}

.shop-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 4%;
}

.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

/* --------------------------------
   SIDEBAR FILTERS
   -------------------------------- */
.shop-sidebar {
    display: flex;
    flex-direction: column;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.filter-main-title {
    font-family: var(--font-heading, sans-serif);
    font-size: 22px;
    font-weight: 800;
    color: #0d0d0d;
    margin: 0;
}

.reset-filters-btn {
    background: none;
    border: none;
    font-family: var(--font-content, sans-serif);
    font-size: 11px;
    color: #ff6b35;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
}

.reset-filters-btn:hover {
    opacity: 0.75;
}

/* Accordion Group */
.filter-accordion {
    border-top: 1px solid #e5e5e5;
    padding: 18px 0;
}

.filter-accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading, sans-serif);
    font-size: 14px;
    font-weight: 700;
    color: #0d0d0d;
    text-align: left;
}

.filter-accordion-header .filter-icon {
    font-size: 11px;
    color: #777777;
    transition: transform 0.3s ease;
}

.filter-accordion.open .filter-icon {
    transform: rotate(180deg);
}

.filter-accordion-body {
    display: none;
    padding-top: 16px;
    flex-direction: column;
    gap: 12px;
}

.filter-accordion.open .filter-accordion-body {
    display: flex;
}

/* Checkbox Styles */
.filter-checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: var(--font-content, sans-serif);
    font-size: 12px;
    color: #333333;
    user-select: none;
}

.filter-checkbox-item input[type="checkbox"] {
    display: none;
}

.custom-check {
    width: 14px;
    height: 14px;
    border: 1px solid #bbbbbb;
    border-radius: 1px;
    position: relative;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.filter-checkbox-item input:checked+.custom-check {
    background-color: #0d0d0d;
    border-color: #0d0d0d;
}

.filter-checkbox-item input:checked+.custom-check::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 4px;
    width: 3px;
    height: 7px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.check-label .count {
    color: #888888;
}

/* Price Slider & Inputs */
.price-slider-wrap {
    position: relative;
    height: 4px;
    margin: 10px 0 20px;
}

.price-slider-track {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffaa7a;
    border-radius: 2px;
}

.range-input {
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.range-input::-webkit-slider-thumb {
    height: 14px;
    width: 14px;
    border-radius: 50%;
    border: 2px solid #ff6b35;
    background-color: #ffffff;
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
}

.price-input-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.price-field {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-content, sans-serif);
    font-size: 11px;
    font-weight: 700;
    color: #333333;
}

.price-field input {
    width: 55px;
    height: 28px;
    background-color: #e5e5e5;
    border: none;
    text-align: center;
    font-family: var(--font-content, sans-serif);
    font-size: 11px;
    font-weight: 600;
    color: #0d0d0d;
    outline: none;
}

/* --------------------------------
   MAIN CONTENT & TOOLBAR
   -------------------------------- */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.items-count {
    font-family: var(--font-content, sans-serif);
    font-size: 13px;
    color: #333333;
    border-bottom: 2px solid #0d0d0d;
    padding-bottom: 4px;
    font-weight: 500;
}

.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* View Switchers */
.grid-toggle-btns {
    display: flex;
    gap: 6px;
}

.view-btn {
    width: 32px;
    height: 32px;
    background-color: #f2f2f2;
    border: none;
    color: #555555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active {
    background-color: #ffcfb3;
    color: #e05600;
}

/* Sort Select */
.sort-dropdown-wrap .sort-select {
    height: 32px;
    padding: 0 12px;
    background-color: #f2f2f2;
    border: none;
    font-family: var(--font-content, sans-serif);
    font-size: 12px;
    color: #333333;
    outline: none;
    cursor: pointer;
}

/* Products Grid Layout */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
}

/* Bottom Controls */
.shop-bottom-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 45px;
}

.shop-nav-btns {
    display: flex;
    gap: 12px;
}

/* --------------------------------
   RESPONSIVE LAYOUT
   -------------------------------- */
@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 220px 1fr;
        gap: 25px;
    }

    .shop-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        margin-bottom: 20px;
    }

    .shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .toolbar-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .shop-products-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   PRODUCT DETAIL PAGE MAIN SECTION
   ================================ */
.pdp-main-section {
    width: 100%;
    background-color: #ffffff;
    padding: 30px 0 100px;
    color: #0d0d0d;
}

.pdp-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 4%;
}

/* Breadcrumb */
.pdp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-content, sans-serif);
    font-size: 13px;
    color: #666666;
    margin-bottom: 25px;
}

.pdp-breadcrumb a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pdp-breadcrumb a:hover {
    color: #0d0d0d;
}

.pdp-breadcrumb .sep {
    color: #aaaaaa;
}

.pdp-breadcrumb .current {
    color: #0d0d0d;
    font-weight: 700;
}

/* ================================
   1. GALLERY GRID SECTION
   ================================ */
.pdp-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.main-image-box {
    width: 100%;
    height: 520px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-image-box img {
    max-width: 80%;
    max-height: 85%;
    object-fit: contain;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.thumb-box {
    width: 100%;
    height: 252px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.thumb-box img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
}

.thumb-box:hover,
.thumb-box.active {
    border-color: #ff6b35;
}

/* ================================
   2. CONTENT & BUY GRID SECTION
   ================================ */
.pdp-info-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: start;
}

/* Left Content Column */
.pdp-product-title {
    font-family: var(--font-heading, sans-serif);
    font-size: 46px;
    font-weight: 700;
    line-height: 1.05;
    color: #0d0d0d;
    margin: 0 0 16px 0;
}

.pdp-short-desc {
    font-family: var(--font-content, sans-serif);
    font-size: 13px;
    line-height: 1.6;
    color: #777777;
    max-width: 620px;
    margin-bottom: 35px;
}

/* 3 Feature Badges */
.pdp-feature-badges {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 45px;
    padding-bottom: 10px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.badge-icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1.5px solid #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon-wrap img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.badge-item span {
    font-family: var(--font-content, sans-serif);
    font-size: 13px;
    font-weight: 600;
    color: #333333;
}

/* PDP Accordions */
.pdp-accordions {
    border-top: 1px solid #e5e5e5;
    max-width: 640px;
}

.pdp-accordion-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 18px 0;
}

.pdp-accordion-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading, sans-serif);
    font-size: 16px;
    font-weight: 800;
    color: #0d0d0d;
    letter-spacing: 0.5px;
    text-align: left;
}

.pdp-accordion-btn i {
    font-size: 12px;
    color: #555555;
    transition: transform 0.3s ease;
}

.pdp-accordion-item:not(.open) .pdp-accordion-btn i {
    transform: rotate(180deg);
}

.pdp-accordion-content {
    padding-top: 14px;
    font-family: var(--font-content, sans-serif);
    font-size: 12px;
    line-height: 1.6;
    color: #777777;
}

.pdp-accordion-item:not(.open) .pdp-accordion-content {
    display: none;
}

.pdp-accordion-content p {
    margin: 0;
}

/* Benefits List inside Accordion */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 12px;
    color: #777777;
}

.benefits-list li img {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefits-list li strong {
    color: #333333;
}

/* ================================
   RIGHT BUY COLUMN
   ================================ */
.pdp-right-buy {
    padding-left: 20px;
}

.pdp-price-header {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 18px;
    margin-bottom: 25px;
}

.pdp-price {
    font-family: var(--font-heading, sans-serif);
    font-size: 30px;
    font-weight: 800;
    color: #0d0d0d;
    margin-bottom: 6px;
}

.pdp-rating-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-content, sans-serif);
    font-size: 11px;
}

.pdp-rating-meta .stars {
    color: #e05600;
    letter-spacing: 1px;
}

.pdp-rating-meta .rating-val {
    font-weight: 700;
    color: #333333;
}

.pdp-rating-meta .reviews-count {
    margin-left: auto;
    color: #888888;
}

/* Option Groups */
.pdp-option-group {
    margin-bottom: 25px;
}

.option-label {
    display: block;
    font-family: var(--font-content, sans-serif);
    font-size: 12px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
}

/* Flavor Buttons */
.flavor-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.flavor-btn {
    background-color: #f2f2f2;
    border: 1px solid transparent;
    padding: 8px 16px;
    font-family: var(--font-content, sans-serif);
    font-size: 12px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.flavor-btn span {
    font-size: 11px;
    margin-left: 2px;
}

.flavor-btn.active,
.flavor-btn:hover {
    background-color: #ffcfb3;
    color: #e05600;
    border-color: #ffbe99;
}

/* Quantity Stepper */
.quantity-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 8px;
    width: 100%;
}

.qty-btn {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    cursor: pointer;
    padding: 0 10px;
}

.qty-val {
    font-family: var(--font-content, sans-serif);
    font-size: 13px;
    font-weight: 700;
    color: #0d0d0d;
}

/* Action Buttons */
.pdp-actions {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 35px;
}

.pdp-cart-btn {
    height: 48px;
}

.pdp-buy-now-btn {
    background: none;
    border: none;
    font-family: var(--font-content, sans-serif);
    font-size: 14px;
    font-weight: 700;
    color: #0d0d0d;
    cursor: pointer;
    text-align: center;
    padding: 5px;
    transition: opacity 0.3s ease;
}

.pdp-buy-now-btn:hover {
    opacity: 0.7;
}

/* ================================
   RESPONSIVE LAYOUT
   ================================ */
@media (max-width: 991px) {
    .pdp-gallery-grid {
        grid-template-columns: 1fr;
    }

    .main-image-box {
        height: 400px;
    }

    .pdp-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pdp-right-buy {
        padding-left: 0;
    }
}

@media (max-width: 640px) {
    .pdp-feature-badges {
        gap: 20px;
        justify-content: space-between;
    }

    .badge-icon-wrap {
        width: 50px;
        height: 50px;
    }

    .badge-icon-wrap img {
        width: 24px;
        height: 24px;
    }

    .badge-item span {
        font-size: 11px;
    }

    .thumb-box {
        height: 160px;
    }
}

/* ================================
   PROMOTION SLIDER / MARQUEE
   ================================ */
.promo-slider-section {
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 0;
    overflow: hidden;
    user-select: none;
}

.promo-ticker-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.promo-ticker-track {
    display: flex;
    width: max-content;
    animation: promoMarquee 18s linear infinite;
}

.promo-slider-section:hover .promo-ticker-track {
    animation-play-state: paused;
    /* Pauses slightly on hover */
}

.promo-ticker-group {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* Typography & Icon Styling */
.promo-text {
    font-family: var(--font-heading, sans-serif);
    font-size: 150px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #000000;
    text-transform: uppercase;
    margin: 0 25px;
    line-height: 1;
}

.promo-star-icon {
    /* width: 20px;
    height: 20px; */
    object-fit: contain;
    margin: 0 10px;
}

/* Smooth Infinite Animation Keyframes */
@keyframes promoMarquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .promo-slider-section {
        padding: 12px 0;
    }

    .promo-text {
        font-size: 22px;
        margin: 0 15px;
        letter-spacing: 1px;
    }

    .promo-star-icon {
        width: 15px;
        height: 15px;
        margin: 0 5px;
    }
}

/* ==========================================================================
   Services Stack Section
   ========================================================================== */
.services-section {
    background-image: url('/assets/service-bg.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding: 100px 0;
    font-family: var(--font-content);
}

.services-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 4vw;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.05px;
    margin: 0;
}

/* --- Stack track: same pattern as testimonials --- */
.services-track {
    position: relative;
}

.service-card {
    position: sticky;
    top: 120px;
    background: transparent;
    margin-bottom: 15px;
}

.service-card:nth-child(1) {
    z-index: 1;
}

.service-card:nth-child(2) {
    z-index: 2;
}

.service-card:nth-child(3) {
    z-index: 3;
}

.service-card:nth-child(4) {
    z-index: 4;
}

.service-card:nth-child(5) {
    z-index: 5;
}

.service-card__inner {
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
    will-change: transform;
    transition: transform 0.1s linear;
}

.service-card__left {
    display: flex;
    flex-direction: row;
    gap: 100px;
}

.service-card__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-card__icon {
    display: flex;
    align-items: start;
    justify-content: flex-start;
}


.service-card__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-card__desc {
    font-family: var(--font-content);
    font-size: 18px;
    font-weight: 200;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 480px;
}

.service-card__btn {
    display: inline-flex;
    width: max-content;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #111111;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    padding: 14px 28px;
    transition: background-color 0.2s ease;
}

.service-card__btn:hover {
    background: var(--primary-color);
}

.service-card__right {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.service-card__img {
    /* width: 100%; */
    height: 300px;
    object-fit: cover;
}

.services-track::after {
    content: "";
    display: block;
    height: 60vh;
}

@media (max-width: 991px) {
    .service-card__inner {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 24px;
    }

    .service-card__right {
        order: -1;
    }
}