:root {
    --red: #ed1018;
    --red-dark: #c90810;

    --bg: #080808;
    --surface: #111111;
    --surface-2: #171717;
    --surface-3: #1d1d1d;

    --text: #ffffff;
    --text-soft: #d5d5d5;
    --muted: #8d8d8d;

    --border: #2b2b2b;
    --border-soft: #202020;

    --header-bg: rgba(8, 8, 8, .96);

    --shadow:
        0 15px 45px
        rgba(0, 0, 0, .28);
}


html[data-theme="light"] {
    --bg: #f5f5f5;

    --surface: #ffffff;
    --surface-2: #f2f2f2;
    --surface-3: #ebebeb;

    --text: #101010;
    --text-soft: #333333;
    --muted: #737373;

    --border: #dddddd;
    --border-soft: #e8e8e8;

    --header-bg:
        rgba(255, 255, 255, .96);

    --shadow:
        0 12px 35px
        rgba(0, 0, 0, .07);
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    min-height: 100vh;

    background:
        var(--bg);

    color:
        var(--text);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;

    transition:
        background-color .2s ease,
        color .2s ease;
}


button,
input {
    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


a {
    color: inherit;

    text-decoration: none;
}


button {
    cursor: pointer;
}


img {
    max-width: 100%;
}


main {
    min-height: 60vh;
}


.section-container {
    width:
        min(
            1450px,
            calc(100% - 48px)
        );

    margin-left: auto;
    margin-right: auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: sticky;

    top: 0;

    z-index: 100;

    background:
        var(--header-bg);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid var(--border);
}


.header-main {
    width:
        min(
            1500px,
            calc(100% - 40px)
        );

    min-height: 74px;

    margin: auto;

    display: grid;

    grid-template-columns:
        auto
        minmax(260px, 1fr)
        auto;

    align-items: center;

    gap: 30px;
}


.brand {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    min-width: 190px;
}


.brand-mark-box {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    flex: 0 0 46px;

    overflow: hidden;

    border-radius: 11px;

    background: #050505;
}


.brand-mark-box img {
    width: 52px;
    height: 52px;

    object-fit: contain;

    transform:
        scale(1.4);
}


.brand-word {
    font-size: 22px;

    font-weight: 900;

    letter-spacing: -.04em;
}


.brand-word span {
    color:
        var(--red);
}


.header-search {
    width: 100%;

    max-width: 720px;

    height: 46px;

    justify-self: center;

    display: flex;

    align-items: center;

    gap: 11px;

    padding:
        0 15px;

    background:
        var(--surface);

    border:
        1px solid var(--border);

    border-radius: 12px;
}


.header-search svg {
    width: 20px;
    height: 20px;

    flex: 0 0 20px;

    fill: none;

    stroke:
        var(--muted);

    stroke-width: 2;

    stroke-linecap: round;
}


.header-search input {
    width: 100%;

    border: 0;

    outline: 0;

    color:
        var(--text);

    background:
        transparent;

    font-size: 15px;
}


.header-search input::placeholder {
    color:
        var(--muted);
}


.header-actions {
    display: flex;

    align-items: center;

    gap: 9px;
}


.theme-toggle {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    padding: 0;

    border:
        1px solid var(--border);

    border-radius: 11px;

    background:
        var(--surface);

    color:
        var(--text);
}


.theme-toggle svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


html[data-theme="dark"]
.icon-moon {
    display: none;
}


html[data-theme="light"]
.icon-sun {
    display: none;
}


.login-link {
    height: 44px;

    display: flex;

    align-items: center;

    padding:
        0 16px;

    border-radius: 11px;

    font-weight: 700;
}


.login-link:hover {
    background:
        var(--surface);
}


.cart-button {
    height: 44px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        0 14px;

    border-radius: 11px;

    background:
        var(--red);

    color: #ffffff;

    font-weight: 800;
}


.cart-button svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


.cart-button b {
    min-width: 23px;
    height: 23px;

    display: grid;
    place-items: center;

    padding:
        0 5px;

    border-radius: 50px;

    background: #ffffff;

    color: #111111;

    font-size: 11px;
}


.category-nav {
    min-height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 4px;

    padding:
        0 18px;

    border-top:
        1px solid var(--border-soft);
}


.category-nav a {
    padding:
        10px 15px;

    border-radius: 9px;

    color:
        var(--text-soft);

    font-size: 14px;

    font-weight: 700;
}


.category-nav a:hover {
    background:
        var(--surface);

    color:
        var(--text);
}


.category-nav .codes-link {
    color:
        var(--red);
}


/* =========================================
   BUTTONS
========================================= */

.button {
    min-height: 48px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding:
        0 22px;

    border-radius: 11px;

    border:
        1px solid transparent;

    font-weight: 800;

    transition:
        .15s ease;
}


.button.primary {
    background:
        var(--red);

    color: #ffffff;
}


.button.primary:hover {
    background:
        var(--red-dark);

    transform:
        translateY(-1px);
}


.button.secondary {
    background:
        transparent;

    border-color:
        var(--border);

    color:
        var(--text);
}


.button.secondary:hover {
    background:
        var(--surface-2);
}


.button:disabled,
.btn:disabled {
    opacity: .45;

    cursor: not-allowed;
}


/* =========================================
   HERO
========================================= */

.home-hero {
    width:
        min(
            1450px,
            calc(100% - 48px)
        );

    min-height: 510px;

    margin:
        32px auto 26px;

    display: grid;

    grid-template-columns:
        .92fr 1.08fr;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 20px;

    background:
        var(--surface);

    box-shadow:
        var(--shadow);
}


.hero-copy {
    padding:
        62px 56px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.hero-label {
    margin-bottom: 14px;

    color:
        var(--red);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: .2em;
}


.hero-copy h1 {
    max-width: 690px;

    margin:
        0 0 20px;

    font-size:
        clamp(
            47px,
            5.3vw,
            78px
        );

    line-height: .98;

    letter-spacing: -.055em;
}


.hero-copy h1 span {
    display: block;

    color:
        var(--red);
}


.hero-copy > p {
    max-width: 630px;

    margin: 0;

    color:
        var(--text-soft);

    font-size: 18px;

    line-height: 1.6;
}


.hero-actions {
    margin-top: 28px;

    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.hero-points {
    margin-top: 27px;

    display: flex;

    flex-wrap: wrap;

    gap: 17px;

    color:
        var(--muted);

    font-size: 12px;

    font-weight: 700;
}


.hero-points span::before {
    content: "";

    width: 6px;
    height: 6px;

    display: inline-block;

    margin-right: 7px;

    vertical-align: middle;

    border-radius: 50%;

    background:
        var(--red);
}


.hero-brand {
    min-height: 510px;

    position: relative;

    display: grid;

    place-items: center;

    overflow: hidden;

    background:
        #050505;
}


.hero-brand::before {
    content: "";

    position: absolute;

    width: 340px;
    height: 340px;

    left: -120px;
    bottom: -160px;

    border-radius: 50%;

    background:
        rgba(237, 16, 24, .17);

    filter:
        blur(15px);
}


.brand-glow {
    position: absolute;

    width: 480px;
    height: 480px;

    right: -100px;
    top: -160px;

    border-radius: 50%;

    background:
        rgba(237, 16, 24, .12);

    filter:
        blur(25px);
}


.hero-full-logo {
    position: relative;

    z-index: 2;

    width:
        min(
            86%,
            680px
        );

    max-height: 470px;

    object-fit: contain;
}


/* =========================================
   CATEGORIES HOME
========================================= */

.home-categories {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 10px;

    margin-bottom: 65px;
}


.home-categories > a {
    min-height: 84px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        15px;

    border:
        1px solid var(--border);

    border-radius: 13px;

    background:
        var(--surface);

    transition:
        .15s ease;
}


.home-categories > a:hover {
    transform:
        translateY(-2px);

    border-color:
        var(--red);
}


.category-symbol {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background:
        var(--surface-2);

    color:
        var(--red);

    font-size: 13px;

    font-weight: 900;
}


.home-categories strong {
    display: block;

    margin-bottom: 4px;

    font-size: 14px;
}


.home-categories small {
    display: block;

    color:
        var(--muted);

    font-size: 11px;
}


/* =========================================
   SECTION HEADINGS
========================================= */

.featured-section {
    margin-bottom: 75px;
}


.section-heading-clean {
    margin-bottom: 20px;

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 20px;
}


.section-heading-clean > div > span,
.why-title > span {
    color:
        var(--red);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: .15em;
}


.section-heading-clean h2,
.why-title h2 {
    margin:
        5px 0 0;

    font-size:
        clamp(
            30px,
            3vw,
            40px
        );

    letter-spacing: -.035em;
}


.section-heading-clean > a {
    color:
        var(--text-soft);

    font-size: 13px;

    font-weight: 700;
}


/* =========================================
   PRODUCT CARDS
========================================= */

.simple-product-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 14px;
}


.simple-product-card {
    min-width: 0;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 14px;

    background:
        var(--surface);

    box-shadow:
        0 10px 28px
        rgba(0, 0, 0, .13);

    transition:
        .18s ease;
}


.simple-product-card:hover {
    transform:
        translateY(-3px);

    border-color:
        var(--red);
}


.simple-product-card[hidden] {
    display: none;
}


.simple-product-image {
    height: 155px;

    display: grid;

    place-items: center;

    position: relative;

    overflow: hidden;
}


.simple-product-image::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    top: -38px;
    right: -38px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .12);
}


.simple-product-logo {
    position: relative;

    z-index: 2;

    color: #ffffff;

    font-size: 28px;

    font-weight: 900;
}


.simple-product-info {
    padding:
        14px 15px 17px;
}


.product-category {
    display: block;

    margin-bottom: 5px;

    color:
        var(--muted);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .06em;
}


.simple-product-info h3 {
    min-height: 38px;

    margin:
        0 0 13px;

    font-size: 17px;

    line-height: 1.15;
}


.simple-product-info small {
    display: block;

    margin-bottom: 3px;

    color:
        var(--muted);
}


.simple-product-info strong {
    font-size: 15px;
}


.pending-price {
    color:
        var(--red);
}


/* =========================================
   PLATFORM COLORS
========================================= */

.netflix {
    background:
        linear-gradient(
            145deg,
            #e50914,
            #8d0005
        );
}


.disney {
    background:
        linear-gradient(
            145deg,
            #1d5aff,
            #0a215f
        );
}


.prime {
    background:
        linear-gradient(
            145deg,
            #00a8e1,
            #16618b
        );
}


.max {
    background:
        linear-gradient(
            145deg,
            #6730e9,
            #291074
        );
}


.youtube {
    background:
        linear-gradient(
            145deg,
            #f61822,
            #8c0005
        );
}


.chatgpt {
    background:
        linear-gradient(
            145deg,
            #199d81,
            #075044
        );
}


.capcut {
    background:
        linear-gradient(
            145deg,
            #343434,
            #080808
        );
}


.canva {
    background:
        linear-gradient(
            145deg,
            #00becb,
            #7350e5
        );
}


.google {
    background:
        linear-gradient(
            145deg,
            #4285f4,
            #34a853 45%,
            #fbbc05 72%,
            #ea4335
        );
}


.spotify {
    background:
        linear-gradient(
            145deg,
            #1ed760,
            #087331
        );
}


/* =========================================
   WHY TITOFLIX
========================================= */

.why-strip {
    padding:
        60px 0;

    background:
        #050505;

    color: #ffffff;
}


html[data-theme="light"]
.why-strip {
    background:
        #101010;
}


.why-title {
    margin-bottom: 22px;
}


.why-cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;
}


.why-cards article {
    min-height: 130px;

    display: flex;

    gap: 18px;

    padding: 22px;

    border:
        1px solid #292929;

    border-radius: 13px;

    background:
        #101010;
}


.why-number {
    color:
        var(--red);

    font-size: 20px;

    font-weight: 900;
}


.why-cards h3 {
    margin:
        0 0 7px;

    font-size: 17px;
}


.why-cards p {
    margin: 0;

    color:
        #9b9b9b;

    font-size: 13px;

    line-height: 1.55;
}


/* =========================================
   HELP
========================================= */

.help-banner {
    min-height: 145px;

    margin-top: 55px;
    margin-bottom: 55px;

    padding:
        28px 34px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 28px;

    border:
        1px solid var(--border);

    border-radius: 16px;

    background:
        var(--surface);
}


.help-banner > div > span {
    color:
        var(--red);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: .13em;
}


.help-banner h2 {
    margin:
        6px 0 5px;

    font-size: 29px;
}


.help-banner p {
    margin: 0;

    color:
        var(--muted);
}


/* =========================================
   SHOP
========================================= */

.shop-heading {
    padding-top: 55px;

    text-align: center;
}


.shop-label {
    color:
        var(--red);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: .14em;
}


.shop-heading h1 {
    margin:
        7px 0 10px;

    font-size:
        clamp(
            42px,
            5vw,
            66px
        );

    letter-spacing: -.05em;
}


.shop-heading > p {
    margin: 0;

    color:
        var(--muted);
}


.shop-search {
    max-width: 720px;

    height: 52px;

    margin:
        28px auto 18px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        0 15px;

    border:
        1px solid var(--border);

    border-radius: 11px;

    background:
        var(--surface);
}


.shop-search span {
    color:
        var(--muted);
}


.shop-search input {
    width: 100%;

    border: 0;

    outline: 0;

    background:
        transparent;

    color:
        var(--text);
}


.shop-filters {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 28px;
}


.filter-button {
    min-height: 39px;

    padding:
        0 14px;

    border:
        1px solid var(--border);

    border-radius: 9px;

    background:
        var(--surface);

    color:
        var(--text-soft);

    font-size: 12px;

    font-weight: 700;
}


.filter-button.active {
    border-color:
        var(--red);

    background:
        var(--red);

    color: #ffffff;
}


.catalog {
    padding-top: 18px;
    padding-bottom: 70px;
}


.catalog-section {
    margin-bottom: 50px;
}


.catalog-section[hidden] {
    display: none;
}


.catalog-section-heading {
    margin-bottom: 17px;

    padding-bottom: 11px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom:
        1px solid var(--border);
}


.catalog-section-heading h2 {
    margin: 0;

    font-size: 25px;
}


.catalog-section-heading span {
    color:
        var(--muted);

    font-size: 12px;
}


.no-results {
    padding: 55px;

    text-align: center;

    border:
        1px solid var(--border);

    border-radius: 14px;

    background:
        var(--surface);
}


/* =========================================
   PRODUCT DETAIL
========================================= */

.product-page {
    padding:
        55px 0 75px;

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 42px;
}


.product-visual {
    min-height: 560px;

    padding: 36px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border-radius: 18px;

    overflow: hidden;

    position: relative;
}


.product-visual::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    top: -110px;
    right: -110px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .13);
}


.product-visual-logo {
    width: 88px;
    height: 88px;

    position: relative;

    z-index: 2;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(255, 255, 255, .25);

    border-radius: 18px;

    background:
        rgba(0, 0, 0, .25);

    color: #ffffff;

    font-size: 27px;

    font-weight: 900;
}


.product-visual-content {
    position: relative;

    z-index: 2;

    color: #ffffff;
}


.product-visual-content h1 {
    margin:
        6px 0 0;

    font-size:
        clamp(
            40px,
            4vw,
            60px
        );
}


.product-purchase {
    padding:
        18px 0;
}


.product-purchase > h1 {
    margin:
        7px 0 10px;

    font-size:
        clamp(
            35px,
            4vw,
            50px
        );
}


.product-description {
    margin:
        0 0 28px;

    color:
        var(--muted);

    line-height: 1.6;
}


.notice {
    margin-bottom: 18px;

    padding: 14px;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background:
        var(--surface);
}


.option-heading {
    margin-bottom: 11px;
}


.plan-options {
    display: grid;

    gap: 9px;
}


.plan-card {
    min-height: 68px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        13px 15px;

    border:
        1px solid var(--border);

    border-radius: 11px;

    background:
        var(--surface);

    cursor: pointer;
}


.plan-card input {
    position: absolute;

    opacity: 0;
}


.plan-check {
    width: 20px;
    height: 20px;

    border:
        2px solid var(--border);

    border-radius: 50%;
}


.plan-card input:checked
+ .plan-check {
    border:
        6px solid var(--red);
}


.plan-card:has(input:checked) {
    border-color:
        var(--red);
}


.plan-content {
    flex: 1;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 14px;
}


.quantity-box {
    margin:
        22px 0;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.quantity-control {
    display: flex;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 9px;
}


.quantity-control button,
.quantity-control input {
    width: 42px;
    height: 42px;

    border: 0;

    background:
        var(--surface);

    color:
        var(--text);

    text-align: center;
}


.purchase-button {
    width: 100%;
}


.purchase-benefits {
    margin-top: 25px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;
}


.purchase-benefits > div {
    display: flex;

    gap: 9px;

    padding: 13px;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background:
        var(--surface);
}


.purchase-benefits > div > span {
    color:
        var(--red);
}


/* =========================================
   CART / CHECKOUT
========================================= */

.cart-page,
.checkout-page {
    width:
        min(
            1300px,
            calc(100% - 48px)
        );

    margin: auto;

    padding:
        52px 0 75px;
}


.section-heading h1 {
    margin:
        5px 0 0;

    font-size: 40px;
}


.eyebrow {
    color:
        var(--red);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: .12em;
}


.empty-cart {
    padding: 55px;

    text-align: center;

    border:
        1px solid var(--border);

    border-radius: 14px;

    background:
        var(--surface);
}


.cart-layout,
.checkout-layout {
    display: grid;

    grid-template-columns:
        1.35fr .65fr;

    gap: 18px;
}


.cart-items,
.checkout-form-card,
.order-summary {
    border:
        1px solid var(--border);

    border-radius: 14px;

    background:
        var(--surface);
}


.cart-item {
    padding: 17px;

    display: grid;

    grid-template-columns:
        68px 1fr auto;

    gap: 14px;

    align-items: center;

    border-bottom:
        1px solid var(--border);
}


.cart-item:last-child {
    border-bottom: 0;
}


.cart-thumb {
    width: 62px;
    height: 62px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color: #ffffff;

    font-weight: 900;
}


.cart-info h3 {
    margin:
        0 0 5px;
}


.cart-info p,
.cart-info small {
    margin: 0;

    color:
        var(--muted);
}


.cart-price {
    text-align: right;
}


.link-danger {
    margin-top: 7px;

    border: 0;

    background:
        transparent;

    color:
        var(--red);
}


.order-summary {
    height: max-content;

    padding: 21px;
}


.order-summary > div {
    display: flex;

    justify-content: space-between;

    gap: 10px;

    margin:
        12px 0;
}


.summary-total {
    padding-top: 16px;

    border-top:
        1px solid var(--border);
}


.checkout-form-card {
    padding: 25px;
}


.form-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 11px;
}


.form-grid label {
    display: flex;

    flex-direction: column;

    gap: 6px;

    color:
        var(--text-soft);

    font-size: 12px;
}


.form-grid label.wide {
    grid-column:
        1 / -1;
}


.form-grid input {
    padding: 12px;

    border:
        1px solid var(--border);

    border-radius: 9px;

    background:
        var(--bg);

    color:
        var(--text);
}


.payment-list {
    display: grid;

    gap: 8px;
}


.payment-option {
    padding: 13px;

    display: flex;

    align-items: center;

    gap: 11px;

    border:
        1px solid var(--border);

    border-radius: 9px;

    background:
        var(--surface);
}


.binance-conversion {
    margin:
        17px 0;

    padding: 17px;

    border:
        1px solid var(--red);

    border-radius: 10px;

    background:
        var(--surface-2);
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    border-top:
        1px solid var(--border);

    background:
        var(--surface);
}


.footer-grid {
    width:
        min(
            1450px,
            calc(100% - 48px)
        );

    margin: auto;

    padding:
        48px 0;

    display: grid;

    grid-template-columns:
        1.5fr
        repeat(3, 1fr);

    gap: 45px;
}


.footer-brand {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 16px;
}


.footer-mark {
    width: 43px;
    height: 43px;

    display: grid;

    place-items: center;

    overflow: hidden;

    border-radius: 10px;

    background: #050505;
}


.footer-mark img {
    width: 48px;
    height: 48px;

    object-fit: contain;

    transform:
        scale(1.4);
}


.footer-word {
    font-size: 21px;

    font-weight: 900;
}


.footer-word span {
    color:
        var(--red);
}


.footer-about p {
    max-width: 390px;

    color:
        var(--muted);

    line-height: 1.6;
}


.footer-slogan {
    color:
        var(--text-soft) !important;

    font-weight: 700;
}


.footer-slogan strong {
    color:
        var(--red);
}


.footer-column h4 {
    margin:
        0 0 16px;
}


.footer-column a {
    display: block;

    margin:
        10px 0;

    color:
        var(--muted);

    font-size: 13px;
}


.footer-column a:hover {
    color:
        var(--red);
}


.footer-bottom {
    width:
        min(
            1450px,
            calc(100% - 48px)
        );

    min-height: 60px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid var(--border);

    color:
        var(--muted);

    font-size: 11px;
}


.service-status {
    display: flex;

    align-items: center;

    gap: 7px;
}


.service-status i {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        #18bf67;
}


/* =========================================
   MOBILE NAV
========================================= */

.mobile-nav {
    display: none;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .category-nav {
        justify-content:
            flex-start;

        overflow-x: auto;
    }


    .category-nav a {
        white-space: nowrap;
    }


    .home-categories {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .simple-product-grid {
        grid-template-columns:
            repeat(4, 1fr);
    }

}


@media (max-width: 980px) {

    .header-main {
        grid-template-columns:
            auto 1fr auto;

        gap: 15px;
    }


    .brand-word {
        display: none;
    }


    .brand {
        min-width: auto;
    }


    .login-link {
        display: none;
    }


    .home-hero {
        grid-template-columns:
            1fr;
    }


    .hero-copy {
        padding:
            48px 38px;
    }


    .hero-brand {
        min-height: 430px;
    }


    .simple-product-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .product-page {
        grid-template-columns:
            1fr;
    }


    .product-visual {
        min-height: 420px;
    }


    .cart-layout,
    .checkout-layout {
        grid-template-columns:
            1fr;
    }


    .footer-grid {
        grid-template-columns:
            1fr 1fr;
    }

}


@media (max-width: 720px) {

    body {
        padding-bottom: 77px;
    }


    .section-container {
        width:
            calc(100% - 28px);
    }


    .site-header {
        position: static;
    }


    .header-main {
        width:
            calc(100% - 20px);

        grid-template-columns:
            1fr auto;

        gap: 9px;

        padding:
            9px 0;
    }


    .header-search {
        grid-column:
            1 / -1;

        grid-row: 2;

        max-width: none;
    }


    .theme-toggle {
        display: none;
    }


    .cart-label {
        display: none;
    }


    .category-nav {
        display: none;
    }


    .home-hero {
        width:
            calc(100% - 28px);

        margin-top: 18px;

        border-radius: 15px;
    }


    .hero-copy {
        padding:
            36px 25px;
    }


    .hero-copy h1 {
        font-size: 44px;
    }


    .hero-copy > p {
        font-size: 15px;
    }


    .hero-brand {
        min-height: 360px;
    }


    .hero-full-logo {
        width: 92%;
    }


    .home-categories {
        grid-template-columns:
            1fr 1fr;

        margin-bottom: 50px;
    }


    .simple-product-grid {
        grid-template-columns:
            1fr 1fr;

        gap: 9px;
    }


    .simple-product-image {
        height: 125px;
    }


    .simple-product-info {
        padding: 11px;
    }


    .simple-product-info h3 {
        min-height: 35px;

        font-size: 15px;
    }


    .why-cards {
        grid-template-columns:
            1fr;
    }


    .help-banner {
        display: block;

        margin-top: 40px;
        margin-bottom: 40px;

        padding: 23px;
    }


    .help-banner .button {
        width: 100%;

        margin-top: 18px;
    }


    .shop-heading {
        padding-top: 32px;
    }


    .shop-filters {
        justify-content:
            flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;
    }


    .filter-button {
        flex:
            0 0 auto;
    }


    .product-page {
        padding:
            25px 0 45px;

        gap: 23px;
    }


    .product-visual {
        min-height: 330px;

        padding: 24px;
    }


    .purchase-benefits {
        grid-template-columns:
            1fr;
    }


    .plan-content {
        flex-direction: column;

        align-items: flex-start;
    }


    .footer-grid {
        width:
            calc(100% - 28px);

        grid-template-columns:
            1fr;

        gap: 28px;

        padding:
            36px 0;
    }


    .footer-bottom {
        width:
            calc(100% - 28px);

        padding:
            15px 0;

        flex-direction: column;

        align-items: flex-start;
    }


    .mobile-nav {
        position: fixed;

        left: 9px;
        right: 9px;
        bottom: 9px;

        z-index: 150;

        height: 61px;

        display: grid;

        grid-template-columns:
            repeat(4, 1fr);

        padding: 5px;

        border:
            1px solid var(--border);

        border-radius: 15px;

        background:
            var(--header-bg);

        backdrop-filter:
            blur(18px);

        box-shadow:
            var(--shadow);
    }


    .mobile-nav a,
    .mobile-nav button {
        border: 0;

        border-radius: 10px;

        background:
            transparent;

        color:
            var(--muted);

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 2px;

        font-size: 9px;

        font-weight: 800;
    }


    .mobile-nav .active {
        background:
            var(--red);

        color: #ffffff;
    }


    .mobile-symbol {
        font-size: 10px;

        font-weight: 900;
    }


    .theme-circle {
        width: 14px;
        height: 14px;

        display: block;

        border:
            2px solid currentColor;

        border-radius: 50%;
    }

}


@media (max-width: 430px) {

    .hero-copy h1 {
        font-size: 39px;
    }


    .home-categories {
        grid-template-columns:
            1fr;
    }


    .hero-brand {
        min-height: 310px;
    }


    .cart-page,
    .checkout-page {
        width:
            calc(100% - 28px);
    }

}