/*
Theme Name: HomeSpot Pop Store
Theme URI: https://homespot.com.ar/
Author: HomeSpot
Description: A bright WooCommerce storefront theme for HomeSpot, inspired by comic shop layouts with bold hero sections, product grids, promo badges, and a playful color palette.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: homespot
Tags: e-commerce, woocommerce, custom-logo, custom-menu, featured-images, responsive-layout
*/

:root {
  --hs-blue: #2d6cdf;
  --hs-green: #2eb872;
  --hs-yellow: #ffc107;
  --hs-pink: #e83d8c;
  --hs-orange: #ff8a00;
  --hs-purple: #6a4cff;
  --hs-dark: #1a237e;
  --hs-cream: #fff7f0;
  --hs-gray-100: #f2f2f2;
  --hs-gray-500: #9e9e9e;
  --hs-white: #ffffff;
  --hs-ink: #20233a;
  --hs-shadow: 0 18px 45px rgba(26, 35, 126, 0.14);
  --hs-radius-lg: 30px;
  --hs-radius-md: 20px;
  --hs-radius-sm: 14px;
  --hs-width: 1180px;
}

/* Clean storefront direction: orange + blue are the primary brand colors. */
:root {
  --hs-primary: var(--hs-orange);
  --hs-accent: var(--hs-blue);
  --hs-header-height: 76px;
  --hs-shadow: 0 16px 38px rgba(26, 35, 126, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body,
body * {
  font-family: "Roboto", Arial, Helvetica, sans-serif !important;
}

body {
  letter-spacing: 0.01em;
}

p,
li,
dd,
dt,
input,
select,
textarea {
  letter-spacing: 0.012em;
}

a,
button,
.button,
.hs-button,
.main-navigation a,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  letter-spacing: 0.025em;
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-title,
.entry-title,
.woocommerce-loop-product__title {
  letter-spacing: -0.015em;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 138, 0, 0.12), transparent 28rem),
    linear-gradient(180deg, #fffaf5 0%, var(--hs-cream) 42%, #ffffff 100%),
    var(--hs-cream);
  color: var(--hs-ink);
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a:hover,
a:focus {
  color: var(--hs-blue);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.skip-link:focus {
  clip: auto;
  clip-path: none;
  background: var(--hs-dark);
  color: var(--hs-white);
  height: auto;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: 1rem;
  width: auto;
  z-index: 9999;
}

.hs-container {
  margin: 0 auto;
  max-width: var(--hs-width);
  padding: 0 1.25rem;
  width: 100%;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(45, 108, 223, 0.12);
  box-shadow: 0 8px 24px rgba(26, 35, 126, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  min-height: var(--hs-header-height);
}

.site-branding {
  align-items: center;
  display: inline-flex;
  gap: 0.7rem;
  min-width: max-content;
}

.custom-logo-link img {
  max-height: 46px;
  width: auto;
}

.site-branding__mark {
  align-items: center;
  background: linear-gradient(135deg, var(--hs-primary), var(--hs-accent));
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(45, 108, 223, 0.18);
  color: var(--hs-white);
  display: inline-flex;
  font-size: 1.25rem;
  font-weight: 950;
  height: 48px;
  justify-content: center;
  letter-spacing: -0.06em;
  width: 48px;
}

.site-title {
  color: var(--hs-primary);
  display: block;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
}

.site-description {
  color: var(--hs-gray-500);
  display: none;
  font-size: 0.82rem;
  font-weight: 800;
  margin-top: 0.18rem;
  text-transform: uppercase;
}

.main-navigation {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.main-navigation ul {
  align-items: center;
  display: flex;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  border-radius: 999px;
  color: var(--hs-dark);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.65rem 0.8rem;
  white-space: nowrap;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  background: rgba(45, 108, 223, 0.1);
  box-shadow: none;
  color: var(--hs-primary);
}

.hs-header-actions {
  align-items: center;
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.hs-cart-link,
.hs-menu-toggle,
.hs-button,
.button,
.added_to_cart,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  align-items: center;
  background: linear-gradient(135deg, var(--hs-primary), #174eb7);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 15px 28px rgba(45, 108, 223, 0.22);
  color: var(--hs-white);
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  gap: 0.5rem;
  justify-content: center;
  line-height: 1.1;
  padding: 0.86rem 1.12rem;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hs-cart-link:hover,
.hs-button:hover,
.button:hover,
.added_to_cart:hover,
.wp-element-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  box-shadow: 0 18px 34px rgba(45, 108, 223, 0.28);
  color: var(--hs-white);
  transform: translateY(-2px);
}

.hs-button--accent {
  background: linear-gradient(135deg, var(--hs-accent), #ff6b00);
  box-shadow: 0 15px 28px rgba(255, 138, 0, 0.22);
}

.hs-button--light {
  background: var(--hs-white);
  color: var(--hs-dark);
}

.hs-button--light:hover {
  color: var(--hs-blue);
}

.hs-menu-toggle {
  display: none;
  padding: 0.75rem 0.9rem;
}

.site-main {
  overflow: hidden;
}

.hs-section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.hs-section--tight {
  padding: clamp(2rem, 4vw, 3.25rem) 0;
}

.hs-hero {
  padding: clamp(2.6rem, 6vw, 6rem) 0 clamp(3rem, 8vw, 6.5rem);
}

.hs-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
}

.hs-eyebrow {
  align-items: center;
  color: var(--hs-blue);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 950;
  gap: 0.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hs-eyebrow::before {
  background: var(--hs-green);
  border-radius: 50%;
  box-shadow: 14px 0 0 var(--hs-yellow), 28px 0 0 var(--hs-pink);
  content: "";
  height: 9px;
  width: 9px;
}

.hs-hero h1,
.entry-title {
  color: var(--hs-dark);
  font-size: clamp(2.6rem, 7vw, 5.9rem);
  font-weight: 1000;
  letter-spacing: -0.09em;
  line-height: 0.92;
  margin: 0.45rem 0 1rem;
}

.hs-hero p {
  color: #4f536f;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin: 0 0 1.5rem;
  max-width: 38rem;
}

.hs-hero__actions,
.hs-section-heading__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hs-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.hs-tag {
  background: var(--hs-white);
  border: 1px solid rgba(26, 35, 126, 0.08);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(26, 35, 126, 0.06);
  color: var(--hs-dark);
  font-size: 0.9rem;
  font-weight: 850;
  padding: 0.45rem 0.78rem;
}

.hs-hero-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74)),
    radial-gradient(circle at 20% 0, rgba(255, 193, 7, 0.34), transparent 18rem);
  border: 1px solid rgba(26, 35, 126, 0.08);
  border-radius: var(--hs-radius-lg);
  box-shadow: var(--hs-shadow);
  padding: clamp(1rem, 3vw, 1.5rem);
  position: relative;
}

.hs-hero-card::before,
.hs-hero-card::after {
  border-radius: 999px;
  content: "";
  position: absolute;
  z-index: -1;
}

.hs-hero-card::before {
  background: var(--hs-pink);
  height: 9rem;
  right: -2.2rem;
  top: -2.2rem;
  width: 9rem;
}

.hs-hero-card::after {
  background: var(--hs-green);
  bottom: -1.2rem;
  height: 6rem;
  left: -1.6rem;
  width: 6rem;
}

.hs-hero-card__image {
  aspect-ratio: 1 / 0.86;
  background:
    linear-gradient(135deg, rgba(45, 108, 223, 0.12), rgba(106, 76, 255, 0.12)),
    var(--hs-gray-100);
  border-radius: 24px;
  display: grid;
  overflow: hidden;
  place-items: center;
}

.hs-hero-card__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hs-hero-card__placeholder {
  color: var(--hs-dark);
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 1000;
  letter-spacing: -0.1em;
}

.hs-hero-card__body {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem 0.3rem 0.2rem;
}

.hs-hero-card__body strong {
  color: var(--hs-dark);
  display: block;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hs-price-badge {
  background: var(--hs-yellow);
  border-radius: 999px;
  color: var(--hs-dark);
  font-weight: 950;
  padding: 0.55rem 0.85rem;
  white-space: nowrap;
}

.hs-feature-strip {
  margin-top: -2.2rem;
  position: relative;
  z-index: 2;
}

.hs-feature-strip__grid {
  background: var(--hs-white);
  border: 1px solid rgba(26, 35, 126, 0.08);
  border-radius: var(--hs-radius-lg);
  box-shadow: var(--hs-shadow);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.hs-feature {
  background: linear-gradient(180deg, #fff, rgba(255, 247, 240, 0.6));
  padding: 1.25rem;
}

.hs-feature__icon {
  align-items: center;
  border-radius: 16px;
  color: var(--hs-white);
  display: inline-flex;
  font-weight: 950;
  height: 44px;
  justify-content: center;
  margin-bottom: 0.75rem;
  width: 44px;
}

.hs-feature:nth-child(1) .hs-feature__icon { background: var(--hs-blue); }
.hs-feature:nth-child(2) .hs-feature__icon { background: var(--hs-green); }
.hs-feature:nth-child(3) .hs-feature__icon { background: var(--hs-orange); }
.hs-feature:nth-child(4) .hs-feature__icon { background: var(--hs-pink); }

.hs-feature h3 {
  color: var(--hs-dark);
  font-size: 1rem;
  line-height: 1.2;
  margin: 0 0 0.3rem;
}

.hs-feature p {
  color: #5d617b;
  font-size: 0.92rem;
  margin: 0;
}

.hs-section-heading {
  align-items: end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.hs-section-heading h2,
.woocommerce-products-header__title {
  color: var(--hs-dark);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 1000;
  letter-spacing: -0.075em;
  line-height: 0.98;
  margin: 0;
}

.hs-section-heading p {
  color: #5d617b;
  margin: 0.45rem 0 0;
  max-width: 40rem;
}

.hs-product-grid,
.woocommerce ul.products {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-product-card,
.woocommerce ul.products li.product {
  background: var(--hs-white);
  border: 1px solid rgba(26, 35, 126, 0.08);
  border-radius: var(--hs-radius-md);
  box-shadow: 0 12px 28px rgba(26, 35, 126, 0.08);
  display: flex;
  flex-direction: column;
  float: none;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease;
  width: auto;
}

.hs-product-card:hover,
.woocommerce ul.products li.product:hover {
  box-shadow: var(--hs-shadow);
  transform: translateY(-4px);
}

.hs-product-card__media,
.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1.05;
  background: linear-gradient(135deg, rgba(45, 108, 223, 0.1), rgba(232, 61, 140, 0.1));
  object-fit: cover;
  width: 100%;
}

.woocommerce ul.products li.product a img {
  margin: 0;
}

.hs-sale-badge,
.woocommerce span.onsale {
  background: var(--hs-yellow);
  border-radius: 999px;
  color: var(--hs-dark);
  font-size: 0.78rem;
  font-weight: 950;
  left: 0.85rem;
  line-height: 1;
  min-height: auto;
  padding: 0.45rem 0.65rem;
  position: absolute;
  top: 0.85rem;
  z-index: 2;
}

.hs-product-card__body,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
  margin-left: 1rem;
  margin-right: 1rem;
}

.hs-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem 0 1.05rem;
}

.hs-product-card h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--hs-dark);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.25;
  margin: 0 0 0.65rem;
  padding: 0;
}

.hs-product-card__meta {
  color: var(--hs-gray-500);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.hs-product-card__price,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--hs-green);
  display: block;
  font-size: 1.1rem;
  font-weight: 950;
  margin-bottom: 0.85rem;
}

.hs-product-card__price del,
.woocommerce .price del {
  color: var(--hs-gray-500);
  font-size: 0.92rem;
  opacity: 0.75;
}

.hs-product-card__price ins,
.woocommerce .price ins {
  color: var(--hs-green);
  text-decoration: none;
}

.hs-product-card .hs-button,
.woocommerce ul.products li.product .button {
  margin-top: auto;
}

.hs-category-band {
  background: var(--hs-dark);
  color: var(--hs-white);
  position: relative;
}

.hs-category-band::before {
  background:
    radial-gradient(circle, rgba(255, 193, 7, 0.26) 0 22%, transparent 24%),
    radial-gradient(circle, rgba(232, 61, 140, 0.22) 0 18%, transparent 20%);
  background-position: 0 0, 28px 28px;
  background-size: 56px 56px;
  content: "";
  inset: 0;
  opacity: 0.65;
  position: absolute;
}

.hs-category-band .hs-container {
  position: relative;
}

.hs-category-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.hs-category-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--hs-radius-md);
  color: var(--hs-white);
  min-height: 190px;
  overflow: hidden;
  padding: 1.25rem;
  position: relative;
}

.hs-category-card::after {
  background: var(--hs-accent, var(--hs-yellow));
  border-radius: 999px;
  bottom: -3rem;
  content: "";
  height: 9rem;
  opacity: 0.9;
  position: absolute;
  right: -2.2rem;
  width: 9rem;
}

.hs-category-card h3 {
  font-size: 1.45rem;
  line-height: 1.1;
  margin: 0 0 0.5rem;
}

.hs-category-card p {
  margin: 0;
  max-width: 15rem;
  opacity: 0.86;
}

.hs-showroom {
  background:
    linear-gradient(135deg, rgba(45, 108, 223, 0.96), rgba(106, 76, 255, 0.94)),
    var(--hs-blue);
  color: var(--hs-white);
}

.hs-showroom__grid {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.05fr 0.95fr;
}

.hs-showroom h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 1000;
  letter-spacing: -0.08em;
  line-height: 0.95;
  margin: 0 0 1rem;
}

.hs-showroom p {
  font-size: 1.08rem;
  margin: 0 0 1.2rem;
  opacity: 0.9;
}

.hs-contact-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--hs-radius-lg);
  padding: clamp(1.25rem, 4vw, 2rem);
}

.hs-contact-card dl {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.hs-contact-card dt {
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  opacity: 0.72;
  text-transform: uppercase;
}

.hs-contact-card dd {
  font-size: 1.05rem;
  font-weight: 850;
  margin: 0;
}

.hs-post-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.hs-post-card,
.entry-card,
.comments-area,
.comment-respond {
  background: var(--hs-white);
  border: 1px solid rgba(26, 35, 126, 0.08);
  border-radius: var(--hs-radius-md);
  box-shadow: 0 12px 28px rgba(26, 35, 126, 0.07);
  overflow: hidden;
}

.hs-post-card__body,
.entry-card__body {
  padding: 1.2rem;
}

.hs-post-card h3,
.entry-title--archive {
  color: var(--hs-dark);
  font-size: 1.2rem;
  line-height: 1.18;
  margin: 0 0 0.6rem;
}

.hs-post-card p,
.entry-summary,
.entry-content {
  color: #555975;
}

.hs-page-header {
  padding: clamp(2rem, 5vw, 4rem) 0 1.25rem;
}

.hs-content-area {
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}

.entry-card {
  margin-bottom: 1.25rem;
}

.entry-content {
  font-size: 1.04rem;
}

.entry-content a {
  color: var(--hs-blue);
  font-weight: 850;
}

.comment-list {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}

.comment-list .children {
  margin-top: 1rem;
}

.comment-body {
  border-bottom: 1px solid rgba(26, 35, 126, 0.08);
  padding: 1rem 0;
}

.comment-respond input:not([type="submit"]),
.comment-respond textarea {
  background: var(--hs-cream);
  border: 1px solid rgba(26, 35, 126, 0.14);
  border-radius: 14px;
  display: block;
  max-width: 100%;
  padding: 0.75rem 0.85rem;
  width: 100%;
}

.entry-content h2,
.entry-content h3 {
  color: var(--hs-dark);
  letter-spacing: -0.035em;
}

.site-footer {
  background: #10164f;
  color: var(--hs-white);
  padding: 3rem 0 1.4rem;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr repeat(3, 1fr);
}

.site-footer h2,
.site-footer h3 {
  margin-top: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: var(--hs-yellow);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 0.48rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2rem;
  padding-top: 1rem;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-result-count,
.woocommerce-ordering {
  color: #5d617b;
}

.woocommerce .quantity .qty,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
  background: var(--hs-white);
  border: 1px solid rgba(26, 35, 126, 0.16);
  border-radius: 14px;
  padding: 0.72rem 0.85rem;
}

.woocommerce div.product {
  background: var(--hs-white);
  border-radius: var(--hs-radius-lg);
  box-shadow: var(--hs-shadow);
  margin: 2rem 0 4rem;
  padding: clamp(1rem, 3vw, 2rem);
}

.woocommerce div.product div.images img {
  border-radius: var(--hs-radius-md);
}

@media (max-width: 980px) {
  .hs-menu-toggle {
    display: inline-flex;
  }

  .main-navigation {
    align-items: stretch;
    background: var(--hs-white);
    border: 1px solid rgba(26, 35, 126, 0.08);
    border-radius: 22px;
    box-shadow: var(--hs-shadow);
    display: none;
    left: 1.25rem;
    padding: 0.7rem;
    position: absolute;
    right: 1.25rem;
    top: calc(100% + 0.45rem);
  }

  .main-navigation.is-open {
    display: block;
  }

  .main-navigation ul {
    align-items: stretch;
    flex-direction: column;
  }

  .main-navigation a {
    display: flex;
  }

  .site-header__inner {
    position: relative;
  }

  .hs-hero__grid,
  .hs-showroom__grid {
    grid-template-columns: 1fr;
  }

  .hs-feature-strip__grid,
  .hs-product-grid,
  .woocommerce ul.products,
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hs-category-grid,
  .hs-post-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header__inner,
  .hs-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header__inner {
    gap: 0.8rem;
    padding: 0.75rem 0;
  }

  .hs-header-actions {
    width: 100%;
  }

  .hs-cart-link,
  .hs-menu-toggle {
    flex: 1;
  }

  .hs-feature-strip {
    margin-top: 0;
  }

  .hs-feature-strip__grid,
  .hs-product-grid,
  .woocommerce ul.products,
  .hs-post-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .hs-hero h1,
  .entry-title {
    letter-spacing: -0.075em;
  }
}

/* HomeSpot design pass: cleaner catalog, stronger mobile behavior. */
.hs-cart-link {
  background: linear-gradient(135deg, var(--hs-accent), #ff6b00);
  box-shadow: 0 14px 26px rgba(255, 138, 0, 0.22);
  min-width: max-content;
}

.hs-cart-link span {
  align-items: center;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  display: inline-flex;
  height: 1.4rem;
  justify-content: center;
  min-width: 1.4rem;
  padding: 0 0.35rem;
}

.hs-menu-toggle {
  background: var(--hs-primary);
  box-shadow: 0 12px 24px rgba(45, 108, 223, 0.2);
}

.hs-page-header .hs-container,
.hs-content-area .hs-container {
  max-width: 1120px;
}

.hs-page-header .entry-title,
.woocommerce-products-header__title {
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  margin-bottom: 0.6rem;
}

.woocommerce .woocommerce-result-count {
  color: #686b7f;
  font-size: 0.92rem;
  margin: 0 0 1.2rem;
}

.woocommerce .woocommerce-ordering {
  margin: 0 0 1.2rem;
}

.woocommerce .woocommerce-ordering select {
  background: var(--hs-white);
  border: 1px solid rgba(45, 108, 223, 0.16);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(26, 35, 126, 0.06);
  color: var(--hs-dark);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.7rem 2.2rem 0.7rem 1rem;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  align-items: stretch;
  clear: both;
  display: grid !important;
  gap: clamp(1rem, 2vw, 1.35rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.woocommerce ul.products[class*="columns-"] li.product,
.woocommerce-page ul.products[class*="columns-"] li.product,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none !important;
  margin: 0 !important;
  width: auto !important;
}

.woocommerce ul.products li.product {
  border-radius: 18px;
  min-height: 100%;
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: block;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1;
  border-bottom: 1px solid rgba(45, 108, 223, 0.08);
  object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--hs-dark);
  font-size: 0.95rem;
  min-height: 2.4em;
  padding-top: 1rem;
}

.woocommerce ul.products li.product .price {
  color: var(--hs-accent);
  font-size: 1rem;
}

.woocommerce ul.products li.product .button {
  background: linear-gradient(135deg, var(--hs-primary), #174eb7);
  font-size: 0.86rem;
  margin-bottom: 1rem;
  min-height: 42px;
  padding: 0.75rem 0.9rem;
  width: calc(100% - 2rem);
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 2rem;
  text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
  border: 0;
  display: inline-flex;
  gap: 0.35rem;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border-radius: 999px;
  color: var(--hs-dark);
  font-weight: 900;
  min-width: 2.2rem;
  padding: 0.5rem 0.75rem;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--hs-accent);
  color: var(--hs-white);
}

@media (min-width: 981px) and (max-width: 1160px) {
  .site-branding {
    max-width: 210px;
  }

  .main-navigation a {
    font-size: 0.84rem;
    padding-left: 0.55rem;
    padding-right: 0.55rem;
  }

  .hs-cart-link {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}

@media (max-width: 980px) {
  .site-header__inner {
    min-height: 70px;
  }

  .site-branding {
    flex: 1;
  }

  .site-title {
    font-size: 1.45rem;
  }

  .main-navigation {
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
  }

  .main-navigation a {
    border-radius: 14px;
    font-size: 1rem;
    padding: 0.9rem 1rem;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .hs-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    background: linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
  }

  .hs-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-header {
    position: sticky;
  }

  .site-header__inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 0.65rem 0;
  }

  .custom-logo-link img {
    max-height: 40px;
  }

  .site-branding__mark {
    height: 40px;
    width: 40px;
  }

  .hs-header-actions {
    flex: 0 0 auto;
    margin-left: auto;
    width: auto;
  }

  .hs-cart-link {
    min-height: 42px;
    padding: 0.72rem 0.85rem;
  }

  .hs-cart-link {
    font-size: 0;
  }

  .hs-cart-link::before {
    content: "Carrito";
    font-size: 0.9rem;
  }

  .hs-menu-toggle {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0.72rem 0.85rem;
  }

  .hs-page-header {
    padding-top: 1.6rem;
  }

  .hs-page-header .entry-title,
  .woocommerce-products-header__title {
    font-size: clamp(2.2rem, 13vw, 3.4rem);
  }

  .woocommerce .woocommerce-ordering,
  .woocommerce .woocommerce-result-count {
    float: none;
    width: 100%;
  }

  .woocommerce .woocommerce-ordering select {
    width: 100%;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .hs-product-grid {
    gap: 0.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.86rem;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    min-height: 2.6em;
  }

  .woocommerce ul.products li.product .price {
    font-size: 0.9rem;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .woocommerce ul.products li.product .button {
    font-size: 0.78rem;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    padding-left: 0.65rem;
    padding-right: 0.65rem;
    width: calc(100% - 1.5rem);
  }
}

@media (max-width: 420px) {
  .site-title {
    font-size: 1.25rem;
  }

  .hs-cart-link::before {
    content: "Cart";
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .hs-product-grid {
    grid-template-columns: 1fr;
  }
}

/* Rocket-style storefront structure requested for HomeSpot. */
body {
  background: #f3f3f3;
}

.hs-store-header {
  background: #0e0e12;
  border-bottom: 3px solid var(--hs-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.hs-store-header .site-header__inner {
  min-height: 68px;
}

.hs-store-header .site-title {
  color: var(--hs-white);
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.hs-store-header .site-branding__mark {
  background: var(--hs-primary);
  border-radius: 8px;
  box-shadow: none;
  height: 38px;
  width: 38px;
}

.hs-store-header .custom-logo-link img {
  background: var(--hs-white);
  border-radius: 6px;
  max-height: 38px;
  padding: 2px;
}

.hs-header-search {
  align-items: center;
  background: var(--hs-white);
  border-radius: 999px;
  display: flex;
  flex: 0 1 360px;
  height: 38px;
  overflow: hidden;
}

.hs-header-search input[type="search"] {
  background: transparent;
  border: 0;
  color: #1f1f28;
  flex: 1;
  font-size: 0.9rem;
  min-width: 0;
  outline: 0;
  padding: 0 0.9rem;
}

.hs-header-search button {
  background: var(--hs-primary);
  border: 0;
  color: var(--hs-white);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 950;
  height: 100%;
  padding: 0 0.95rem;
  text-transform: uppercase;
}

.hs-store-header .main-navigation {
  flex: 1 1 auto;
  justify-content: flex-end;
}

.hs-store-header .main-navigation a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  padding: 0.55rem 0.6rem;
  text-transform: uppercase;
}

.hs-store-header .main-navigation a:hover,
.hs-store-header .main-navigation .current-menu-item > a {
  background: rgba(255, 138, 0, 0.18);
  color: var(--hs-primary);
}

.hs-account-menu {
  position: relative;
}

.hs-account-toggle {
  align-items: center;
  background: var(--hs-primary);
  border: 0;
  border-radius: 999px;
  color: var(--hs-white);
  cursor: pointer;
  display: inline-flex;
  gap: 0.35rem;
  height: 42px;
  justify-content: center;
  min-width: 54px;
  padding: 0 0.8rem;
}

.hs-account-toggle__icon {
  display: inline-flex;
}

.hs-account-toggle__count {
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 950;
  height: 1.35rem;
  justify-content: center;
  min-width: 1.35rem;
  padding: 0 0.35rem;
}

.hs-account-dropdown {
  background: var(--hs-white);
  border-radius: 12px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  display: none;
  min-width: 210px;
  padding: 0.45rem;
  position: absolute;
  right: 0;
  top: calc(100% + 0.65rem);
  z-index: 120;
}

.hs-account-menu.is-open .hs-account-dropdown {
  display: grid;
}

.hs-account-dropdown a {
  border-radius: 9px;
  color: var(--hs-dark);
  font-size: 0.9rem;
  font-weight: 850;
  padding: 0.72rem 0.8rem;
}

.hs-account-dropdown a:hover {
  background: rgba(255, 138, 0, 0.12);
  color: var(--hs-primary);
}

.hs-store-header .hs-menu-toggle {
  background: var(--hs-accent);
  box-shadow: none;
}

.hs-rkt-home {
  background: #f3f3f3;
}

.hs-rkt-home .hs-container {
  max-width: 1040px;
}

.hs-rkt-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.28)),
    radial-gradient(circle at 75% 35%, rgba(45, 108, 223, 0.28), transparent 24rem),
    #101014;
  color: var(--hs-white);
  padding: clamp(2.6rem, 7vw, 5.8rem) 0;
}

.hs-rkt-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 0.9fr 1.1fr;
}

.hs-rkt-kicker {
  color: var(--hs-yellow);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.hs-rkt-hero h1 {
  color: var(--hs-white);
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  font-weight: 1000;
  letter-spacing: -0.07em;
  line-height: 0.9;
  margin: 0 0 0.85rem;
  max-width: 10ch;
  text-transform: uppercase;
}

.hs-rkt-hero p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.35rem;
  max-width: 34rem;
}

.hs-rkt-home .hs-button--accent,
.hs-rkt-hero .hs-button--accent {
  background: var(--hs-primary);
  box-shadow: 0 12px 24px rgba(255, 138, 0, 0.24);
}

.hs-rkt-hero__mosaic {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hs-rkt-hero__mosaic a {
  aspect-ratio: 1 / 1.15;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  overflow: hidden;
}

.hs-rkt-hero__mosaic img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hs-rkt-promo {
  align-items: center;
  background: #121217;
  color: var(--hs-white);
  display: grid;
  gap: 0.75rem;
  grid-template-columns: auto 1fr auto;
  margin-top: 1.6rem;
  min-height: 86px;
  padding: 1.1rem 1.35rem;
}

.hs-rkt-promo strong {
  color: var(--hs-primary);
  font-size: clamp(1.4rem, 4vw, 2.5rem);
  font-weight: 1000;
  line-height: 0.9;
  text-transform: uppercase;
}

.hs-rkt-promo span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 850;
  text-transform: uppercase;
}

.hs-rkt-promo a,
.hs-rkt-heading a {
  background: var(--hs-primary);
  border-radius: 3px;
  color: var(--hs-white);
  font-size: 0.78rem;
  font-weight: 950;
  padding: 0.55rem 0.75rem;
  text-transform: uppercase;
}

.hs-rkt-intro {
  background: var(--hs-white);
  margin-top: 0;
  padding: 1.8rem 1.25rem;
  text-align: center;
}

.hs-rkt-intro h2 {
  color: var(--hs-dark);
  font-size: clamp(1.45rem, 4vw, 2.2rem);
  letter-spacing: -0.05em;
  margin: 0 0 0.4rem;
}

.hs-rkt-intro p {
  color: #686b7f;
  margin: 0 auto;
  max-width: 640px;
}

.hs-rkt-categories {
  background: var(--hs-white);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: 1rem 1.25rem 2rem;
}

.hs-rkt-category {
  color: var(--hs-dark);
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  text-align: center;
}

.hs-rkt-category span {
  align-items: center;
  background: #f5f5f5;
  border: 3px solid var(--hs-white);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  color: var(--hs-primary);
  display: grid;
  font-size: 1.8rem;
  font-weight: 1000;
  height: 92px;
  overflow: hidden;
  place-items: center;
  width: 92px;
}

.hs-rkt-category img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hs-rkt-category strong {
  font-size: 0.82rem;
  line-height: 1.15;
}

.hs-rkt-section {
  background: var(--hs-white);
  margin-top: 1.4rem;
  padding: 1.6rem 1.25rem 2rem;
}

.hs-rkt-section--compact {
  padding-bottom: 1.4rem;
}

.hs-rkt-heading {
  align-items: center;
  border-bottom: 1px solid #e4e4e4;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.7rem;
}

.hs-rkt-heading--center {
  justify-content: center;
  text-align: center;
}

.hs-rkt-heading h2 {
  color: #1d1d22;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 1000;
  letter-spacing: -0.05em;
  margin: 0;
  text-transform: uppercase;
}

.hs-rkt-product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hs-rkt-product-grid .hs-product-card {
  border-radius: 4px;
  box-shadow: none;
  border: 1px solid #e2e2e2;
}

.hs-rkt-product-grid .hs-product-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.hs-rkt-product-grid .hs-product-card__media {
  aspect-ratio: 1 / 1.22;
}

.hs-rkt-product-grid .hs-product-card__body {
  padding: 0.75rem 0 0.85rem;
}

.hs-rkt-product-grid .hs-product-card h3 {
  font-size: 0.82rem;
  min-height: 2.6em;
}

.hs-rkt-product-grid .hs-product-card__meta {
  color: var(--hs-primary);
  font-size: 0.7rem;
}

.hs-rkt-product-grid .hs-product-card__price {
  color: var(--hs-primary);
  font-size: 0.92rem;
}

.hs-rkt-product-grid .hs-button {
  background: var(--hs-primary);
  border-radius: 3px;
  box-shadow: none;
  font-size: 0.72rem;
  min-height: 34px;
  padding: 0.55rem 0.65rem;
  text-transform: uppercase;
}

.hs-rkt-rail {
  display: grid;
  gap: 1rem;
  grid-auto-columns: minmax(130px, 1fr);
  grid-auto-flow: column;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.hs-rkt-mini-product {
  color: var(--hs-dark);
  display: grid;
  gap: 0.45rem;
  min-width: 130px;
}

.hs-rkt-mini-product img {
  aspect-ratio: 1 / 1.25;
  background: #f6f6f6;
  object-fit: cover;
  width: 100%;
}

.hs-rkt-mini-product span {
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
}

.hs-rkt-showroom {
  background: var(--hs-yellow);
  margin-top: 1.4rem;
  padding: 1.2rem;
}

.hs-rkt-showroom__headline {
  text-align: center;
}

.hs-rkt-showroom h2 {
  color: #231f20;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 1000;
  letter-spacing: -0.05em;
  margin: 0;
}

.hs-rkt-showroom p {
  margin: 0.25rem auto 1rem;
  max-width: 620px;
}

.hs-rkt-showroom__body {
  background: var(--hs-white);
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 1rem;
}

.hs-rkt-contact-card {
  align-content: start;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
}

.hs-rkt-contact-card strong {
  color: var(--hs-dark);
  font-size: 1.2rem;
}

.hs-rkt-contact-card span {
  color: #555;
  font-size: 0.92rem;
}

.hs-rkt-showroom__mosaic {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(4, 1fr);
}

.hs-rkt-showroom__mosaic img {
  aspect-ratio: 1 / 1.1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hs-rkt-ideas {
  background: var(--hs-white);
  margin-top: 1.4rem;
  padding: 1.6rem 1.25rem 2rem;
}

.hs-rkt-idea-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, 1fr);
}

.hs-rkt-idea-grid article {
  align-content: end;
  aspect-ratio: 1 / 0.72;
  background: linear-gradient(135deg, var(--hs-dark), var(--hs-accent));
  color: var(--hs-white);
  display: grid;
  padding: 1rem;
  position: relative;
}

.hs-rkt-idea-grid article:nth-child(2n) {
  background: linear-gradient(135deg, var(--hs-primary), var(--hs-pink));
}

.hs-rkt-idea-grid span {
  background: var(--hs-primary);
  color: var(--hs-white);
  font-size: 0.7rem;
  font-weight: 950;
  left: 0.7rem;
  padding: 0.25rem 0.4rem;
  position: absolute;
  text-transform: uppercase;
  top: 0.7rem;
}

.hs-rkt-idea-grid strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.hs-rkt-home .hs-post-grid {
  grid-template-columns: repeat(4, 1fr);
}

.hs-rkt-home .hs-post-card {
  border-radius: 0;
  box-shadow: none;
}

.hs-rkt-home .hs-post-card h3 {
  font-size: 0.98rem;
}

.hs-rkt-home .hs-post-card .hs-button {
  background: var(--hs-primary);
  color: var(--hs-white);
}

@media (max-width: 1100px) {
  .hs-header-search {
    flex-basis: 280px;
  }

  .hs-store-header .main-navigation a {
    font-size: 0.72rem;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
  }
}

@media (max-width: 980px) {
  .hs-store-header .site-header__inner {
    flex-wrap: wrap;
    padding: 0.7rem 0;
  }

  .hs-header-search {
    flex: 1 1 calc(100% - 120px);
    order: 3;
  }

  .hs-store-header .main-navigation {
    background: #17171d;
    border-color: rgba(255, 138, 0, 0.32);
    order: 4;
  }

  .hs-store-header .main-navigation a {
    color: var(--hs-white);
    font-size: 0.9rem;
  }

  .hs-rkt-hero__grid,
  .hs-rkt-showroom__body {
    grid-template-columns: 1fr;
  }

  .hs-rkt-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hs-rkt-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hs-rkt-home .hs-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hs-store-header .site-branding {
    min-width: 0;
  }

  .hs-store-header .site-title {
    font-size: 1.1rem;
  }

  .hs-account-toggle {
    height: 40px;
    min-width: 48px;
    padding: 0 0.65rem;
  }

  .hs-header-search {
    flex-basis: 100%;
    height: 40px;
    order: 5;
  }

  .hs-header-search button {
    font-size: 0;
    padding: 0 0.85rem;
  }

  .hs-header-search button::before {
    content: "Ir";
    font-size: 0.8rem;
  }

  .hs-rkt-hero {
    padding: 2.4rem 0;
  }

  .hs-rkt-hero__mosaic {
    grid-template-columns: repeat(3, 1fr);
  }

  .hs-rkt-promo {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

  .hs-rkt-heading {
    align-items: flex-start;
    gap: 0.75rem;
  }

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

  .hs-rkt-idea-grid,
  .hs-rkt-home .hs-post-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .hs-rkt-product-grid {
    gap: 0.75rem;
    grid-template-columns: 1fr;
  }
}

/* Final catalog polish: Roboto, solid orange actions, clean search row, fixed product grid. */
body,
button,
input,
select,
textarea {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

a:hover,
a:focus {
  color: var(--hs-primary);
}

.hs-button,
.button,
.added_to_cart,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.hs-button--accent,
.hs-rkt-product-grid .hs-button,
.hs-rkt-home .hs-button--accent,
.hs-rkt-hero .hs-button--accent,
.hs-rkt-promo a,
.hs-rkt-heading a,
.hs-account-toggle {
  background: var(--hs-primary) !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--hs-white) !important;
}

.hs-button:hover,
.button:hover,
.added_to_cart:hover,
.wp-element-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: #e87900 !important;
  color: var(--hs-white) !important;
  transform: translateY(-1px);
}

.hs-store-header {
  background: #101014;
  border-bottom: 2px solid var(--hs-primary);
}

.hs-store-header .site-header__inner {
  min-height: 58px;
}

.hs-store-header .main-navigation {
  flex: 1 1 auto;
  justify-content: center;
}

.hs-store-header .main-navigation ul {
  gap: 0.35rem;
}

.hs-store-header .main-navigation a {
  font-family: "Roboto", Arial, Helvetica, sans-serif !important;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: none;
}

.hs-store-header .site-title {
  font-family: "Roboto", Arial, Helvetica, sans-serif !important;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hs-store-header .site-branding {
  flex: 0 0 auto;
}

.hs-store-header .site-branding__text {
  color: var(--hs-white);
  display: inline-flex;
}

.hs-store-header .site-branding__text:hover,
.hs-store-header .site-branding__text:focus {
  color: var(--hs-white);
}

.hs-header-actions {
  margin-left: 0.5rem;
}

.hs-header-search-row {
  background: #17171d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.55rem 0 0.7rem;
}

.hs-header-search-row .hs-container {
  max-width: var(--hs-width);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.hs-header-search {
  border: 2px solid transparent;
  border-radius: 4px;
  display: flex;
  height: 44px;
  margin: 0;
  max-width: none;
  width: 100%;
}

.hs-header-search:focus-within {
  border-color: var(--hs-primary);
}

.hs-header-search input[type="search"] {
  font-size: 0.95rem;
  padding: 0 1rem;
}

.hs-header-search button {
  background: var(--hs-primary);
  min-width: 118px;
}

.hs-account-dropdown {
  border-radius: 4px;
}

.hs-rkt-hero {
  background: #101014;
}

.hs-rkt-idea-grid article,
.hs-rkt-idea-grid article:nth-child(2n) {
  background: var(--hs-accent);
}

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

.woocommerce ul.products,
.woocommerce-page ul.products {
  clear: both;
  display: grid !important;
  gap: 1.2rem !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  margin-top: 1.2rem !important;
  width: 100%;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(26, 35, 126, 0.08);
  clear: none !important;
  display: flex !important;
  flex-direction: column;
  float: none !important;
  margin: 0 !important;
  overflow: hidden;
  width: auto !important;
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1;
  background: #f7f7f7;
  border-bottom: 1px solid #eeeeee;
  margin: 0 !important;
  object-fit: cover;
  width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--hs-dark);
  display: -webkit-box;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.22;
  margin: 0.85rem 0.9rem 0.45rem !important;
  min-height: 2.45em;
  overflow: hidden;
  padding: 0 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.woocommerce ul.products li.product .price {
  color: var(--hs-primary) !important;
  font-size: 0.95rem;
  font-weight: 900;
  margin: 0 0.9rem 0.75rem !important;
  min-height: 1.35rem;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .added_to_cart {
  align-self: stretch;
  border-radius: 6px;
  font-size: 0.8rem;
  margin: auto 0.9rem 0.9rem !important;
  min-height: 38px;
  padding: 0.65rem 0.75rem;
  text-align: center;
  width: auto !important;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 0.75rem;
}

.woocommerce .woocommerce-ordering select {
  border-radius: 4px;
}

.hs-rkt-product-grid .hs-product-card {
  border-radius: 10px;
  display: flex;
  min-height: 100%;
}

.hs-product-card__media,
.hs-rkt-product-grid .hs-product-card__media {
  background: #f7f7f7;
}

.hs-rkt-product-grid .hs-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.hs-rkt-product-grid .hs-product-card h3 {
  display: -webkit-box;
  line-height: 1.22;
  min-height: 2.45em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hs-rkt-product-grid .hs-product-card__price {
  min-height: 1.35rem;
}

.hs-rkt-product-grid .hs-button,
.hs-rkt-product-grid .added_to_cart {
  margin-top: auto;
}

@media (max-width: 980px) {
  .hs-header-search {
    max-width: none;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .hs-store-header .site-header__inner {
    align-items: center;
    flex-wrap: wrap;
  }

  .hs-store-header .main-navigation {
    justify-content: flex-start;
  }

  .hs-header-search-row {
    padding: 0.5rem 0 0.6rem;
  }

  .hs-header-search {
    height: 42px;
  }

  .hs-header-search button {
    font-size: 0.78rem;
    min-width: 74px;
  }

  .hs-header-search button::before {
    content: none;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    gap: 0.9rem !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.84rem;
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .woocommerce ul.products li.product .price {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .woocommerce ul.products li.product .button,
  .woocommerce ul.products li.product .added_to_cart {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
}

@media (max-width: 420px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* Final typography pass across pages, products and footer. */
html,
body,
body *,
.woocommerce,
.woocommerce *,
.site-footer,
.site-footer *,
.entry-content,
.entry-content * {
  font-family: "Roboto", Arial, Helvetica, sans-serif !important;
}

body,
.woocommerce,
.entry-content,
.site-footer {
  letter-spacing: 0.018em;
}

p,
li,
dd,
dt,
label,
input,
select,
textarea,
.entry-content,
.woocommerce-product-details__short-description,
.woocommerce-Tabs-panel,
.site-footer p,
.site-footer li {
  letter-spacing: 0.02em !important;
}

a,
button,
.button,
.hs-button,
.main-navigation a,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.site-footer a {
  letter-spacing: 0.035em !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title,
.entry-title--archive,
.woocommerce-loop-product__title,
.product_title,
.site-footer h2,
.site-footer h3 {
  font-family: "Roboto", Arial, Helvetica, sans-serif !important;
  letter-spacing: 0.01em !important;
}

.hs-page-header {
  padding: clamp(2.2rem, 5vw, 4.25rem) 0 1.35rem;
}

.hs-page-header .hs-eyebrow {
  display: none !important;
}

.hs-page-header .entry-title,
.woocommerce-products-header__title,
.product_title {
  color: var(--hs-dark);
  font-size: clamp(3rem, 8vw, 5.8rem);
  font-weight: 900;
  line-height: 0.95;
  margin: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.hs-product-card h3,
.hs-rkt-product-grid .hs-product-card h3 {
  letter-spacing: 0.018em !important;
}

.woocommerce ul.products li.product .price,
.hs-product-card__price,
.site-footer {
  letter-spacing: 0.02em !important;
}

.hs-cotillon-hero {
  background:
    radial-gradient(circle at 12px 12px, rgba(255, 138, 0, 0.18) 1px, transparent 1.5px),
    #111116;
  background-size: 18px 18px;
  border-bottom: 3px solid var(--hs-primary);
  color: var(--hs-white);
  margin: 0;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.hs-cotillon-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
}

.hs-cotillon-hero__copy span {
  color: var(--hs-yellow);
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.06em !important;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.hs-cotillon-hero__copy h2 {
  color: var(--hs-white);
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 900;
  letter-spacing: 0.01em !important;
  line-height: 0.95;
  margin: 0 0 0.9rem;
  max-width: 11ch;
  text-transform: uppercase;
}

.hs-cotillon-hero__copy p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 1.35rem;
  max-width: 34rem;
}

.hs-cotillon-hero__art {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  transform: rotate(-1deg);
}

.hs-cotillon-hero__tile {
  aspect-ratio: 1 / 1.25;
  background: var(--hs-white);
  border: 4px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.hs-cotillon-hero__tile:nth-child(2),
.hs-cotillon-hero__tile:nth-child(4) {
  transform: translateY(1.2rem);
}

.hs-cotillon-hero__tile img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hs-cotillon-hero__tile--placeholder {
  align-items: center;
  color: var(--hs-primary);
  display: grid;
  font-size: 1.2rem;
  font-weight: 900;
  justify-items: center;
  padding: 1rem;
  text-align: center;
}

@media (max-width: 980px) {
  .hs-cotillon-hero__grid {
    grid-template-columns: 1fr;
  }

  .hs-cotillon-hero__copy h2 {
    max-width: 14ch;
  }
}

@media (max-width: 640px) {
  .hs-cotillon-hero {
    padding: 2rem 0 2.4rem;
  }

  .hs-cotillon-hero__art {
    gap: 0.55rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none;
  }

  .hs-cotillon-hero__tile:nth-child(2),
  .hs-cotillon-hero__tile:nth-child(4) {
    transform: none;
  }
}

.hs-promo-showcase {
  padding: clamp(1.2rem, 3vw, 2rem) 0;
}

.hs-promo-showcase__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hs-promo-card {
  align-content: space-between;
  background: #18181f;
  border: 1px solid rgba(255, 138, 0, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  color: var(--hs-white);
  display: grid;
  gap: 1.1rem;
  min-height: 420px;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.45rem);
  position: relative;
}

.hs-promo-card::before {
  background: radial-gradient(circle, rgba(255, 138, 0, 0.22) 0 1px, transparent 1.5px);
  background-size: 14px 14px;
  content: "";
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
}

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

.hs-promo-card__copy span {
  color: var(--hs-yellow);
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em !important;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.hs-promo-card__copy h2 {
  color: var(--hs-white);
  font-size: clamp(1.5rem, 2.6vw, 2.45rem);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 0.65rem;
  text-transform: uppercase;
}

.hs-promo-card__copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
  margin: 0 0 1rem;
}

.hs-promo-card .hs-button {
  border-radius: 5px;
  min-height: 38px;
  padding: 0.7rem 0.95rem;
}

.hs-promo-card .hs-cotillon-hero__art {
  gap: 0.45rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  transform: none;
}

.hs-promo-card .hs-cotillon-hero__tile {
  aspect-ratio: 1 / 1.25;
  border-width: 2px;
}

.hs-promo-card .hs-cotillon-hero__tile:nth-child(2),
.hs-promo-card .hs-cotillon-hero__tile:nth-child(4) {
  transform: translateY(0.65rem);
}

.hs-promo-card--school {
  background: #111a31;
  border-color: rgba(45, 108, 223, 0.4);
}

.hs-promo-card--paper {
  background: #24142a;
  border-color: rgba(232, 61, 140, 0.36);
}

.hs-promo-illustration {
  min-height: 150px;
  position: relative;
}

.hs-promo-illustration--pencils {
  align-items: end;
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  padding-bottom: 0.5rem;
}

.hs-promo-illustration--pencils span {
  background: var(--pencil-color, var(--hs-primary));
  border-radius: 999px 999px 4px 4px;
  box-shadow: inset 0 -18px 0 rgba(255, 255, 255, 0.18), 0 16px 28px rgba(0, 0, 0, 0.22);
  display: block;
  height: 132px;
  position: relative;
  transform: rotate(var(--tilt, 0deg));
  width: 24px;
}

.hs-promo-illustration--pencils span::before {
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 26px solid #f4d6a5;
  content: "";
  left: 0;
  position: absolute;
  top: 100%;
}

.hs-promo-illustration--pencils span::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 9px solid #222;
  content: "";
  left: 8px;
  position: absolute;
  top: calc(100% + 17px);
}

.hs-promo-illustration--pencils span:nth-child(1) { --pencil-color: var(--hs-primary); --tilt: -10deg; }
.hs-promo-illustration--pencils span:nth-child(2) { --pencil-color: var(--hs-yellow); --tilt: -4deg; }
.hs-promo-illustration--pencils span:nth-child(3) { --pencil-color: var(--hs-green); --tilt: 2deg; }
.hs-promo-illustration--pencils span:nth-child(4) { --pencil-color: var(--hs-pink); --tilt: 7deg; }
.hs-promo-illustration--pencils span:nth-child(5) { --pencil-color: var(--hs-blue); --tilt: 12deg; }

.hs-promo-illustration--paper span {
  background: var(--hs-white);
  border-radius: 10px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
  display: block;
  height: 118px;
  left: 50%;
  position: absolute;
  top: 20px;
  transform: translateX(-50%) rotate(var(--paper-tilt, 0deg));
  width: 155px;
}

.hs-promo-illustration--paper span::before,
.hs-promo-illustration--paper span::after {
  content: "";
  left: 18px;
  position: absolute;
}

.hs-promo-illustration--paper span::before {
  background: var(--hs-primary);
  border-radius: 999px;
  height: 14px;
  top: 20px;
  width: 76px;
}

.hs-promo-illustration--paper span::after {
  background:
    linear-gradient(var(--hs-blue), var(--hs-blue)) 0 0 / 88px 7px no-repeat,
    linear-gradient(var(--hs-pink), var(--hs-pink)) 0 18px / 112px 7px no-repeat,
    linear-gradient(var(--hs-green), var(--hs-green)) 0 36px / 70px 7px no-repeat;
  height: 48px;
  top: 52px;
  width: 120px;
}

.hs-promo-illustration--paper span:nth-child(1) { --paper-tilt: -8deg; margin-left: -42px; opacity: 0.82; }
.hs-promo-illustration--paper span:nth-child(2) { --paper-tilt: 5deg; margin-left: 34px; opacity: 0.9; }
.hs-promo-illustration--paper span:nth-child(3) { --paper-tilt: 0deg; margin-left: 0; top: 44px; }

@media (max-width: 980px) {
  .hs-promo-showcase__grid {
    grid-template-columns: 1fr;
  }

  .hs-promo-card {
    min-height: auto;
  }
}

.hs-promo-carousel {
  padding: 0;
  position: relative;
}

.hs-promo-carousel > .hs-promo-carousel__inner {
  position: relative;
}

.hs-promo-carousel__inner {
  margin: 0;
  max-width: none;
  width: 100%;
}

.hs-promo-carousel__viewport {
  overflow: hidden;
}

.hs-promo-carousel__track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.hs-promo-carousel .hs-promo-card {
  align-items: center;
  border: 0;
  box-shadow: none;
  display: grid;
  flex: 0 0 100%;
  gap: clamp(1.5rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  min-height: clamp(360px, 48vw, 520px);
  padding: clamp(2rem, 5vw, 4.5rem) max(1.25rem, calc((100vw - var(--hs-width)) / 2 + 1.25rem));
}

.hs-promo-carousel .hs-promo-card__copy {
  max-width: 560px;
}

.hs-promo-carousel .hs-promo-card__copy span {
  font-size: 0.95rem;
}

.hs-promo-carousel .hs-promo-card__copy h2 {
  font-size: clamp(2.6rem, 6vw, 5.25rem);
  line-height: 0.95;
  max-width: 11ch;
}

.hs-promo-carousel .hs-promo-card__copy p {
  font-size: 1rem;
  max-width: 36rem;
}

.hs-promo-carousel .hs-cotillon-hero__art {
  gap: 0.85rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  transform: rotate(-1deg);
}

.hs-promo-carousel .hs-cotillon-hero__tile {
  border-width: 4px;
}

.hs-promo-carousel .hs-promo-illustration {
  min-height: clamp(210px, 27vw, 320px);
}

.hs-promo-carousel .hs-promo-illustration--pencils {
  align-items: center;
}

.hs-promo-carousel .hs-promo-illustration--pencils span {
  height: clamp(150px, 19vw, 240px);
  width: clamp(24px, 3vw, 38px);
}

.hs-promo-carousel .hs-promo-illustration--paper span {
  height: clamp(120px, 17vw, 190px);
  width: clamp(165px, 24vw, 270px);
}

.hs-promo-carousel__arrow {
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  border: 0;
  border-radius: 999px;
  color: var(--hs-white);
  cursor: pointer;
  display: flex;
  font-size: 0;
  height: 3.5rem;
  line-height: 1;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  place-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5rem;
  z-index: 3;
}

.hs-promo-carousel__arrow::before {
  align-items: center;
  display: flex;
  font-size: 2.7rem;
  font-weight: 400;
  height: 100%;
  justify-content: center;
  line-height: 1;
  margin-top: -0.08em;
  width: 100%;
}

.hs-promo-carousel__arrow--prev::before {
  content: "‹";
}

.hs-promo-carousel__arrow--next::before {
  content: "›";
}

.hs-promo-carousel__arrow:hover {
  background: var(--hs-primary);
}

.hs-promo-carousel__arrow--prev {
  left: 0.5rem;
}

.hs-promo-carousel__arrow--next {
  right: 0.5rem;
}

.hs-promo-carousel__dots {
  bottom: 1.25rem;
  display: flex;
  gap: 0.45rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 4;
}

.hs-promo-carousel__dots button {
  background: rgba(255, 255, 255, 0.28);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 0.65rem;
  padding: 0;
  width: 0.65rem;
}

.hs-promo-carousel__dots button[aria-current="true"] {
  background: var(--hs-primary);
  width: 1.55rem;
}

@media (max-width: 980px) {
  .hs-promo-carousel .hs-promo-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hs-promo-carousel .hs-promo-card__copy h2 {
    max-width: 14ch;
  }
}

@media (max-width: 640px) {
  .hs-promo-carousel .hs-promo-card {
    padding: 2rem 1.25rem 4rem;
  }

  .hs-promo-carousel .hs-promo-card__copy h2 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .hs-promo-carousel__arrow {
    display: none;
  }

  .hs-promo-carousel .hs-cotillon-hero__art {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none;
  }
}

/* Redes, newsletter y footer renovado. */
.hs-social-strip {
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  padding: 1.15rem 0;
}

.hs-social-strip__inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.hs-social-strip__inner > span {
  color: var(--hs-dark);
  font-size: 1rem;
  font-weight: 800;
}

.hs-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hs-social-links a {
  align-items: center;
  background: #f7f7f7;
  border: 1px solid #e7e7e7;
  border-radius: 999px;
  color: var(--hs-dark);
  display: inline-flex;
  font-weight: 800;
  gap: 0.5rem;
  padding: 0.65rem 0.95rem;
}

.hs-social-links a:hover {
  background: var(--hs-primary);
  border-color: var(--hs-primary);
  color: #ffffff;
}

.hs-social-links span {
  align-items: center;
  background: var(--hs-primary);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-weight: 900;
  height: 1.5rem;
  justify-content: center;
  width: 1.5rem;
}

.hs-social-links a:hover span {
  background: #ffffff;
  color: var(--hs-primary);
}

.hs-newsletter {
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  padding: clamp(1.75rem, 4vw, 3rem) 0;
}

.hs-newsletter__grid {
  align-items: center;
  display: grid;
  gap: clamp(1.25rem, 4vw, 3rem);
  grid-template-columns: 0.78fr 1.22fr;
}

.hs-newsletter span {
  color: var(--hs-primary);
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em !important;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.hs-newsletter h2 {
  color: #22222a;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.18;
  margin: 0;
  max-width: 25rem;
}

.hs-newsletter__fields {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.hs-newsletter input {
  background: #ffffff;
  border: 1px solid #d9d9df;
  border-radius: 3px;
  color: #22222a;
  min-height: 52px;
  padding: 0 1rem;
  width: 100%;
}

.hs-newsletter button {
  background: var(--hs-primary);
  border: 0;
  border-radius: 3px;
  color: #ffffff;
  cursor: pointer;
  font-weight: 900;
  min-height: 52px;
  padding: 0 1.25rem;
  text-transform: uppercase;
}

.hs-newsletter p {
  color: #777784;
  font-size: 0.88rem;
  margin: 0.75rem 0 0;
}

.site-footer {
  background: #17171d;
  color: #ffffff;
  padding: clamp(2.2rem, 5vw, 3.5rem) 0 1.2rem;
}

.site-footer__grid {
  gap: clamp(1.5rem, 5vw, 4rem);
  grid-template-columns: 1.35fr 0.7fr 1fr;
}

.site-footer h2,
.site-footer h3 {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.02em !important;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: var(--hs-primary);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.54);
}

@media (max-width: 780px) {
  .hs-social-strip__inner,
  .hs-newsletter__grid {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .hs-social-strip__inner {
    flex-direction: column;
  }

  .hs-newsletter__fields {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.hs-scroll-top {
  align-items: center;
  background: var(--hs-primary);
  border: 0;
  border-radius: 999px;
  bottom: 6.8rem;
  box-shadow: 0 14px 30px rgba(255, 138, 0, 0.3);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-size: 1.35rem;
  font-weight: 900;
  height: 3.1rem;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 2.55rem;
  transform: translateY(0.75rem);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  width: 3.1rem;
  z-index: 9998;
}

.hs-scroll-top:hover {
  background: #e87900;
}

.hs-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hs-scroll-top span {
  line-height: 1;
  margin-top: -0.08em;
}

@media (max-width: 640px) {
  .hs-scroll-top {
    bottom: 6.2rem;
    right: 2.15rem;
  }
}

.hs-local-section {
  background: #f7f7f7;
  margin: 0;
  padding: clamp(2rem, 5vw, 4rem) 0 0;
}

.hs-local-section__heading {
  background: var(--hs-primary);
  color: #ffffff;
  padding: clamp(1.5rem, 4vw, 2.6rem) clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

.hs-local-section__heading h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 0.65rem;
}

.hs-local-section__heading p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 auto;
  max-width: 760px;
}

.hs-local-section__photo {
  min-height: clamp(420px, 56vw, 650px);
  overflow: hidden;
  position: relative;
}

.hs-local-section__photo > img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.hs-local-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  left: clamp(1.25rem, 6vw, 4rem);
  max-width: 360px;
  padding: clamp(1.25rem, 3vw, 2rem);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.hs-local-card span {
  color: var(--hs-primary);
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.07em !important;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.hs-local-card h3 {
  color: var(--hs-dark);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.12;
  margin: 0 0 1rem;
}

.hs-local-card ul {
  color: #43434f;
  list-style: none;
  margin: 0 0 1.3rem;
  padding: 0;
}

.hs-local-card li + li {
  margin-top: 0.45rem;
}

.hs-local-card__divider {
  background: rgba(26, 35, 126, 0.14);
  height: 1px;
  margin: 1rem 0 !important;
  width: 100%;
}

.hs-local-card .hs-button {
  border-radius: 999px;
  min-height: 44px;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.hs-catalog-main {
  background: #f7f7f7;
}

.hs-catalog-content {
  padding-top: clamp(1.5rem, 4vw, 3rem);
}

.hs-catalog-layout {
  align-items: start;
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  grid-template-columns: 230px minmax(0, 1fr);
}

.hs-catalog-sidebar {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(26, 35, 126, 0.06);
  margin-bottom: calc(-3rem - 3px);
  margin-top: 0 !important;
  padding: 1.15rem;
  position: sticky;
  top: 9.5rem;
  transform: translateY(calc(-3rem - 3px)) !important;
}

.hs-catalog-sidebar h2 {
  color: var(--hs-dark);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.035em !important;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.hs-catalog-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-catalog-sidebar li + li {
  border-top: 1px solid #eeeeee;
}

.hs-catalog-sidebar a {
  color: #20233a;
  display: block;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 0.62rem 0;
}

.hs-catalog-sidebar a:hover,
.hs-catalog-sidebar a:focus {
  color: var(--hs-primary);
}

.hs-catalog-products {
  min-width: 0;
}

@media (max-width: 760px) {
  .hs-local-section {
    padding-top: 2rem;
  }

  .hs-local-section__photo {
    display: grid;
    min-height: auto;
  }

  .hs-local-section__photo > img {
    aspect-ratio: 1 / 0.72;
    height: auto;
    position: static;
  }

  .hs-local-card {
    border-radius: 0;
    box-shadow: none;
    left: auto;
    max-width: none;
    position: static;
    top: auto;
    transform: none;
  }
}

@media (max-width: 900px) {
  .hs-catalog-layout {
    grid-template-columns: 1fr;
  }

  .hs-catalog-sidebar {
    margin-top: 0;
    margin-bottom: 0;
    position: static;
    transform: none !important;
  }

  .hs-catalog-sidebar ul {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .hs-catalog-sidebar li + li {
    border-top: 0;
  }

  .hs-catalog-sidebar a {
    background: #f7f7f7;
    border-radius: 999px;
    min-width: max-content;
    padding: 0.62rem 0.85rem;
  }
}

.hs-services-page {
  background: #f6f6f6;
}

.hs-services-hero {
  background:
    radial-gradient(circle at 12px 12px, rgba(255, 138, 0, 0.2) 1px, transparent 1.5px),
    #111116;
  background-size: 18px 18px;
  border-bottom: 4px solid var(--hs-primary);
  color: #ffffff;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.hs-services-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
}

.hs-services-hero__copy span,
.hs-services-heading span,
.hs-services-process span {
  color: var(--hs-yellow);
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.075em !important;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.hs-services-hero h1 {
  color: #ffffff;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  font-weight: 900;
  letter-spacing: 0.01em !important;
  line-height: 0.92;
  margin: 0 0 1rem;
  max-width: 12ch;
}

.hs-services-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  margin: 0 0 1.5rem;
  max-width: 42rem;
}

.hs-services-hero__visual {
  aspect-ratio: 1 / 0.82;
  position: relative;
}

.hs-services-shape {
  display: block;
  position: absolute;
}

.hs-services-shape--balloon {
  background: var(--hs-primary);
  border-radius: 999px 999px 999px 40px;
  height: 42%;
  left: 8%;
  top: 10%;
  transform: rotate(-12deg);
  width: 30%;
}

.hs-services-shape--pencil {
  background: linear-gradient(90deg, var(--hs-yellow) 0 78%, #f4d6a5 78% 92%, #222 92%);
  border-radius: 999px;
  height: 13%;
  right: 7%;
  top: 22%;
  transform: rotate(24deg);
  width: 58%;
}

.hs-services-shape--paper {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.26);
  height: 48%;
  left: 28%;
  top: 38%;
  transform: rotate(4deg);
  width: 48%;
}

.hs-services-shape--paper::before {
  background:
    linear-gradient(var(--hs-primary), var(--hs-primary)) 0 0 / 55% 10px no-repeat,
    linear-gradient(var(--hs-blue), var(--hs-blue)) 0 26px / 72% 8px no-repeat,
    linear-gradient(var(--hs-pink), var(--hs-pink)) 0 50px / 62% 8px no-repeat,
    linear-gradient(var(--hs-green), var(--hs-green)) 0 74px / 45% 8px no-repeat;
  content: "";
  inset: 14% 12%;
  position: absolute;
}

.hs-services-shape--gift {
  background: var(--hs-blue);
  border-radius: 18px;
  bottom: 3%;
  height: 34%;
  right: 4%;
  width: 34%;
}

.hs-services-shape--gift::before,
.hs-services-shape--gift::after {
  background: var(--hs-yellow);
  content: "";
  position: absolute;
}

.hs-services-shape--gift::before {
  height: 100%;
  left: 44%;
  width: 12%;
}

.hs-services-shape--gift::after {
  height: 12%;
  left: 0;
  top: 36%;
  width: 100%;
}

.hs-services-list {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.hs-services-heading {
  margin-bottom: 1.4rem;
  max-width: 760px;
}

.hs-services-heading span,
.hs-services-process span {
  color: var(--hs-primary);
}

.hs-services-heading h2,
.hs-services-process h2,
.hs-services-cta h2 {
  color: var(--hs-dark);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 900;
  line-height: 1.02;
  margin: 0;
}

.hs-services-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hs-service-card {
  background: #ffffff;
  border: 1px solid rgba(26, 35, 126, 0.08);
  border-radius: 22px;
  box-shadow: 0 15px 34px rgba(26, 35, 126, 0.08);
  min-height: 280px;
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.hs-service-card::after {
  background: var(--hs-primary);
  border-radius: 999px;
  bottom: -4rem;
  content: "";
  height: 9rem;
  opacity: 0.12;
  position: absolute;
  right: -3rem;
  width: 9rem;
}

.hs-service-card__icon {
  align-items: center;
  background: #fff4e8;
  border-radius: 18px;
  display: inline-flex;
  font-size: 1.7rem;
  height: 56px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 56px;
}

.hs-service-card h3 {
  color: var(--hs-dark);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 0.7rem;
}

.hs-service-card p {
  color: #555969;
  margin: 0;
}

.hs-service-card--wide {
  background: var(--hs-dark);
  color: #ffffff;
  grid-column: 1 / -1;
}

.hs-service-card--wide h3,
.hs-service-card--wide p {
  color: #ffffff;
}

.hs-services-process {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.hs-services-process__grid {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 0.85fr 1.15fr;
}

.hs-services-process ol {
  counter-reset: services-step;
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-services-process li {
  background: #f7f7f7;
  border-left: 5px solid var(--hs-primary);
  border-radius: 16px;
  counter-increment: services-step;
  padding: 1.15rem 1.15rem 1.15rem 4.4rem;
  position: relative;
}

.hs-services-process li::before {
  align-items: center;
  background: var(--hs-primary);
  border-radius: 999px;
  color: #ffffff;
  content: counter(services-step);
  display: flex;
  font-weight: 900;
  height: 2.4rem;
  justify-content: center;
  left: 1.1rem;
  position: absolute;
  top: 1.1rem;
  width: 2.4rem;
}

.hs-services-process strong {
  color: var(--hs-dark);
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.hs-services-process p {
  color: #555969;
  margin: 0;
}

.hs-services-cta {
  background: #f6f6f6;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.hs-services-cta__box {
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 138, 0, 0.22), transparent 22rem),
    var(--hs-dark);
  border-radius: 28px;
  color: #ffffff;
  padding: clamp(1.6rem, 5vw, 3.5rem);
  text-align: center;
}

.hs-services-cta h2 {
  color: #ffffff;
}

.hs-services-cta p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0.9rem auto 1.4rem;
  max-width: 680px;
}

@media (max-width: 980px) {
  .hs-services-hero__grid,
  .hs-services-process__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .hs-services-grid {
    grid-template-columns: 1fr;
  }

  .hs-service-card--wide {
    grid-column: auto;
  }

  .hs-services-hero__visual {
    min-height: 280px;
  }
}

.hs-info-page {
  background: #f6f6f6;
}

.hs-info-hero {
  background:
    radial-gradient(circle at 12px 12px, rgba(255, 138, 0, 0.18) 1px, transparent 1.5px),
    #111116;
  background-size: 18px 18px;
  border-bottom: 4px solid var(--hs-primary);
  color: #ffffff;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.hs-info-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
}

.hs-info-hero span,
.hs-info-blocks span {
  color: var(--hs-yellow);
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.075em !important;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.hs-info-hero h1 {
  color: #ffffff;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.94;
  margin: 0 0 1rem;
  max-width: 12ch;
}

.hs-info-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  margin: 0;
  max-width: 43rem;
}

.hs-info-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
  color: var(--hs-dark);
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.hs-info-card h2 {
  color: var(--hs-dark);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hs-info-card ul {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
}

.hs-info-card li + li {
  border-top: 1px solid rgba(26, 35, 126, 0.12);
  margin-top: 0.65rem;
  padding-top: 0.65rem;
}

.hs-location-photo {
  padding: clamp(2rem, 5vw, 4rem) 0 0;
}

.hs-location-photo img {
  aspect-ratio: 16 / 8;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(26, 35, 126, 0.12);
  object-fit: cover;
  width: 100%;
}

.hs-info-blocks {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.hs-info-blocks__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hs-info-blocks article {
  background: #ffffff;
  border: 1px solid rgba(26, 35, 126, 0.08);
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(26, 35, 126, 0.08);
  padding: 1.4rem;
}

.hs-info-blocks span {
  color: var(--hs-primary);
}

.hs-info-blocks h2 {
  color: var(--hs-dark);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 0.7rem;
}

.hs-info-blocks p {
  color: #555969;
  margin: 0;
}

.hs-about-visual {
  aspect-ratio: 1 / 0.82;
  position: relative;
}

.hs-about-visual span {
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  display: block;
  position: absolute;
}

.hs-about-visual span:nth-child(1) {
  background: var(--hs-primary);
  height: 42%;
  left: 7%;
  top: 9%;
  width: 40%;
}

.hs-about-visual span:nth-child(2) {
  background: var(--hs-blue);
  height: 46%;
  right: 8%;
  top: 18%;
  width: 42%;
}

.hs-about-visual span:nth-child(3) {
  background: var(--hs-yellow);
  bottom: 10%;
  height: 38%;
  left: 24%;
  width: 38%;
}

.hs-about-visual span:nth-child(4) {
  background: #ffffff;
  bottom: 2%;
  height: 30%;
  right: 4%;
  width: 30%;
}

.hs-about-story {
  padding: 0 0 clamp(2.5rem, 6vw, 5rem);
}

.hs-about-story__box {
  background: var(--hs-dark);
  border-radius: 28px;
  color: #ffffff;
  padding: clamp(1.6rem, 5vw, 3.5rem);
}

.hs-about-story h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.02;
  margin: 0 0 1.2rem;
}

.hs-about-story__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.4rem;
}

.hs-about-story p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

@media (max-width: 900px) {
  .hs-info-hero__grid,
  .hs-info-blocks__grid,
  .hs-about-story__grid {
    grid-template-columns: 1fr;
  }
}

/* WooCommerce account area. */
.woocommerce-account .hs-page-header {
  padding-bottom: 0.5rem;
}

.woocommerce-account .hs-content-area {
  padding-top: 0.5rem;
}

.woocommerce-account .entry-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.woocommerce-account .entry-card__body {
  padding: 0;
}

.woocommerce-account .woocommerce {
  background: #ffffff;
  border: 1px solid rgba(26, 35, 126, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(26, 35, 126, 0.1);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 260px minmax(0, 1fr);
  padding: clamp(1rem, 3vw, 2rem);
}

.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after {
  content: none !important;
  display: none !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  float: none;
  width: auto;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  background: #f7f7f7;
  border: 1px solid #ededed;
  border-radius: 22px;
  display: grid;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0.65rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  align-items: center;
  border-radius: 16px;
  color: var(--hs-dark);
  display: flex;
  font-weight: 800;
  gap: 0.55rem;
  padding: 0.82rem 0.9rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation a::before {
  align-items: center;
  background: #fff4e8;
  border-radius: 12px;
  color: var(--hs-primary);
  content: "•";
  display: inline-flex;
  font-size: 1.2rem;
  height: 1.8rem;
  justify-content: center;
  width: 1.8rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  background: var(--hs-primary);
  color: #ffffff;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a::before,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover::before {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.woocommerce-account .woocommerce-MyAccount-content {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 138, 0, 0.12), transparent 16rem),
    #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 22px;
  color: #3f4354;
  float: none;
  min-height: 260px;
  padding: clamp(1.2rem, 3vw, 2rem);
  width: auto;
}

.woocommerce-account .woocommerce-MyAccount-content p:first-child {
  color: var(--hs-dark);
  font-size: 1.08rem;
  font-weight: 700;
  margin-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content a:not(.button) {
  color: var(--hs-blue);
  font-weight: 800;
}

.woocommerce-account .woocommerce-MyAccount-content a:not(.button):hover {
  color: var(--hs-primary);
}

.woocommerce-account .woocommerce-MyAccount-content mark {
  background: #fff4e8;
  border-radius: 8px;
  color: var(--hs-dark);
  font-weight: 900;
  padding: 0.12rem 0.35rem;
}

.woocommerce-account .woocommerce table.shop_table {
  border: 1px solid #eeeeee;
  border-radius: 18px;
  overflow: hidden;
}

.woocommerce-account .woocommerce table.shop_table th {
  background: #f7f7f7;
  color: var(--hs-dark);
}

.woocommerce-account .woocommerce-EditAccountForm,
.woocommerce-account .woocommerce-address-fields,
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
  display: grid;
  gap: 0.85rem;
}

.woocommerce-account .woocommerce form .form-row {
  margin: 0;
  padding: 0;
}

.woocommerce-account .woocommerce form .form-row label {
  color: var(--hs-dark);
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.woocommerce-account .woocommerce form .input-text,
.woocommerce-account .woocommerce form select {
  background: #ffffff;
  border: 1px solid #dfe1ea;
  border-radius: 14px;
  min-height: 46px;
  padding: 0.78rem 0.9rem;
}

.woocommerce-account .woocommerce form .input-text:focus,
.woocommerce-account .woocommerce form select:focus {
  border-color: var(--hs-primary);
  outline: none;
}

.woocommerce-account .woocommerce .button {
  border-radius: 999px;
  min-height: 44px;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

@media (max-width: 820px) {
  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: flex;
    overflow-x: auto;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation a {
    min-width: max-content;
  }
}
