/* =========================================================
   CARTZON
   COMPLETE STYLE SHEET
   Navy + Orange + White
========================================================= */

/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #09233f;
    line-height: 1.5;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --navy: #09233f;
    --navy-dark: #061b32;
    --orange: #ff6500;
    --orange-dark: #eb5700;

    --blue: #0563d8;

    --text: #09233f;
    --muted: #617895;

    --border: #e4ebf3;
    --light: #f5f9fd;
    --hero-bg: #eef6ff;

    --white: #ffffff;

    --container: 1200px;

    --shadow-sm: 0 5px 20px rgba(9, 35, 63, 0.06);
    --shadow-md: 0 15px 40px rgba(9, 35, 63, 0.10);

    --radius: 16px;
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    height: 76px;
    background: #ffffff;
    border-bottom: 1px solid #edf1f5;
    position: relative;
    z-index: 100;
}

.navbar {
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    width: 155px;
    height: 76px;

    display: flex;
    align-items: center;

    flex-shrink: 0;

    overflow: hidden;
}

.logo img {
    width: 155px;
    height: 68px;

    display: block;

    object-fit: contain;
    object-position: center;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav-links {
    display: flex;
    align-items: center;

    gap: 34px;

    margin-left: auto;
    margin-right: 30px;
}

.nav-links a {
    position: relative;

    color: var(--navy);

    font-size: 15px;
    font-weight: 600;

    padding: 28px 0;

    transition: 0.2s ease;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-links a.active {
    color: var(--orange);
}

.nav-links a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 15px;

    height: 2px;

    background: var(--orange);

    border-radius: 10px;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;

    gap: 20px;
}

.icon-btn {
    border: none;
    background: transparent;

    color: var(--navy);

    width: 28px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 20px;

    transition: 0.2s ease;
}

.icon-btn:hover {
    color: var(--orange);
}

.login-btn {
    background: var(--orange);
    color: #ffffff;

    padding: 13px 25px;

    border-radius: 12px;

    font-size: 15px;
    font-weight: 700;

    transition: 0.2s ease;
}

.login-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.mobile-menu {
    display: none;

    border: none;
    background: transparent;

    color: var(--navy);

    font-size: 22px;

    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 540px;

    background:
        linear-gradient(
            100deg,
            #edf6ff 0%,
            #f5f9fd 52%,
            #fffaf7 100%
        );

    overflow: hidden;
}

.hero-inner {
    min-height: 540px;

    display: grid;

    grid-template-columns: 52% 48%;

    align-items: center;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;
    z-index: 20;

    padding-top: 10px;
}

.hero-badge {
    display: inline-flex;

    align-items: center;

    padding: 9px 15px;

    border: 1px solid #d5e5f7;

    border-radius: 30px;

    color: #24547f;

    background: rgba(255, 255, 255, 0.35);

    font-size: 13px;
    font-weight: 600;

    margin-bottom: 23px;
}

.hero-content h1 {
    font-size: clamp(54px, 5vw, 72px);

    line-height: 0.98;

    letter-spacing: -3px;

    color: var(--navy);

    margin-bottom: 22px;

    font-weight: 800;
}

.hero-content h1 .orange {
    color: var(--orange);
}

.hero-description {
    max-width: 650px;

    color: #58718e;

    font-size: 18px;

    margin-bottom: 27px;
}


/* =========================================================
   SEARCH BOX
========================================================= */

.search-box {
    width: 100%;
    max-width: 715px;

    height: 64px;

    display: flex;
    align-items: center;

    background: #ffffff;

    border: 1px solid #dce6f0;

    border-radius: 13px;

    padding: 6px 6px 6px 18px;

    box-shadow: 0 7px 25px rgba(9, 35, 63, 0.07);
}

.search-icon {
    width: 30px;

    color: #52708e;

    font-size: 19px;
}

.search-box input {
    flex: 1;

    min-width: 0;

    height: 100%;

    border: none;
    outline: none;

    color: var(--navy);

    padding: 0 12px;

    font-size: 15px;
}

.search-box input::placeholder {
    color: #8aa0b7;
}

.search-btn {
    height: 52px;

    min-width: 112px;

    border: none;

    border-radius: 10px;

    background: var(--orange);

    color: #ffffff;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s ease;
}

.search-btn:hover {
    background: var(--orange-dark);
}


/* =========================================================
   POPULAR SEARCHES
========================================================= */

.search-suggestions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 17px;

    margin-top: 14px;

    font-size: 13px;
}

.search-suggestions span {
    color: #6d829a;
}

.search-suggestions a {
    color: #075ec9;

    font-weight: 700;
}

.search-suggestions a:hover {
    color: var(--orange);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    width: 100%;
    height: 540px;

    overflow: visible;
}

.hero-products {
    position: absolute;

    width: 600px;
    height: 500px;

    top: 20px;
    right: -15px;
}


/* =========================================================
   HERO MAIN PHONE
========================================================= */

.hero-phone {
    position: absolute;

    width: 245px;
    height: 410px;

    right: 145px;
    top: 50px;

    object-fit: contain;

    z-index: 4;
}


/* =========================================================
   HERO LAPTOP
========================================================= */

.hero-laptop {
    position: absolute;

    width: 275px;
    height: 230px;

    right: -12px;
    top: 175px;

    object-fit: contain;

    z-index: 2;
}


/* =========================================================
   HERO SMARTWATCH
========================================================= */

.hero-watch {
    position: absolute;

    width: 125px;
    height: 125px;

    left: 42px;
    top: 280px;

    object-fit: contain;

    z-index: 8;

    background: #ffffff;
}


/* =========================================================
   HERO HEADPHONES
========================================================= */

.hero-earbuds {
    position: absolute;

    width: 145px;
    height: 145px;

    left: 145px;
    top: 290px;

    object-fit: contain;

    z-index: 7;

    background: #ffffff;
}


/* =========================================================
   STORE LOGO STACK
========================================================= */

.store-stack {
    position: absolute;

    width: 150px;

    right: 30px;
    top: 10px;

    padding: 6px 8px;

    background: rgba(255, 255, 255, 0.97);

    border: 1px solid #dce6ef;

    border-radius: 15px;

    box-shadow:
        0 15px 40px rgba(9, 35, 63, 0.11);

    z-index: 20;
}

.store-stack-item {
    width: 100%;
    height: 37px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-bottom: 1px solid #edf1f5;
}

.store-stack-item:last-child {
    border-bottom: none;
}

.store-stack-item img {
    width: 85px;
    height: 27px;

    display: block;

    object-fit: contain;
}


/* =========================================================
   SECTION
========================================================= */

.section {
    padding: 70px 0;
}

.section.soft {
    background: #f7faff;
}


/* =========================================================
   CATEGORY SECTION
========================================================= */

.categories {
    padding: 48px 0 65px;

    background: #ffffff;
}

.section-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 28px;
}

.section-heading h2 {
    color: var(--navy);

    font-size: 30px;

    line-height: 1.15;

    letter-spacing: -1px;

    margin-bottom: 7px;
}

.section-heading p {
    color: #6a819b;

    font-size: 14px;
}

.view-all {
    color: #0663d4;

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;
}

.view-all:hover {
    color: var(--orange);
}


/* =========================================================
   CATEGORY GRID
========================================================= */

.category-grid {
    display: grid;

    grid-template-columns: repeat(10, 1fr);

    gap: 20px;
}

.category-item {
    min-width: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    color: var(--navy);

    font-size: 12px;

    font-weight: 600;
}

.category-image {
    width: 80px;
    height: 80px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 8px;

    background: #f6f9fc;

    border: 1px solid #e2eaf2;

    border-radius: 14px;

    overflow: hidden;

    margin-bottom: 10px;

    transition: 0.25s ease;
}

.category-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}

.category-item:hover .category-image {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(9, 35, 63, 0.09);
}


/* =========================================================
   STORE GRID
========================================================= */

.store-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.store-card {
    height: 90px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 16px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 14px;

    transition: 0.25s ease;
}

.store-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-sm);
}

.store-card img {
    width: 130px;
    height: 48px;

    display: block;

    object-fit: contain;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.product-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 18px;
}

.product-card {
    position: relative;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 15px;

    overflow: hidden;

    transition: 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-md);
}

.product-image {
    width: 100%;
    height: 185px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f8fafc;

    border-radius: 12px;

    overflow: hidden;

    margin-bottom: 13px;
}

.product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}

.product-tag {
    display: inline-block;

    padding: 5px 9px;

    background: #fff3eb;

    color: var(--orange);

    border-radius: 6px;

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 8px;
}

.product-card h3 {
    color: var(--navy);

    font-size: 16px;

    margin-bottom: 4px;
}

.product-category {
    color: #71869d;

    font-size: 12px;

    margin-bottom: 14px;
}

.compare-btn {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    height: 42px;

    border: 1px solid #d7e3ee;

    border-radius: 9px;

    color: #075ec9;

    font-size: 13px;

    font-weight: 700;

    transition: 0.2s ease;
}

.compare-btn:hover {
    background: var(--orange);

    border-color: var(--orange);

    color: #ffffff;
}


/* =========================================================
   WHY CARTZON
========================================================= */

.why-cartzon {
    width: 100%;
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.why-item {
    padding: 25px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 15px;

    transition: 0.25s ease;
}

.why-item:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-sm);
}

.why-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    background: #f4f8fc;

    border-radius: 12px;

    overflow: hidden;
}

.why-icon img {
    width: 34px;
    height: 34px;

    display: block;

    object-fit: contain;
}

.why-item h3 {
    color: var(--navy);

    font-size: 17px;

    margin-bottom: 7px;
}

.why-item p {
    color: #70849b;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   PROMOTIONAL BANNERS
========================================================= */

.banner-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

.banner {
    position: relative;

    min-height: 250px;

    padding: 35px;

    border-radius: 20px;

    overflow: hidden;
}

.orange-banner {
    background:
        linear-gradient(110deg, #fff0e5, #fff8f2);
}

.blue-banner {
    background:
        linear-gradient(110deg, #eaf4ff, #f5f9ff);
}

.banner small {
    position: relative;

    z-index: 3;

    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}

.banner h3 {
    position: relative;

    z-index: 3;

    max-width: 390px;

    color: var(--navy);

    font-size: 27px;

    line-height: 1.15;

    margin: 10px 0;
}

.banner p {
    position: relative;

    z-index: 3;

    max-width: 390px;

    color: #617995;

    font-size: 14px;

    margin-bottom: 18px;
}

.banner-btn {
    position: relative;

    z-index: 4;

    display: inline-flex;

    padding: 10px 15px;

    background: var(--navy);

    color: #ffffff;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 700;
}

.banner-image {
    position: absolute;

    right: 12px;
    bottom: 0;

    width: 220px;
    height: 200px;

    object-fit: contain;

    pointer-events: none;
}


/* =========================================================
   GUIDES
========================================================= */

.guides-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.guide-card {
    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 16px;

    overflow: hidden;

    transition: 0.25s ease;
}

.guide-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-sm);
}

.guide-image {
    width: 100%;
    height: 200px;

    overflow: hidden;

    background: #f6f9fc;
}

.guide-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.guide-card > div:last-child {
    padding: 20px;
}

.guide-card h3 {
    color: var(--navy);

    font-size: 18px;

    line-height: 1.35;

    margin-bottom: 10px;
}

.guide-card span {
    color: var(--orange);

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter {
    padding: 55px 0;

    background: var(--navy);
}

.newsletter-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;
}

.newsletter h2 {
    color: #ffffff;

    font-size: 30px;

    margin-bottom: 6px;
}

.newsletter p {
    color: #afc0d2;

    font-size: 14px;
}

.newsletter-form {
    width: 430px;

    display: flex;

    background: #ffffff;

    border-radius: 10px;

    padding: 5px;
}

.newsletter-form input {
    flex: 1;

    min-width: 0;

    border: none;
    outline: none;

    padding: 0 14px;

    color: var(--navy);
}

.newsletter-form button {
    height: 45px;

    border: none;

    padding: 0 20px;

    background: var(--orange);

    color: #ffffff;

    border-radius: 7px;

    font-weight: 700;

    cursor: pointer;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #061a2e;

    padding: 55px 0 20px;

    color: #ffffff;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 40px;
}

.footer .logo {
    height: 70px;

    margin-bottom: 16px;
}

.footer .logo img {
    width: 145px;
    height: 65px;
}

.footer-description {
    max-width: 360px;

    color: #9eb2c8;

    font-size: 13px;

    line-height: 1.8;
}

.footer h4 {
    font-size: 15px;

    margin-bottom: 17px;
}

.footer-links {
    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 11px;
}

.footer-links a {
    color: #9eb2c8;

    font-size: 13px;
}

.footer-links a:hover {
    color: var(--orange);
}

.social-links {
    display: flex;

    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.07);

    border-radius: 9px;

    color: #ffffff;

    transition: 0.2s ease;
}

.social-links a:hover {
    background: var(--orange);
}

.footer-bottom {
    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);

    display: flex;

    align-items: center;
    justify-content: space-between;

    color: #7f95ad;

    font-size: 12px;
}


/* =========================================================
   MOBILE NAV
========================================================= */

.nav-links.mobile-open {
    display: flex;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1150px) {

    .container {
        width: min(100% - 32px, 1100px);
    }

    .nav-links {
        gap: 22px;
        margin-right: 10px;
    }

    .hero-inner {
        grid-template-columns: 52% 48%;
    }

    .hero-products {
        width: 540px;
        right: -55px;
    }

    .hero-phone {
        width: 220px;
        right: 130px;
    }

    .hero-laptop {
        width: 245px;
    }

    .store-stack {
        width: 135px;
        right: 18px;
    }

    .category-grid {
        grid-template-columns: repeat(5, 1fr);
        row-gap: 25px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

    .site-header,
    .navbar {
        height: 70px;
    }

    .navbar {
        gap: 15px;
    }

    .logo {
        width: 140px;
        height: 70px;
    }

    .logo img {
        width: 140px;
        height: 62px;
    }

    .nav-links {
        display: none;

        position: absolute;

        left: 0;
        right: 0;
        top: 70px;

        background: #ffffff;

        padding: 15px 25px;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        margin: 0;

        border-bottom: 1px solid var(--border);

        box-shadow: var(--shadow-md);
    }

    .nav-links a {
        width: 100%;

        padding: 14px 0;
    }

    .nav-links a.active::after {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        min-height: auto;

        display: flex;

        flex-direction: column;

        padding-top: 55px;
    }

    .hero-content {
        width: 100%;

        text-align: center;
    }

    .hero-content h1 {
        font-size: 58px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .search-box {
        margin-left: auto;
        margin-right: auto;
    }

    .search-suggestions {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;

        height: 470px;

        margin-top: 15px;
    }

    .hero-products {
        right: 50%;

        transform: translateX(50%);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .store-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .banner-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 28px);
    }

    .site-header,
    .navbar {
        height: 66px;
    }

    .logo {
        width: 125px;
        height: 66px;
    }

    .logo img {
        width: 125px;
        height: 58px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-actions .icon-btn:nth-child(2) {
        display: none;
    }

    .header-actions .icon-btn:nth-child(3) {
        display: none;
    }

    .login-btn {
        padding: 10px 15px;

        font-size: 13px;
    }

    .nav-links {
        top: 66px;
    }

    .hero-inner {
        padding-top: 40px;
    }

    .hero-content h1 {
        font-size: 46px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 15px;
    }

    .search-box {
        height: 58px;

        padding-left: 13px;
    }

    .search-btn {
        height: 46px;

        min-width: 88px;
    }

    .search-suggestions {
        gap: 10px;
    }

    .hero-visual {
        height: 390px;
    }

    .hero-products {
        width: 430px;
        height: 370px;

        top: 5px;
    }

    .hero-phone {
        width: 175px;
        height: 290px;

        right: 100px;
        top: 45px;
    }

    .hero-laptop {
        width: 190px;
        height: 170px;

        right: -5px;
        top: 135px;
    }

    .hero-watch {
        width: 90px;
        height: 90px;

        left: 30px;
        top: 225px;
    }

    .hero-earbuds {
        width: 105px;
        height: 105px;

        left: 100px;
        top: 235px;
    }

    .store-stack {
        width: 110px;

        right: 8px;
        top: 2px;

        padding: 4px 6px;
    }

    .store-stack-item {
        height: 30px;
    }

    .store-stack-item img {
        width: 65px;
        height: 22px;
    }

    .categories {
        padding-top: 40px;
    }

    .section {
        padding: 50px 0;
    }

    .section-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 25px 15px;
    }

    .category-image {
        width: 75px;
        height: 75px;
    }

    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .store-card {
        height: 75px;
    }

    .store-card img {
        width: 105px;
        height: 40px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }

    .product-card {
        padding: 10px;
    }

    .product-image {
        height: 145px;
    }

    .product-card h3 {
        font-size: 14px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .banner {
        min-height: 300px;

        padding: 25px;
    }

    .banner-image {
        width: 170px;
        height: 160px;
    }

    .guides-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .newsletter-form {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 7px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .logo {
        width: 110px;
    }

    .logo img {
        width: 110px;
    }

    .login-btn {
        padding: 9px 12px;
    }

    .hero-content h1 {
        font-size: 39px;
    }

    .hero-products {
        width: 380px;
    }

    .hero-phone {
        width: 155px;
        right: 90px;
    }

    .hero-laptop {
        width: 170px;
    }

    .store-stack {
        width: 100px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}.affiliate-disclaimer {
    max-width: 900px;
    margin: 0 auto 18px;
    padding: 14px 18px;
    font-size: 12px;
    line-height: 1.7;
    color: #aeb8c8;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.affiliate-disclaimer strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-bottom {
    padding-top: 24px;
}