/* ===========================
   VARIÁVEIS GLOBAIS
=========================== */

:root {
  --white: #fff;
  --dark-blue: #000129;
  --text: #111;
  --muted: #6f6f7a;
  --line: #e9e9ee;
  --soft: #f6f6f8;

  --container: 1240px;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 72px;
  --space-7: 96px;

  --radius: 18px;

  --kicker-size: 0.82rem;
  --body-size: 1.08rem;
  --body-large: 1.18rem;
  --title-xl: clamp(3rem, 7vw, 6rem);
  --title-lg: clamp(2.6rem, 6vw, 5rem);
}

/* ===========================
   RESET
=========================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===========================
   LAYOUT
=========================== */

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

/* ===========================
   HEADER
=========================== */

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  justify-self: start;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

/* SEARCH */

.header-search {
  width: min(200%, 940px);
  justify-self: center;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
}

.header-search input {
  width: 100%;
  height: 52px;
  border: none;
  outline: none;
  padding: 0 22px;
  font-size: 0.96rem;
  background: transparent;
  color: var(--dark-blue);
}

.header-search input::placeholder {
  color: var(--muted);
}

.header-search button {
  width: 58px;
  height: 52px;
  border: none;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s ease;
}

.header-search button:hover {
  background: #f7f7fa;
}

.header-search button svg {
  width: 18px;
  height: 18px;
}

/* NAV */

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: 0.25s ease;
}

.main-nav a:hover {
  color: var(--dark-blue);
}

/* ===========================
   HERO
=========================== */

.hero {
  position: relative;
  padding: var(--space-7) 0;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 1, 41, 0.68) 0%,
      rgba(0, 1, 41, 0.52) 38%,
      rgba(0, 1, 41, 0.22) 65%,
      rgba(0, 1, 41, 0.08) 100%
    ),
    url("assets/hero/hero-cyphus.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-kicker {
  font-size: var(--kicker-size);
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: var(--title-xl);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 22px;
  font-weight: 700;
}

.hero-text {
  font-size: var(--body-large);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
  max-width: 520px;
  margin-bottom: 30px;
}

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

/* ===========================
   BOTÕES
=========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-dark {
  background: #fff;
  color: var(--dark-blue);
}

.btn-light {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
}

.btn-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ===========================
   SEÇÕES GENÉRICAS
=========================== */

.styles-section,
.featured-section,
.about-section {
  padding: var(--space-7) 0;
}

.section-heading {
  margin-bottom: var(--space-5);
}

.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 12px;
}

.section-heading h2,
.about-inner h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--dark-blue);
  max-width: 700px;
}

/* ===========================
   CARDS DE ESTILO
=========================== */

.styles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.style-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.style-media {
  height: 420px;
}

.placeholder-box {
  background: linear-gradient(135deg, #f7f7fa 0%, #efeff4 100%);
}

.style-content {
  padding: 24px;
}

.style-content h3 {
  font-size: 1.6rem;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.style-content p {
  color: var(--muted);
}

/* ===========================
   CAMPANHAS
=========================== */

.campaign-banner {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(0, 1, 41, 0.72) 0%,
      rgba(0, 1, 41, 0.48) 38%,
      rgba(0, 1, 41, 0.18) 68%,
      rgba(0, 1, 41, 0.04) 100%
    ),
    url("assets/banners/animal-souls.jpg") center/cover no-repeat;
}

.campaign-banner.world-expo {
  background:
    linear-gradient(
      90deg,
      rgba(0, 1, 41, 0.72) 0%,
      rgba(0, 1, 41, 0.48) 38%,
      rgba(0, 1, 41, 0.18) 68%,
      rgba(0, 1, 41, 0.04) 100%
    ),
    url("assets/banners/world-expo.jpg") center/cover no-repeat;
}

.campaign-inner {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.campaign-content {
  max-width: 620px;
  padding: 96px 0;
}

.campaign-kicker {
  font-size: var(--kicker-size);
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}

.campaign-content h2 {
  font-size: var(--title-lg);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 22px;
  font-weight: 700;
}

.campaign-content p {
  font-size: var(--body-large);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
  max-width: 520px;
  margin-bottom: 30px;
}

.campaign-banner .btn-dark {
  background: #fff;
  color: var(--dark-blue);
}

/* ===========================
   NEWSLETTER
=========================== */

.newsletter-section {
  padding: 120px 0 110px;
  background: #f5f5f3;
  border-top: 1px solid var(--line);
}

.newsletter-inner {
  max-width: 960px;
  text-align: center;
  margin: 0 auto;
}

.newsletter-section h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--dark-blue);
  margin: 14px 0 16px;
}

.newsletter-subtext {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 42px;
}

.newsletter-form {
  text-align: center;
}

.newsletter-row {
  display: flex;
  max-width: 580px;
  margin: 0 auto;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--dark-blue);
  gap: 18px;
}

.newsletter-row input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.05rem;
  color: var(--dark-blue);
  padding: 12px 0;
  text-align: center;
}

.newsletter-row input::placeholder {
  color: #8a8a90;
}

.newsletter-row button {
  border: 1px solid var(--dark-blue);
  background: transparent;
  color: var(--dark-blue);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.25s ease;
}

.newsletter-row button:hover {
  background: var(--dark-blue);
  color: #fff;
}

.newsletter-options {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 28px 0 18px;
}

.newsletter-options label,
.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--dark-blue);
  font-size: 0.96rem;
}

.newsletter-options input,
.newsletter-consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--dark-blue);
}

.newsletter-consent {
  max-width: 720px;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
}

.newsletter-consent span {
  line-height: 1.55;
  color: var(--muted);
  max-width: 620px;
}

/* ===========================
   LISTA DE PRODUTOS
=========================== */

.products-section {
  padding: 120px 0;
  background: #fff;
}

.section-header {
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

.header-with-close {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}

.close-products-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--dark-blue);
  background: transparent;
  border-radius: 8px;
  color: var(--dark-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  font-size: 1.2rem;
}

.close-products-btn:hover {
  background: var(--dark-blue);
  color: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Imagem da página de produto */
.product-detail img {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
  padding: 32px 28px 28px;
}

.product-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.95;
}

/* TAG DE COLEÇÃO */

.collection-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-blue);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ===========================
   VARIÁVEIS GLOBAIS
=========================== */

:root {
  --white: #fff;
  --dark-blue: #000129;
  --text: #111;
  --muted: #6f6f7a;
  --line: #e9e9ee;
  --soft: #f6f6f8;

  --container: 1240px;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 72px;
  --space-7: 96px;

  --radius: 18px;

  --kicker-size: 0.82rem;
  --body-size: 1.08rem;
  --body-large: 1.18rem;
  --title-xl: clamp(3rem, 7vw, 6rem);
  --title-lg: clamp(2.6rem, 6vw, 5rem);
}

/* ===========================
   RESET
=========================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===========================
   LAYOUT
=========================== */

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

/* ===========================
   HEADER
=========================== */

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  justify-self: start;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

/* SEARCH */

.header-search {
  width: min(200%, 940px);
  justify-self: center;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
}

.header-search input {
  width: 100%;
  height: 52px;
  border: none;
  outline: none;
  padding: 0 22px;
  font-size: 0.96rem;
  background: transparent;
  color: var(--dark-blue);
}

.header-search input::placeholder {
  color: var(--muted);
}

.header-search button {
  width: 58px;
  height: 52px;
  border: none;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s ease;
}

.header-search button:hover {
  background: #f7f7fa;
}

.header-search button svg {
  width: 18px;
  height: 18px;
}

/* NAV */

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: 0.25s ease;
}

.main-nav a:hover {
  color: var(--dark-blue);
}

/* ===========================
   HERO
=========================== */

.hero {
  position: relative;
  padding: var(--space-7) 0;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 1, 41, 0.68) 0%,
      rgba(0, 1, 41, 0.52) 38%,
      rgba(0, 1, 41, 0.22) 65%,
      rgba(0, 1, 41, 0.08) 100%
    ),
    url("assets/hero/hero-cyphus.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-kicker {
  font-size: var(--kicker-size);
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: var(--title-xl);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 22px;
  font-weight: 700;
}

.hero-text {
  font-size: var(--body-large);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
  max-width: 520px;
  margin-bottom: 30px;
}

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

/* ===========================
   BOTÕES
=========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-dark {
  background: #fff;
  color: var(--dark-blue);
}

.btn-light {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
}

.btn-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ===========================
   SEÇÕES GENÉRICAS
=========================== */

.styles-section,
.featured-section,
.about-section {
  padding: var(--space-7) 0;
}

.section-heading {
  margin-bottom: var(--space-5);
}

.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 12px;
}

.section-heading h2,
.about-inner h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--dark-blue);
  max-width: 700px;
}

/* ===========================
   CARDS DE ESTILO
=========================== */

.styles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.style-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.style-media {
  height: 420px;
}

.placeholder-box {
  background: linear-gradient(135deg, #f7f7fa 0%, #efeff4 100%);
}

.style-content {
  padding: 24px;
}

.style-content h3 {
  font-size: 1.6rem;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.style-content p {
  color: var(--muted);
}

/* ===========================
   PÁGINA DE PRODUTO — REFINADA
=========================== */

.product-detail {
  padding: 4rem 0;
}

.product-detail-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-detail img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.product-detail-name {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
  color: var(--dark-blue);
}

.product-detail-price {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  color: var(--dark-blue);
}

.product-detail-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 480px;
}

.product-detail-sizes {
  margin-bottom: 2rem;
}

.size-options {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.size-option {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.25s ease;
}

.size-option:hover {
  border-color: var(--dark-blue);
}

.size-option.is-active {
  background: var(--dark-blue);
  color: #fff;
  border-color: var(--dark-blue);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-detail-add {
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  background: var(--dark-blue);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
  margin-bottom: 1.4rem;
}

.product-detail-add:hover {
  background: #000114;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-detail-meta {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .product-detail-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-detail img {
    max-width: 100%;
  }

  .product-detail-name {
    font-size: 2rem;
  }
}

/* ===========================
   CARRINHO — REFINADO
=========================== */

.cart-section {
  padding: 4rem 0;
}

.cart-title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--dark-blue);
  margin-bottom: 2rem;
}

.cart-page {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 3rem;
  align-items: start;
}

.cart-list {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.cart-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.cart-item-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark-blue);
}

.cart-item-info p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.cart-item-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.cart-remove {
  background: transparent;
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.25s ease;
}

.cart-remove:hover {
  background: var(--dark-blue);
  color: #fff;
}

/* RESUMO */

.cart-summary {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  position: sticky;
  top: 120px;
}

.cart-summary h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  color: var(--dark-blue);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--dark-blue);
}

.cart-summary-row.total {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-weight: 700;
  font-size: 1.15rem;
}

.btn-finalizar {
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: var(--dark-blue);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-finalizar:hover {
  background: #000114;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* MOBILE */

@media (max-width: 768px) {
  .cart-page {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cart-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cart-item img {
    width: 160px;
    height: 160px;
  }
}
/* botao do mais e menos */

.cart-qty-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.qty-btn:hover {
  background: var(--dark-blue);
  color: #fff;
  border-color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.cart-qty {
  min-width: 24px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-blue);
}

/* ===========================
   CHECKOUT — CYPLUS PREMIUM V2
=========================== */

/* ===========================
   CHECKOUT — CYPLUS EXCLUSIVO
=========================== */

:root {
  --primary: #000129;
  --text: #000129;
  --muted: #6c6c7a;
  --line: #e5e7eb;
  --radius: 14px;
  --font: "Inter", sans-serif;
}

/* GLOBAL */
body {
  font-family: var(--font);
  background: #fff;
  color: var(--text);
}

/* HEADER */
.header {
  padding: 2rem 0;
  text-align: center;
}

.logo {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--primary);
}

/* LAYOUT */
.checkout-section {
  padding: 3rem 0 6rem;
}

.checkout-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
}

/* BLOCO */
.checkout-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.block-title {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
  color: var(--primary);
}

/* FORM */
.form-group {
  margin-bottom: 1.6rem;
}

label {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

input {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1rem;
  transition: 0.25s ease;
}

input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 1, 41, 0.12);
  outline: none;
}

.form-row {
  display: flex;
  gap: 1rem;
}

/* BOTÕES */
.btn-next,
.btn-finalizar-pedido {
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
  margin-top: 1rem;
}

.btn-next:hover,
.btn-finalizar-pedido:hover {
  background: #000114;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* RESUMO */
.checkout-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  position: sticky;
  top: 120px;
}

.checkout-summary h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.6rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.summary-row.total {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 800;
  font-size: 1.3rem;
}

.back-cart {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .checkout-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .checkout-summary {
    position: static;
  }
}

/* BLOCO DE SEÇÃO */
.checkout-block {.checkout-block {
    text-align: center;
}
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

/* TÍTULO DA SEÇÃO */
.block-title {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
  color: var(--primary);
}

/* BOTÕES ENTRE AS SEÇÕES */
.btn-next {
  width: 50%;
  padding: 15px;
  border-radius: 50px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s ease;
  margin-top: 1rem;
  margin: 1rem auto 0; /* ← AQUI */
    display: block;      /* ← IMPORTANTE */

}

.btn-next:hover {
  background: #000114;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

#step-entrega,
#step-pagamento {
  display: none;
}

/* TOAST BONITO E VISÍVEL */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111;
  color: #fff;
  padding: 16px 22px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  z-index: 9999;
}

/* QUANDO APARECE */
.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.payment-methods {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.payment-option {
  padding: 10px 18px;
  border: 1px solid #ccc;
  background: #f7f7f7;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.2s;
}

.payment-option:hover {
  background: #eee;
}

.payment-option.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.payment-form {
  margin-top: 15px;
}

.hidden {
  display: none;
}

.checkout-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Coluna esquerda */
.checkout-left {
  flex: 2;
}

/* Coluna direita (resumo) */
.checkout-summary {
  flex: 1;
  background: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 16px;
}

.summary-row.total {
  font-weight: bold;
  font-size: 18px;
  margin-top: 10px;
}

.back-cart {
  display: block;
  margin-top: 20px;
  text-align: center;
  padding: 10px;
  background: #111;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.2s;
}

.back-cart:hover {
  background: #333;
}

.checkout-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-top: 30px;
}

/* Coluna esquerda */
.checkout-left {
  flex: 2;
}

/* Coluna direita */
.checkout-summary {
  flex: 1;
  background: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
}
