:root {
  --val-ink: #17120f;
  --val-white: #ffffff;
  --val-off: #faf7f4;
  --val-nude: #f5ede7;
  --val-wine: #8c2332;
  --val-wine-dark: #6e1a26;
  --val-promo: #d6203c;
  --val-gold: #b08a4f;
  --val-gray: #7a6f66;
  --val-line: #eae2da;
  --val-ok: #1f7a4d;
  --val-serif: "Fraunces", Georgia, serif;
  --val-sans: "Figtree", system-ui, sans-serif;
}

.template-home {
  color: var(--val-ink);
  font-family: var(--val-sans);
}

.template-home h1,
.template-home h2,
.template-home h3,
.template-home h4,
.template-home p {
  margin-top: 0;
}

.val-announce {
  position: relative;
  height: 34px;
  overflow: hidden;
  background: var(--val-wine);
  color: var(--val-white);
  font-family: var(--val-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
}

.val-announce-item,
.js-val-announce-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.js-val-announce-item.is-active {
  opacity: 1;
}

.val-header {
  top: 0;
  z-index: 70;
  width: 100%;
  background: var(--val-white);
  border-bottom: 1px solid var(--val-line);
  box-shadow: 0 2px 14px rgba(23, 18, 15, 0.04);
  color: var(--val-ink);
  font-family: var(--val-sans);
}

.val-header-row {
  display: grid;
  grid-template-columns: auto minmax(280px, 620px) auto;
  align-items: center;
  gap: 26px;
  width: min(100% - 32px, 1328px);
  min-height: 76px;
  margin: 0 auto;
}

.val-logo {
  display: inline-flex;
  align-items: center;
  color: var(--val-ink);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.val-logo-image {
  display: block;
  width: 150px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.val-logo > span {
  font-family: var(--val-serif);
  font-size: 29px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.val-logo em {
  color: var(--val-wine);
  font-style: italic;
}

.val-logo small {
  margin-top: 4px;
  color: var(--val-gold);
  font-family: var(--val-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
}

.val-search {
  min-width: 0;
}

.val-search form,
.val-search .input-group {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
}

.val-search input,
.val-search .form-control {
  width: 100%;
  min-height: 44px;
  padding: 10px 52px 10px 18px;
  border: 1.5px solid var(--val-line);
  border-radius: 999px;
  outline: 0;
  background: var(--val-off);
  color: var(--val-ink);
  font: 400 14px var(--val-sans);
}

.val-search input:focus,
.val-search .form-control:focus {
  border-color: var(--val-wine);
  background: var(--val-white);
  box-shadow: none;
}

.val-search button,
.val-search .search-btn,
.val-search input[type="submit"] {
  position: absolute;
  top: 4px;
  right: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--val-ink);
  color: var(--val-white);
}

.val-search button svg,
.val-search .search-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.val-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.val-header-action,
.val-cart-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 64px;
  padding: 7px 9px;
  border-radius: 10px;
  color: var(--val-gray);
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
}

.val-header-action:hover,
.val-cart-action:hover {
  background: var(--val-off);
  color: var(--val-wine);
}

.val-header-action svg,
.val-cart-action svg,
.val-mobile-menu svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.val-cart-action .utilities-container,
.val-cart-action .btn-utility {
  display: block;
  padding: 0;
  color: inherit;
}

.val-cart-action .badge {
  top: -7px;
  right: -9px;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  background: var(--val-promo);
  color: var(--val-white);
  font-size: 10px;
}

.val-nav {
  border-top: 1px solid var(--val-line);
}

.val-nav-row {
  display: flex;
  align-items: center;
  gap: 4px;
  width: min(100% - 32px, 1328px);
  min-height: 56px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.val-nav-row::-webkit-scrollbar {
  display: none;
}

.val-nav-row a {
  display: block;
  padding: 18px 15px 15px;
  border-bottom: 2px solid transparent;
  color: #3e362f;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.val-nav-row a:hover {
  border-bottom-color: var(--val-wine);
  color: var(--val-wine);
}

.val-nav-row .val-nav-hot {
  color: var(--val-promo);
}

.val-nav .nav-desktop {
  width: min(100% - 32px, 1328px);
  margin: 0 auto;
}

.val-nav .nav-desktop-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 45px;
  margin: 0;
}

.val-nav .nav-main-item > .nav-item-container > .nav-list-link,
.val-nav .nav-main-item > .nav-list-link,
.val-nav .nav-item-desktop > .nav-list-link {
  display: block;
  padding: 14px 15px 12px;
  border-bottom: 2px solid transparent;
  color: #3e362f;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.val-nav .nav-list-link:hover,
.val-nav .nav-list-link.selected {
  border-bottom-color: var(--val-wine);
  color: var(--val-wine);
}

.valentina-home {
  overflow: hidden;
  background: var(--val-white);
}

.val-hero,
.val-section,
.val-trust {
  width: min(100% - 32px, 1328px);
  margin-right: auto;
  margin-left: auto;
}

.val-hero {
  margin-top: 16px;
}

.val-hero-inner {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
  background: var(--val-ink);
}

.val-hero-inner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.val-hero-inner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    83deg,
    rgba(18, 10, 8, 0.82),
    rgba(18, 10, 8, 0.43) 46%,
    rgba(18, 10, 8, 0) 72%
  );
  content: "";
}

.val-hero-content {
  position: relative;
  z-index: 2;
  max-width: 570px;
  padding: 52px;
  color: var(--val-white);
}

.val-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.val-live-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5ee08a;
  animation: val-pulse 1.6s infinite;
}

@keyframes val-pulse {
  50% {
    opacity: 0.35;
  }
}

.val-hero-content h1 {
  margin-bottom: 14px;
  color: var(--val-white);
  font-family: var(--val-serif);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.04;
}

.val-hero-content h1 em {
  color: #f4c98a;
  font-style: italic;
}

.val-hero-content p {
  max-width: 46ch;
  margin-bottom: 26px;
  color: #f0e8e0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

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

.val-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border: 0;
  border-radius: 99px;
  background: var(--val-wine);
  color: var(--val-white);
  font: 700 14px var(--val-sans);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: 0.22s ease;
}

.val-button:hover {
  transform: translateY(-2px);
  background: var(--val-wine-dark);
  color: var(--val-white);
  box-shadow: 0 12px 24px -12px rgba(140, 35, 50, 0.72);
}

.val-button-light {
  background: var(--val-white);
  color: var(--val-ink);
}

.val-button-light:hover {
  background: var(--val-nude);
  color: var(--val-ink);
}

.val-button-dark {
  background: var(--val-ink);
}

.val-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.val-trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 72px;
  padding: 14px 17px;
  border: 1px solid var(--val-line);
  border-radius: 14px;
  background: var(--val-off);
}

.val-trust-item svg,
.val-store-row svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: var(--val-wine);
}

.val-trust-item b,
.val-trust-item span {
  display: block;
}

.val-trust-item b {
  font-size: 13px;
}

.val-trust-item span {
  margin-top: 2px;
  color: var(--val-gray);
  font-size: 11px;
}

.val-section {
  padding-top: 58px;
}

.val-section-heading,
.val-sale-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.val-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--val-wine);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.val-section h2,
.val-sale-heading h2,
.val-newsletter h2 {
  margin-bottom: 0;
  color: var(--val-ink);
  font-family: var(--val-serif);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1.08;
}

.val-section-link,
.val-sale-heading > a {
  color: var(--val-wine);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.val-section-link::after,
.val-sale-heading > a::after {
  margin-left: 6px;
  content: "→";
}

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

.val-category-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1 / 1.25;
  background: var(--val-nude);
  color: var(--val-white);
  text-decoration: none;
  transition: 0.28s ease;
}

.val-category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 43%, rgba(18, 10, 8, 0.76));
  content: "";
}

.val-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.65s ease;
}

.val-category-card span,
.val-category-card small {
  position: absolute;
  z-index: 2;
  right: 10px;
  left: 10px;
  text-align: center;
}

.val-category-card span {
  bottom: 30px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.val-category-card small {
  bottom: 12px;
  color: #eadfd6;
  font-size: 11px;
}

.val-category-card:hover {
  transform: translateY(-4px);
  color: var(--val-white);
  box-shadow: 0 18px 30px -18px rgba(23, 18, 15, 0.58);
}

.val-category-card:hover img {
  transform: scale(1.06);
}

.val-sale-box {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 22px;
  background: linear-gradient(135deg, #2a0f16, #4a121f 55%, #6e1a26);
  color: var(--val-white);
}

.val-sale-box::before {
  position: absolute;
  top: -110px;
  right: -30px;
  color: rgba(255, 255, 255, 0.05);
  content: "✦";
  font-size: 230px;
}

.val-sale-heading {
  position: relative;
  z-index: 1;
}

.val-sale-heading .val-kicker,
.val-sale-heading h2 em {
  color: #f4c98a;
}

.val-sale-heading h2 {
  color: var(--val-white);
}

.val-sale-empty {
  position: relative;
  z-index: 1;
  padding: 38px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.val-sale-empty h3 {
  margin-bottom: 8px;
  color: var(--val-white);
  font-family: var(--val-serif);
  font-size: 25px;
  font-weight: 500;
}

.val-sale-empty p {
  margin: 0;
  color: #e8cfd4;
  font-size: 14px;
}

.val-sale-heading h2 em {
  font-style: italic;
}

.val-sale-heading > a {
  color: var(--val-white);
}

.val-products-grid {
  position: relative;
  z-index: 1;
}

.valentina-home .item-product {
  margin-bottom: 18px;
}

.valentina-home .item-product .item {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--val-line);
  border-radius: 16px;
  background: var(--val-white);
  transition: 0.28s ease;
}

.valentina-home .item-product .item:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 20px 40px -22px rgba(23, 18, 15, 0.5);
}

.valentina-home .item-product .item-image,
.valentina-home .item-product .item-image img {
  background: var(--val-nude);
}

.valentina-home .item-product .item-image img {
  object-fit: cover;
  object-position: top center;
}

.valentina-home .item-product .item-description {
  padding: 16px 16px 18px;
  text-align: left !important;
}

.valentina-home .item-product .item-name {
  min-height: 2.7em;
  margin-bottom: 8px !important;
  color: var(--val-ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
}

.valentina-home .item-product .item-price-container {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
}

.valentina-home .item-product .item-price {
  color: var(--val-ink);
  font-size: 18px;
  font-weight: 800;
}

.valentina-home .item-product .price-compare {
  color: var(--val-gray);
  font-size: 13px;
}

.valentina-home .item-product .item-installments,
.valentina-home .item-product .font-smallest {
  width: 100%;
  color: var(--val-gray);
  font-size: 12px;
}

.valentina-home .item-product .item-actions .btn-link,
.valentina-home .item-product .item-submit-container .btn-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 8px 17px;
  border-radius: 99px;
  background: var(--val-wine);
  color: var(--val-white);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.valentina-home .item-product .label {
  border-radius: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.val-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
}

.val-toolbar button,
.val-toolbar select {
  min-height: 38px;
  border: 1.5px solid var(--val-line);
  border-radius: 99px;
  outline: 0;
  background: var(--val-white);
  color: var(--val-gray);
  font: 700 12px var(--val-sans);
}

.val-toolbar button {
  padding: 8px 17px;
}

.val-toolbar button:hover,
.val-toolbar button.is-active {
  border-color: var(--val-ink);
  background: var(--val-ink);
  color: var(--val-white);
}

.val-toolbar label {
  margin-left: auto;
  margin-bottom: 0;
}

.val-toolbar select {
  min-width: 170px;
  padding: 8px 38px 8px 15px;
}

.val-result-count {
  color: var(--val-gray);
  font-size: 13px;
}

.val-load-more {
  display: flex;
  justify-content: center;
  padding-top: 15px;
}

.val-empty-products {
  padding: 42px;
  border: 1px dashed var(--val-line);
  border-radius: 16px;
  background: var(--val-off);
  text-align: center;
}

.val-empty-products h3 {
  font-family: var(--val-serif);
}

.val-testimonials-wrap {
  width: min(100% - 32px, 1328px);
  margin: 58px auto 0;
}

.val-testimonials-wrap .section-testimonials-home {
  padding: 36px 20px;
  border: 1px solid var(--val-line);
  border-radius: 20px;
  background: var(--val-off);
}

.val-testimonials-wrap h2 {
  font-family: var(--val-serif);
  font-size: 36px;
  font-weight: 500;
}

.val-instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
}

.val-instagram-link,
.val-instagram-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  background: var(--val-nude);
}

.val-instagram-link::after,
.val-instagram-item::after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(140, 35, 50, 0.55);
  color: var(--val-white);
  content: "♥";
  font-size: 26px;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.val-instagram-link:hover::after,
.val-instagram-item:hover::after {
  opacity: 1;
}

.val-instagram-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s ease;
}

.val-instagram-link:hover .val-instagram-image,
.val-instagram-item:hover .val-instagram-image {
  transform: scale(1.07);
}

.val-store-box {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--val-line);
  border-radius: 20px;
}

.val-map {
  position: relative;
  min-height: 360px;
  background: var(--val-nude);
}

.val-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.val-store-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 17px;
  padding: 42px;
}

.val-store-info h3 {
  margin-bottom: 4px;
  font-family: var(--val-serif);
  font-size: 28px;
  font-weight: 500;
}

.val-store-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  line-height: 1.65;
}

.val-store-row p {
  margin-bottom: 0;
}

.val-store-row a {
  color: var(--val-wine);
  font-weight: 700;
}

.val-pickup {
  margin-bottom: 0;
  padding: 15px 18px;
  border-radius: 12px;
  background: var(--val-nude);
  font-size: 13px;
  line-height: 1.6;
}

.val-pickup b {
  color: var(--val-wine);
}

.val-newsletter {
  width: min(100% - 32px, 1328px);
  margin: 58px auto 0;
  padding: 54px 24px;
  border-radius: 22px;
  background: var(--val-ink);
  color: var(--val-white);
  text-align: center;
}

.val-newsletter .val-kicker,
.val-newsletter h2 em {
  color: #f4c98a;
}

.val-newsletter h2 {
  color: var(--val-white);
}

.val-newsletter h2 em {
  font-style: italic;
}

.val-newsletter > p {
  margin: 12px auto 24px;
  color: #cbbfb4;
}

.val-newsletter form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  padding: 5px;
  border-radius: 99px;
  background: var(--val-white);
}

.val-newsletter input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 12px 17px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--val-ink);
  font: 400 14px var(--val-sans);
}

.val-newsletter-message {
  max-width: 520px;
  margin: 16px auto 0;
  color: #7be0a2;
  font-size: 13px;
}

.val-newsletter-message.is-error {
  color: #ff9aa8;
}

.val-footer {
  margin-top: 58px;
  padding: 52px 16px 24px;
  border-top: 1px solid var(--val-line);
  background: var(--val-off);
  color: var(--val-ink);
  font-family: var(--val-sans);
}

.val-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.25fr;
  gap: 40px;
  width: min(100%, 1328px);
  margin: 0 auto;
}

.val-footer-logo {
  margin-bottom: 14px;
}

.val-footer-logo-image {
  width: 170px;
  height: 82px;
  border: 1px solid rgba(23, 18, 15, 0.08);
}

.val-footer-description {
  max-width: 34ch;
  color: var(--val-gray);
  font-size: 14px;
  line-height: 1.7;
}

.val-footer h3 {
  margin-bottom: 15px;
  color: var(--val-wine);
  font-family: var(--val-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.val-footer ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.55;
}

.val-footer a {
  color: inherit;
  text-decoration: none;
}

.val-footer a:hover {
  color: var(--val-wine);
}

.val-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.val-footer-badges span {
  padding: 6px 9px;
  border: 1px solid var(--val-line);
  border-radius: 8px;
  background: var(--val-white);
  color: var(--val-gray);
  font-size: 10px;
  font-weight: 800;
}

.val-footer-payments {
  width: min(100%, 1328px);
  margin: 34px auto 0;
}

.val-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  width: min(100%, 1328px);
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--val-line);
  color: var(--val-gray);
  font-size: 11px;
}

.val-footer-claim {
  flex-basis: 100%;
}

.val-whatsapp-floating {
  position: fixed;
  z-index: 80;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 26px rgba(18, 90, 46, 0.28);
  transition: transform 0.2s ease;
}

.val-whatsapp-floating:hover {
  transform: translateY(-3px);
  color: #fff;
}

.val-whatsapp-floating svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media (max-width: 991px) {
  .val-header-row {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    min-height: 68px;
  }

  .val-search {
    grid-column: 1 / -1;
    order: 3;
    padding-bottom: 12px;
  }

  .val-mobile-menu {
    display: block;
  }

  .val-mobile-menu .btn-utility {
    padding: 8px 8px 8px 0;
  }

  .val-cart-action {
    min-width: auto;
    padding: 6px;
  }

  .val-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .val-instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .val-store-box {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  .val-announce {
    height: 31px;
    font-size: 10px;
    letter-spacing: 0.02em;
  }

  .val-header-row,
  .val-hero,
  .val-section,
  .val-trust,
  .val-newsletter,
  .val-testimonials-wrap {
    width: min(100% - 24px, 1328px);
  }

  .val-logo > span {
    font-size: 24px;
  }

  .val-logo-image {
    width: 116px;
    height: 58px;
  }

  .val-logo small {
    font-size: 7px;
  }

  .val-hero-inner {
    min-height: 460px;
  }

  .val-hero-inner::after {
    background: linear-gradient(
      83deg,
      rgba(18, 10, 8, 0.84),
      rgba(18, 10, 8, 0.5) 70%,
      rgba(18, 10, 8, 0.16)
    );
  }

  .val-hero-content {
    padding: 32px 22px;
  }

  .val-hero-content h1 {
    font-size: 39px;
  }

  .val-hero-content p {
    font-size: 14px;
  }

  .val-trust {
    grid-template-columns: 1fr;
  }

  .val-section {
    padding-top: 46px;
  }

  .val-section-heading,
  .val-sale-heading {
    align-items: flex-start;
  }

  .val-section h2,
  .val-sale-heading h2,
  .val-newsletter h2 {
    font-size: 31px;
  }

  .val-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .val-category-card:last-child {
    display: none;
  }

  .val-sale-box {
    padding: 26px 18px;
  }

  .val-sale-heading > a,
  .val-result-count {
    display: none;
  }

  .val-toolbar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .val-toolbar::-webkit-scrollbar {
    display: none;
  }

  .val-toolbar button {
    flex: 0 0 auto;
  }

  .val-toolbar label {
    flex: 0 0 auto;
  }

  .valentina-home .item-product .item-description {
    padding: 12px;
  }

  .valentina-home .item-product .item-name {
    font-size: 13px;
  }

  .valentina-home .item-product .item-price {
    font-size: 16px;
  }

  .val-store-info {
    padding: 30px 22px;
  }

  .val-newsletter {
    padding: 44px 18px;
  }

  .val-newsletter form {
    flex-direction: column;
    gap: 8px;
    border-radius: 16px;
    background: transparent;
  }

  .val-newsletter input[type="email"] {
    min-height: 48px;
    border-radius: 99px;
    background: var(--val-white);
  }

  .val-whatsapp-floating {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .val-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .val-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .valentina-home *,
  .val-header *,
  .val-announce * {
    animation: none !important;
    transition: none !important;
  }
}
