/* =========================================================
   BunnyShop Oficial - style.css completo e corrigido
   ========================================================= */

:root {
  --black: #050505;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --white: #ffffff;
  --gray: #f5f5f5;
  --gray-2: #eeeeee;
  --gray-3: #dddddd;
  --muted: #777777;
  --text: #101010;
  --red: #ff1744;
  --red-dark: #c9002b;
  --green: #0c7a36;
  --green-bg: #e9fff1;
  --danger: #c62828;
  --danger-bg: #ffe8ed;
  --warning: #ff9800;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
  --shadow-dark: 0 18px 45px rgba(0, 0, 0, 0.28);
  --container: 1180px;
  --transition: 0.25s ease;
}

/* =========================
   Reset / Base
   ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.4;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

input,
select,
textarea {
  font-size: 15px;
}

main {
  min-height: 60vh;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

.section {
  padding: 72px 0;
}

.section-header {
  width: min(780px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-header span {
  color: var(--red);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 58px);
  text-transform: uppercase;
  line-height: 0.95;
  margin: 10px 0;
}

.section-header p {
  color: var(--muted);
  line-height: 1.7;
}

/* =========================
   Buttons
   ========================= */

.primary-button,
.secondary-button,
.dark-button,
.light-button,
.outline-button,
.checkout-button,
.auth-submit-button,
.account-save-button,
.cart-checkout-button,
.product-buy-button,
.product-whatsapp-button {
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 1000;
  text-transform: uppercase;
  font-size: 13px;
  transition: var(--transition);
}

.primary-button,
.checkout-button,
.auth-submit-button,
.account-save-button,
.cart-checkout-button,
.product-buy-button {
  background: var(--red);
  color: var(--white);
}

.primary-button:hover,
.checkout-button:hover,
.auth-submit-button:hover,
.account-save-button:hover,
.cart-checkout-button:hover,
.product-buy-button:hover {
  background: var(--black);
}

.secondary-button,
.light-button {
  background: var(--gray-2);
  color: var(--black);
}

.secondary-button:hover,
.light-button:hover {
  background: var(--black);
  color: var(--white);
}

.dark-button {
  background: var(--black);
  color: var(--white);
}

.dark-button:hover {
  background: var(--red);
}

.outline-button {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.outline-button:hover {
  background: var(--black);
  color: var(--white);
}

.product-whatsapp-button {
  background: var(--green);
  color: var(--white);
}

.product-whatsapp-button:hover {
  background: var(--black);
}

button:disabled,
.disabled,
.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* =========================
   Top Bar / Header Corrigido
   ========================= */

.top-bar {
  min-height: 46px;
  background: #ffffff;
  color: #000000;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 8px 16px;
  font-size: 14px;
  border-bottom: 1px solid #eeeeee;
}

.top-bar strong {
  color: #000000;
  font-weight: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #111111;
  color: #ffffff;
  min-height: 78px;
  padding: 0 44px;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.20);
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  font-weight: 1000;
}

.logo-icon {
  display: none !important;
}

.logo-text {
  color: #ffffff;
  font-size: 24px;
  font-weight: 1000;
  letter-spacing: -0.7px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.main-nav a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 1000;
  text-transform: none;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active-link {
  color: var(--red);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active-link::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* Barra de pesquisa corrigida */

.header-search {
  width: 270px;
  height: 38px;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.header-search input {
  flex: 1;
  height: 100%;
  border: 0;
  outline: none;
  padding: 0 12px;
  font-size: 14px;
  color: #111111;
  background: #ffffff;
}

.header-search input::placeholder {
  color: #777777;
}

.header-search button {
  width: 42px;
  height: 100%;
  border: 0;
  border-left: 1px solid #dddddd;
  background: #f7f7f7;
  color: #111111;
  display: grid;
  place-items: center;
  font-size: 15px;
  cursor: pointer;
}

.header-search button:hover {
  background: var(--red);
  color: #ffffff;
}

/* Conta e carrinho corrigidos */

.icon-link {
  min-width: auto;
  height: 38px;
  padding: 0 8px;
  border-radius: 6px;
  background: transparent;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.icon-link:hover,
.icon-link.active-link {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.account-icon,
.cart-icon {
  font-size: 16px;
  line-height: 1;
}

.cart-page-link {
  width: 42px;
  padding: 0;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  font-size: 11px;
  font-weight: 1000;
  display: grid;
  place-items: center;
  line-height: 1;
  border: 2px solid #111111;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border-radius: 6px;
  background: var(--red);
  color: #ffffff;
  font-size: 22px;
}

/* =========================
   Hero / Home
   ========================= */

.hero-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 23, 68, 0.20), transparent 32%),
    linear-gradient(135deg, #050505, #151515);
  color: var(--white);
  padding: 84px 0;
  overflow: hidden;
}

.hero-grid {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.hero-content span {
  color: var(--red);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 14px 0 18px;
}

.hero-content p {
  width: min(600px, 100%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-card {
  min-height: 460px;
  border-radius: 36px;
  background:
    radial-gradient(circle at center, rgba(255, 23, 68, 0.38), transparent 38%),
    linear-gradient(135deg, #222222, #050505);
  box-shadow: var(--shadow-dark);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "BUNNY";
  position: absolute;
  font-size: 110px;
  font-weight: 1000;
  color: rgba(255, 255, 255, 0.05);
  transform: rotate(-12deg);
}

.hero-card span {
  z-index: 1;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  display: grid;
  place-items: center;
  font-size: 54px;
  font-weight: 1000;
}

/* =========================
   Cards / Produtos
   ========================= */

.feature-grid,
.product-grid,
.categories-grid {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.category-card {
  background: var(--white);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.feature-card span,
.category-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.feature-card h3,
.category-card h3 {
  font-size: 24px;
  text-transform: uppercase;
  margin: 10px 0;
}

.feature-card p,
.category-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* =========================
   Catálogo / Oversized
   ========================= */

.catalog-hero,
.page-hero {
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 23, 68, 0.22), transparent 32%),
    linear-gradient(135deg, #050505, #171717);
  color: var(--white);
  padding: 58px 0;
}

.catalog-hero-content,
.page-hero-content {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.catalog-hero span,
.page-hero span {
  color: var(--red);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.catalog-hero h1,
.page-hero h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 10px 0;
}

.catalog-hero p,
.page-hero p {
  width: min(720px, 100%);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.catalog-section {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 72px;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 24px;
}

.catalog-sidebar {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 22px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.catalog-sidebar h3 {
  text-transform: uppercase;
  margin-bottom: 16px;
}

.filter-group {
  margin-bottom: 18px;
}

.filter-group label {
  display: block;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.filter-group input,
.filter-group select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--gray-3);
  border-radius: 12px;
  padding: 0 12px;
  outline: none;
}

.catalog-toolbar {
  background: var(--white);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.catalog-products,
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card-image {
  height: 310px;
  background:
    radial-gradient(circle at center, rgba(255, 23, 68, 0.20), transparent 38%),
    linear-gradient(135deg, #111111, #333333);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 1000;
  font-size: 28px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-content {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.product-category {
  color: var(--red);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 20px;
  line-height: 1.15;
  text-transform: uppercase;
}

.product-card p {
  color: var(--muted);
  line-height: 1.5;
}

.product-price {
  font-size: 24px;
  font-weight: 1000;
}

.product-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.product-card-actions a,
.product-card-actions button {
  flex: 1;
}

/* =========================
   Produto Detalhes
   ========================= */

.product-detail-section {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: flex-start;
}

.product-gallery {
  display: grid;
  gap: 16px;
}

.product-main-image {
  min-height: 560px;
  border-radius: 32px;
  background:
    radial-gradient(circle at center, rgba(255, 23, 68, 0.22), transparent 38%),
    linear-gradient(135deg, #111111, #333333);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 42px;
  font-weight: 1000;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.product-thumb {
  height: 110px;
  border-radius: 16px;
  background: var(--gray);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
}

.product-thumb.active {
  border-color: var(--red);
}

.product-info-box {
  background: var(--white);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 104px;
}

.product-info-box > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.product-info-box h1 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 10px 0;
}

.product-info-box .product-price {
  font-size: 34px;
  margin: 14px 0;
}

.product-description {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.product-option-group {
  margin: 20px 0;
}

.product-option-group label,
.product-quantity label,
.freight-box label {
  display: block;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-option,
.size-option,
.color-option {
  min-width: 52px;
  height: 42px;
  border-radius: 999px;
  background: var(--gray);
  border: 1px solid transparent;
  padding: 0 16px;
  font-weight: 900;
}

.product-option.active,
.size-option.active,
.color-option.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--red);
}

.quantity-control,
.cart-quantity {
  display: inline-flex;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--gray);
}

.quantity-control button,
.cart-quantity button {
  width: 44px;
  background: var(--black);
  color: var(--white);
  font-weight: 1000;
  font-size: 18px;
}

.quantity-control input,
.cart-quantity input {
  width: 58px;
  border: 0;
  text-align: center;
  background: var(--gray);
  outline: none;
  font-weight: 900;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}

.freight-box {
  margin-top: 22px;
  background: var(--gray);
  border-radius: 18px;
  padding: 16px;
}

.freight-form {
  display: flex;
  gap: 10px;
}

.freight-form input {
  flex: 1;
  min-height: 44px;
  border: 1px solid var(--gray-3);
  border-radius: 12px;
  padding: 0 12px;
}

.freight-form button {
  min-width: 110px;
  border-radius: 12px;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
}

.freight-result {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

/* =========================
   Carrinho / Checkout
   ========================= */

.cart-page-section,
.checkout-section,
.account-section,
.orders-section,
.order-detail-section {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.cart-page-header,
.checkout-header,
.account-header,
.orders-header,
.order-detail-header {
  margin-bottom: 26px;
}

.cart-page-header span,
.checkout-header span,
.account-header span,
.orders-header span,
.order-detail-header span {
  color: var(--red);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.cart-page-header h1,
.checkout-header h1,
.account-header h1,
.orders-header h1,
.order-detail-header h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-top: 8px;
}

.cart-page-grid,
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 22px;
  align-items: flex-start;
}

.cart-page-left,
.checkout-left {
  display: grid;
  gap: 16px;
}

.cart-item {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  grid-template-columns: 120px 1fr 170px 120px;
  gap: 16px;
  align-items: center;
}

.cart-item-image {
  height: 120px;
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(255, 23, 68, 0.20), transparent 38%),
    linear-gradient(135deg, #111111, #333333);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 1000;
}

.cart-item-info h3 {
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cart-item-info p {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.cart-item-actions {
  display: grid;
  gap: 10px;
}

.cart-remove-button {
  min-height: 38px;
  border-radius: 999px;
  background: var(--danger-bg);
  color: var(--danger);
  font-weight: 900;
}

.cart-item-total {
  font-weight: 1000;
  font-size: 18px;
  text-align: right;
}

.cart-summary,
.checkout-summary,
.order-summary-card {
  background: var(--white);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 104px;
}

.cart-summary h2,
.checkout-summary h2,
.order-summary-card h2 {
  text-transform: uppercase;
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-2);
}

.summary-row span {
  color: var(--muted);
}

.summary-row strong {
  font-weight: 1000;
}

.summary-total {
  border-bottom: 0;
  margin-top: 6px;
}

.summary-total strong {
  font-size: 24px;
}

.empty-cart,
.cart-empty,
.admin-empty {
  background: var(--white);
  border-radius: 24px;
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
}

.checkout-card,
.account-card {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.checkout-card h2,
.account-card h2 {
  text-transform: uppercase;
  margin-bottom: 18px;
}

.checkout-form,
.account-form,
.auth-form {
  display: grid;
  gap: 14px;
}

.checkout-form-grid,
.account-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-field,
.auth-field,
.account-field,
.checkout-field {
  display: grid;
  gap: 8px;
}

.form-field label,
.auth-field label,
.account-field label,
.checkout-field label {
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea,
.auth-field input,
.account-field input,
.account-field select,
.account-field textarea,
.checkout-field input,
.checkout-field select,
.checkout-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--gray-3);
  border-radius: 12px;
  padding: 0 12px;
  outline: none;
  background: var(--white);
}

.form-field textarea,
.account-field textarea,
.checkout-field textarea {
  padding: 12px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.auth-field input:focus,
.account-field input:focus,
.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
  border-color: var(--red);
}

.field-full,
.full-field {
  grid-column: 1 / -1;
}

.payment-options {
  display: grid;
  gap: 10px;
}

.payment-option {
  border: 1px solid var(--gray-3);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.payment-option input {
  accent-color: var(--red);
}

/* =========================
   Auth / Login / Cadastro
   ========================= */

.auth-page-section {
  min-height: calc(100vh - 124px);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 23, 68, 0.14), transparent 30%),
    linear-gradient(135deg, #f4f4f4, #ffffff);
  padding: 58px 0;
}

.auth-container {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.auth-brand-side {
  background:
    radial-gradient(circle at center, rgba(255, 23, 68, 0.24), transparent 38%),
    linear-gradient(135deg, #050505, #171717);
  color: var(--white);
  border-radius: 28px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-brand-side > span,
.auth-card-header span {
  color: var(--red);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.auth-brand-side h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.92;
  text-transform: uppercase;
  margin: 12px 0;
}

.auth-brand-side p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.auth-benefits {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.auth-benefits div {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 14px;
}

.auth-card {
  background: var(--white);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.auth-card-header {
  margin-bottom: 20px;
}

.auth-card-header h2 {
  font-size: 34px;
  text-transform: uppercase;
  margin: 8px 0;
}

.auth-card-header p {
  color: var(--muted);
}

.password-wrapper {
  display: flex;
  border: 1px solid var(--gray-3);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.password-wrapper input {
  border: 0;
  border-radius: 0;
}

.password-wrapper button {
  width: 90px;
  background: var(--gray);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.auth-submit-button {
  width: 100%;
  margin-top: 4px;
}

.auth-links,
.auth-support {
  margin-top: 18px;
  text-align: center;
  display: grid;
  gap: 8px;
}

.auth-links p,
.auth-support span {
  color: var(--muted);
}

.auth-links a,
.auth-support a {
  color: var(--red);
  font-weight: 1000;
}

.auth-support {
  background: var(--gray);
  border-radius: 16px;
  padding: 14px;
}

.auth-message,
.admin-alert {
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 900;
  margin-bottom: 14px;
}

.auth-error,
.admin-alert-error {
  background: var(--danger-bg);
  color: #9b0020;
  border-left: 5px solid var(--danger);
}

.auth-success,
.admin-alert-success {
  background: var(--green-bg);
  color: var(--green);
  border-left: 5px solid #2e7d32;
}

.auth-info {
  background: #eef5ff;
  color: #155a9c;
  border-left: 5px solid #1976d2;
}

/* =========================
   Minha Conta / Pedidos Cliente
   ========================= */

.account-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: flex-start;
}

.account-sidebar {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 22px;
  position: sticky;
  top: 104px;
}

.account-profile {
  text-align: center;
  border-bottom: 1px solid var(--gray-2);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.account-avatar {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 1000;
  margin: 0 auto 12px;
}

.account-nav {
  display: grid;
  gap: 8px;
}

.account-nav a {
  padding: 13px 14px;
  border-radius: 14px;
  background: var(--gray);
  font-weight: 900;
}

.account-nav a:hover,
.account-nav a.active {
  background: var(--black);
  color: var(--white);
}

.account-content {
  display: grid;
  gap: 18px;
}

.account-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.account-stat-card {
  background: var(--white);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.account-stat-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.account-stat-card strong {
  font-size: 26px;
  font-weight: 1000;
}

.orders-filter {
  background: var(--white);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.orders-filter a {
  min-height: 40px;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--gray);
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  font-size: 13px;
}

.orders-filter a.active,
.orders-filter a:hover {
  background: var(--black);
  color: var(--white);
}

.orders-list {
  display: grid;
  gap: 16px;
}

.order-card {
  background: var(--white);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.order-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.order-card-header h3 {
  font-size: 26px;
  text-transform: uppercase;
}

.order-card-header small {
  color: var(--muted);
}

.order-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.order-card-info {
  background: var(--gray);
  border-radius: 16px;
  padding: 14px;
}

.order-card-info span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.order-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.order-card-actions a,
.order-card-actions button {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 16px;
  font-weight: 1000;
  text-transform: uppercase;
  font-size: 12px;
}

.order-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 22px;
  align-items: flex-start;
}

.order-detail-main {
  display: grid;
  gap: 18px;
}

.order-detail-card,
.order-items-card,
.order-history-card,
.order-address-card {
  background: var(--white);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.order-detail-card h2,
.order-items-card h2,
.order-history-card h2,
.order-address-card h2 {
  text-transform: uppercase;
  margin-bottom: 16px;
}

.order-item-row {
  display: grid;
  grid-template-columns: 1fr 90px 110px 110px;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-2);
}

.order-item-row:last-child {
  border-bottom: 0;
}

.history-timeline {
  display: grid;
  gap: 12px;
}

.history-item {
  border-left: 4px solid var(--red);
  background: var(--gray);
  border-radius: 14px;
  padding: 14px;
}

/* =========================
   Status Pills
   ========================= */

.order-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-aguardando_pagamento {
  background: #fff6db;
  color: #9a6800;
}

.status-pedido_recebido {
  background: #eef5ff;
  color: #155a9c;
}

.status-em_producao {
  background: #fff0e0;
  color: #b85d00;
}

.status-separado {
  background: #f1e9ff;
  color: #673ab7;
}

.status-enviado {
  background: #e8f5ff;
  color: #0277bd;
}

.status-entregue {
  background: var(--green-bg);
  color: var(--green);
}

.status-cancelado {
  background: var(--danger-bg);
  color: #9b0020;
}

/* =========================
   Footer
   ========================= */

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 54px 28px 24px;
}

.footer-newsletter {
  width: min(var(--container), 100%);
  margin: 0 auto 38px;
  border-radius: 28px;
  background:
    radial-gradient(circle at right, rgba(255, 23, 68, 0.26), transparent 34%),
    #151515;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 18px;
  align-items: center;
}

.footer-newsletter span {
  color: var(--red);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer-newsletter h2 {
  font-size: clamp(26px, 4vw, 44px);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 8px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  outline: none;
}

.newsletter-form button {
  min-height: 48px;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--red);
  color: var(--white);
  font-weight: 1000;
  text-transform: uppercase;
}

.footer-grid {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
}

.footer-column {
  display: grid;
  align-content: flex-start;
  gap: 10px;
}

.footer-column h3 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-column p,
.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.footer-column a:hover {
  color: var(--red);
}

.footer-bottom {
  width: min(var(--container), 100%);
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 998;
  min-height: 48px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 1000;
  box-shadow: var(--shadow-dark);
}

/* =========================================================
   ADMIN
   ========================================================= */

.admin-body {
  min-height: 100vh;
  background: #f1f1f1;
  display: grid;
  grid-template-columns: 290px 1fr;
  color: var(--black);
}

.admin-sidebar {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255, 23, 68, 0.18), transparent 32%),
    linear-gradient(180deg, #050505, #151515);
  color: var(--white);
  padding: 24px;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
}

.admin-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 22px;
  font-weight: 1000;
  text-transform: uppercase;
  margin-bottom: 34px;
}

.admin-logo span {
  font-size: 28px;
}

.admin-menu {
  display: grid;
  gap: 8px;
}

.admin-menu a {
  color: rgba(255, 255, 255, 0.72);
  padding: 14px;
  border-radius: 14px;
  font-weight: 900;
  transition: var(--transition);
}

.admin-menu a:hover,
.admin-menu a.active {
  color: var(--white);
  background: rgba(255, 23, 68, 0.18);
}

.admin-sidebar-footer {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 6px;
}

.admin-sidebar-footer small {
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  font-weight: 900;
}

.admin-sidebar-footer a {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.admin-main {
  padding: 28px;
  display: grid;
  gap: 24px;
}

.admin-topbar {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow);
}

.admin-topbar span,
.admin-panel-header span {
  color: var(--red);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.admin-topbar h1 {
  font-size: clamp(32px, 5vw, 56px);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 6px;
}

.admin-topbar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-btn {
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  transition: var(--transition);
  border: 0;
}

.admin-btn-dark {
  background: var(--black);
  color: var(--white);
}

.admin-btn-red {
  background: var(--red);
  color: var(--white);
}

.admin-btn-light {
  background: var(--gray-2);
  color: var(--black);
}

.admin-btn-danger {
  background: var(--danger);
  color: var(--white);
}

.admin-btn:hover {
  background: var(--black);
  color: var(--white);
}

.admin-panel {
  background: var(--white);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.admin-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-panel-header h2 {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 1000;
  margin-top: 5px;
}

.admin-form-field label {
  display: block;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.admin-form-field input,
.admin-form-field select,
.admin-form-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--gray-3);
  border-radius: 12px;
  padding: 0 12px;
  background: var(--white);
  outline: none;
}

.admin-form-field textarea {
  padding: 12px;
  resize: vertical;
}

.admin-filter-button {
  min-height: 46px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 1000;
  text-transform: uppercase;
}

.admin-filter-button:hover {
  background: var(--black);
}

/* Admin Dashboard */

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.admin-stat-card,
.admin-product-stat,
.admin-order-stat {
  background: var(--white);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.admin-stat-card span,
.admin-product-stat span,
.admin-order-stat span {
  color: #666666;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.admin-stat-card strong,
.admin-product-stat strong,
.admin-order-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 1000;
  margin: 10px 0 4px;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: flex-start;
}

.admin-status-list,
.admin-revenue-list,
.admin-top-products {
  display: grid;
  gap: 12px;
}

.admin-status-item,
.admin-revenue-item,
.admin-top-product {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* Admin Pedidos */

.admin-order-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.admin-order-stat {
  transition: var(--transition);
}

.admin-order-stat:hover,
.admin-order-stat.active {
  background: var(--black);
  color: var(--white);
}

.admin-orders-filter-form {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr 140px;
  gap: 14px;
  align-items: end;
}

.admin-orders-list {
  display: grid;
  gap: 18px;
}

.admin-order-card {
  border: 1px solid var(--gray-2);
  border-radius: 20px;
  padding: 18px;
  display: grid;
  gap: 16px;
}

.admin-order-card-main {
  display: grid;
  grid-template-columns: 160px 1fr 1.6fr;
  gap: 18px;
  align-items: center;
}

.admin-order-title h3 {
  font-size: 34px;
  font-weight: 1000;
}

.admin-order-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.admin-order-info-grid div,
.admin-order-summary {
  background: #f7f7f7;
  border-radius: 14px;
  padding: 12px;
}

.admin-update-status-form {
  display: grid;
  grid-template-columns: 1fr 1.5fr 120px 110px;
  gap: 12px;
  align-items: end;
  padding-top: 14px;
  border-top: 1px solid var(--gray-2);
}

.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.admin-pagination a,
.admin-pagination span {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #f7f7f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.admin-pagination a {
  color: var(--white);
  background: var(--red);
}

/* Admin Produto */

.admin-product-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.admin-product-stat.active {
  border-left: 5px solid #2e7d32;
}

.admin-product-stat.inactive {
  border-left: 5px solid var(--danger);
}

.admin-product-stat.stock {
  border-left: 5px solid var(--warning);
}

.admin-product-create-form {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 0.8fr 0.7fr 0.7fr 0.7fr;
  gap: 14px;
  align-items: end;
}

.admin-products-filter-form {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 140px;
  gap: 14px;
  align-items: end;
}

.product-full {
  grid-column: 1 / -1;
}

.admin-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.admin-product-card {
  border: 1px solid var(--gray-2);
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.admin-product-image {
  height: 240px;
  background:
    radial-gradient(circle at center, rgba(255, 23, 68, 0.20), transparent 38%),
    linear-gradient(135deg, #111111, #333333);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 1000;
  font-size: 26px;
  overflow: hidden;
}

.admin-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-product-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.admin-product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.admin-product-category {
  color: var(--red);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.admin-product-status {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
}

.admin-product-status.active {
  background: var(--green-bg);
  color: var(--green);
}

.admin-product-status.inactive {
  background: var(--danger-bg);
  color: #9b0020;
}

.admin-product-content h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 1000;
  line-height: 1.1;
  margin-bottom: 10px;
}

.admin-product-content p {
  color: #555555;
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 46px;
}

.admin-product-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: auto;
  margin-bottom: 16px;
}

.admin-product-meta div {
  background: #f7f7f7;
  border-radius: 14px;
  padding: 12px;
}

.admin-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.admin-product-actions .admin-btn,
.admin-product-actions button {
  width: 100%;
  min-height: 42px;
}

/* Admin Produto Editar */

.admin-product-edit-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
  align-items: flex-start;
}

.admin-product-edit-form {
  display: grid;
  gap: 16px;
}

.admin-product-edit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.admin-product-switches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.admin-product-switches label {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.admin-product-preview-card {
  background: var(--white);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 28px;
}

.admin-product-preview-image {
  height: 360px;
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(255, 23, 68, 0.20), transparent 38%),
    linear-gradient(135deg, #111111, #333333);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 1000;
  overflow: hidden;
}

.admin-product-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-variations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.admin-variation-card {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 14px;
  text-align: center;
}

/* =========================
   Toast
   ========================= */

.bunny-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(120%);
  background: var(--black);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  z-index: 99999;
  opacity: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-dark);
  max-width: calc(100vw - 32px);
  text-align: center;
}

.bunny-toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.bunny-toast-error {
  background: var(--danger);
}

/* =========================
   Responsivo
   ========================= */

@media (max-width: 1250px) {
  .catalog-products,
  .products-grid,
  .admin-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-order-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .admin-orders-filter-form,
  .admin-product-create-form,
  .admin-products-filter-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-filter-button,
  .admin-products-filter-form .admin-filter-button {
    grid-column: 1 / -1;
  }

  .admin-order-card-main {
    grid-template-columns: 1fr;
  }

  .admin-order-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-update-status-form {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1180px) {
  .admin-body {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    min-height: auto;
  }

  .admin-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .admin-dashboard-grid,
  .admin-product-edit-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-grid,
  .cart-page-grid,
  .checkout-grid,
  .order-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-info-box,
  .cart-summary,
  .checkout-summary,
  .order-summary-card,
  .admin-product-preview-card {
    position: static;
  }

  .admin-variations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .header-search {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 124px;
    left: 16px;
    right: 16px;
    background: #111111;
    border-radius: 16px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    z-index: 9999;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    background: rgba(255, 255, 255, 0.06);
    padding: 14px;
    border-radius: 12px;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero-grid,
  .auth-container,
  .footer-newsletter,
  .footer-grid,
  .account-grid,
  .catalog-section {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar,
  .account-sidebar {
    position: static;
  }

  .feature-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 100px 1fr;
  }

  .cart-item-total {
    grid-column: 1 / -1;
    text-align: left;
  }

  .checkout-form-grid,
  .account-form-grid {
    grid-template-columns: 1fr;
  }

  .account-stats-grid,
  .order-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-item-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .top-bar {
    min-height: 38px;
    font-size: 12px;
  }

  .site-header {
    min-height: 68px;
  }

  .logo-text {
    font-size: 20px;
  }

  .account-link span:not(.account-icon) {
    display: none;
  }

  .hero-section {
    padding: 54px 0;
  }

  .hero-card {
    min-height: 320px;
  }

  .catalog-products,
  .products-grid,
  .admin-product-stats,
  .admin-products-grid,
  .admin-product-create-form,
  .admin-products-filter-form,
  .admin-order-stats,
  .admin-orders-filter-form,
  .admin-order-info-grid,
  .admin-update-status-form,
  .admin-product-edit-row,
  .admin-product-switches,
  .admin-variations-grid {
    grid-template-columns: 1fr;
  }

  .admin-main {
    padding: 16px;
  }

  .admin-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-topbar-actions,
  .admin-btn,
  .admin-update-status-form .admin-btn {
    width: 100%;
  }

  .admin-stats-grid {
    grid-template-columns: 1fr;
  }

  .product-card-image {
    height: 260px;
  }

  .product-main-image {
    min-height: 360px;
  }

  .product-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-image {
    height: 190px;
  }

  .auth-card,
  .auth-brand-side {
    padding: 24px;
  }

  .account-stats-grid,
  .order-card-grid {
    grid-template-columns: 1fr;
  }

  .footer-newsletter {
    padding: 22px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .hero-content h1,
  .catalog-hero h1,
  .page-hero h1,
  .cart-page-header h1,
  .checkout-header h1,
  .account-header h1,
  .orders-header h1,
  .order-detail-header h1 {
    font-size: 40px;
  }

  .auth-brand-side h1 {
    font-size: 38px;
  }

  .admin-topbar h1 {
    font-size: 34px;
  }
}
/* =========================
   Home Extras Chamativos
   ========================= */

.home-promo-ribbon {
    height: 42px;
    background: #ffffff;
    color: #111111;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 72px;
    border-bottom: 1px solid #eeeeee;
}

.home-promo-track {
    display: flex;
    gap: 42px;
    white-space: nowrap;
    animation: promoMove 22s linear infinite;
    font-size: 13px;
    font-weight: 1000;
    text-transform: uppercase;
}

.home-promo-track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@keyframes promoMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.home-trust-bar {
    background: #111111;
    color: #ffffff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.home-trust-item {
    min-height: 96px;
    padding: 22px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.08);
}

.home-trust-item:last-child {
    border-right: 0;
}

.home-trust-item strong {
    display: block;
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.home-trust-item span {
    color: rgba(255,255,255,.62);
    font-size: 13px;
}

.home-category-showcase {
    background: #ffffff;
    padding: 76px 0;
}

.home-category-header {
    width: min(980px, calc(100% - 32px));
    margin: 0 auto 34px;
    text-align: center;
}

.home-category-header span {
    color: #ff1744;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.home-category-header h2 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: .9;
    text-transform: uppercase;
    margin-top: 10px;
}

.home-category-grid {
    width: min(1500px, calc(100% - 70px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.home-category-card {
    min-height: 360px;
    background:
        linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.80)),
        #151515;
    color: #ffffff;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
    transition: .25s ease;
}

.home-category-card:hover {
    transform: translateY(-6px);
}

.home-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,23,68,.30), transparent 40%);
    opacity: .45;
}

.home-category-card > * {
    position: relative;
    z-index: 2;
}

.home-category-card span {
    color: #ff1744;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.home-category-card h3 {
    font-size: 28px;
    text-transform: uppercase;
    line-height: 1;
    margin: 8px 0;
}

.home-category-card p {
    color: rgba(255,255,255,.70);
    line-height: 1.5;
    margin-bottom: 18px;
}

.home-category-card a {
    width: fit-content;
    min-height: 40px;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 1000;
    text-transform: uppercase;
}

.home-drop-banner {
    background:
        radial-gradient(circle at 78% 35%, rgba(255,23,68,.30), transparent 34%),
        linear-gradient(135deg, #050505, #161616);
    color: #ffffff;
    padding: 86px 0;
}

.home-drop-content {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 36px;
    align-items: center;
}

.home-drop-text span {
    color: #ff1744;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.home-drop-text h2 {
    font-size: clamp(44px, 7vw, 84px);
    line-height: .88;
    text-transform: uppercase;
    margin: 12px 0 18px;
}

.home-drop-text p {
    color: rgba(255,255,255,.70);
    font-size: 17px;
    line-height: 1.7;
    max-width: 600px;
}

.home-drop-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.home-drop-actions a {
    min-height: 48px;
    border-radius: 999px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 1000;
    text-transform: uppercase;
    font-size: 13px;
}

.home-drop-actions .primary {
    background: #ff1744;
    color: #ffffff;
}

.home-drop-actions .secondary {
    background: #ffffff;
    color: #111111;
}

.home-drop-card {
    min-height: 440px;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
        #111111;
    border: 1px solid rgba(255,255,255,.12);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.home-drop-card::before {
    content: "DROP";
    position: absolute;
    font-size: 120px;
    font-weight: 1000;
    color: rgba(255,255,255,.04);
    transform: rotate(-12deg);
}

.home-drop-card strong {
    position: relative;
    z-index: 2;
    font-size: 70px;
    text-transform: uppercase;
    color: #ffffff;
}

.home-reviews-section {
    background: #e9e9e9;
    padding: 76px 0;
}

.home-reviews-header {
    width: min(900px, calc(100% - 32px));
    margin: 0 auto 30px;
    text-align: center;
}

.home-reviews-header span {
    color: #ff1744;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.home-reviews-header h2 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    margin-top: 8px;
    text-transform: uppercase;
}

.home-reviews-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.home-review-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    min-height: 220px;
}

.home-review-card .stars {
    color: #ff1744;
    font-size: 18px;
    margin-bottom: 14px;
}

.home-review-card p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 18px;
}

.home-review-card strong {
    display: block;
    text-transform: uppercase;
}

.home-review-card span {
    color: #777777;
    font-size: 13px;
}

.home-faq-section {
    background: #ffffff;
    padding: 76px 0;
}

.home-faq-content {
    width: min(960px, calc(100% - 32px));
    margin: 0 auto;
}

.home-faq-header {
    text-align: center;
    margin-bottom: 28px;
}

.home-faq-header span {
    color: #ff1744;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.home-faq-header h2 {
    font-size: clamp(34px, 5vw, 58px);
    text-transform: uppercase;
    line-height: 1;
    margin-top: 8px;
}

.home-faq-list {
    display: grid;
    gap: 12px;
}

.home-faq-item {
    background: #f3f3f3;
    border-radius: 18px;
    padding: 20px;
}

.home-faq-item strong {
    display: block;
    font-size: 17px;
    margin-bottom: 8px;
}

.home-faq-item p {
    color: #555555;
    line-height: 1.6;
}

@media (max-width: 1180px) {
    .home-category-grid,
    .home-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-drop-content {
        grid-template-columns: 1fr;
    }

    .home-trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .home-promo-ribbon {
        margin-top: 64px;
    }

    .home-category-grid,
    .home-reviews-grid,
    .home-trust-bar {
        grid-template-columns: 1fr;
    }

    .home-category-grid {
        width: min(100% - 32px, 560px);
    }

    .home-drop-card {
        min-height: 320px;
    }

    .home-drop-card strong {
        font-size: 48px;
    }
}