/* ==================================================
   1. RESET
   Remove margens e espaçamentos padrão do navegador
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ==================================================
   2. CONFIGURAÇÕES GERAIS DO SITE
================================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #2d2d2d;
    color: #ffffff;
}


/* ==================================================
   3. CABEÇALHO
   Área superior com logo, menu e botão do WhatsApp
================================================== */

header {
    background: #242424;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}


/* Centraliza e organiza os elementos do cabeçalho */

.header-content {
    width: 100%;
    max-width: 1180px;
    height: 100px;

    margin: 0 auto;
    padding: 0 24px;

    display: flex;
    align-items: center;
}


/* Tamanho e brilho suave da logo */

.logo img {
    width: auto;
    height: 90px;
    display: block;

    filter:
        drop-shadow(
            0 0 12px rgba(22, 143, 255, 0.18)
        );
}


/* Organização dos links do menu */

nav {
    display: flex;
    align-items: center;

    gap: 38px;
    margin-left: auto;
}


/* Aparência dos links do menu */

nav a,
nav a:visited {
    color: #cfcfcf;
    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    transition: color 0.25s ease;
}


/* Cor dos links ao passar o mouse */

nav a:hover {
    color: #ffffff;
}


/* Botão do WhatsApp no cabeçalho */

.whatsapp-header,
.whatsapp-header:visited {
    margin-left: 30px;
    padding: 11px 22px;

    background: #168fff;
    color: #ffffff;

    border-radius: 999px;

    text-decoration: none;
    font-weight: 600;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


/* Efeito do botão do WhatsApp */

.whatsapp-header:hover {
    background: #0b73d8;
    transform: translateY(-1px);
}


/* ==================================================
   4. HERO
   Primeira área do site:
   texto à esquerda e vídeo à direita
================================================== */

.hero {
    min-height: calc(100vh - 100px);

    padding: 0 8%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 18% 40%,
            rgba(0, 123, 255, 0.10),
            transparent 35%
        ),
        linear-gradient(
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.92)
        );
}


/* Área do título, texto e botões */

.hero-text {
    width: 42%;
    max-width: 620px;
}

/* Título principal */

.hero h1 {
    margin-bottom: 20px;

    font-size: 60px;
    line-height: 1.08;
    font-weight: 700;
}


/* Texto abaixo do título */

.hero p {
    max-width: 520px;
    margin-bottom: 30px;

    color: #bcbcbc;

    font-size: 22px;
    line-height: 1.6;
}


/* ==================================================
   5. BOTÕES DO HERO
================================================== */

/* Organiza os dois botões lado a lado */

.hero-actions {
    display: flex;
    align-items: center;

    gap: 14px;
    flex-wrap: wrap;
}


/* Botão principal azul */

.button {
    display: inline-block;

    padding: 18px 42px;

    background: #168fff;
    color: #ffffff;

    border: 1px solid transparent;
    border-radius: 12px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    box-shadow:
        0 10px 30px rgba(22, 143, 255, 0.22);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* Efeito do botão principal */

.button:hover {
    background: #2b9cff;
    transform: translateY(-2px);

    box-shadow:
        0 14px 35px rgba(22, 143, 255, 0.35);
}


/* Botão secundário transparente */

.button-secondary {
    background: transparent;
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.18);

    box-shadow: none;
}


/* Efeito do botão secundário */

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(22, 143, 255, 0.55);

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.20);
}


/* ==================================================
   6. VÍDEO DO HERO
   Controla tamanho, posição e animação do celular
================================================== */

.hero-video {
    width: 58%;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Aparência e tamanho do vídeo */

.hero-video video {
    width: 100%;
    max-width: 720px;
    height: auto;

    display: block;
    object-fit: contain;

    animation:
        phoneFloat 8s ease-in-out infinite;

    filter:
        drop-shadow(
            0 0 45px rgba(22, 143, 255, 0.15)
        );
}


/* ==================================================
   7. ANIMAÇÃO DO CELULAR
   Faz o vídeo flutuar suavemente
================================================== */

@keyframes phoneFloat {

    0% {
        transform:
            translateY(-10px)
            rotate(-0.8deg)
            scale(1.05);
    }

    25% {
        transform:
            translateY(-18px)
            rotate(0deg)
            scale(1.05);
    }

    50% {
        transform:
            translateY(-12px)
            rotate(0.8deg)
            scale(1.05);
    }

    75% {
        transform:
            translateY(-20px)
            rotate(0deg)
            scale(1.05);
    }

    100% {
        transform:
            translateY(-10px)
            rotate(-0.8deg)
            scale(1.05);
    }
}


/* ==================================================
   8. SEÇÕES INTERNAS
   Espaçamento usado nas seções abaixo do hero
================================================== */

section:not(.hero) {
    padding: 70px 8%;
}


/* Títulos e introduções das seções */

.section-heading {
    max-width: 720px;

    margin: 0 auto 50px;

    text-align: center;
}

.section-heading span {
    display: inline-block;

    margin-bottom: 12px;

    color: #168fff;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 18px;

    font-size: 42px;
    line-height: 1.15;
}

.section-heading p {
    color: #aaaaaa;

    font-size: 18px;
    line-height: 1.6;
}


/* ==================================================
   9. TUDO PARA O SEU SMARTPHONE
   Cards das principais áreas da loja
================================================== */

.services {
    background: #101010;
}


/* Grade dos cards */

.cards {
    max-width: 1180px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}

/* Card individual */

.card {
    min-height: 310px;

    padding: 32px;

    display: flex;
    flex-direction: column;

    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #181818,
            #101010
        );

    border:
        1px solid rgba(255, 255, 255, 0.06);

    border-radius: 18px;

    box-shadow:
      0 0 18px rgba(22,143,255,.12);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

/* Card destaque: celulares novos e seminovos */

.card-featured {
    grid-column: 1 / -1;

    min-height: 330px;

    padding: 0;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
    gap: 40px;

    overflow: hidden;
}

.card-featured-image {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(22, 143, 255, 0.12),
            rgba(16, 16, 16, 0.92) 72%
        );
}

.card-featured-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 0;
}

.card-featured-content {
    padding: 32px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* Efeito ao passar o mouse */

.card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(22, 143, 255, 0.45);

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.30);
}


/* Ícone do card */

.card-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(22, 143, 255, 0.10);

    border:
        1px solid rgba(22, 143, 255, 0.28);

    border-radius: 13px;

    font-size: 23px;
}


/* Título do card */

.card h3 {
    margin-bottom: 14px;

    color: #ffffff;

    font-size: 21px;
}


/* Texto do card */

.card p {
    margin-bottom: 24px;

    color: #a9a9a9;

    font-size: 16px;
    line-height: 1.65;
}


/* Link na parte inferior do card */

.card-link {
    margin-top: auto;

    color: #168fff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;
}

.logo-apple {
    max-width: 90px;
}

.logo-samsung {
    max-width: 170px;
}

.logo-infinix {
    max-width: 160px;
}
/* Efeito no link do card */

.card-link:hover {
    color: #53b4ff;
}


/* ==================================================
   10. LOJA PREMIUM
================================================== */

.storefront {
    background:
        radial-gradient(
            circle at top,
            rgba(22, 143, 255, 0.08),
            transparent 36%
        ),
        #0b0b0b;
}

.storefront-filters {
    max-width: 1180px;

    margin: 0 auto 28px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.storefront-filter {
    appearance: none;
    cursor: pointer;

    padding: 12px 18px;

    background: rgba(255, 255, 255, 0.03);
    color: #e7e7e7;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.storefront-filter:hover,
.storefront-filter.is-active {
    background: #168fff;
    color: #ffffff;

    border-color: #168fff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(22, 143, 255, 0.18);
}

.storefront-featured,
.storefront-grid .product-card {
    background:
        linear-gradient(
            145deg,
            #181818,
            #101010
        );

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;

    box-shadow:
        0 0 18px rgba(22, 143, 255, 0.12);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.storefront-featured {
    max-width: 1180px;

    margin: 0 auto 22px;

    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);

    min-height: 430px;

    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-7px);

    border-color: rgba(22, 143, 255, 0.45);

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.30);
}

.product-card-media {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(22, 143, 255, 0.12),
            rgba(16, 16, 16, 0.92) 72%
        );
}

.storefront-grid .product-card-media {
    min-height: 230px;
}

.storefront-featured .product-card-media {
    min-height: 100%;
}

.product-card-media img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transform: scale(1);
    transition: transform 0.45s ease;
}

.accessory-media-placeholder {
    height: 100%;
    min-height: 230px;
    padding: 26px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(22, 143, 255, 0.18),
            rgba(12, 12, 12, 0.92) 60%
        );

    text-align: center;
}

.accessory-media-icon {
    width: 56px;
    height: 56px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.32);
    font-size: 28px;
}

.accessory-media-text {
    margin: 0;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
}

.product-card:hover .product-card-media img {
    transform: scale(1.07);
}

.product-chip {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;

    padding: 8px 14px;

    background: rgba(0, 0, 0, 0.32);
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.product-chip-highlight {
    background: #168fff;
    border-color: #168fff;
}

.product-card-content {
    padding: 28px;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-card-content-featured {
    padding: 36px;

    justify-content: center;
}

.product-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.product-brand {
    color: #168fff;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-condition {
    padding: 7px 12px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
}

.product-condition.is-new {
    background: rgba(64, 194, 113, 0.12);
    color: #69e391;

    border: 1px solid rgba(64, 194, 113, 0.35);
}

.product-condition.is-seminovo {
    background: rgba(255, 191, 74, 0.12);
    color: #ffcb6b;

    border: 1px solid rgba(255, 191, 74, 0.35);
}

.product-card-content h3 {
    margin: 0;

    color: #ffffff;

    font-size: 24px;
    line-height: 1.12;
}

.storefront-featured .product-card-content h3 {
    font-size: 36px;
}

.product-storage {
    margin: 0;

    color: #d9d9d9;

    font-weight: 600;
}

.product-description {
    margin: 0;

    color: #a9a9a9;

    line-height: 1.7;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-specs span {
    padding: 8px 12px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;

    color: #d0d0d0;

    font-size: 13px;
}

.product-price-block {
    display: flex;
    flex-direction: column;
    gap: 4px;

    padding-top: 6px;
}

.product-price-block strong {
    color: #ffffff;

    font-size: 28px;
}

.product-price-block span {
    color: #a9a9a9;

    font-size: 14px;
}

.product-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;

    margin-top: 6px;
}

.product-actions .button {
    padding: 15px 24px;
}

.product-ghost-button {
    margin-top: auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 14px 18px;

    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;

    text-decoration: none;
    font-weight: 700;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-ghost-button:hover {
    background: rgba(22, 143, 255, 0.08);

    border-color: rgba(22, 143, 255, 0.45);

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.20);
}

.storefront-grid {
    max-width: 1180px;

    margin: 22px auto 0;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 22px;
}

.storefront-grid .product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.storefront-grid .product-card-content {
    flex: 1;
}

.storefront-empty {
    max-width: 1180px;

    margin: 24px auto 0;
    padding: 26px;

    background: rgba(255, 255, 255, 0.02);
    color: #bcbcbc;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;

    text-align: center;
    line-height: 1.7;
}

.storefront-subsection {
    max-width: 1180px;

    margin: 36px auto 0;
}

.storefront-subheader {
    margin-bottom: 18px;
}

.storefront-subheader h3 {
    margin-bottom: 10px;

    color: #ffffff;

    font-size: 30px;
    line-height: 1.15;
}

.storefront-subheader p {
    color: #ababab;

    line-height: 1.7;
}

.storefront-grid-accessories {
    margin-top: 0;
}

.accessory-card .product-brand {
    letter-spacing: 1.4px;
}

.case-customizer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
}

.case-customizer-controls,
.case-customizer-preview-wrap {
    padding: 30px;

    background:
        linear-gradient(
            145deg,
            #181818,
            #101010
        );

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;

    box-shadow:
        0 0 18px rgba(22, 143, 255, 0.10);
}

.case-control-label {
    display: block;

    margin-bottom: 10px;

    color: #e8e8e8;

    font-size: 14px;
    font-weight: 700;
}

/*
  Para alterar as cores da caixa de pesquisa de modelos:
  - .case-model-picker
  - .case-model-search
  - .case-model-option
  - .case-model-option.is-active
*/

.case-model-picker {
    margin-bottom: 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #000000;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.case-model-picker-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 8px;
}

.case-model-search {
    min-height: 50px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #000000;
    color: #ffffff;
    font-size: 14px;
}

.case-model-search::placeholder {
    color: #8f8f8f;
}

.case-model-search:focus,
.case-model-picker.is-open .case-model-search {
    outline: none;
    border-color: rgba(22, 143, 255, 0.65);
    box-shadow: 0 0 0 3px rgba(22, 143, 255, 0.18);
}

.case-model-toggle {
    min-width: 50px;
    min-height: 50px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #000000;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
}

.case-model-results {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-top: 1px solid transparent;
    background: #000000;
}

.case-model-picker.is-open .case-model-results {
    max-height: 320px;
    overflow-y: auto;
    border-top-color: rgba(255, 255, 255, 0.08);
}

.case-model-group {
    padding: 14px 12px 4px;
}

.case-model-group-title {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.case-model-group-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.case-model-option {
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #000000;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.case-model-option:hover,
.case-model-option.is-active {
    border-color: rgba(22, 143, 255, 0.65);
    background: rgba(22, 143, 255, 0.18);
}

.case-color-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: #000;
}

.case-color-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.case-color-swatch {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background:
        linear-gradient(135deg, transparent 45%, rgba(22, 143, 255, 0.9) 46%, rgba(22, 143, 255, 0.9) 54%, transparent 55%),
        var(--case-color);
}

.case-color-option:not([data-case-color-id="transparent"]) .case-color-swatch {
    background: var(--case-color);
}

.case-color-note {
    margin: -10px 0 18px;
    color: #929292;
    font-size: 12px;
    line-height: 1.5;
}

.case-customer-photo {
    margin: 12px 0 18px;
    padding: 14px;
    border: 1px solid rgba(22, 143, 255, 0.35);
    border-radius: 12px;
    background: rgba(22, 143, 255, 0.07);
}

.case-customer-photo p {
    margin: 0 0 10px;
    color: #bdbdbd;
    font-size: 13px;
    line-height: 1.55;
}

.case-customer-photo .case-file-input {
    margin-bottom: 10px;
}

.case-model-empty {
    padding: 16px 14px;
    color: #b7b7b7;
    font-size: 14px;
}

.case-select,
.case-file-input,
.case-range-input {
    width: 100%;

    margin-bottom: 18px;
}

.case-select,
.case-file-input {
    min-height: 52px;
    padding: 12px 14px;

    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}

.case-select:focus,
.case-file-input:focus,
.case-range-input:focus {
    outline: none;
    border-color: rgba(22, 143, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(22, 143, 255, 0.16);
}

.case-own-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
    cursor: pointer;
}

.case-own-option:has(input:checked) {
    border-color: rgba(22, 143, 255, 0.65);
    background: rgba(22, 143, 255, 0.09);
}

.case-own-option span {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.case-own-option small {
    color: #aaa;
}

.case-artwork-list {
    display: grid;
    gap: 8px;
    margin: -8px 0 18px;
}

.case-layer-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: -8px 0 18px;
}

.case-layer-actions button {
    min-height: 40px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.case-layer-actions button:hover:not(:disabled) {
    border-color: rgba(22, 143, 255, 0.65);
    background: rgba(22, 143, 255, 0.16);
}

.case-layer-actions button.is-danger {
    grid-column: 1 / -1;
    color: #ffadad;
}

.case-layer-actions button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.case-artwork-empty {
    color: #8f8f8f;
    font-size: 13px;
}

.case-artwork-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
}

.case-artwork-item.is-active {
    border-color: rgba(22, 143, 255, 0.7);
    background: rgba(22, 143, 255, 0.1);
}

.case-artwork-item button {
    min-width: 0;
    padding: 8px 10px;
    border: 0;
    background: transparent;
    color: #fff;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.case-artwork-item button > img {
    width: 48px;
    height: 48px;
    display: block;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: #0a0a0a;
}

.case-artwork-item-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.case-artwork-item-text strong,
.case-artwork-item-text small {
    overflow: hidden;
    text-overflow: ellipsis;
}

.case-artwork-item-text strong {
    color: #fff;
    font-size: 13px;
}

.case-artwork-item-text small {
    color: #aaa;
    font-size: 12px;
}

.case-artwork-item .case-artwork-remove {
    display: block;
    color: #ff9d9d;
    font-size: 20px;
    text-align: center;
}

.cart-customization-card {
    grid-template-columns: 1fr auto auto;
}

.cart-pending-price {
    color: #ffcf85;
}

.case-range-input {
    accent-color: #168fff;
}

.case-customizer-tip {
    margin-bottom: 16px;

    color: #bcbcbc;

    font-size: 14px;
}

.case-customizer-note {
    margin-top: 14px;

    color: #8f8f8f;

    font-size: 13px;
    line-height: 1.6;
}

.case-artwork-delivery-note {
    margin-top: 16px;
    padding: 15px 16px;
    border: 1px solid rgba(255, 191, 74, 0.42);
    border-radius: 12px;
    background: rgba(255, 191, 74, 0.08);
}

.case-artwork-delivery-note strong {
    display: block;
    margin-bottom: 6px;
    color: #ffd487;
    font-size: 14px;
}

.case-artwork-delivery-note p {
    margin: 0;
    color: #d3d3d3;
    font-size: 13px;
    line-height: 1.6;
}

.case-preview {
    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at top,
            rgba(22, 143, 255, 0.20),
            rgba(16, 16, 16, 0.88) 58%
        );

    border-radius: 18px;
}

.case-preview-frame {
    width: 280px;
    height: 560px;

    position: relative;
    overflow: hidden;
    cursor: grab;

    background:
        linear-gradient(
            160deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.02)
        );

    border: 2px solid rgba(255, 255, 255, 0.22);
    border-radius: 42px;

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.10),
        0 30px 58px rgba(0, 0, 0, 0.40);
}

.case-preview-frame.has-device-preview {
    background: #0f0f0f;
}

.case-preview-device {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    transition: filter 0.2s ease;
}

.case-preview-frame.has-customer-case-photo .case-preview-device {
    object-fit: contain;
}

.case-print-area {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    z-index: 2;
}

.case-artwork-stage {
    position: absolute;
    inset: 0;
    touch-action: none;
    user-select: none;
}

.case-preview-frame:active,
.case-preview-frame.is-dragging {
    cursor: grabbing;
}

.case-preview-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    object-fit: contain;

    transform-origin: center;
    will-change: transform;
    cursor: grab;
    touch-action: none;
    user-select: none;
    -webkit-user-drag: none;
}

.case-preview-frame.is-dragging .case-preview-image.is-active {
    cursor: grabbing;
}

.case-preview-image.is-active {
    outline: 2px dashed rgba(22, 143, 255, 0.9);
    outline-offset: -2px;
}

.case-camera-cutout {
    position: absolute;
    border: 0;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
    z-index: 3;
}

.case-preview-placeholder {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    color: #b8b8b8;

    text-align: center;
    line-height: 1.65;
    position: relative;
    z-index: 4;
}

.case-preview-caption {
    margin-top: 14px;

    color: #9d9d9d;

    font-size: 14px;
    line-height: 1.6;
}

.is-hidden {
    display: none !important;
}

/* ==================================================
   11. DIFERENCIAIS DA OFFICE PHONE
================================================== */

.why-us {
    background:
        radial-gradient(
            circle at top,
            rgba(22, 143, 255, 0.08),
            transparent 35%
        ),
        #0b0b0b;
}


/* Grade dos diferenciais */

.why-grid {
    max-width: 1180px;

    margin: 60px auto 0;

    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;
}


/* Card individual */

.why-card {
    display: flex;
    align-items: flex-start;

    gap: 24px;
    padding: 34px;

    background:
        linear-gradient(
            145deg,
            #1b1b1b,
            #101010
        );

    border:
        1px solid rgba(255, 255, 255, 0.06);

    border-radius: 22px;

    transition:
        transform 0.30s ease,
        border-color 0.30s ease,
        box-shadow 0.30s ease;
}


/* Efeito ao passar o mouse no card */

.why-card:hover {
    transform:
        translateY(-8px)
        scale(1.02);

    border-color:
        rgba(22, 143, 255, 0.45);

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.35);
}


/* Caixa do ícone */

.why-number {
    width: 64px;
    height: 64px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(22, 143, 255, 0.10);

    border:
        1px solid rgba(22, 143, 255, 0.25);

    border-radius: 18px;

    font-size: 27px;

    box-shadow:
        0 0 18px rgba(22, 143, 255, 0.12);

    transition:
        transform 0.30s ease,
        background 0.30s ease,
        box-shadow 0.30s ease;

}


/* Movimento do ícone ao passar o mouse */

.why-card:hover .why-number {
    transform:
        rotate(-4deg)
        scale(1.05);

    background:
        rgba(22, 143, 255, 0.18);

    box-shadow:
        0 0 24px rgba(22, 143, 255, 0.20);
}


/* Área de texto */

.why-content {
    padding-top: 4px;
}


/* Título do diferencial */

.why-content h3 {
    margin-bottom: 16px;

    color: #ffffff;

    font-size: 24px;
}


/* Texto do diferencial */

.why-content p {
    color: #bcbcbc;

    line-height: 1.7;
}


/* Ajuste para tablet */

@media (max-width: 900px) {

    .why-grid {
        grid-template-columns: 1fr;
    }
}


/* Ajuste para celular */

@media (max-width: 600px) {

    .why-card {
        flex-direction: column;
    }
}

/* ==================================================
   11. MARCAS ATENDIDAS
================================================== */

.brands {
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #111111,
            #0c0c0c
        );
}


/* Faixa com as marcas */

.brands-track {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}


/* Marca individual */

.brands-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;

    max-width: 900px;
    margin: 0 auto;
}

.brand-item {
    min-height: 125px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(255, 255, 255, 0.025);

    color: #8f8f8f;

    border:
        1px solid rgba(255, 255, 255, 0.06);

    border-radius: 16px;

    font-size: 22px;
    font-weight: 700;

    transition:
        color 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.brand-item img {
    max-width: 130px;
    max-height: 70px;

    object-fit: contain;

    filter: brightness(0) invert(1);
    opacity: 0.82;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.brand-item:hover img {
    opacity: 1;
    transform: scale(1.04);
}

/* Efeito ao passar o mouse */

.brand-item:hover {
    color: #ffffff;

    transform: translateY(-4px);

    border-color:
        rgba(22, 143, 255, 0.40);

    box-shadow:
        0 0 24px rgba(22, 143, 255, 0.12);
}


/* Tablet */

@media (max-width: 900px) {

    .brands-track {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* Celular */

@media (max-width: 600px) {

    .brands-track {
        grid-template-columns: 1fr;
    }
}
/* ==================================================
   12. SEÇÃO DE CONTATO
================================================== */

#contato {
    text-align: center;
}


/* ==================================================
   13. RODAPÉ
================================================== */

footer {
    padding: 25px;

    background: #000000;

    border-top:
        1px solid #007bff;

    text-align: center;
}

footer p + p {
    margin-top: 8px;
}

footer a,
footer a:visited {
    color: #9fd3ff;
    text-decoration: none;
}

footer a:hover {
    color: #c8e7ff;
    text-decoration: underline;
}

.legal-content h2 {
    margin: 18px 0 8px;
    font-size: 24px;
}

.legal-content p {
    margin-bottom: 14px;
}


/* ==================================================
   14. RESPONSIVIDADE PARA TABLET
================================================== */

@media (max-width: 1000px) {

    .cards,
    .why-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .storefront-featured {
        grid-template-columns: 1fr;
    }

    .storefront-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .case-customizer {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 900px) {

    .header-content {
        height: auto;
        min-height: 90px;

        padding-top: 10px;
        padding-bottom: 10px;
    }

    .logo img {
        height: 75px;
    }

    .hero {
        min-height: auto;

        padding: 60px 6%;

        flex-direction: column;
        justify-content: center;

        text-align: center;
    }

    .hero-text,
    .hero-video {
        width: 100%;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-video video {
        max-width: 500px;

        margin-top: 30px;
    }
}


/* ==================================================
   15. RESPONSIVIDADE PARA CELULARES
================================================== */

@media (max-width: 650px) {

    nav {
        display: none;
    }

    .whatsapp-header {
        margin-left: auto;

        padding: 10px 16px;

        font-size: 14px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .button {
        padding: 16px 30px;
    }

    .hero-video video {
        max-width: 420px;
    }

    section:not(.hero) {
        padding: 55px 6%;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .cards,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .storefront-grid {
        grid-template-columns: 1fr;
    }

    .storefront-featured .product-card-content,
    .product-card-content {
        padding: 24px;
    }

    .case-customizer-controls,
    .case-customizer-preview-wrap {
        padding: 24px;
    }

    .case-preview {
        min-height: 460px;
    }

    .case-preview-frame {
        width: 210px;
        height: 420px;
    }

    .case-model-group-items {
        display: grid;
        grid-template-columns: 1fr;
    }

    .storefront-subheader h3 {
        font-size: 26px;
    }

    .storefront-featured .product-card-content h3 {
        font-size: 30px;
    }

    .card {
        min-height: auto;
    }

    .product-actions .button,
    .product-ghost-button {
        width: 100%;
    }
}


/* ==================================================
   16. ACESSIBILIDADE
   Para pessoas que desativam animações no aparelho
================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .hero-video video {
        animation: none;
    }

    .button,
    .card,
    .why-card,
    .whatsapp-header {
        transition: none;
    }
}

.brand-item .logo-apple {
    max-width: 90px;
}

.brand-item .logo-samsung {
    width: 240px;
    max-width: none;
    transform: scale(1.35);
}
.brand-item .logo-infinix {
    max-width: 160px;
}

.logo-motorola {
    transform: scale(0.90);
}
@media (max-width: 800px) {

    .card-featured {
        grid-template-columns: 1fr;
    }

    .card-featured-image img {
        height: auto;
    }

}

/* ==================================================
   17. MULTIPAGE STRUCTURE
   Shared navigation and page-level sections
================================================== */

.site-header-shell {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(12px);
}

.header-content {
    gap: 18px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
}

.main-nav {
    margin-left: auto;
}

.main-nav-list {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
}

.main-nav-item {
    position: relative;
}

.main-nav-link,
.main-nav-link:visited,
.main-nav-trigger {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 8px;
    color: #d2d2d2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: color 0.25s ease;
}

.main-nav-trigger::after {
    content: '▾';
    margin-left: 6px;
    font-size: 12px;
    opacity: 0.85;
}

.main-nav-item.is-active > .main-nav-link,
.main-nav-item.is-active > .main-nav-trigger,
.main-nav-link:hover,
.main-nav-trigger:hover {
    color: #ffffff;
}

.main-nav-item.is-active > .main-nav-link,
.main-nav-item.is-active > .main-nav-trigger {
    text-shadow: 0 0 12px rgba(22, 143, 255, 0.35);
}

.main-submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, #171717, #101010);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (min-width: 901px) {
    .main-submenu::before {
        content: '';
        position: absolute;
        right: 0;
        bottom: 100%;
        left: 0;
        height: 18px;
    }
}

.has-dropdown:hover > .main-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-submenu-link,
.main-submenu-link:visited {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
}

.main-submenu-link:hover {
    background: rgba(22, 143, 255, 0.14);
    color: #ffffff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-icon-link,
.header-icon-link:visited {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    text-decoration: none;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.header-icon-link:hover {
    border-color: rgba(22, 143, 255, 0.55);
    transform: translateY(-1px);
}

.header-icon-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.header-cart-link {
    position: relative;
}

.cart-count-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: #168fff;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-count-badge.is-empty {
    background: #3a3a3a;
}

.page-hero {
    padding-top: 56px;
    padding-bottom: 26px;
    background:
        radial-gradient(
            circle at top,
            rgba(22, 143, 255, 0.10),
            transparent 38%
        ),
        #0b0b0b;
}

.page-hero .section-heading {
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: 48px;
    line-height: 1.1;
    text-align: center;
}

.page-section-tight {
    padding-top: 30px !important;
}

.home-highlights .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-curated-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-cta-row {
    max-width: 1180px;
    margin: 24px auto 0;
    justify-content: center;
}

.page-card-section {
    background: #0f0f0f;
}

.page-info-card {
    max-width: 820px;
    margin: 0 auto;
    padding: 36px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(145deg, #181818, #101010);
    box-shadow: 0 0 18px rgba(22, 143, 255, 0.10);
}

.page-info-card-center {
    text-align: center;
}

.page-info-card h2 {
    margin-bottom: 12px;
    font-size: 34px;
}

.page-info-card p {
    margin-bottom: 24px;
    color: #bcbcbc;
    line-height: 1.7;
}

.account-auth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.account-form {
    padding: 22px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.account-form h3 {
    margin-bottom: 14px;
}

.account-label {
    display: block;
    margin: 12px 0 6px;
    font-size: 14px;
    color: #d8d8d8;
}

.account-input {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #0f0f0f;
    color: #ffffff;
}

.account-input:focus {
    outline: none;
    border-color: rgba(22, 143, 255, 0.65);
    box-shadow: 0 0 0 3px rgba(22, 143, 255, 0.18);
}

.account-message {
    margin-top: 12px;
    color: #b7d7ff;
    font-size: 14px;
}

.account-link-button {
    margin-top: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #8fc7ff;
    text-align: left;
    font-size: 13px;
    cursor: pointer;
}

.account-link-button:hover {
    color: #bde0ff;
    text-decoration: underline;
}

.account-recovery {
    margin-top: 16px;
}

.account-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.account-summary {
    margin-top: 20px;
    padding: 22px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.account-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    margin-bottom: 14px;
}

.account-history-wrap {
    margin-top: 20px;
}

.account-history-wrap h3 {
    margin-bottom: 10px;
}

.account-history-wrap .button {
    margin-bottom: 12px;
}

.account-empty {
    color: #a7a7a7;
}

.purchase-card {
    margin-bottom: 12px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.purchase-card-head,
.purchase-card-total,
.purchase-item-line {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 8px;
    align-items: center;
}

.purchase-card-head,
.purchase-card-total {
    grid-template-columns: 1fr auto;
}

.purchase-item-list {
    list-style: none;
    margin: 10px 0;
    padding: 0;
}

.purchase-item-line {
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.purchase-payment {
    margin: 10px 0;
    color: #cfcfcf;
    font-size: 14px;
}

.cart-list {
    margin-top: 14px;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 2fr auto auto auto auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.cart-item-card h3 {
    margin-bottom: 4px;
    font-size: 18px;
}

.cart-item-card p {
    margin: 0;
    font-size: 14px;
}

.cart-qty-label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
}

.cart-qty-label input {
    width: 74px;
    min-height: 38px;
    padding: 6px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #0f0f0f;
    color: #ffffff;
}

.cart-price {
    min-width: 100px;
    text-align: right;
}

.cart-remove {
    min-height: 38px;
    padding: 6px 10px;
    font-size: 13px;
}

.cart-summary {
    margin: 14px 0;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.cart-summary p {
    margin: 4px 0;
}

.shipping-box {
    margin: 14px 0;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.shipping-box h3 {
    margin-bottom: 8px;
}

.shipping-box p {
    margin-bottom: 12px;
}

.delivery-method-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.delivery-method-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
}

.delivery-method-card:has(input:checked) {
    border-color: rgba(22, 143, 255, 0.7);
    background: rgba(22, 143, 255, 0.1);
}

.delivery-method-card span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.delivery-method-card small {
    color: #aaa;
}

.store-pickup-card {
    padding: 16px;
    border: 1px solid rgba(22, 143, 255, 0.35);
    border-radius: 12px;
    background: rgba(22, 143, 255, 0.06);
}

.store-pickup-card address {
    margin: 8px 0 14px;
    color: #d0d0d0;
    font-style: normal;
    line-height: 1.6;
}

.store-pickup-card p {
    margin: 12px 0 0;
}

.shipping-form-row {
    display: flex;
    align-items: end;
    gap: 10px;
    flex-wrap: wrap;
}

.shipping-form-row input {
    width: 140px;
    min-height: 38px;
    padding: 6px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #0f0f0f;
    color: #ffffff;
}

.shipping-address {
    color: #d0d0d0;
}

.shipping-options {
    display: grid;
    gap: 8px;
    margin-bottom: 8px;
}

.shipping-option-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.shipping-option-card span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.shipping-option-card small {
    color: #b7b7b7;
}

.product-detail-section {
    min-height: 70vh;
    padding: 48px 24px 72px;
    background: #0f0f0f;
}

.product-breadcrumb,
.product-detail-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    color: #999;
    font-size: 14px;
}

.product-breadcrumb a {
    color: #a9d2ff;
    text-decoration: none;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 44px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: linear-gradient(145deg, #181818, #101010);
    box-shadow: 0 0 22px rgba(22, 143, 255, 0.1);
}

.product-detail-gallery {
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: radial-gradient(circle, rgba(22, 143, 255, 0.14), #0d0d0d 72%);
}

.product-detail-gallery img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
}

.product-detail-image-placeholder {
    color: #aaa;
    font-size: 18px;
}

.product-detail-info {
    align-self: center;
}

.product-detail-category {
    margin: 0 0 8px;
    color: #67b7ff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-detail-info h1 {
    margin-bottom: 14px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.05;
}

.product-detail-description {
    margin-bottom: 20px;
    color: #bdbdbd;
    line-height: 1.7;
}

.product-detail-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 14px;
}

.product-detail-price del {
    color: #858585;
}

.product-detail-price strong {
    color: #fff;
    font-size: 36px;
}

.product-detail-price span {
    color: #9bcfff;
}

.product-detail-availability {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.product-detail-availability.is-available {
    color: #72e39d;
    background: rgba(64, 194, 113, 0.12);
}

.product-detail-availability.is-unavailable {
    color: #ffbf6b;
    background: rgba(255, 174, 64, 0.12);
}

.product-detail-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 20px;
}

.product-detail-facts div {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.product-detail-facts dt {
    color: #888;
    font-size: 12px;
}

.product-detail-facts dd {
    margin: 3px 0 0;
    color: #eee;
}

.product-detail-specs {
    margin-bottom: 22px;
}

.product-detail-specs h2 {
    margin-bottom: 8px;
    font-size: 20px;
}

.product-detail-specs ul {
    padding-left: 20px;
    color: #c6c6c6;
    line-height: 1.7;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-detail-empty,
.product-detail-loading {
    padding: 56px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: #151515;
    text-align: center;
}

.product-detail-empty p {
    margin: 12px 0 20px;
    color: #aaa;
}

@media (max-width: 800px) {
    .product-detail-section {
        padding: 32px 16px 56px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 18px;
    }

    .product-detail-gallery,
    .product-detail-gallery img {
        min-height: 320px;
    }

    .product-detail-facts {
        grid-template-columns: 1fr;
    }

    .product-detail-actions .button {
        width: 100%;
    }
}

.payment-box {
    margin: 14px 0;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.payment-box h3 {
    margin-bottom: 8px;
}

.payment-box > p {
    margin-bottom: 12px;
}

.payment-provider-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(22, 143, 255, 0.5);
    background: rgba(22, 143, 255, 0.08);
}

.payment-provider-card span {
    color: #c5c5c5;
    font-size: 14px;
}

.payment-methods{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin:16px 0}.payment-method-card{display:flex;align-items:center;gap:12px;padding:16px;border:1px solid rgba(255,255,255,.14);border-radius:14px;background:rgba(255,255,255,.035);cursor:pointer}.payment-method-card:has(input:checked){border-color:#168cff;box-shadow:0 0 0 2px rgba(22,140,255,.16)}.payment-method-card span{display:grid;gap:3px}.payment-method-card small{color:#aeb8c5}.payment-fields{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:18px 0}.payment-fields label,.pix-payment-panel label{display:grid;gap:7px;font-weight:700}.pix-payment-panel{margin-top:18px;padding:20px;text-align:center;border:1px solid rgba(22,140,255,.35);border-radius:16px;background:rgba(5,16,29,.8)}.pix-payment-panel img{display:block;width:min(260px,100%);aspect-ratio:1;object-fit:contain;margin:14px auto;background:#fff;padding:10px;border-radius:12px}.pix-payment-panel textarea{width:100%;box-sizing:border-box;resize:none;padding:12px;border:1px solid rgba(255,255,255,.15);border-radius:10px;background:#080d14;color:#fff}.pix-payment-panel p{color:#65c3ff;font-weight:800}@media(max-width:620px){.payment-methods,.payment-fields{grid-template-columns:1fr}}

.payment-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.payment-option-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
}

.payment-option-card:has(input:checked) {
    border-color: rgba(22, 143, 255, 0.75);
    background: rgba(22, 143, 255, 0.1);
}

.payment-option-card span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-option-card small {
    color: #b7b7b7;
}

.payment-installments {
    display: block;
    max-width: 260px;
    margin-top: 14px;
    color: #d8d8d8;
    font-size: 14px;
}

.payment-installments select {
    margin-top: 6px;
}

.is-hidden {
    display: none !important;
}

@media (max-width: 900px) {

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .account-auth-grid {
        grid-template-columns: 1fr;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .account-summary-grid {
        grid-template-columns: 1fr;
    }

    .cart-item-card {
        grid-template-columns: 1fr;
    }

    .shipping-option-card {
        grid-template-columns: auto 1fr;
    }

    .delivery-method-options {
        grid-template-columns: 1fr;
    }

    .cart-price {
        text-align: left;
    }

    .main-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 86px;
        margin-left: 0;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 14px;
        background: #111111;
        box-shadow: 0 24px 40px rgba(0, 0, 0, 0.35);
        padding: 10px;
        display: none;
    }

    .site-header-shell.is-open .main-nav {
        display: block;
    }

    .main-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .main-nav-link,
    .main-nav-link:visited,
    .main-nav-trigger {
        width: 100%;
        justify-content: space-between;
        min-height: 44px;
        padding: 0 10px;
    }

    .main-submenu {
        position: static;
        min-width: auto;
        margin: 0 0 4px;
        border-radius: 10px;
        border-color: rgba(255, 255, 255, 0.08);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
    }

    .has-dropdown:hover > .main-submenu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .main-nav-item.is-open > .main-submenu {
        display: block;
    }

    .header-actions {
        margin-left: 0;
        gap: 8px;
    }

    .whatsapp-header,
    .whatsapp-header:visited {
        margin-left: 0;
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 650px) {

    .header-content {
        min-height: 84px;
        padding: 0 14px;
        gap: 8px;
    }

    .logo img {
        height: 66px;
    }

    .whatsapp-header,
    .whatsapp-header:visited {
        display: none;
    }

    .header-icon-link,
    .header-icon-link:visited {
        width: 40px;
        height: 40px;
    }

    .home-curated-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 38px;
    }
}
