/*
Theme Name: Aurora Storefront
Theme URI: https://example.local/
Description: Child theme for the store, based on Storefront.
Author: Aurora
Template: storefront
Version: 1.16.0
Text Domain: aurora-storefront
*/

:root {
  --ink: #171112;
  --ink-2: #2b1b1d;
  --muted: #705f5c;
  --line: #eadfcf;
  --soft: #fbf6ed;
  --surface: #ffffff;
  --red: #9f1716;
  --red-dark: #751010;
  --gold: #d8aa46;
  --gold-light: #fff0aa;
  --blue: #4a2527;
  --teal: #806331;
  --green: #0f8f56;
  --shadow-sm: 0 10px 26px rgba(67, 25, 20, 0.09);
  --shadow-lg: 0 24px 70px rgba(67, 25, 20, 0.17);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, #fffdf8 0, #fff8ed 360px, var(--soft) 100%);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  overflow-x: clip;
  overflow-y: visible;
}

#page {
  overflow-x: clip;
  overflow-y: visible;
}

a {
  color: var(--red);
  transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

img {
  height: auto;
}

.aurora-header-actions a,
.store-button,
.store-ribbon__item,
.category-card,
.department-grid a,
.promo-panel,
.step-card,
.proof-card,
.woocommerce ul.products li.product,
.aurora-footer-badges span {
  transition: border-color .18s ease, box-shadow .18s ease, color .18s ease, background .18s ease, transform .18s ease;
}

.store-ribbon__item:hover,
.promo-panel:hover,
.woocommerce ul.products li.product:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.woocommerce ul.products li.product img {
  transition: transform .22s ease;
}

.woocommerce ul.products li.product:hover img {
  transform: scale(1.045);
}

.col-full {
  max-width: 1220px;
}

.aurora-topbar {
  background: #150c0d;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.aurora-topbar::before {
  animation: aurora-sheen 5s linear infinite;
  background: linear-gradient(90deg, transparent, rgba(216, 170, 70, .35), transparent);
  content: "";
  inset: 0 auto 0 -35%;
  position: absolute;
  width: 32%;
  z-index: -1;
}

.aurora-topbar__inner {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1220px;
  min-height: 38px;
  padding: 0 18px;
}

.aurora-topbar a {
  color: #fff;
  text-decoration: none;
}

.site-header {
  background: rgba(255, 255, 255, .96);
  border: 0;
  box-shadow: 0 1px 0 rgba(18, 19, 22, .08);
  padding: 18px 0 0;
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-bar .site-header {
  top: 32px;
}

.site-branding .site-title {
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1;
}

.site-branding .site-title a {
  color: var(--red);
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
}

.site-branding .site-description {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-top: 6px;
}

.aurora-branding {
  float: left;
  margin: 0;
  max-width: 290px;
}

.aurora-branding__link {
  align-items: center;
  color: var(--ink);
  display: flex;
  gap: 12px;
  text-decoration: none;
}

.aurora-branding__link:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.aurora-branding__logo {
  aspect-ratio: 1;
  background: #fffaf0;
  border: 1px solid rgba(216, 170, 70, .62);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(18, 19, 22, .12);
  display: block;
  height: 76px;
  object-fit: contain;
  padding: 2px;
  width: 76px;
}

.aurora-branding__text strong {
  color: var(--red);
  display: block;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.aurora-branding__text small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  margin-top: 5px;
}

.site-search .widget_product_search input[type=search] {
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  height: 48px;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.site-search .widget_product_search input[type=search]:focus {
  background: #fff;
  border-color: rgba(216, 170, 70, .72);
  box-shadow: 0 0 0 4px rgba(216, 170, 70, .16);
}

.aurora-smart-search {
  clear: none;
  float: left;
  margin: 0 18px;
  max-width: 430px;
  width: 38%;
}

.aurora-smart-search .dgwt-wcas-search-wrapp {
  max-width: none;
}

.aurora-smart-search input[type=search],
.aurora-smart-search .dgwt-wcas-search-input {
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  height: 50px;
  font-weight: 750;
}

.aurora-smart-search input[type=search]:focus,
.aurora-smart-search .dgwt-wcas-search-input:focus {
  background: #fff;
  border-color: rgba(216, 170, 70, .72);
  box-shadow: 0 0 0 4px rgba(216, 170, 70, .16);
}

.aurora-header-actions {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-left: auto;
  max-width: 270px;
}

.aurora-header-actions a {
  align-items: center;
  background: #fffaf1;
  border: 1px solid rgba(216, 170, 70, .42);
  border-radius: var(--radius);
  color: var(--red-dark);
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  min-height: 58px;
  padding: 7px 8px;
  text-decoration: none;
}

.aurora-header-actions a:hover {
  background: #fff3d6;
  border-color: rgba(159, 23, 22, .38);
  box-shadow: var(--shadow-sm);
  color: var(--red-dark);
  transform: translateY(-3px);
}

.aurora-header-actions svg {
  display: block;
  fill: currentColor;
  height: 22px;
  width: 22px;
}

.aurora-header-actions span {
  display: block;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.storefront-primary-navigation {
  background:
    linear-gradient(90deg, #751010, #9f1716 48%, #c93625 100%);
  margin-top: 14px;
  position: relative;
}

.storefront-primary-navigation::after {
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
}

.main-navigation ul.menu > li > a,
.main-navigation ul.nav-menu > li > a,
.site-header-cart .cart-contents {
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
}

.main-navigation ul.menu > li > a:hover,
.main-navigation ul.nav-menu > li > a:hover,
.main-navigation ul.menu > li.current-menu-item > a,
.main-navigation ul.nav-menu > li.current-menu-item > a {
  background: rgba(0, 0, 0, .18);
  color: #fff;
}

.main-navigation > .menu {
  display: none;
}

.site-header-cart .cart-contents::after {
  color: #fff;
}

.site-content {
  padding-top: 12px;
}

.home .entry-header,
.home .entry-title {
  display: none;
}

.home .site-main,
.home .hentry,
.home .entry-content,
.home .content-area {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

.home .entry-content > * {
  margin-left: 0;
  margin-right: 0;
}

.store-livebar {
  background: #180d0e;
  border: 1px solid rgba(216, 170, 70, .30);
  border-radius: var(--radius);
  color: #fff;
  margin: 0 0 10px;
  overflow: hidden;
  padding: 7px 0;
}

.store-livebar__track {
  animation: aurora-marquee 22s linear infinite;
  display: flex;
  gap: 34px;
  min-width: max-content;
  white-space: nowrap;
}

.store-livebar span {
  color: rgba(255, 255, 255, .92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  padding-left: 18px;
}

.store-hero {
  background:
    linear-gradient(95deg, rgba(11, 12, 16, .96) 0%, rgba(17, 19, 24, .88) 42%, rgba(17, 19, 24, .26) 100%),
    url("assets/hero-store-v2.png");
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-height: clamp(520px, 58vw, 660px);
  overflow: hidden;
  position: relative;
}

.store-hero::before,
.store-hero::after {
  content: "";
  pointer-events: none;
  position: absolute;
}

.store-hero::before {
  animation: aurora-pulse-line 7s ease-in-out infinite;
  background:
    linear-gradient(100deg, transparent 0 24%, rgba(255, 208, 40, .22) 25%, transparent 31% 100%),
    linear-gradient(122deg, transparent 0 57%, rgba(227, 6, 19, .22) 58%, transparent 63% 100%);
  inset: 0;
}

.store-hero::after {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .18));
  bottom: 0;
  height: 38%;
  left: 0;
  right: 0;
}

.store-hero__copy {
  animation: aurora-rise .7s ease both;
  color: #fff;
  max-width: 690px;
  padding: clamp(36px, 7vw, 84px) clamp(20px, 5vw, 64px);
  position: relative;
  z-index: 2;
}

.store-kicker {
  align-items: center;
  background: rgba(255, 208, 40, .15);
  border: 1px solid rgba(255, 208, 40, .42);
  border-radius: 999px;
  color: var(--gold);
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  margin-bottom: 17px;
  padding: 8px 12px;
  text-transform: uppercase;
}

.store-hero h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 950;
  hyphens: none;
  letter-spacing: 0;
  line-height: .92;
  margin: 0 0 18px;
  max-width: 740px;
  text-wrap: balance;
  word-break: normal;
}

.store-hero p {
  color: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 600;
  line-height: 1.52;
  margin: 0 0 26px;
  max-width: 650px;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button,
.store-button:visited,
.woocommerce ul.products li.product .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  align-items: center;
  border: 0;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  letter-spacing: 0;
  min-height: 48px;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
  text-decoration: none;
}

.store-button::after,
.woocommerce ul.products li.product .button::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent);
  content: "";
  inset: 0 auto 0 -45%;
  position: absolute;
  transform: skewX(-16deg);
  transition: left .42s ease;
  width: 38%;
}

.store-button:hover::after,
.woocommerce ul.products li.product .button:hover::after {
  left: 115%;
}

.store-button--primary,
.store-button--primary:visited {
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(255, 208, 40, .22);
  color: var(--ink);
}

.store-button--primary:hover {
  background: #ffe171;
  color: var(--ink);
  transform: translateY(-2px);
}

.store-button--secondary,
.store-button--secondary:visited {
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
}

.store-button--secondary:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-2px);
}

.store-hero__badges {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  max-width: 680px;
}

.hero-badge {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  color: #fff;
  min-height: 86px;
  padding: 14px;
}

.hero-badge strong {
  color: #fff;
  display: block;
  font-size: 19px;
  font-weight: 950;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-badge span {
  color: rgba(255, 255, 255, .76);
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.aurora-product-marquee {
  background: #fffdf8;
  border: 1px solid rgba(216, 170, 70, .28);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin: 18px 0 28px;
  overflow: hidden;
  padding: 18px 0 20px;
  position: relative;
}

.aurora-product-marquee::before,
.aurora-product-marquee::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 80px;
  z-index: 3;
}

.aurora-product-marquee::before {
  background: linear-gradient(90deg, #fff, transparent);
  left: 0;
}

.aurora-product-marquee::after {
  background: linear-gradient(270deg, #fff, transparent);
  right: 0;
}

.aurora-product-marquee__head {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 0 24px 12px;
}

.aurora-product-marquee__head h2 {
  color: var(--red-dark);
  font-size: clamp(21px, 2.2vw, 30px);
  font-weight: 950;
  line-height: 1;
  margin: 0;
  text-align: left;
}

.aurora-offer-clock {
  align-items: center;
  background: #180d0e;
  border: 1px solid rgba(216, 170, 70, .42);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(67, 25, 20, .12);
  color: var(--gold-light);
  display: inline-flex;
  gap: 5px;
  min-height: 42px;
  padding: 0 12px;
}

.aurora-offer-clock b,
.aurora-offer-clock i {
  font-size: 17px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}

.aurora-offer-clock i {
  animation: aurora-clock-blink 1.1s steps(1) infinite;
  color: var(--gold);
}

.aurora-offer-clock small {
  color: rgba(255, 240, 170, .76);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .05em;
  margin-left: 5px;
  text-transform: uppercase;
}

.aurora-product-marquee__viewport {
  overflow: hidden;
}

.aurora-product-marquee__track {
  animation: aurora-product-scroll 32s linear infinite;
  display: flex;
  gap: 14px;
  min-width: max-content;
  padding: 4px 18px 8px;
}

.aurora-product-marquee:hover .aurora-product-marquee__track {
  animation-play-state: paused;
}

.aurora-slide-product,
.aurora-slide-product:visited {
  align-items: center;
  background:
    linear-gradient(135deg, #fff 0 54%, rgba(216, 170, 70, .16) 100%);
  border: 1px solid rgba(216, 170, 70, .28);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(18, 19, 22, .06);
  color: var(--ink);
  display: grid;
  gap: 12px;
  grid-template-columns: 104px 190px;
  min-height: 132px;
  overflow: hidden;
  padding: 10px;
  position: relative;
  text-decoration: none;
}

.aurora-slide-product::before {
  background: linear-gradient(180deg, var(--red), var(--gold));
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 4px;
}

.aurora-slide-product:hover {
  border-color: rgba(227, 6, 19, .35);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  transform: translateY(-5px);
}

.aurora-slide-product__media {
  align-items: center;
  aspect-ratio: 1;
  background: #f5f6f8;
  border-radius: var(--radius);
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.aurora-slide-product__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform .22s ease;
  width: 100%;
}

.aurora-slide-product:hover .aurora-slide-product__media img {
  transform: scale(1.06);
}

.aurora-slide-product__body {
  display: block;
  min-width: 0;
}

.aurora-slide-product__body small {
  color: var(--red);
  display: block;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .06em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.aurora-slide-product__body strong {
  color: var(--ink);
  display: -webkit-box;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.22;
  margin-bottom: 7px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.aurora-slide-product__price {
  color: var(--red);
  display: block;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.15;
}

.aurora-slide-product__price del {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.aurora-slide-product__price ins {
  background: transparent;
}

.aurora-slide-product em {
  color: var(--green);
  display: block;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  margin-top: 7px;
}

.store-ribbon {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin: 18px 0 28px;
}

.store-ribbon__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  min-height: 120px;
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.store-ribbon__item::before {
  background: linear-gradient(90deg, var(--red), var(--gold), var(--blue));
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.store-ribbon strong {
  color: var(--ink);
  display: block;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.18;
  margin-bottom: 6px;
}

.store-ribbon span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.signup-strip {
  align-items: center;
  background:
    linear-gradient(105deg, rgba(18, 19, 22, .96), rgba(170, 7, 16, .86)),
    url("assets/category-art-grid.png");
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  color: #fff;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto;
  margin: 26px 0;
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px);
  position: relative;
}

.signup-strip::after {
  animation: aurora-sheen 6s linear infinite;
  background: linear-gradient(90deg, transparent, rgba(255, 208, 40, .20), transparent);
  content: "";
  inset: 0 auto 0 -28%;
  position: absolute;
  width: 24%;
}

.signup-strip > * {
  position: relative;
  z-index: 1;
}

.signup-strip h2 {
  color: #fff;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 950;
  line-height: 1;
  margin: 0 0 9px;
}

.signup-strip p {
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.48;
  margin: 0;
  max-width: 780px;
}

.store-section {
  margin: 34px 0;
}

.store-section__head {
  align-items: end;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.store-section__head h2 {
  color: var(--ink);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 950;
  line-height: 1;
  margin: 0;
}

.store-section__head p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  margin: 7px 0 0;
  max-width: 620px;
}

.category-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, 1fr);
}

.category-card,
.category-card:visited {
  background:
    linear-gradient(145deg, #ffffff 0%, #ffffff 48%, rgba(227, 6, 19, .06) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(18, 19, 22, .04);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 174px;
  overflow: hidden;
  padding: 17px;
  position: relative;
  text-decoration: none;
}

.category-card::before {
  background: linear-gradient(120deg, var(--accent, var(--red)), transparent 70%);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.category-card::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .82)),
    url("assets/category-art-grid.png");
  background-position: var(--cat-position, center);
  background-size: 520px auto;
  bottom: 0;
  content: "";
  height: 100%;
  opacity: .28;
  position: absolute;
  right: 0;
  transform: none;
  transition: opacity .22s ease, transform .22s ease;
  width: 48%;
  z-index: 0;
}

.category-card:nth-child(1) { --cat-position: 0% 0%; }
.category-card:nth-child(2) { --cat-position: 50% 0%; }
.category-card:nth-child(3) { --cat-position: 100% 0%; }
.category-card:nth-child(4) { --cat-position: 0% 100%; }
.category-card:nth-child(5) { --cat-position: 50% 100%; }

.category-card > * {
  position: relative;
  z-index: 1;
}

.category-card:hover {
  border-color: color-mix(in srgb, var(--accent, var(--red)) 46%, #fff);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  transform: translateY(-5px);
}

.category-card:hover::after {
  opacity: .48;
  transform: scale(1.05);
}

.category-card small {
  color: var(--accent, var(--red));
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.category-card strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 950;
  line-height: 1.08;
  max-width: 130px;
}

.category-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  max-width: 148px;
}

.department-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.department-grid a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(18, 19, 22, .04);
  color: var(--ink);
  display: block;
  min-height: 104px;
  overflow: hidden;
  padding: 18px;
  position: relative;
  text-decoration: none;
}

.department-grid a::before {
  background: linear-gradient(90deg, var(--red), var(--gold), var(--blue));
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.department-grid a::after {
  background: rgba(227, 6, 19, .07);
  border-radius: 999px;
  bottom: -34px;
  content: "";
  height: 96px;
  position: absolute;
  right: -28px;
  width: 96px;
}

.department-grid a:hover {
  border-color: rgba(227, 6, 19, .32);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  transform: translateY(-3px);
}

.department-grid strong {
  display: block;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.1;
  margin-bottom: 7px;
  position: relative;
  z-index: 1;
}

.department-grid span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  max-width: 230px;
  position: relative;
  z-index: 1;
}

.promo-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.28fr .72fr;
}

.promo-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  min-height: 268px;
  overflow: hidden;
  padding: clamp(22px, 3.5vw, 36px);
  position: relative;
}

.promo-panel::after {
  background:
    linear-gradient(125deg, transparent 0 54%, rgba(11, 88, 200, .10) 55%, transparent 61%),
    linear-gradient(108deg, transparent 0 70%, rgba(255, 208, 40, .16) 71%, transparent 77%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.promo-panel--dark {
  background:
    linear-gradient(135deg, rgba(18, 19, 22, .96), rgba(11, 88, 200, .76)),
    url("assets/hero-store.png");
  background-position: center right;
  background-size: cover;
  color: #fff;
}

.promo-panel > * {
  position: relative;
  z-index: 1;
}

.promo-panel--dark h3,
.promo-panel--dark p {
  color: #fff;
}

.promo-panel h3 {
  color: var(--ink);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .98;
  margin: 0 0 12px;
  max-width: 560px;
}

.promo-panel p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.5;
  margin: 0 0 20px;
  max-width: 580px;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.mini-list li {
  align-items: center;
  background: #f7f8fa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  display: flex;
  font-weight: 900;
  justify-content: space-between;
  list-style: none;
  padding: 13px 14px;
}

.mini-list span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.steps-grid,
.proof-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.step-card,
.proof-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(18, 19, 22, .04);
  padding: 20px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.step-card:hover,
.proof-card:hover {
  border-color: rgba(227, 6, 19, .28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.step-card b {
  align-items: center;
  background: var(--red);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  height: 32px;
  justify-content: center;
  margin-bottom: 13px;
  width: 32px;
}

.step-card h3,
.proof-card h3 {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  margin: 0 0 8px;
}

.step-card p,
.proof-card p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.46;
  margin: 0;
}

.proof-card strong {
  color: var(--gold);
  display: block;
  font-size: 18px;
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.product-showcase ul.products {
  margin-bottom: 0;
}

.product-showcase ul.products li.product,
.woocommerce ul.products li.product {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(18, 19, 22, .05);
  isolation: isolate;
  overflow: hidden;
  padding: 12px 12px 16px;
  position: relative;
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-showcase ul.products li.product::before,
.woocommerce ul.products li.product::before {
  background: linear-gradient(90deg, var(--red), var(--gold));
  content: "";
  height: 3px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity .18s ease;
}

.product-showcase ul.products li.product:hover,
.woocommerce ul.products li.product:hover {
  border-color: rgba(227, 6, 19, .35);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.product-showcase ul.products li.product:hover::before,
.woocommerce ul.products li.product:hover::before {
  opacity: 1;
}

.product-showcase ul.products li.product img,
.woocommerce ul.products li.product img {
  aspect-ratio: 1 / 1;
  background: #f7f8fa;
  border-radius: calc(var(--radius) - 1px);
  object-fit: cover;
  transition: transform .26s ease;
  width: 100%;
}

.product-showcase ul.products li.product:hover img,
.woocommerce ul.products li.product:hover img {
  transform: scale(1.035);
}

.product-showcase ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.25;
  min-height: 58px;
}

.product-showcase ul.products li.product .price,
.woocommerce ul.products li.product .price {
  color: var(--red);
  font-size: 19px;
  font-weight: 950;
}

.product-showcase ul.products li.product .price::after,
.woocommerce ul.products li.product .price::after {
  color: var(--green);
  content: " no Pix";
  display: block;
  font-size: 12px;
  font-weight: 950;
  margin-top: 2px;
}

.aurora-payment-note {
  background: rgba(20, 163, 74, .10);
  border-radius: 999px;
  color: var(--green);
  display: inline-flex;
  font-size: 11px;
  font-weight: 950;
  margin: 0 0 10px;
  padding: 5px 9px;
  text-transform: uppercase;
}

.aurora-product-sku,
.aurora-installment-note {
  border-radius: 999px;
  display: inline-flex;
  font-size: 11px;
  font-weight: 950;
  margin: 0 6px 8px 0;
  padding: 5px 9px;
  text-transform: uppercase;
}

.aurora-product-sku {
  background: rgba(18, 19, 22, .06);
  color: var(--muted);
}

.aurora-installment-note {
  background: rgba(216, 170, 70, .14);
  color: var(--blue);
}

.woocommerce ul.products li.product .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--red);
  color: #fff;
  text-align: center;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--red-dark);
  color: #fff;
}

.site-header-cart .widget_shopping_cart {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.store-legal-strip {
  background: #180d0e;
  border-radius: var(--radius);
  color: #fff;
  display: grid;
  gap: 16px;
  grid-template-columns: 1.2fr .8fr;
  margin-top: 34px;
  padding: clamp(20px, 3vw, 30px);
}

.store-legal-strip h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 950;
  margin: 0 0 8px;
}

.store-legal-strip p {
  color: rgba(255, 255, 255, .78);
  font-weight: 650;
  margin: 0;
}

.store-legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.store-legal-list li {
  align-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  color: #fff;
  display: flex;
  font-weight: 900;
  justify-content: space-between;
  list-style: none;
  padding: 11px 13px;
}

.woocommerce-account:not(.logged-in) .entry-header {
  display: none;
}

.woocommerce-account:not(.logged-in) .site-main,
.woocommerce-account:not(.logged-in) .hentry,
.woocommerce-account:not(.logged-in) .entry-content,
.woocommerce-account:not(.logged-in) .content-area {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

.account-hero {
  background:
    linear-gradient(110deg, rgba(12, 13, 17, .97), rgba(20, 22, 29, .9) 48%, rgba(227, 6, 19, .72)),
    url("assets/hero-store.png");
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  color: #fff;
  display: grid;
  gap: 18px;
  grid-template-columns: 1.25fr .75fr;
  margin-bottom: 20px;
  min-height: 330px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
  position: relative;
}

.account-hero::before {
  animation: aurora-pulse-line 7s ease-in-out infinite;
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(255, 208, 40, .18) 43%, transparent 49%),
    linear-gradient(128deg, transparent 0 68%, rgba(11, 88, 200, .20) 69%, transparent 75%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.account-hero > * {
  position: relative;
  z-index: 1;
}

.account-hero h1 {
  color: #fff;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .98;
  margin: 0 0 14px;
  max-width: 780px;
  text-wrap: balance;
}

.account-hero p {
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.52;
  margin: 0;
  max-width: 680px;
}

.account-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.account-hero__badges span {
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  padding: 8px 11px;
  text-transform: uppercase;
}

.account-hero__panel {
  align-self: end;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
  display: grid;
  gap: 10px;
  padding: 20px;
}

.account-hero__panel strong {
  color: var(--gold);
  font-size: 20px;
  font-weight: 950;
}

.account-hero__panel span {
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.38;
}

.woocommerce-account:not(.logged-in) #customer_login {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.woocommerce-account:not(.logged-in) #customer_login::before,
.woocommerce-account:not(.logged-in) #customer_login::after {
  display: none;
}

.woocommerce-account:not(.logged-in) #customer_login .u-column1,
.woocommerce-account:not(.logged-in) #customer_login .u-column2 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  float: none;
  margin: 0;
  overflow: hidden;
  padding: clamp(20px, 3vw, 30px);
  position: relative;
  width: auto;
}

.woocommerce-account:not(.logged-in) #customer_login .u-column1::before,
.woocommerce-account:not(.logged-in) #customer_login .u-column2::before {
  background: linear-gradient(90deg, var(--red), var(--gold), var(--blue));
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.woocommerce-account:not(.logged-in) #customer_login h2 {
  color: var(--ink);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 950;
  line-height: 1;
  margin: 0 0 10px;
}

.woocommerce-account:not(.logged-in) #customer_login .u-column1 h2::after {
  color: var(--muted);
  content: "Acesse seus pedidos, enderecos e carrinho salvo.";
  display: block;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
  margin-top: 8px;
}

.woocommerce-account:not(.logged-in) #customer_login .u-column2 h2::after {
  color: var(--muted);
  content: "Crie sua conta para comprar e acompanhar pedidos.";
  display: block;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
  margin-top: 8px;
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login,
.woocommerce-account:not(.logged-in) .woocommerce-form-register {
  border: 0;
  margin: 18px 0 0;
  padding: 0;
}

.woocommerce-account:not(.logged-in) .woocommerce-form-row label,
.woocommerce-account:not(.logged-in) .form-row label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 7px;
}

.woocommerce-account:not(.logged-in) .woocommerce-Input,
.woocommerce-account:not(.logged-in) input.input-text {
  background: #f7f8fa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  color: var(--ink);
  min-height: 50px;
  padding: 11px 13px;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.woocommerce-account:not(.logged-in) .woocommerce-Input:focus,
.woocommerce-account:not(.logged-in) input.input-text:focus {
  background: #fff;
  border-color: rgba(227, 6, 19, .45);
  box-shadow: 0 0 0 4px rgba(227, 6, 19, .10);
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login__rememberme {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  margin: 0 0 12px;
}

.woocommerce-account:not(.logged-in) #customer_login button.button {
  background: var(--red);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(227, 6, 19, .18);
  color: #fff;
  font-weight: 950;
  min-height: 50px;
  width: 100%;
}

.woocommerce-account:not(.logged-in) #customer_login button.button:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-1px);
}

.woocommerce-account:not(.logged-in) .lost_password {
  margin: 13px 0 0;
}

.woocommerce-account:not(.logged-in) .lost_password a {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
}

.woocommerce-account:not(.logged-in) .woocommerce-privacy-policy-text {
  background: rgba(11, 88, 200, .06);
  border: 1px solid rgba(11, 88, 200, .13);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  margin: 12px 0;
  padding: 12px;
}

.woocommerce-account:not(.logged-in) .woocommerce-privacy-policy-text p {
  margin: 0;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-navigation {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-navigation ul {
  margin: 0;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-navigation li:last-child {
  border-bottom: 0;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-navigation a {
  color: var(--ink);
  display: block;
  font-weight: 900;
  padding: 13px 15px;
  text-decoration: none;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account.logged-in .woocommerce-MyAccount-navigation a:hover {
  background: var(--red);
  color: #fff;
}

.woocommerce-account.logged-in .woocommerce-MyAccount-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.site-main,
.content-area,
.widget-area .widget,
.woocommerce-products-header,
.woocommerce-tabs,
.single-product div.product,
.cart-collaterals .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
  background: var(--surface);
}

.site-footer {
  background: #1b0f11;
  color: #eadfcf;
  margin-top: 42px;
  position: relative;
}

.site-footer::before {
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.site-footer a {
  color: #fff;
}

.aurora-footer {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: 1.35fr 1fr 1fr;
  padding: 18px 0 28px;
}

.aurora-footer__brand img {
  background: transparent;
  border: 1px solid rgba(216, 170, 70, .60);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
  display: block;
  height: 82px;
  margin-bottom: 14px;
  object-fit: contain;
  width: 82px;
}

.aurora-footer strong {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.15;
  margin-bottom: 11px;
}

.aurora-footer span,
.aurora-footer a {
  color: #eadfcf;
  display: block;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.52;
  margin-bottom: 6px;
  text-decoration: none;
}

.aurora-footer a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.aurora-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 14px;
  padding-top: 14px;
}

.aurora-footer__button,
.aurora-footer__button:visited {
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  color: var(--ink);
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  margin-top: 10px;
  min-height: 46px;
  padding: 0 18px;
  width: fit-content;
}

.aurora-footer__button:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.aurora-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.aurora-socials a,
.aurora-socials a:visited {
  align-items: center;
  background: #9f1716;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  height: 46px;
  justify-content: center;
  line-height: 1;
  text-transform: uppercase;
  width: 46px;
}

.aurora-socials a:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-4px);
}

.aurora-footer-badges {
  background: #12090a;
  border-radius: var(--radius);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 22px;
  padding: 22px 24px;
}

.aurora-footer-badges strong {
  color: #fff;
  display: block;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 13px;
}

.aurora-footer-badges span {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin: 0 7px 8px 0;
  min-height: 36px;
  padding: 9px 11px;
}

.aurora-footer-badges span:hover {
  background: rgba(255, 208, 40, .14);
  border-color: rgba(255, 208, 40, .38);
  transform: translateY(-2px);
}

.site-info {
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #aeb9c6;
  font-size: 12px;
  font-weight: 800;
  padding-top: 18px;
}

.storefront-handheld-footer-bar ul li > a::before {
  color: var(--ink);
}

@keyframes aurora-sheen {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(440%);
  }
}

@keyframes aurora-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes aurora-product-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes aurora-clock-blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: .25;
  }
}

@keyframes aurora-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aurora-pulse-line {
  0%, 100% {
    opacity: .6;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(10px);
  }
}

/* Mockup-inspired storefront layer */
body {
  background: #fff;
}

.aurora-topbar {
  background: linear-gradient(90deg, #9f1716, #c80812 48%, #9f1716);
  font-size: 14px;
}

.aurora-topbar__inner {
  justify-content: center;
  min-height: 42px;
}

.aurora-topbar__inner span,
.aurora-topbar__inner a {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-weight: 950;
  gap: 7px;
  padding: 0 22px;
}

.site-header {
  background: #fff;
  box-shadow: 0 1px 0 rgba(23, 17, 18, .08);
  padding-top: 20px;
}

.site-header .col-full {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.aurora-branding {
  flex: 0 0 290px;
  float: none;
  max-width: 290px;
}

.aurora-branding__logo {
  height: 86px;
  width: 86px;
}

.aurora-branding__text strong {
  color: #c80812;
  font-size: 32px;
  line-height: .92;
  max-width: 190px;
}

.aurora-branding__text small {
  color: #353b48;
  font-size: 13px;
  font-weight: 900;
}

.aurora-smart-search {
  flex: 1 1 420px;
  float: none;
  margin: 0 8px;
  max-width: 620px;
  width: auto;
}

.aurora-smart-search input[type=search],
.aurora-smart-search .dgwt-wcas-search-input {
  background: #fff;
  border: 1px solid #d9dee8;
  border-radius: 8px;
  height: 58px;
}

.aurora-header-actions {
  flex: 0 0 auto;
  gap: 14px;
  grid-template-columns: repeat(3, 130px);
  margin-left: auto;
  max-width: none;
}

.aurora-header-actions a {
  align-items: center;
  background: #fff;
  border-color: #d9dee8;
  color: #171112;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-start;
  min-height: 58px;
  padding: 10px 12px;
}

.aurora-header-actions svg {
  color: #171112;
  height: 26px;
  width: 26px;
}

.aurora-header-actions span {
  color: #171112;
  font-size: 12px;
  line-height: 1.12;
}

.storefront-primary-navigation {
  background: #fff;
  border-top: 1px solid #edf0f4;
  box-shadow: 0 1px 0 rgba(23, 17, 18, .08);
  margin-top: 20px;
  width: 100%;
}

.storefront-primary-navigation::after {
  display: none;
}

.main-navigation ul.menu > li > a,
.main-navigation ul.nav-menu > li > a,
.site-header-cart .cart-contents {
  color: #c80812;
  font-size: 14px;
  font-weight: 950;
  min-height: 52px;
}

.main-navigation ul.menu > li > a:hover,
.main-navigation ul.nav-menu > li > a:hover,
.main-navigation ul.menu > li.current-menu-item > a,
.main-navigation ul.nav-menu > li.current-menu-item > a {
  background: #c80812;
  border-radius: 8px;
  color: #fff;
}

.site-content {
  padding-top: 14px;
}

.home .site-content {
  padding-top: 0;
}

.home .col-full {
  max-width: 1680px;
}

.store-hero {
  align-items: center;
  background: #020207;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  justify-content: center;
  left: 50%;
  margin-left: 0;
  margin-right: 0;
  min-height: clamp(680px, 82vh, 880px);
  overflow: hidden;
  position: relative;
  transform: translateX(-50%);
  width: 100vw;
}

.home .entry-content > .store-hero {
  margin-left: 0;
  margin-right: 0;
}

.aurora-hero-shader {
  height: 100%;
  inset: 0;
  opacity: 1;
  pointer-events: auto;
  position: absolute;
  touch-action: none;
  width: 100%;
  z-index: 0;
}

.store-hero.is-shader-active .aurora-hero-shader {
  animation: aurora-shader-reveal 1.1s ease both;
}

.store-hero::before,
.store-hero::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.store-hero::before {
  background:
    radial-gradient(circle at 50% 46%, transparent 0 21%, rgba(2, 1, 8, .12) 55%, rgba(1, 0, 5, .74) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .08), transparent 38%, rgba(0, 0, 0, .36));
  z-index: 1;
}

.store-hero::after {
  background: linear-gradient(90deg, transparent, rgba(255, 205, 117, .035), transparent);
  transform: translateX(-100%);
  z-index: 1;
}

.store-hero.is-shader-active::after {
  animation: aurora-light-sweep 8s ease-in-out 1.2s infinite;
}

.store-hero__copy {
  align-items: center;
  color: #fff7e8;
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  padding: 80px 30px 110px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.store-hero__trust {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(179, 52, 14, .13);
  border: 1px solid rgba(255, 191, 91, .28);
  border-radius: 999px;
  color: #ffe6ba;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 11px;
  margin-bottom: 34px;
  padding: 12px 22px;
}

.store-hero__stars {
  color: #ffc35c;
  font-size: 12px;
  letter-spacing: 4px;
}

.store-hero h1 {
  font-size: clamp(52px, 6.5vw, 98px);
  line-height: .94;
  margin: 0;
  max-width: 1080px;
  text-wrap: balance;
}

.store-hero h1 span {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.store-hero h1 span:first-child {
  background-image: linear-gradient(90deg, #ffd89a, #f7b33d 48%, #ffda83);
}

.store-hero h1 span:last-child {
  background-image: linear-gradient(90deg, #ffe68e, #f48b28 52%, #df3022);
  margin-top: 8px;
}

.store-hero p {
  color: rgba(255, 240, 218, .86);
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 500;
  line-height: 1.55;
  margin: 30px auto 0;
  max-width: 820px;
  text-wrap: balance;
}

.store-hero .store-actions {
  justify-content: center;
  margin-top: 38px;
}

.store-hero .store-button {
  border-radius: 999px;
  font-size: 17px;
  min-height: 58px;
  padding: 17px 30px;
}

.store-hero .store-button--primary,
.store-hero .store-button--primary:visited {
  background: linear-gradient(90deg, #ef5a24, #f7bf36);
  box-shadow: 0 15px 38px rgba(236, 102, 28, .32);
  color: #160803;
}

.store-hero .store-button--primary:hover {
  box-shadow: 0 20px 48px rgba(236, 102, 28, .46);
  color: #160803;
  transform: translateY(-3px) scale(1.025);
}

.store-hero .store-button--secondary,
.store-hero .store-button--secondary:visited {
  backdrop-filter: blur(12px);
  background: rgba(181, 67, 24, .12);
  border: 1px solid rgba(255, 196, 106, .32);
  color: #fff0d6;
}

.store-hero .store-button--secondary:hover {
  background: rgba(230, 104, 34, .22);
  border-color: rgba(255, 210, 136, .55);
  color: #fff;
  transform: translateY(-3px) scale(1.025);
}

.store-hero__copy [data-hero-reveal],
.store-hero .store-actions {
  opacity: 0;
  transform: translateY(28px);
}

.store-hero.is-shader-active .store-hero__copy [data-hero-reveal="1"] {
  animation: aurora-content-in .8s ease .1s forwards;
}

.store-hero.is-shader-active .store-hero__copy [data-hero-reveal="2"] {
  animation: aurora-content-in .85s ease .25s forwards;
}

.store-hero.is-shader-active .store-hero__copy [data-hero-reveal="3"] {
  animation: aurora-content-in .85s ease .4s forwards;
}

.store-hero.is-shader-active .store-hero__copy [data-hero-reveal="4"] {
  animation: aurora-content-in .8s ease .58s forwards;
}

.store-hero.is-shader-active .store-actions {
  animation: aurora-content-in .8s ease .74s forwards;
}

.store-hero__scroll {
  border: 1px solid rgba(255, 211, 142, .32);
  border-radius: 999px;
  bottom: 25px;
  height: 42px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 25px;
  z-index: 3;
}

.store-hero__scroll span {
  animation: aurora-scroll-dot 1.8s ease-in-out infinite;
  background: #ffd17a;
  border-radius: 50%;
  height: 5px;
  left: 9px;
  position: absolute;
  top: 8px;
  width: 5px;
}

.store-button--primary,
.store-button--primary:visited,
.aurora-featured-card__button {
  background: #c80812;
  box-shadow: 0 12px 25px rgba(200, 8, 18, .20);
  color: #fff;
}

.store-button--primary:hover,
.aurora-featured-card__button:hover {
  background: #9f1716;
  color: #fff;
}

.store-button--secondary,
.store-button--secondary:visited {
  background: #fff;
  border: 1px solid #d9dee8;
  color: #171112;
}

.store-hero__badges {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  max-width: 600px;
}

.hero-badge {
  background: rgba(255, 255, 255, .82);
  border-color: #eadfcf;
  color: #171112;
  min-height: 70px;
  padding: 12px;
}

.hero-badge strong {
  color: #c80812;
}

.hero-badge span {
  color: #535c6b;
}

.store-ribbon {
  grid-template-columns: repeat(5, 1fr);
  margin: 14px 0 24px;
}

.store-ribbon__item {
  align-items: center;
  background: #fff;
  border-color: #d9dee8;
  display: flex;
  gap: 12px;
  min-height: 72px;
  padding: 14px 18px 14px 58px;
}

.store-ribbon__item::before {
  background: #c80812;
  border-radius: 999px;
  height: 32px;
  left: 16px;
  opacity: .12;
  right: auto;
  top: 20px;
  width: 32px;
}

.store-ribbon strong {
  color: #171112;
  font-size: 14px;
  margin-bottom: 1px;
}

.store-ribbon span {
  color: #535c6b;
  font-size: 12px;
}

.store-shop-window {
  display: grid;
  gap: 24px;
  grid-template-columns: .95fr 1.3fr;
  margin-top: 22px;
}

.store-categories-panel,
.store-featured-panel {
  background: #fff;
  border: 1px solid #edf0f4;
  border-radius: 10px;
  padding: 18px;
}

.store-section__head {
  margin-bottom: 14px;
}

.store-section__head h2 {
  color: #171112;
  font-size: clamp(22px, 2vw, 28px);
}

.store-link {
  color: #c80812;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.circle-category-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(7, minmax(76px, 1fr));
}

.circle-category,
.circle-category:visited {
  color: #171112;
  display: block;
  text-align: center;
  text-decoration: none;
}

.circle-category span {
  align-items: center;
  aspect-ratio: 1;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .1)),
    url("assets/category-art-grid.png");
  background-position: var(--circle-position, center);
  background-size: 520px auto;
  border: 1px solid #eadfcf;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(67, 25, 20, .08);
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 950;
  justify-content: center;
  margin: 0 auto 8px;
  max-width: 88px;
  overflow: hidden;
  width: 100%;
}

.circle-category--sparkles { --circle-position: 0% 0%; }
.circle-category--velas { --circle-position: 48% 0%; }
.circle-category--fumaca { --circle-position: 100% 0%; }
.circle-category--bastao { --circle-position: 0% 100%; }
.circle-category--cha { --circle-position: 48% 100%; }
.circle-category--kits { --circle-position: 100% 100%; }

.circle-category--novo span {
  background: #c80812;
  border: 6px solid #fff2f2;
}

.circle-category strong {
  display: block;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.15;
}

.circle-category:hover span {
  box-shadow: 0 14px 32px rgba(200, 8, 18, .18);
  transform: translateY(-4px) scale(1.03);
}

.store-mini-button {
  align-items: center;
  border: 1px solid #d9dee8;
  border-radius: 8px;
  color: #171112;
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  margin-top: 18px;
  min-height: 42px;
  padding: 0 14px;
  text-decoration: none;
}

.aurora-featured-products {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.aurora-featured-card {
  background: #fff;
  border: 1px solid #d9dee8;
  border-radius: 10px;
  min-height: 252px;
  padding: 12px;
  position: relative;
  text-align: center;
  transition: box-shadow .18s ease, transform .18s ease;
}

.aurora-featured-card:hover {
  box-shadow: 0 18px 40px rgba(67, 25, 20, .12);
  transform: translateY(-4px);
}

.aurora-featured-card__heart {
  align-items: center;
  background: #fff;
  border: 1px solid #d9dee8;
  border-radius: 50%;
  color: #535c6b;
  display: inline-flex;
  font-size: 20px;
  height: 28px;
  justify-content: center;
  position: absolute;
  right: 9px;
  text-decoration: none;
  top: 9px;
  width: 28px;
  z-index: 2;
}

.aurora-featured-card__media {
  align-items: center;
  aspect-ratio: 1.35;
  background: #fbf6ed;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  overflow: hidden;
}

.aurora-featured-card__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.aurora-featured-card h3 {
  font-size: 12px;
  font-weight: 950;
  line-height: 1.22;
  margin: 0 0 8px;
  min-height: 30px;
}

.aurora-featured-card h3 a {
  color: #171112;
  text-decoration: none;
}

.aurora-featured-card__price {
  color: #171112;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.1;
}

.aurora-featured-card small {
  color: #0f8f56;
  display: block;
  font-size: 11px;
  font-weight: 900;
  margin: 4px 0 10px;
}

.aurora-featured-card__button {
  align-items: center;
  border-radius: 6px;
  display: flex;
  font-size: 12px;
  font-weight: 950;
  justify-content: center;
  min-height: 34px;
  padding: 0 8px;
  text-decoration: none;
}

.promo-strip-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  margin: 24px 0;
}

.promo-strip,
.promo-strip:visited {
  background:
    linear-gradient(90deg, #c80812 0 38%, rgba(255, 255, 255, .70) 72%),
    url("assets/category-art-grid.png");
  background-position: center;
  background-size: cover;
  border: 1px solid #eadfcf;
  border-radius: 10px;
  color: #fff;
  min-height: 122px;
  overflow: hidden;
  padding: 22px 28px;
  text-decoration: none;
}

.promo-strip--kits {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96) 0 43%, rgba(255, 255, 255, .45) 70%),
    url("assets/category-art-grid.png");
  background-position: right center;
  color: #c80812;
}

.promo-strip h2 {
  color: inherit;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 950;
  line-height: 1;
  margin: 0 0 5px;
}

.promo-strip p {
  color: inherit;
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 16px;
}

.promo-strip span {
  background: #fff;
  border-radius: 6px;
  color: #c80812;
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  min-height: 36px;
  padding: 9px 18px;
}

.promo-strip--kits span {
  background: #c80812;
  color: #fff;
}

.aurora-product-marquee {
  border-radius: 10px;
  margin: 22px 0;
}

.compact-proof-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.site-footer {
  background: #fff;
  border-top: 1px solid #edf0f4;
  color: #535c6b;
}

.site-footer::before {
  display: none;
}

.aurora-footer {
  grid-template-columns: .8fr .9fr .9fr;
  padding-top: 28px;
}

.aurora-footer strong {
  color: #c80812;
}

.aurora-footer span,
.aurora-footer a {
  color: #535c6b;
}

.aurora-footer__button,
.aurora-footer__button:visited {
  background: #c80812;
  color: #fff;
}

.aurora-footer-badges {
  background: #fff;
  border: 1px solid #edf0f4;
}

.aurora-footer-badges strong {
  color: #171112;
}

.aurora-footer-badges span {
  background: #fbf6ed;
  border-color: #eadfcf;
  color: #171112;
}

.site-info {
  color: #535c6b;
}

@media (max-width: 1080px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .store-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-grid,
  .store-legal-strip,
  .account-hero,
  .signup-strip {
    grid-template-columns: 1fr;
  }

  .aurora-header-actions {
    grid-column: 1 / -1;
    margin: 12px 0 0;
    max-width: none;
  }

  .aurora-smart-search {
    clear: both;
    float: none;
    margin: 12px 0 0;
    max-width: none;
    width: 100%;
  }

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

  .aurora-footer,
  .aurora-footer-badges {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .store-hero__badges,
  .steps-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .aurora-product-marquee__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .aurora-product-marquee__head h2 {
    text-align: left;
  }

  .store-section__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .woocommerce-account:not(.logged-in) #customer_login {
    grid-template-columns: 1fr;
  }

  .account-hero__panel {
    align-self: stretch;
  }
}

@media (max-width: 568px) {
  .aurora-topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 8px;
    padding-top: 8px;
  }

  .site-header {
    padding-top: 14px;
    position: static;
  }

  .site-branding .site-title {
    font-size: 24px;
  }

  .aurora-branding {
    float: none;
    max-width: none;
  }

  .aurora-branding__logo {
    height: 64px;
    width: 64px;
  }

  .aurora-branding__text strong {
    font-size: 21px;
  }

  .store-livebar {
    border-radius: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .store-hero {
    background-position: 62% center;
    min-height: 560px;
  }

  .store-hero__copy {
    padding: 30px 20px;
  }

  .store-hero h1 {
    font-size: 47px;
  }

  .store-hero p {
    font-size: 16px;
  }

  .store-actions {
    flex-direction: column;
  }

  .store-button {
    width: 100%;
  }

  .account-hero {
    min-height: 430px;
    padding: 24px 18px;
  }

  .account-hero h1 {
    font-size: 36px;
  }

  .account-hero p {
    font-size: 15px;
  }

  .account-hero__badges {
    flex-direction: column;
  }

  .account-hero__badges span {
    text-align: center;
  }

  .store-ribbon,
  .category-grid,
  .department-grid {
    grid-template-columns: 1fr;
  }

  .aurora-header-actions {
    grid-template-columns: 1fr;
  }

  .signup-strip .store-button {
    width: 100%;
  }

  .category-card {
    min-height: 138px;
  }

  .aurora-slide-product {
    grid-template-columns: 86px 168px;
    min-height: 112px;
  }

  .aurora-product-marquee::before,
  .aurora-product-marquee::after {
    width: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1080px) {
  .site-header .col-full {
    align-items: stretch;
  }

  .aurora-branding,
  .aurora-smart-search,
  .aurora-header-actions {
    flex: 1 1 100%;
  }

  .aurora-header-actions {
    grid-template-columns: repeat(3, 1fr);
  }

  .store-shop-window,
  .promo-strip-grid,
  .compact-proof-grid {
    grid-template-columns: 1fr;
  }

  .circle-category-grid {
    grid-template-columns: repeat(4, minmax(76px, 1fr));
  }

  .aurora-featured-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 568px) {
  .aurora-topbar__inner {
    align-items: center;
    gap: 4px;
  }

  .aurora-topbar__inner span,
  .aurora-topbar__inner a {
    padding: 0;
  }

  .aurora-branding__logo {
    height: 68px;
    width: 68px;
  }

  .aurora-branding__text strong {
    font-size: 24px;
  }

  .aurora-header-actions {
    grid-template-columns: repeat(3, 1fr);
  }

  .aurora-header-actions a {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .store-hero {
    min-height: max(700px, 88vh);
    width: 100dvw;
  }

  .aurora-hero-shader {
    opacity: 1;
  }

  .store-hero h1 {
    font-size: clamp(43px, 12vw, 58px);
  }

  .store-hero__copy {
    padding: 68px 20px 92px;
  }

  .store-hero__trust {
    font-size: 12px;
    margin-bottom: 26px;
    padding: 10px 15px;
  }

  .store-hero p {
    font-size: 17px;
    margin-top: 24px;
  }

  .store-hero .store-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
    width: min(100%, 310px);
  }

  .circle-category-grid {
    grid-template-columns: repeat(3, minmax(74px, 1fr));
  }

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

  .promo-strip {
    min-height: 150px;
  }
}

@keyframes aurora-shader-reveal {
  from {
    filter: opacity(0) blur(10px);
  }
  to {
    filter: opacity(1) blur(0);
  }
}

@keyframes aurora-content-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aurora-light-sweep {
  0%,
  45% {
    transform: translateX(-100%);
  }
  70%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes aurora-scroll-dot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(17px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-hero__copy [data-hero-reveal],
  .store-hero .store-actions {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* Header and responsive layout refinement */
.site-header {
  padding-top: 12px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .col-full {
  gap: 14px;
  max-width: 1320px;
}

.aurora-branding {
  flex-basis: 330px;
  max-width: 330px;
}

.aurora-branding__logo {
  height: 68px;
  width: 68px;
}

.aurora-branding__text {
  min-width: 0;
}

.aurora-branding__text strong {
  font-size: 27px;
  line-height: 1;
  max-width: none;
  white-space: nowrap;
}

.aurora-branding__text small {
  font-size: 12px;
  margin-top: 4px;
}

.aurora-smart-search input[type=search],
.aurora-smart-search .dgwt-wcas-search-input {
  height: 48px;
}

.aurora-header-actions {
  gap: 8px;
  grid-template-columns: repeat(3, 112px);
}

.aurora-header-actions a {
  min-height: 48px;
  padding: 7px 10px;
}

.aurora-header-actions svg {
  height: 21px;
  width: 21px;
}

.storefront-primary-navigation {
  margin-top: 12px;
}

.storefront-primary-navigation .col-full {
  min-height: 48px;
}

.main-navigation ul.menu > li > a,
.main-navigation ul.nav-menu > li > a {
  min-height: 48px;
  padding-bottom: 14px;
  padding-top: 14px;
}

.site-header-cart {
  display: none;
}

.woocommerce-active .site-header .main-navigation {
  float: none;
  margin-right: 0;
  width: 100%;
}

.store-hero {
  min-height: clamp(540px, 67vh, 680px);
}

.store-hero__copy {
  padding: 54px 30px 70px;
}

.store-hero__trust {
  margin-bottom: 22px;
  padding: 9px 18px;
}

.store-hero h1 {
  font-size: clamp(46px, 5vw, 72px);
  line-height: .98;
}

.store-hero p {
  font-size: clamp(17px, 1.25vw, 20px);
  margin-top: 20px;
  max-width: 740px;
}

.store-hero .store-actions {
  margin-top: 26px;
}

.store-hero .store-button {
  font-size: 15px;
  min-height: 52px;
  padding: 14px 24px;
}

.aurora-featured-products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#categorias-destaque {
  scroll-margin-top: 190px;
}

@media (max-width: 1080px) {
  .site-header .col-full {
    gap: 10px;
  }

  .aurora-branding {
    flex: 0 0 auto;
    max-width: none;
  }

  .aurora-smart-search {
    flex: 1 1 420px;
    margin: 0;
  }

  .aurora-header-actions {
    flex: 1 1 100%;
    margin: 0;
  }
}

@media (max-width: 700px) {
  .aurora-topbar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 30px;
    padding: 4px 10px;
  }

  .aurora-topbar__inner span,
  .aurora-topbar__inner a {
    font-size: 10px;
    justify-content: center;
    line-height: 1.2;
    text-align: center;
  }

  .aurora-topbar__inner > :nth-child(2),
  .aurora-topbar__inner > :nth-child(4) {
    display: none;
  }

  .site-header {
    padding-top: 6px;
    position: sticky;
    top: 0;
  }

  .site-header .col-full {
    display: grid;
    gap: 5px 8px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .aurora-branding {
    align-self: center;
    justify-self: start;
    margin: 0;
    width: auto !important;
  }

  .aurora-branding__link {
    gap: 7px;
  }

  .aurora-branding__logo {
    height: 42px;
    width: 42px;
  }

  .aurora-branding__text strong {
    font-size: clamp(16px, 4.4vw, 19px);
    white-space: nowrap;
  }

  .aurora-branding__text {
    flex: 0 0 auto;
    width: auto;
  }

  .aurora-branding__text small {
    display: none;
  }

  .aurora-smart-search {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
    width: 100%;
  }

  .aurora-smart-search input[type=search],
  .aurora-smart-search .dgwt-wcas-search-input {
    height: 38px;
    min-height: 38px;
  }

  .aurora-header-actions {
    align-self: center;
    display: flex;
    gap: 3px;
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }

  .aurora-header-actions a {
    border: 0;
    min-height: 36px;
    min-width: 36px;
    padding: 7px;
  }

  .aurora-header-actions svg {
    height: 20px;
    width: 20px;
  }

  .aurora-header-actions span {
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
  }

  .storefront-primary-navigation {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .storefront-primary-navigation .col-full {
    min-height: 38px;
  }

  .menu-toggle {
    font-size: 12px;
    margin: 3px 0;
    min-height: 32px;
    padding: 5px 10px;
  }

  .store-hero {
    min-height: 470px;
  }

  .store-hero__copy {
    padding: 28px 18px 36px;
  }

  .store-hero__trust {
    font-size: 10px;
    margin-bottom: 16px;
    padding: 7px 10px;
  }

  .store-hero h1 {
    font-size: clamp(30px, 8.2vw, 38px);
    line-height: 1;
  }

  .store-hero p {
    font-size: 13px;
    line-height: 1.45;
    margin-top: 14px;
    max-width: 440px;
  }

  .store-hero .store-actions {
    align-items: stretch;
    flex-direction: row;
    gap: 8px;
    margin-top: 18px;
    width: min(100%, 410px);
  }

  .store-hero .store-button {
    flex: 1 1 0;
    font-size: 11px;
    min-height: 42px;
    padding: 10px 9px;
    width: auto;
  }

  .store-hero__scroll {
    display: none;
  }

  .store-ribbon {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 10px 0 18px;
  }

  .store-ribbon__item {
    min-height: 64px;
    padding: 10px;
  }

  .store-ribbon strong {
    font-size: 12px;
  }

  .store-ribbon span {
    font-size: 10px;
  }

  .circle-category-grid {
    gap: 12px 8px;
    grid-template-columns: repeat(3, minmax(70px, 1fr));
  }

  .circle-category span {
    max-width: 68px;
  }

  .circle-category strong {
    font-size: 10px;
  }

  .store-section__head h2 {
    font-size: 24px;
  }

  .aurora-featured-products {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aurora-featured-card {
    min-height: 220px;
    padding: 8px;
  }

  .aurora-featured-card h3 {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    font-size: 11px;
    min-height: 40px;
    overflow: hidden;
    overflow-wrap: normal;
    word-break: normal;
  }

  .aurora-featured-card__price {
    font-size: 16px;
  }

  .aurora-featured-card__button {
    font-size: 10px;
    line-height: 1.15;
    min-height: 36px;
    padding: 6px;
    width: 100%;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .product-showcase ul.products {
    display: grid !important;
    gap: 10px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .woocommerce ul.products::before,
  .woocommerce ul.products::after,
  .woocommerce-page ul.products::before,
  .woocommerce-page ul.products::after {
    display: none !important;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product,
  .product-showcase ul.products li.product {
    clear: none !important;
    float: none !important;
    margin: 0 !important;
    min-width: 0;
    padding: 8px 8px 10px;
    width: auto !important;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    font-size: 12px;
    line-height: 1.25;
    min-height: 45px;
    overflow: hidden;
    overflow-wrap: normal;
    word-break: normal;
  }

  .woocommerce ul.products li.product .price,
  .woocommerce-page ul.products li.product .price {
    font-size: 17px;
    overflow-wrap: normal;
    word-break: normal;
  }

  .woocommerce ul.products li.product .button,
  .woocommerce-page ul.products li.product .button {
    display: flex;
    font-size: 10px;
    justify-content: center;
    line-height: 1.15;
    min-height: 38px;
    overflow-wrap: normal;
    padding: 7px 5px;
    white-space: normal;
    width: 100%;
    word-break: normal;
  }

  .promo-strip {
    min-height: 118px;
    padding: 18px;
  }

  .promo-strip h2 {
    font-size: 25px;
  }

  #categorias-destaque {
    scroll-margin-top: 145px;
  }
}
