@font-face {
  font-family: 'AcuminProCondensedItalic';
  src: url('../fonts/acumin-pro-condensed-italic.woff2') format('woff2'),
  url('../fonts/acumin-pro-condensed-italic.woff') format('woff');
  font-weight: 400 500 600 700 800;
  font-style: italic;
}

@font-face {
  font-family: 'AcuminProExtraCondensedBlackItalic';
  src: url('../fonts/acumin-pro-extracondensed-black-italic.woff2') format('woff2'),
  url('../fonts/acumin-pro-extracondensed-black-italic.woff') format('woff');
  font-weight: 400 500 600 700 800;
  font-style: italic;
}

@font-face {
  font-family: 'AcuminProExtraCondensedBoldItalic';
  src: url('../fonts/acumin-pro-extracondensed-bold-italic.woff2') format('woff2'),
  url('../fonts/acumin-pro-extracondensed-bold-italic.woff') format('woff');
  font-weight: 400 500 600 700 800;
  font-style: italic;
}

@font-face {
  font-family: 'AcuminProExtraCondensedBold';
  src: url('../fonts/acumin-pro-extracondensed-bold.woff2') format('woff2'),
  url('../fonts/acumin-pro-extracondensed-bold.woff') format('woff');
  font-weight: 400 500 600 700 800;
  font-style: normal;
}

@font-face {
  font-family: 'AcuminProExtraCondensed';
  src: url('../fonts/acumin-pro-extracondensed.woff2') format('woff2'),
  url('../fonts/acumin-pro-extracondensed.woff') format('woff');
  font-weight: 400 500 600 700 800;
  font-style: normal;
}
/* --- Global Theme Variables --- */
:root {
    /* Backgrounds */
    --bg-dark: #000000;
    --bg-surface: #0e0e0e;
    --bg-card: #151515;
    --bg-white: #ffffff;
    --bg-muted: #f2f2f2;
    --bg-blue: rgba(0, 191, 236, 1);

    /* Text Colors */
    --text-main: #ffffff;
    --text-dark: #000000;
    --text-muted: rgba(170, 170, 170, 1);

    /* Accents & States */
    --accent-blue: #00bcff;
    --accent-blue-hover: #009ad4;
    --accent-red: #e50914;
    --accent-red-hover: #b80710;
    --accent-gold: #d4af37;

    /* Header Config */
    --header-bg-color: rgba(255, 255, 255, 1);
    --header-text-color: #000000;

    /* Typography Stack */
    --font-body: "Lato", sans-serif;
    --font-heading: "AcuminProExtraCondensed", sans-serif;
    --font-special: var(--font-heading);
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, var(--font-body), Helvetica, Arial, var(--font-heading), sans-serif;
}

/* --- Base Resets --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-special);
    color: var(--text-main);
}

img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* --- Container Utility --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 25px;
}
/* --- Typography & Buttons --- */
.btn-primary {
    background-color: var(--bg-blue);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    border: none;
    padding: 15px 25px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.2s, background-color 0.2s;
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-primary:hover {
    background-color: var(--accent-blue-hover);
    transform: translateY(-2px);
}

.btn-danger {
    background-color: var(--accent-red);
    color: var(--text-main);
    font-weight: 700;
    border: none;
    padding: 15px 15px;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.2s;
}

.btn-danger:hover {
    transform: translateY(-2px);
    background-color: var(--accent-red-hover);
}

.accent-gold {
    color: var(--accent-gold) !important
}

img.icon {
    height: 13px;
    width: 13px;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* --- Header Styles & Mobile Drawer Mechanics --- */
.site-header {
    background-color: var(--header-bg-color);
    border-bottom: 1px solid var(--bg-dark);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
}
.desktop-nav {
    display: none; /* Hidden on mobile */
    gap: 25px;
}
.desktop-nav a, .header-utilities a {
    color: var(--header-text-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}
.desktop-nav a.active, .desktop-nav a:hover {
    color: var(--accent-blue-hover);
}
.header-utilities {
    display: flex;
    gap: 15px;
    align-items: center;
}
.desktop-only {
    display: none;
}

/* Mobile Toggle Hamburger Button */
.menu-toggle-btn {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.menu-toggle-btn .bar {
    width: 25px;
    height: 2px;
    background-color: var(--header-text-color);
    transition: 0.3s;
}

/* Drawer UI Foundation */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%; /* Hidden state slide out */
    width: 80%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 999;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: left 0.3s ease;
}
/* Open states triggered by JavaScript class assignment */
body.drawer-open .mobile-drawer-overlay {
    opacity: 1;
    visibility: visible;
}
body.drawer-open .mobile-drawer {
    left: 0;
}
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.drawer-close-btn {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 30px;
    cursor: pointer;
}
.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.drawer-nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 18px;
}

.site-logo {
    position: relative
}

.site-logo a {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.logo-img img {
    height: 30px;
    width: auto;
}

@media (max-width: 640px) {
    .logo-img img {
        height: 20px;
    }
}

/* --- Swiper Layout Modifications overrides --- */
.featured-swiper {
    width: 100%;
    padding: 10px 0;
}

.featured-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.featured-swiper .swiper-slide {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #777;
    width: auto; /* Dynamic sizing per asset item context */
}

/* Responsive Desktop Media Query Adaptations */
@media (min-width: 992px) {
    .menu-toggle-btn { display: none; }
    .desktop-nav { display: flex; }
    .desktop-only { display: inline-block; }
}

/* --- Hero Section --- */
.hero {
    background: radial-gradient(circle at center, #1c1c1c 0%, var(--bg-dark) 100%);
    padding: 40px 0;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

/* Hero Typography Controls */
.hero-left {
    text-align: center;
    overflow: hidden;
}

.hero-subtitle {
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 45px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 0.9;
    margin-bottom: 15px;
    text-transform: uppercase;
    /* 1. Define the gradient as a background image */
    background: linear-gradient(30deg, rgba(0, 81, 255, 1),  rgba(0, 206, 255, 1));
    
    /* 2. Clip the background so it only shows through the letters */
    -webkit-background-clip: text; /* For Safari and Chrome */
    background-clip: text;
    
    /* 3. Make the actual text color transparent so the background gradient shines through */
    -webkit-text-fill-color: transparent;
    color: var(--text-main); /* Fallback */
}

.hero-description {
    color: var(--text-main);
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0;
    margin-bottom: 25px;
}

/* Center Interactive Wheel Structure */
.hero-center {
    width: 100%;
    /* max-width: 380px; */
    position: relative;
    display: flex;
    justify-content: center;
}

.wheel-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    /* border: 8px solid #222; */
    /* background: #050505; */
    /* box-shadow: 0 10px 40px rgba(0,0,0,0.8); */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wheel-pointer {
    position: absolute;
    top: -30px;
    width: 105px;
    height: auto;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
}

/* The modified keyframe using a CSS variable */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        /* Defaults to 1800deg (5 full spins) if the variable isn't set yet */
        transform: rotate(var(--target-rotation, 1800deg)); 
    }
}

.wheel-img {
    /* Apply the animation */
    animation-name: none;
    animation-duration: 15s; /* Adjust spin time here */
    animation-timing-function: cubic-bezier(0.1, 1, 0.1, 1); /* Slows down smoothly at the end */
    animation-fill-mode: forwards; /* Keeps the wheel stopped on the final frame */
}

/* Right Media Block Stacks */
.hero-right {
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-thumbnail {
    position: relative;
    background: #222;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid #333;
}

.promo-banner img {
    object-position: center;
    object-fit: fill;
} 

.video-thumbnail .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.video-thumbnail p {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.promo-banner {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    border: 1px solid #333;
    aspect-ratio: 16 / 7;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--accent-gold);
}

@media (max-width: 640px) {
    .promo-banner {
        aspect-ratio: unset;
    }
}

.hero-right .banner {
    position: relative;
    flex: 1;
}

.hero-right .content-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 25px;
}

.hero-right .banner-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
    font-size: 25px;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    color: var(--text-main);
    font-family: var(--font-special);
}

.hero-right .banner-link::before {
    content: "";
    z-index: 1;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-right .hero-title {
    background: none;
    -webkit-text-fill-color: var(--accent-blue);
}

.promo-banner .hero-title {
    color: var(--bg-white);
    background: none;
    -webkit-text-fill-color: var(--bg-white);
}
@media (max-width: 767px) {
    .hero-description {
        font-size: 16px;
    }
}
/* --- Desktop Layout Adaptations (992px and up) --- */
@media (min-width: 992px) {
    .hero {
        padding: 0;
    }
    .hero-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        padding: 25px;
    }
    .hero-left {
        text-align: center;
        flex: 1;
        align-self: stretch;
        display: flex;
        gap: 20px;
        padding-inline: 25px;
        padding-block: 10px;
        background-image: url('../images/hero-bg.jpg');
        background-position: center;
        background-size: cover;
        border-radius: 10px;
        justify-content: center;
        align-items: center;
        max-width: 70%;
    }

    .hero-content {
        flex: 1;
        justify-content: center;
    }

    .hero-center {
        flex: 1;
    }

    .hero-title {
        font-size: 76px;
    }
    .hero-center {
        flex: 1;
    }
    .hero-right {
        flex: 1;
        max-width: 30%;
        align-self: stretch;
    }
    .hero-right .hero-title {
        font-size: clamp(40px, 5vw, 68px);
    }
}

@media (max-width: 767px) {
    .hero-left  {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        overflow: hidden;
    }
    
    .wheel-pointer {
        width: 90px;
        height: auto
    }

    .hero-right {
        max-width: 100%;
        padding-inline: 20px
    }

    .hero-right .content-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
}

/* --- Featured In Trust Banner --- */
.featured-in {
    background-color: var(--bg-surface);
    padding: 25px;
    text-align: center;
}

.section-label {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 1;
    color: var(--text-main);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: var(--font-special);
}

.featured-swiper {
    width: 100%;
    padding: 0 20px;
}

.featured-swiper .swiper-slide {
    width: auto; /* Required for slide auto sizing context */
    font-size: 18px;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    padding: 12px 12px;
}

.featured-swiper .swiper-slide:hover {
    color: #777;
}

@media (min-width: 992px) {
    .featured-in {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-direction: column;
    }
    .section-label {
        font-family: var(--font-special);
        margin-bottom: 0;
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex: auto;
        gap: 20px;
        padding-inline: 25px;
    }
    .section-label::before, .section-label::after {
        content: '';
        /* position: absolute; */
        width: 100%;
        height: 1px;
        background-color: var(--text-main);
        display: inline-flex;
        flex: 1;
    }
    .featured-swiper {
        width: auto;
        margin: 0;
        padding: 0 50px;
        align-items: center;
        max-width: 100vw;
    }

    .featured-swiper .swiper-wrapper {
        align-items: center;
    }

    .featured-swiper .swiper-slide {
        padding: 15px 40px;
    }
}

/* --- Filter Navigation & Exclusive Wheels --- */
.exclusive-wheels {
    padding: 60px 0;
    padding-bottom: 0;
    background-color: var(--bg-dark);
    position: relative;
}

.exclusive-wheels > .container-fluid {
    padding-right: 0
}

/* 2. Filter Nav Styles (Horizontal swipe on mobile) */
.filter-nav {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding-bottom: 15px;
    margin-bottom: 40px;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -webkit-overflow-scrolling: touch;
}

.filter-nav::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.tab-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-muted);
    padding: 12px 29px;
    font-family: var(--font-special);
    font-size: 23px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0px;
    border-radius: 4px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--accent-blue);
    color: var(--text-main);
    border-color: transparent;
}

/* Header Row Elements */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 25px;
    padding-block: 20px;
}

.section-title {
    font-size: 14px;
    font-family: var(--font-body);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    align-items: center;
}

.exclusive-wheels .section-title {
    font-family: var(--font-special);
    font-size: 25px;
    align-items: center;
    margin-top: 7px;
}

.exclusive-wheels .section-title img {
    margin-bottom: 7px;
}

.carousel-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.carousel-controls a {
    text-decoration: underline;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 25px;
    font-family: var(--font-special);
}

.swiper-prev-custom, .swiper-next-custom {
    background-color: transparent;
    color: #fff;
    border: 1px solid var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    user-select: none;
    padding: 15px;
}

.swiper-prev-custom.swiper-button-lock, .swiper-next-custom.swiper-button-lock {
    display: none;
}

.swiper-prev-custom:hover, .swiper-prev-custom:active, .swiper-next-custom:hover, .swiper-next-custom:active {
    background-color: rgba(245, 31, 34, 1);
    border-color: rgba(245, 31, 34, 1);
}

/* 3. Carousel Card Items (2 slides on mobile via Swiper parameters) */
.wheels-swiper {
    width: 100%;
    overflow: hidden;
    padding-left: 50px;
    padding-block: 50px 30px;
}

.wheels-swiper .swiper-slide {
    height: auto;
}

.card-inner {
    background-color: transparent;
    border-radius: 6px;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    container-type: inline-size;
    width: 100%;
}

.card-inner .badge {
    display: none;
	/* display: flex; */
	position: absolute;
	top: 10px;
	right: 12px;
	flex-direction: column;
	padding: 15px;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50px;
    font-size: 12px;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0;
    line-height: normal;
    width: 54px;
    height: 54px;
}

.card-inner .badge b {
    font-size: 14px;
    font-weight: 800;
    font-style: normal;
}

.card-inner a {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.card-inner .card-media {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) scale(1);
    width: 75%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    object-position: center;
}

.card-inner.sunglasses .card-media {
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    left: 60%;
    width: 100%;
}

.card-inner .product-title {
    z-index: 1;
    font-family: var(--font-body);
    font-size: clamp(20px, 8cqw ,25px);
    line-height: 0.8;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 500;
}

/* Tier Border Accents matching layout graphics */
.wheels-swiper .swiper-slide:first-child .card-inner:before { content:'';position:absolute;inset:0; top:30px;border-radius:10px;background-image: url('../images/product-card-1.png');background-position: center;background-size: cover;}
.wheels-swiper .swiper-slide:nth-child(2) .card-inner:before { content:'';position:absolute;inset:0; top:30px;border-radius:10px;background-image: url('../images/product-card-2.png');background-position: center;background-size: cover;}
.wheels-swiper .swiper-slide:nth-child(3) .card-inner:before { content:'';position:absolute;inset:0; top:30px;border-radius:10px;background-image: url('../images/product-card-3.png');background-position: center;background-size: cover;}
.wheels-swiper .swiper-slide:nth-child(4) .card-inner:before { content:'';position:absolute;inset:0; top:30px;border-radius:10px;background-image: url('../images/product-card-4.png');background-position: center;background-size: cover;}
.wheels-swiper .swiper-slide:nth-child(5) .card-inner:before { content:'';position:absolute;inset:0; top:30px;border-radius:10px;background-image: url('../images/product-card-5.png');background-position: center;background-size: cover;}
.wheels-swiper .swiper-slide:nth-child(6) .card-inner:before { content:'';position:absolute;inset:0; top:30px;border-radius:10px;background-image: url('../images/product-card-6.png');background-position: center;background-size: cover;}
.wheels-swiper .swiper-slide:nth-child(7) .card-inner:before { content:'';position:absolute;inset:0; top:30px;border-radius:10px;background-image: url('../images/product-card-7.png');background-position: center;background-size: cover;}
.wheels-swiper .swiper-slide:nth-child(8) .card-inner:before { content:'';position:absolute;inset:0; top:30px;border-radius:10px;background-image: url('../images/product-card-8.png');background-position: center;background-size: cover;}
.wheels-swiper .swiper-slide:nth-child(9) .card-inner:before { content:'';position:absolute;inset:0; top:30px;border-radius:10px;background-image: url('../images/product-card-9.png');background-position: center;background-size: cover;}
.wheels-swiper .swiper-slide:nth-child(10) .card-inner:before { content:'';position:absolute;inset:0; top:30px;border-radius:10px;background-image: url('../images/product-card-10.png');background-position: center;background-size: cover;}
.wheels-swiper .swiper-slide:nth-child(11) .card-inner:before { content:'';position:absolute;inset:0; top:30px;border-radius:10px;background-image: url('../images/product-card-11.png');background-position: center;background-size: cover;}
.wheels-swiper .swiper-slide:nth-child(12) .card-inner:before { content:'';position:absolute;inset:0; top:30px;border-radius:10px;background-image: url('../images/product-card-12.png');background-position: center;background-size: cover;}
.wheels-swiper .swiper-slide:nth-child(13) .card-inner:before { content:'';position:absolute;inset:0; top:30px;border-radius:10px;background-image: url('../images/product-card-13.png');background-position: center;background-size: cover;}
.wheels-swiper .swiper-slide:nth-child(14) .card-inner:before { content:'';position:absolute;inset:0; top:30px;border-radius:10px;background-image: url('../images/product-card-14.png');background-position: center;background-size: cover;}
.wheels-swiper .swiper-slide:nth-child(15) .card-inner:before { content:'';position:absolute;inset:0; top:30px;border-radius:10px;background-image: url('../images/product-card-15.png');background-position: center;background-size: cover;}
.wheels-swiper .swiper-slide:nth-child(16) .card-inner:before { content:'';position:absolute;inset:0; top:30px;border-radius:10px;background-image: url('../images/product-card-16.png');background-position: center;background-size: cover;}

.wheels-swiper .swiper-slide .card-inner:before {
    transition: top 0.2s;
}

.wheels-swiper .swiper-slide:hover .card-inner:before {
    top: 0px;
}

.wheels-swiper .swiper-slide .card-inner .card-media {
    transition: transform 0.2s;
}

.wheels-swiper .swiper-slide:hover .card-inner .card-media {
    transform: translateX(-50%) scale(0.8);
}
.wheels-swiper .swiper-slide:hover .card-inner.sunglasses .card-media {
    transform: translate(-50%, -50%) scale(0.8);
}

@media (max-width: 767px) {


    .exclusive-wheels {
        padding-block: 40px
    }

    .filter-nav {
        margin-bottom: 20px
    }

    .section-header-row, .section-title {
        flex-direction: column;
        gap: 10px
    }
    .swiper-prev-custom, .swiper-next-custom {
        position: absolute;
        top: 70%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .swiper-prev-custom {
        left: 5px;
    }

    .swiper-next-custom {
        right: 5px;
    }

    .wheels-swiper {
        padding-left: 0;
        padding-block: 30px;
    }
}
@media (min-width: 992px) {
    .section-title {
        font-size: 14px;
    }
    .filter-nav {
        justify-content: center;
        overflow-x: visible;
        padding-bottom: 0;
    }

}

/* --- 4. 4th July Grail Wheels Grid --- */
.grail-wheels {
    display: none;
    padding: 60px 0;
    padding-top: 30px;
    /* background-color: var(--bg-surface);
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a; */
}

.grail-wheels .section-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 25px;
    font-family: var(--font-special);
    margin-bottom: 10px;
    padding-inline: 25px;
}

/* Details Paragraph */
.section-details {
    color: var(--text-main);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
    max-width: 750px;
    margin: 0 auto 25px auto;
    line-height: 1;
    letter-spacing: 0;
}

/* Responsive Grid Base (1 card per row mobile default) */
.grail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.grail-card {
    /* background-color: var(--bg-card); */
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #222;
    transition: transform 0.2s ease;
    position: relative;
}

.grail-card:hover {
    transform: translateY(-4px);
}

.grail-card > img {
    width: 100%;
    height: auto;
}

.grail-card h3 {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0;
    padding: 20px;
    text-align: center;
    position: absolute;
    bottom: 0;
    padding: 20px;
    width: 100%;
    z-index: 1;
}

.grail-card h3 a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 767px) {
    .grail-wheels {
        padding-block: 40px;
    }
}
/* Desktop Grid Adaptation */
@media (min-width: 768px) {
    .grail-grid {
        grid-template-columns: repeat(2, 1fr); /* Split mid-range tablet scales */
        padding-inline: 25px;
    }
}

@media (min-width: 992px) {
    .grail-grid {
        grid-template-columns: repeat(4, 1fr); /* Full 4 wide layout on desktop scales */
    }
}

/* --- 5. Featured Highlight (Rolex Layout Split) --- */
.featured-highlight {
    padding: 60px 0;
    background: radial-gradient(circle at top right, #1a1a1a 0%, var(--bg-dark) 100%);
    background-image: url('../images/featured-bg.png');
    background-position: center;
    background-size: cover;
    border-bottom: 1px solid #1a1a1a;
}

.highlight-split {
    display: flex;
    flex-direction: column; /* Mobile first: Stacks vertically */
    gap: 40px;
    align-items: center;
}

.highlight-image {
    width: 100%;
    /* max-width: 400px; */
    display: flex;
    justify-content: center;
    position: relative;
    align-self: center;
}

.highlight-image img {
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.7));
    position: relative;
    width: 50%;
    height: auto;
    object-fit: contain;
    bottom: 0;
    left: 55%;
    transform: translateX(-55%);

}

.highlight-content {
    width: 100%;
    text-align: center;
}

.highlight-content h2 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 15px;
}

.highlight-content p {
    color: var(--text-main);
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0;
    margin-bottom: 30px;
}

.highlight-content p strong {
    color: var(--text-main);
}

.highlight-content h3 {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--accent-blue);
    letter-spacing: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .highlight-image img {
        position: relative;
        left: unset;
        top: unset;
        margin-inline: auto;
        transform: none;
        width: 80%;
    }
}

@media (min-width: 992px) {
    .highlight-content h2 {
        font-size: 44px;
    }

    .highlight-content h3 {
        font-size: 20px
    }
}

/* --- 6. Blog/Article Grid --- */
.blog-section {
    padding: 60px 70px;
    background-color: var(--bg-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 card wide mobile */
    gap: 50px;
}

.blog-card {
    background-color: var(--bg-white);
    /* border-radius: 6px; */
    overflow: hidden;
    /* border: 1px solid #222; */
    display: flex;
    flex-direction: column;
}

.blog-card .blog-card-image {
    position: relative
}

.blog-card .blog-card-image a {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blog-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background-color: var(--bg-white);
}

.blog-card h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    padding: 30px 20px;
    letter-spacing: -0.2px;
    color: var(--text-dark);
}

.blog-card p {
    color: var(--text-dark);
    font-size: 12px;
    line-height: 1.5;
    padding: 0 20px 30px 20px;
    flex-grow: 1; /* Pushes action link seamlessly downwards */
}

.blog-card .read-more {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: underline;
    padding: 0 20px 30px 20px;
    display: inline-block;
}


@media (max-width: 767px) {

    .blog-section {
        padding: 40px 0;
    }
    .blog-grid {
        gap: 20px;
    }

    .blog-card h3 {
        padding-block: 20px;
    }

    .blog-card p {
        padding-bottom: 20px;
    }

    .blog-card .read-more {
        padding-bottom: 0
    }
}

/* --- Desktop Layout Shifts --- */
@media (min-width: 768px) {
    .highlight-split {
        flex-direction: row; /* Desktop horizontal split layout */
        justify-content: space-between;
        gap: 100px
    }
    .highlight-content {
        text-align: left;
        max-width: 550px;
    }
    .blog-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 cards wide desktop */
    }
    .blog-card h3 {
        font-size: 19px;
    }
    .blog-card p {
        font-size: 15px;
    }

}

/* --- 7. Testimonials Section --- */
.testimonials {
    padding: 50px 0;
    background-color: var(--bg-muted);
    text-align: center;
}

.testimonials .header-container {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 0 25px;
}

.testimonials h2 {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--text-dark);
    letter-spacing: 0;
    line-height: normal;
}

.testimonials .subtitle {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 15px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.review-card {
    background-color: var(--bg-white);
    padding: 25px;
    text-align: left;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-card .stars {
    color: #fff; /* Trustpilot Green */
    padding: 5px;
    font-size: 18px;
    display: flex;
    gap: 2px;
}

.star {
    background-color: #00b67a;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.verified {
    display: flex;
    color: var(--text-muted);
    gap: 5px;
    align-items: center;
}
.review-card h4 {
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0;
    color: var(--text-dark)
}

.review-card p {
    color: var(--text-dark);
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 15px;
}

@media (max-width: 640px) {
    .review-card p {
        font-size: 12px;
    }
}

.review-card .author {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0;
}

.trustpilot-score {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
}

.trustpilot-score strong {
    color: #00b67a;
    display: inline-block;
}

/* --- Testimonials Swiper Adjustments --- */
.testimonials-swiper {
    position: relative;
    width: 100%;
    /* Create a buffer space on left/right for absolute arrow placement */
    padding: 10px 50px; 
    overflow: hidden;
}

.testimonials-swiper .swiper-slide {
    height: auto; /* Force equal height for cards in the same row */
    display: flex;
}

.testimonials-swiper .review-card {
    width: 100%;
    margin-bottom: 0; /* Remove baseline spacing as Swiper handles spacing */
}

/* --- Vertically Centered Navigation Buttons --- */
.testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Match exact vertical middle alignments */
    background-color: transparent;
    border: 1px solid rgba(34, 34, 34, 0.3);
    padding: 15px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    user-select: none;

}

.testimonial-nav-btn.swiper-button-lock {
    display: none;
}

.testimonial-nav-btn:hover {
    background-color:rgba(34, 34, 34, 0.3);
    border-color: #444;
    color: var(--text-dark);
}

.swiper-prev-testimonial {
    left: 0;
}

.swiper-next-testimonial {
    right: 2px;
}

@media (max-width: 767px) {
    .testimonials-swiper {
        padding-inline: 0
    }
    .testimonial-nav-btn {
        background-color: rgba(255, 255, 255, 0.7);
        padding: 0;
        width: 30px;
        height: 30px;
        /* bottom: -15px;
        top: unset */
    }
    .testimonials .header-container {
        padding-inline: 0;
    }

    .testimonials-swiper .swiper-slide {
        padding-inline: 25px;
    }
    /* .swiper-prev-testimonial {
        left: 35%;
    }
    .swiper-next-testimonial {
        right: 35%
    } */
}


/* --- 8. Responsive Structural Footer --- */
.site-footer {
    background-color: #050505;
    border-top: 1px solid #111;
    padding: 40px 0 20px 0;
}

.footer-grid {
    display: flex;
    flex-direction: column;
}

.footer-brand h3 {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.footer-col {
    border-bottom: 1px solid #111;
}

/* Accordion trigger headers on Mobile */
.footer-toggle, .social-col h4 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-family: var(--font-body);
}

.footer-toggle::after {
    content: '+';
    font-size: 20px;
    color: var(--text-main);
    transition: transform 0.2s;
}

/* Links Drawer State */
.footer-links {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.footer-links li {
    padding-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 15px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-main);
}

/* Active Open Accordion State modifiers via JavaScript */
.footer-col.active .footer-toggle::after {
    content: '−';
}

.footer-col.active .footer-links {
    max-height: 500px; /* Safe expanded limit layout */
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
    padding-bottom: 15px;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #111;
    padding-top: 20px;
    text-align: center;
    font-size: 11px;
    color: #444;
}

/* --- Tablet / Desktop Breakpoint Adjustments --- */
@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-brand {
        flex: 1;
    }
    
    .footer-col {
        flex: 1;
        border-bottom: none;
    }
    
    .footer-toggle, .social-col h4 {
        padding: 0 0 20px 0;
        cursor: default;
    }
    
    .footer-toggle::after {
        display: none; /* Hide symbols on desktop viewports */
    }
    
    .footer-links {
        max-height: none !important;
        overflow: visible;
    }
}

.social-icons {
    display: flex;
    gap: 15px;
    padding: 15px 0;
}

.footer-fine-print {
    margin-top: 40px;
    border-top: 1px solid #111;
    padding-top: 30px;
    text-align: center;
    font-size: 16px;
    color: #aaa;
    line-height: 1;
    letter-spacing: 0;
}

.footer-fine-print h5 {
    color: #aaa;
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 0;
    font-weight: 600;
    font-family: var(--font-body)
}

.footer-sub-links {
    margin: 15px 0;
}

.footer-sub-links a {
    color: #777;
    margin: 0 5px;
}

.footer-sub-links a:hover {
    color: var(--text-main);
}

.disclaimer {
    font-style: italic;
    color: #777
}

/* --- Footer Social SVG Icon Formatting --- */
.social-icons {
    display: flex;
    gap: 15px;
    padding: 15px 0;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #111; /* subtle backdrop circle matching card accents */
    border: 1px solid #222;
    transition: all 0.2s ease-in-out;
}

.social-svg {
    width: 18px;
    height: 18px;
    fill: var(--text-muted, #777); /* matches text-muted styling */
    transition: fill 0.2s ease-in-out;
}

/* Hover States */
.social-icon-link:hover {
    background-color: #1a1a1a;
    border-color: #333;
    transform: translateY(-2px);
}

.social-icon-link:hover .social-svg {
    fill: var(--accent-blue, #00bcff); /* bright neon accent pop on hover */
}

@media (max-width: 768px) {
    .footer-fine-print {
        font-size: 14px;
        line-height: 1.2;
    }
}
@media (min-width: 768px) {
    .social-icons {
        padding: 20px 0;
    }
}

/* Modal Overlay Background */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Active State */
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Window Container */
.modal-container {
    position: relative;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Modal Body Formatting */
.modal-body {
    position: relative;
    width: 100%;
}

.modal-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive 16:9 Video Aspect Ratio */
.video-body {
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Ensure banner cursor triggers interactivity */
.hero-right .banner {
    cursor: pointer;
}

/* --- HOW IT WORKS SECTION --- */
.how-it-works {
    background: linear-gradient(120deg,rgba(65, 65, 65, 1) 0%, rgba(0, 0, 0, 1) 100%);
    color: var(--text-main);
    padding: 40px 0;
}

.main-title {
    font-family: var(--font-heading), var(--font-stack);
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: uppercase;
    
    /* 1. Define the gradient as a background image */
    background: linear-gradient(0deg, #0051FF 0%, #00CEFF 70%);
    
    /* 2. Clip the background so it only shows through the letters */
    -webkit-background-clip: text; /* For Safari and Chrome */
    background-clip: text;
    
    /* 3. Make the actual text color transparent so the background gradient shines through */
    -webkit-text-fill-color: transparent;
    color: var(--accent-blue); /* Fallback */
}

/* Step Row Layout */
.step-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-block: 40px
    /* margin-bottom: 60px; */
}

.step-02 {
    padding: 0;
}

.step-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    font-family: "AcuminProExtraCondensedBold", sans-serif;
    font-size: 80px;
    font-weight: normal;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 2px #aaa;
}

.step-text {
    max-width: 400px;
}

.step-text h3 {
    font-family: var(--font-heading), var(--font-stack);
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.step-text p {
    color: var(--text-white);
    font-family: var(--font-body), var(--font-stack);
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 10px;
}

.step-text p .text-special {
    color: var(--accent-blue)
}

/* Step 01 Wheel Grid */
.wheel-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.wheel-badge {
    background-color: rgb(255 255 255 / 10%);
    color: #aaa;
    font-family: var(--font-special), var(--font-stack);
    border: 1px solid #333;
    padding: 10px 25px;
    font-size: clamp(20px, 4vw, 23px);
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-badge.active, .wheel-badge:hover {
    background-color: var(--accent-blue);
    color: var(--text-white);
    border-color: var(--accent-blue);
}

/* Step 02 Card Box Layout */
.step-card-wrapper {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border-radius: 12px;
    padding: 45px 35px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.step-card-wrapper .step-number {
    -webkit-text-stroke: 1px #aaa;
}

.step-02 .step-text h3 {
    color: var(--color-dark);
    margin-bottom: 5px;
}

.step-card-wrapper .step-text p {
    color: #000;
    letter-spacing: 0;
}

.highlight-blue {
    color: var(--accent-blue);
}

/* Watch Selector */
.watch-selector-preview {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.watch-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.watch-card img {
    aspect-ratio: 2 / 3;
    object-fit: contain;
    margin-bottom: 10px;
    max-height: 210px;
    height: auto;
}

.watch-card .brand {
    font-family: var(--font-heading), var(--font-stack);
    font-size: 16px;
    font-weight: 700;
}

.watch-card .model {
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
}

.card-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}

.action-btn.add {
    opacity: 0.3;
}

.action-btn .swatch-icon {
    transition: transform 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s;
}

.action-btn.remove, .action-btn:hover {
    background-color: var(--text-dark);
    color: var(--text-main);
    border-color: var(--text-dark);
    opacity: 1;
}

.action-btn.remove .swatch-icon, .action-btn:hover .swatch-icon {
    transform: rotate(45deg);
}

/* Step 03 Wheel Graphic */
.wheel-graphic {
    display: flex;
    justify-content: center;
}

.wheel-graphic img {
    max-width: 80%;
    width: 100%;
}

/* Bottom Call To Action */
.how-it-works-cta {
    text-align: center;
    padding-block: 50px;
}

.cta-subtitle {
    font-family: var(--font-body), var(--font-stack);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-main);
    display: block;
    margin-bottom: 10px;
}

.cta-title {
    font-family: var(--font-heading), var(--font-stack);
    font-size: 32px;
    font-weight: 600;
    
    /* 1. Define the gradient as a background image */
    background: linear-gradient(30deg, #0051FF,  #00CEFF 80%);
    
    /* 2. Clip the background so it only shows through the letters */
    -webkit-background-clip: text; /* For Safari and Chrome */
    background-clip: text;
    
    /* 3. Make the actual text color transparent so the background gradient shines through */
    -webkit-text-fill-color: transparent;
    color: var(--accent-blue); /* Fallback */
    max-width: 900px;
    margin: 0 auto 30px auto;
    line-height: 1.2;
}

.btn-primary-large {
    background-color: var(--accent-blue);
    color: var(--text-white);
    font-family: var(--font-special), var(--font-stack);
    font-weight: 600;
    line-height: 1;
    font-size: 22px;
    letter-spacing: 1px;
    border: none;
    padding: 16px 40px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.2s;
    display: inline-flex;
}

.btn-primary-large:hover {
    background-color: var(--accent-blue-hover);
}

button span, a span {
    /* margin-top: 5px; */
    display: inline-block;
    line-height: 1;
}

@media (max-width: 767px) {
    .step-01 {
        padding-top: 0;
    }

    .step-card-wrapper {
        margin-bottom: 40px;
    }
}
/* Desktop Responsiveness */
@media (min-width: 992px) {

    .how-it-works {
        padding: 80px 33px
    }
    
    .main-title {
        font-size: 100px;
        margin-block: 20px 50px
    }

    .step-01 {
        padding-bottom: 100px;
    }

    .step-text p {
        font-size: 18px;
    }

    .step-row {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .step-content {
        flex: 1;
    }

    .step-media {
        flex: 1;
    }

    .step-02 {
        padding: 0;
        flex-direction: row;
        margin-bottom: 0;
    }

    .step-02 .step-media {
        flex-basis: 40%;
    }

    .step-02 .step-content {
        flex-basis: 60%;
    }

    .step-03 {
        align-items: center;
    }

    .step-number {
        font-size: 200px;
    }

    .step-text h3 {
        font-size: 50px;
    }

    .cta-subtitle {
        font-size: 20px;
        font-weight: 600;
    }

    .cta-title {
        font-size: 72px;
    }

    .btn-primary-large {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .how-it-works-cta {
       padding-top: 40px; 
    }
}