/*
Theme Name: Franca
Theme URI: https://franca.cl
Author: Luis Santander
Author URI: https://example.com
Description: A custom WooCommerce-compatible theme for Franca - Chilean corporate fashion brand.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: franca
Tags: woocommerce, e-commerce, fashion, corporate

Franca - Elegancia Corporativa
*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: big-caslon-fb, serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  margin-bottom: 1em;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.site-content {
  min-height: 100vh;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--primary {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}
.btn--primary:hover {
  background-color: #333333;
  border-color: #333333;
}
.btn--outline {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}
.btn--outline:hover {
  background-color: #000000;
  color: #ffffff;
}
.btn--dark {
  background-color: #000000;
  color: #ffffff;
}
.btn--dark:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
  padding: 1rem 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  transition: background-color 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}
.header--transparent {
  background-color: transparent;
  border-bottom-color: transparent;
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  .header--transparent {
    background-color: #ffffff;
    border-bottom-color: #eeeeee;
    padding-bottom: 1rem;
  }
}
.header--sticky {
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
}
.header__left {
  display: flex;
  align-items: center;
}
.header__center {
  display: flex;
  justify-content: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__center--hidden {
  opacity: 0;
  visibility: hidden;
}
.header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .header__right {
    gap: 1rem;
  }
}
.header__logo {
  font-family: big-caslon-fb, serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #000000;
}
.header__logo:hover {
  color: #333333;
}
@media (max-width: 768px) {
  .header__logo {
    font-size: 1.25rem;
    letter-spacing: 0.2em;
  }
}
.header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}
.header__icon:hover {
  color: #666666;
}
.header__icon svg {
  display: block;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
}
.menu-toggle:hover .menu-toggle__line {
  background-color: #666666;
}
.menu-toggle__line {
  display: block;
  width: 28px;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease;
}

.cart-notification {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1010;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.cart-notification--visible {
  transform: translateY(0);
}
.cart-notification__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background-color: #000000;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cart-notification__content {
    padding: 1rem 1rem;
    font-size: 0.875rem;
  }
}
.cart-notification__icon {
  flex-shrink: 0;
  color: #4ade80;
}
.cart-notification__message {
  font-size: 0.875rem;
  font-weight: 500;
}
.cart-notification__link {
  color: #ffffff;
  text-decoration: underline;
  font-size: 0.875rem;
  margin-left: 0.5rem;
  transition: opacity 0.2s ease;
}
.cart-notification__link:hover {
  opacity: 0.8;
}
.cart-notification__close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  margin-left: 1rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.cart-notification__close:hover {
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-nav__link {
  font-family: big-caslon-fb, serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
}
.mobile-nav__link:hover {
  color: #666666;
}
.mobile-nav.is-open .mobile-nav__link {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}
.mobile-nav.is-open .mobile-nav__link:nth-child(1) {
  transition-delay: 0.05s;
}
.mobile-nav.is-open .mobile-nav__link:nth-child(2) {
  transition-delay: 0.1s;
}
.mobile-nav.is-open .mobile-nav__link:nth-child(3) {
  transition-delay: 0.15s;
}
.mobile-nav.is-open .mobile-nav__link:nth-child(4) {
  transition-delay: 0.2s;
}
.mobile-nav.is-open .mobile-nav__link:nth-child(5) {
  transition-delay: 0.25s;
}
@media (max-width: 768px) {
  .mobile-nav__link {
    font-size: 1.5rem;
  }
}

.menu-toggle.is-open .menu-toggle__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.is-open .menu-toggle__line:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open .menu-toggle__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.page-logo {
  position: fixed;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1010;
  pointer-events: none;
  will-change: transform;
  text-align: center;
}
.page-logo a {
  display: inline-block;
  pointer-events: auto;
}
.page-logo img {
  height: auto;
  max-height: 240px;
  display: block;
}
@media (max-width: 768px) {
  .page-logo {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-logo img {
    max-height: 28px;
    width: auto;
  }
}

.page-logo-subtitle {
  position: fixed;
  z-index: 1010;
  font-family: big-caslon-fb, serif;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: #000000;
  pointer-events: none;
  will-change: transform;
}
@media (max-width: 768px) {
  .page-logo-subtitle {
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }
}

.page-intro-spacer {
  height: 25vh;
}
.front-page .page-intro-spacer {
  display: none;
}
@media (max-width: 768px) {
  .page-intro-spacer {
    height: 0;
  }
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero__image {
  width: 100%;
}
.hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

.statement {
  padding: 8rem 1.5rem;
  background-color: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .statement {
    padding: 6rem 1rem;
  }
}
.statement__content {
  max-width: 900px;
  margin: 0 auto;
}
.statement__text {
  font-family: big-caslon-fb, serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
  margin: 0 0 4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
@media (max-width: 1024px) {
  .statement__text {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .statement__text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 480px) {
  .statement__text {
    font-size: 1.25rem;
  }
}
.statement__cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #000000;
  background-color: transparent;
  border: 1px solid #000000;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.statement__cta:hover {
  background-color: #000000;
  color: #ffffff;
}

.lookbook {
  padding: 4rem 1.5rem;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .lookbook {
    padding: 2rem 1rem;
  }
}
.lookbook__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.lookbook__image {
  width: 100%;
  height: auto;
  display: block;
}
.lookbook__content {
  position: absolute;
  right: 5%;
  bottom: 20%;
  text-align: center;
}
@media (max-width: 768px) {
  .lookbook__content {
    position: static;
    margin-top: 2rem;
  }
}
.lookbook__headline {
  font-family: big-caslon-fb, serif;
  font-size: 3.5rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 0.85;
  margin: 0 0 1.5rem 0;
}
@media (max-width: 1024px) {
  .lookbook__headline {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .lookbook__headline {
    font-size: 2rem;
    color: #000000;
  }
}
.lookbook__headline-line {
  display: block;
}
.lookbook__headline-line--1 {
  padding-left: 1.5em;
}
.lookbook__headline-line--2 {
  padding-left: 0;
}
.lookbook__headline-line--3 {
  padding-left: 0.75em;
}
@media (max-width: 768px) {
  .lookbook__headline-line {
    padding-left: 0 !important;
  }
}
.lookbook__cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #ffffff;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.lookbook__cta:hover {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .lookbook__cta {
    color: #000000;
    border-color: #000000;
    padding: 1rem 2rem;
  }
  .lookbook__cta:hover {
    background-color: #000000;
    color: #ffffff;
  }
}

.lookbook-page__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}
@media (max-width: 768px) {
  .lookbook-page__container {
    padding: 2rem 1rem 4rem;
  }
}
.lookbook-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .lookbook-page__grid {
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .lookbook-page__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.lookbook-page__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
@media (max-width: 768px) {
  .lookbook-page__content {
    text-align: center;
  }
}
.lookbook-page__title {
  font-family: big-caslon-fb, serif;
  font-size: 3rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 2rem;
  line-height: 1.1;
}
@media (max-width: 1024px) {
  .lookbook-page__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .lookbook-page__title {
    font-size: 2rem;
  }
}
.lookbook-page__intro {
  margin-bottom: 4rem;
}
.lookbook-page__intro p {
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .lookbook-page__intro p {
    font-size: 1rem;
  }
}
.lookbook-page__intro p:last-child {
  margin-bottom: 0;
}
.lookbook-page__download {
  display: inline-block;
  text-decoration: none;
}
.lookbook-page__download:hover {
  text-decoration: none;
}
.lookbook-page__coming-soon {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #666666;
}

.spring {
  padding: 6rem 0;
  background-color: #ffffff;
  overflow: hidden;
}
.spring__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .spring__container {
    padding: 0 1rem;
  }
}
.spring__composition {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 700px;
}
@media (max-width: 1024px) {
  .spring__composition {
    min-height: 550px;
  }
}
@media (max-width: 768px) {
  .spring__composition {
    min-height: 400px;
  }
}
.spring__image {
  position: absolute;
}
.spring__image img {
  width: 100%;
  height: auto;
  display: block;
}
.spring__image--center {
  width: 45%;
  max-width: 500px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 1024px) {
  .spring__image--center {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .spring__image--center {
    width: 60%;
  }
}
.spring__image--right {
  width: 28%;
  max-width: 320px;
  right: 10%;
  top: 55%;
  transform: translateY(-50%);
  z-index: 3;
}
@media (max-width: 1024px) {
  .spring__image--right {
    width: 32%;
    right: 5%;
  }
}
@media (max-width: 768px) {
  .spring__image--right {
    width: 40%;
    right: 5%;
  }
}
.spring__text {
  position: absolute;
  left: 5%;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;
}
@media (max-width: 1024px) {
  .spring__text {
    left: 3%;
  }
}
@media (max-width: 768px) {
  .spring__text {
    left: 5%;
  }
}
.spring__headline {
  font-family: big-caslon-fb, serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #000000;
  line-height: 0.85;
  margin: 0;
}
.spring__headline-line {
  display: block;
}
.spring__headline-line--1 {
  font-size: 5rem;
  padding-left: 0;
}
@media (max-width: 1024px) {
  .spring__headline-line--1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .spring__headline-line--1 {
    font-size: 2.5rem;
  }
}
.spring__headline-line--2 {
  font-size: 8rem;
  padding-left: 1.5em;
}
@media (max-width: 1024px) {
  .spring__headline-line--2 {
    font-size: 6rem;
  }
}
@media (max-width: 768px) {
  .spring__headline-line--2 {
    font-size: 4rem;
  }
}

.shop-preview {
  padding: 6rem 0;
  background-color: #ffffff;
}
.shop-preview__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .shop-preview__container {
    padding: 0 1rem;
  }
}
.shop-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}
@media (max-width: 1024px) {
  .shop-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .shop-preview__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.shop-preview__item {
  overflow: hidden;
  aspect-ratio: 2/3;
}
.shop-preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}
.shop-preview__item:hover img {
  transform: scale(1.03);
}
.shop-preview__cta {
  text-align: center;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .shop-preview__cta {
    margin-top: 2rem;
  }
}
.shop-preview__button {
  display: inline-block;
  padding: 1rem 4rem;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #000000;
  background-color: transparent;
  border: 1px solid #000000;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.shop-preview__button:hover {
  background-color: #000000;
  color: #ffffff;
}

.blazers {
  padding: 6rem 0;
  background-color: #ffffff;
  overflow: hidden;
}
.blazers__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .blazers__container {
    padding: 0 1rem;
  }
}
.blazers__composition {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 750px;
}
@media (max-width: 1024px) {
  .blazers__composition {
    min-height: 600px;
  }
}
@media (max-width: 768px) {
  .blazers__composition {
    min-height: 450px;
  }
}
.blazers__image {
  position: absolute;
}
.blazers__image img {
  width: 100%;
  height: auto;
  display: block;
}
.blazers__image--left {
  width: 80%;
  max-width: 900px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 1024px) {
  .blazers__image--left {
    width: 85%;
  }
}
@media (max-width: 768px) {
  .blazers__image--left {
    width: 90%;
  }
}
.blazers__image--right {
  width: 40%;
  max-width: 450px;
  right: 8%;
  bottom: -15%;
  z-index: 3;
}
@media (max-width: 1024px) {
  .blazers__image--right {
    width: 45%;
    right: 5%;
  }
}
@media (max-width: 768px) {
  .blazers__image--right {
    width: 50%;
    right: 3%;
    bottom: 0;
  }
}
.blazers__text {
  position: absolute;
  left: 5%;
  top: 65%;
  transform: translateY(-50%);
  width: 60%;
  max-width: 700px;
  z-index: 4;
}
.blazers__text img {
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .blazers__text {
    width: 65%;
  }
}
@media (max-width: 768px) {
  .blazers__text {
    width: 75%;
  }
}

.camisas {
  padding: 8rem 0;
  padding-bottom: 20rem;
  background-color: #ffffff;
  overflow: hidden;
}
.camisas__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .camisas__container {
    padding: 0 1rem;
  }
}
.camisas__composition {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 900px;
}
@media (max-width: 1024px) {
  .camisas__composition {
    min-height: 700px;
  }
}
@media (max-width: 768px) {
  .camisas__composition {
    min-height: 500px;
  }
}
.camisas__image {
  position: absolute;
}
.camisas__image img {
  width: 100%;
  height: auto;
  display: block;
}
.camisas__image--one {
  width: 38%;
  max-width: 420px;
  left: 5%;
  top: 20%;
  z-index: 2;
}
@media (max-width: 1024px) {
  .camisas__image--one {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .camisas__image--one {
    width: 50%;
  }
}
.camisas__image--two {
  width: 42%;
  max-width: 500px;
  right: 10%;
  top: 0;
  z-index: 3;
}
@media (max-width: 1024px) {
  .camisas__image--two {
    width: 45%;
    right: 5%;
  }
}
@media (max-width: 768px) {
  .camisas__image--two {
    width: 55%;
    right: 3%;
  }
}
.camisas__image--three {
  width: 60%;
  max-width: 680px;
  left: 30%;
  bottom: -35%;
  z-index: 1;
}
@media (max-width: 1024px) {
  .camisas__image--three {
    width: 60%;
    left: 25%;
  }
}
@media (max-width: 768px) {
  .camisas__image--three {
    width: 70%;
    left: 15%;
    bottom: 0;
  }
}
.camisas__text {
  position: absolute;
  left: 50%;
  top: 68%;
  transform: translate(-50%, -50%);
  width: 55%;
  max-width: 650px;
  z-index: 4;
}
.camisas__text img {
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .camisas__text {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .camisas__text {
    width: 70%;
  }
}

.clients {
  padding: 6rem 1.5rem;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .clients {
    padding: 4rem 1rem;
  }
}
.clients__container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.clients__title {
  margin-bottom: 4rem;
}
.clients__title img {
  display: block;
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .clients__title {
    margin-bottom: 2rem;
  }
  .clients__title img {
    max-width: 280px;
  }
}
.clients__logos img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.clients__logos--grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 1024px) {
  .clients__logos--grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 540px;
  }
}
@media (max-width: 480px) {
  .clients__logos--grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 360px;
  }
}
.clients__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients__logo-item img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.clients__logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.categories {
  padding: 6rem 0;
}
.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) {
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .categories__grid {
    grid-template-columns: 1fr;
  }
}

.category-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.category-card--large {
  grid-row: span 2;
}
@media (max-width: 1024px) {
  .category-card--large {
    grid-row: span 1;
  }
}
.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover .category-card__image {
  transform: scale(1.05);
}
.category-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  color: #ffffff;
}
.category-card__title {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.category-card__link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.featured-products {
  padding: 6rem 0;
  background-color: #f7f7f7;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}
.section-header__title {
  font-weight: 300;
  letter-spacing: 0.05em;
}
.section-header--centered {
  flex-direction: column;
  text-align: center;
}
.section-header--centered .section-header__subtitle {
  color: #666666;
  margin-top: 0.5rem;
}

.view-all {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666666;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.view-all:hover {
  color: #000000;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #ffffff;
}
.product-card__image {
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1rem;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__image img {
  transform: scale(1.03);
}
.product-card__info {
  text-align: center;
  padding: 0 1rem 1rem;
}
.product-card__title {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.product-card__price {
  font-size: 0.875rem;
  color: #666666;
}

.corporate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
@media (max-width: 1024px) {
  .corporate {
    grid-template-columns: 1fr;
  }
}
.corporate__image {
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .corporate__image {
    aspect-ratio: 16/9;
  }
}
.corporate__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.corporate__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem;
  background-color: #f7f7f7;
}
.corporate__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 1rem;
}
.corporate__title {
  margin-bottom: 2rem;
}
.corporate__description {
  color: #666666;
  max-width: 500px;
  margin-bottom: 2rem;
}
.corporate__features {
  margin-bottom: 4rem;
}
.corporate__feature {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #333333;
  font-size: 0.9375rem;
}
.corporate__feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 1px;
  background-color: #000000;
}

.split-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .split-banner {
    grid-template-columns: 1fr;
  }
}

.split-item {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.split-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}
.split-item:hover::after {
  background-color: rgba(0, 0, 0, 0.4);
}
.split-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.split-item:hover .split-item__image {
  transform: scale(1.05);
}
.split-item__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 1;
}
.split-item__title {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.split-item__subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.brand-values {
  padding: 6rem 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
.brand-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .brand-values__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .brand-values__grid {
    grid-template-columns: 1fr;
  }
}

.value-item__icon {
  margin-bottom: 1rem;
  stroke: #999999;
}
.value-item__title {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.value-item__description {
  font-size: 0.8125rem;
  color: #666666;
  margin: 0;
}

.instagram {
  padding: 6rem 0;
}
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
@media (max-width: 1024px) {
  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .instagram__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.instagram__item {
  aspect-ratio: 1;
  overflow: hidden;
}
.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.instagram__item:hover img {
  transform: scale(1.1);
  opacity: 0.9;
}

.contact-cta {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.contact-cta__background {
  width: 100%;
}
.contact-cta__background img {
  width: 100%;
  height: auto;
  display: block;
}
.contact-cta__logo {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 96%;
}
.contact-cta__logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .contact-cta__logo {
    top: 3%;
  }
}
.contact-cta__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  text-align: center;
}
.contact-cta__button {
  display: inline-block;
  padding: 2rem 6rem;
  font-family: big-caslon-fb, serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-cta__button:hover {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .contact-cta__button {
    padding: 1.5rem 4rem;
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .contact-cta__button {
    padding: 1.25rem 2.5rem;
    font-size: 1.5rem;
  }
}

.footer {
  background-color: #ffffff;
  color: #000000;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
}
.footer__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}
.footer__logo img {
  width: 200px;
  height: auto;
}
@media (max-width: 768px) {
  .footer__logo img {
    width: 160px;
  }
}
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .footer__nav {
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
}
.footer__link {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666666;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #000000;
}
.footer__social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 480px) {
  .footer__social {
    gap: 1rem;
  }
}
.footer__social-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999999;
  transition: color 0.3s ease;
}
.footer__social-link:hover {
  color: #000000;
}
.footer__address {
  font-size: 0.75rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 4rem;
}
.footer__info {
  font-size: 0.7rem;
  color: #999999;
  letter-spacing: 0.05em;
}

.whatsapp-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: #000000;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.whatsapp-button:hover {
  background-color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.whatsapp-button:hover .whatsapp-button__icon {
  color: #000000;
}
.whatsapp-button:active {
  transform: scale(0.98);
}
.whatsapp-button__icon {
  width: 28px;
  height: 28px;
  color: #ffffff;
  transition: color 0.2s ease;
}
@media (max-width: 768px) {
  .whatsapp-button {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-button__icon {
    width: 26px;
    height: 26px;
  }
}

.products-page {
  padding-top: 160px;
}
@media (min-width: 1200px) {
  .products-page {
    padding-top: 200px;
  }
}
@media (max-width: 768px) {
  .products-page {
    padding-top: 70px;
  }
}
.products-page__hero {
  padding: 6rem 0 4rem;
  text-align: center;
  background-color: #ffffff;
}
.products-page__subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #666666;
  margin: 0 0 0.5rem;
}
.products-page__title {
  font-family: big-caslon-fb, serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #000000;
  margin: 0;
}
@media (max-width: 768px) {
  .products-page__title {
    font-size: 2rem;
  }
}
.products-page__description {
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
}
.products-page__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .products-page__container {
    padding: 0 1rem;
  }
}
.products-page__section-title {
  font-family: big-caslon-fb, serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 4rem;
  color: #000000;
}
@media (max-width: 768px) {
  .products-page__section-title {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}
.products-page__categories {
  padding: 4rem 0;
  background-color: #f7f7f7;
}
.products-page__categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .products-page__categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .products-page__categories-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.products-page__category-item {
  display: block;
  text-decoration: none;
  color: #000000;
  background-color: #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.products-page__category-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.products-page__category-item:hover .products-page__category-image img {
  transform: scale(1.05);
}
.products-page__category-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #eeeeee;
}
.products-page__category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.products-page__category-info {
  padding: 1rem 2rem;
  text-align: center;
}
.products-page__category-name {
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem;
}
.products-page__category-count {
  font-size: 0.8125rem;
  color: #666666;
}
.products-page__filters {
  padding: 2rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
  position: sticky;
  top: 80px;
  z-index: 100;
}
@media (max-width: 768px) {
  .products-page__filters {
    top: 60px;
  }
}
.products-page__filter-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}
@media (max-width: 768px) {
  .products-page__filter-nav {
    gap: 0.5rem 1rem;
  }
}
.products-page__filter-link {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #666666;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.products-page__filter-link:hover {
  color: #000000;
}
.products-page__filter-link--active {
  color: #000000;
  border-bottom-color: #000000;
}
.products-page__grid-section {
  padding: 4rem 0 8rem;
  background-color: #ffffff;
}
.products-page__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}
@media (max-width: 1024px) {
  .products-page__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .products-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .products-page__grid {
    gap: 1rem;
  }
}
.products-page__item {
  display: block;
  text-decoration: none;
  color: #000000;
}
.products-page__image {
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 3/4;
  background-color: #f7f7f7;
}
.products-page__image img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}
.products-page__item:hover .products-page__image img {
  transform: scale(1.03);
}
.products-page__info {
  text-align: left;
}
.products-page__category-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999999;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .products-page__category-label {
    font-size: 0.625rem;
  }
}
.products-page__name {
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: #000000;
}
@media (max-width: 768px) {
  .products-page__name {
    font-size: 0.75rem;
  }
}
.products-page__price {
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #666666;
  margin: 0;
}
@media (max-width: 768px) {
  .products-page__price {
    font-size: 0.75rem;
  }
}
.products-page__no-products {
  text-align: center;
  font-size: 1rem;
  color: #666666;
  padding: 6rem 0;
}

.woocommerce-pagination {
  margin-top: 6rem;
  text-align: center;
}
.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-pagination li a,
.woocommerce-pagination li span {
  display: inline-block;
  padding: 0.75rem 1rem;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: #000000;
  border: 1px solid #000000;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.woocommerce-pagination li a:hover,
.woocommerce-pagination li span:hover {
  background-color: #000000;
  color: #ffffff;
}
.woocommerce-pagination li span.current {
  background-color: #000000;
  color: #ffffff;
}

.single-product {
  padding-top: 160px;
  padding-bottom: 8rem;
}
@media (min-width: 1200px) {
  .single-product {
    padding-top: 200px;
  }
}
@media (max-width: 768px) {
  .single-product {
    padding-top: 70px;
  }
}
.single-product__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .single-product__container {
    padding: 0 1rem;
  }
}
.single-product__breadcrumb {
  margin-bottom: 4rem;
  font-size: 0.875rem;
  color: #999999;
}
.single-product__breadcrumb a {
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
}
.single-product__breadcrumb a:hover {
  color: #000000;
}
.single-product__breadcrumb-separator {
  margin: 0 0.5rem;
}
.single-product__breadcrumb-current {
  color: #000000;
}
.single-product__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}
@media (max-width: 1024px) {
  .single-product__layout {
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .single-product__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.single-product__gallery {
  position: sticky;
  top: 120px;
  height: fit-content;
}
@media (max-width: 768px) {
  .single-product__gallery {
    position: static;
  }
}
.single-product__image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: #f7f7f7;
}
.single-product__image > img:not(.single-product__seal) {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  object-fit: cover;
  object-position: top;
}
.single-product__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-product__image--placeholder > img:not(.single-product__seal) {
  width: 50%;
  height: auto;
  object-fit: contain;
  opacity: 0.5;
}
.single-product__seal {
  position: absolute !important;
  bottom: 2rem !important;
  right: 2rem !important;
  width: 100px !important;
  height: 100px !important;
  max-width: 100px !important;
  object-fit: contain !important;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 768px) {
  .single-product__seal {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    bottom: 1rem !important;
    right: 1rem !important;
  }
}
.single-product__details {
  padding-top: 1rem;
}
.single-product__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666666;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.2s ease;
}
.single-product__category:hover {
  color: #000000;
}
.single-product__title {
  font-family: big-caslon-fb, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1rem;
}
@media (max-width: 768px) {
  .single-product__title {
    font-size: 1.75rem;
  }
}
.single-product__price {
  font-size: 1.25rem;
  font-weight: 500;
  color: #000000;
  margin: 0 0 2rem;
}
.single-product__price del {
  color: #999999;
  font-weight: 400;
  margin-right: 0.5rem;
}
.single-product__price ins {
  text-decoration: none;
}
.single-product__description {
  font-size: 1rem;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 2rem;
}
.single-product__description p {
  margin: 0 0 1rem;
}
.single-product__description p:last-child {
  margin-bottom: 0;
}
.single-product__attribute {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}
.single-product__attribute-label {
  font-weight: 500;
  color: #000000;
}
.single-product__attribute-value {
  color: #333333;
}
.single-product__variation {
  margin-bottom: 2rem;
}
.single-product__variation-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0.5rem;
}
.single-product__variation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.single-product__variation-option {
  min-width: 48px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #dddddd;
  cursor: pointer;
  transition: all 0.2s ease;
}
.single-product__variation-option:hover {
  border-color: #000000;
}
.single-product__variation-option--selected {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}
.single-product__cart-form {
  margin: 2rem 0;
}
.single-product__add-to-cart {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  cursor: pointer;
  transition: all 0.2s ease;
}
.single-product__add-to-cart:hover:not(:disabled) {
  background-color: #ffffff;
  color: #000000;
}
.single-product__add-to-cart:disabled {
  background-color: #dddddd;
  border-color: #dddddd;
  color: #666666;
  cursor: not-allowed;
}
.single-product__accordion {
  margin-top: 2rem;
  border-top: 1px solid #eeeeee;
}
.single-product__accordion-item {
  border-bottom: 1px solid #eeeeee;
}
.single-product__accordion-item[open] .single-product__accordion-icon {
  transform: rotate(180deg);
}
.single-product__accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.single-product__accordion-header::-webkit-details-marker {
  display: none;
}
.single-product__accordion-header::marker {
  display: none;
}
.single-product__accordion-header:hover {
  color: #333333;
}
.single-product__accordion-icon {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.single-product__accordion-content {
  padding-bottom: 2rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #333333;
}
.single-product__accordion-content p {
  margin: 0;
}
.single-product__size-guide-link {
  display: inline-block;
  font-size: 0.8125rem;
  color: #666666;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  transition: color 0.2s ease;
}
.single-product__size-guide-link:hover {
  color: #000000;
}

.size-guide-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.size-guide-modal--visible {
  opacity: 1;
  visibility: visible;
}
.size-guide-modal--visible .size-guide-modal__content {
  transform: translateY(0);
}
.size-guide-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.size-guide-modal__content {
  position: relative;
  background-color: #ffffff;
  max-width: 900px;
  width: calc(100% - 8rem);
  max-height: calc(100vh - 8rem);
  padding: 4rem;
  overflow: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .size-guide-modal__content {
    width: calc(100% - 4rem);
    max-height: calc(100vh - 4rem);
    padding: 2rem;
  }
}
.size-guide-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 300;
  color: #666666;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.size-guide-modal__close:hover {
  color: #000000;
}
.size-guide-modal__title {
  font-family: big-caslon-fb, serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
}
@media (max-width: 768px) {
  .size-guide-modal__title {
    font-size: 1.25rem;
  }
}
.size-guide-modal__subtitle {
  font-size: 0.875rem;
  color: #666666;
  margin: 0 0 2rem;
}
.size-guide-modal__table-wrapper {
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  margin: 0 -4rem;
  padding: 0 4rem;
}
@media (max-width: 768px) {
  .size-guide-modal__table-wrapper {
    margin: 0 -2rem;
    padding: 0 2rem;
  }
}
.size-guide-modal__table {
  width: max-content;
  border-collapse: collapse;
  font-size: 0.8125rem;
  white-space: nowrap;
  pointer-events: none;
}
@media (max-width: 768px) {
  .size-guide-modal__table {
    font-size: 0.75rem;
  }
}
.size-guide-modal__table th,
.size-guide-modal__table td {
  padding: 0.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 768px) {
  .size-guide-modal__table th,
  .size-guide-modal__table td {
    padding: 0.5rem;
  }
}
.size-guide-modal__table th {
  font-weight: 500;
  background-color: #f7f7f7;
  color: #000000;
}
.size-guide-modal__table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #333333;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .size-guide-modal__table td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
  }
}
.size-guide-modal__table th:first-child {
  text-align: left;
}
@media (min-width: 768px) {
  .size-guide-modal__table th:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
  }
}
@media (hover: hover) {
  .size-guide-modal__table tbody tr:hover {
    background-color: #f7f7f7;
  }
  .size-guide-modal__table tbody tr:hover td:first-child {
    background-color: #f7f7f7;
  }
}
.size-guide-modal__table tbody tr:last-child td {
  border-bottom: none;
}

.somos-page__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.5rem 0;
}
@media (max-width: 768px) {
  .somos-page__container {
    padding: 2rem 1rem 0;
  }
}
.somos-page__image {
  width: 100%;
}
.somos-page__image img {
  width: 100%;
  height: auto;
  display: block;
}
.somos-page__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .somos-page__content {
    padding: 4rem 0;
  }
}
.somos-page__content p {
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .somos-page__content p {
    font-size: 1rem;
  }
}
.somos-page__content p:last-child {
  margin-bottom: 0;
}

.empresas-page__hero {
  width: 100%;
}
.empresas-page__hero img {
  width: 100%;
  height: auto;
  display: block;
}
.empresas-page__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 1.5rem 0;
  text-align: center;
}
@media (max-width: 768px) {
  .empresas-page__container {
    padding: 4rem 1rem 0;
  }
}
.empresas-page__featured {
  max-width: 900px;
  margin: 0 auto 4rem;
}
@media (max-width: 768px) {
  .empresas-page__featured {
    margin-bottom: 2rem;
  }
}
.empresas-page__featured p {
  font-family: big-caslon-fb, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .empresas-page__featured p {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .empresas-page__featured p {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .empresas-page__featured p {
    font-size: 1.25rem;
  }
}
.empresas-page__featured p:last-child {
  margin-bottom: 0;
}
.empresas-page__body {
  max-width: 800px;
  margin: 0 auto 8rem;
}
@media (max-width: 768px) {
  .empresas-page__body {
    margin-bottom: 6rem;
  }
}
.empresas-page__body p {
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .empresas-page__body p {
    font-size: 1rem;
  }
}
.empresas-page__body p:last-child {
  margin-bottom: 0;
}

.empresas-composition {
  padding: 8rem 0;
  padding-bottom: 38rem;
  background-color: #ffffff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .empresas-composition {
    padding-bottom: 22rem;
  }
}
.empresas-composition__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .empresas-composition__container {
    padding: 0 1rem;
  }
}
.empresas-composition__grid {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 900px;
}
@media (max-width: 1024px) {
  .empresas-composition__grid {
    min-height: 700px;
  }
}
@media (max-width: 768px) {
  .empresas-composition__grid {
    min-height: 500px;
  }
}
.empresas-composition__image {
  position: absolute;
}
.empresas-composition__image img {
  width: 100%;
  height: auto;
  display: block;
}
.empresas-composition__image--one {
  width: 38%;
  max-width: 440px;
  left: 0;
  top: 35%;
  z-index: 3;
}
@media (max-width: 768px) {
  .empresas-composition__image--one {
    width: 45%;
  }
}
.empresas-composition__image--two {
  width: 55%;
  max-width: 640px;
  left: 50%;
  top: -10%;
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 768px) {
  .empresas-composition__image--two {
    width: 65%;
    top: -5%;
  }
}
.empresas-composition__image--three {
  width: 26%;
  max-width: 300px;
  right: 5%;
  top: 20%;
  z-index: 4;
}
@media (max-width: 768px) {
  .empresas-composition__image--three {
    width: 32%;
    right: 3%;
  }
}
.empresas-composition__image--four {
  width: 55%;
  max-width: 640px;
  left: 50%;
  bottom: -75%;
  transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 1024px) {
  .empresas-composition__image--four {
    bottom: -60%;
  }
}
@media (max-width: 768px) {
  .empresas-composition__image--four {
    width: 65%;
    bottom: -40%;
  }
}

.contacto-page {
  padding-bottom: 8rem;
  padding-top: 4rem;
}
@media (min-width: 1024px) {
  .contacto-page {
    padding-top: 6rem;
  }
}
@media (min-width: 1200px) {
  .contacto-page {
    padding-top: 8rem;
  }
}
.contacto-page__container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .contacto-page__container {
    padding: 0 1rem;
  }
}
.contacto-page__header {
  text-align: center;
  margin-bottom: 4rem;
}
.contacto-page__title {
  font-family: big-caslon-fb, serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0 0 2rem;
  color: #000000;
}
@media (max-width: 768px) {
  .contacto-page__title {
    font-size: 2rem;
  }
}
.contacto-page__intro {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.6;
}
.contacto-page__intro p {
  margin: 0;
}

.contacto-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.contacto-form__group {
  margin-bottom: 2rem;
  position: relative;
}
.contacto-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contacto-form__input, .contacto-form__textarea {
  width: 100%;
  padding: 1rem;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 0;
  transition: border-color 0.2s ease;
  appearance: none;
}
.contacto-form__input:focus, .contacto-form__textarea:focus {
  outline: none;
  border-color: #000000;
}
.contacto-form__input::placeholder, .contacto-form__textarea::placeholder {
  color: #999999;
}
.contacto-form__input--error, .contacto-form__textarea--error {
  border-color: #b32d2e;
}
.contacto-form__textarea {
  resize: vertical;
  min-height: 150px;
}
.contacto-form__error {
  display: block;
  font-size: 0.875rem;
  color: #b32d2e;
  margin-top: 0.5rem;
}
.contacto-form__submit {
  margin-top: 4rem;
}
.contacto-form__button {
  width: 100%;
  padding: 1rem 2rem;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  background-color: #000000;
  border: 2px solid #000000;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.contacto-form__button:hover:not(:disabled) {
  background-color: #ffffff;
  color: #000000;
}
.contacto-form__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.contacto-form__button-loading {
  display: none;
}
.contacto-form--loading .contacto-form__button-text {
  display: none;
}
.contacto-form--loading .contacto-form__button-loading {
  display: inline;
}
.contacto-form__feedback {
  margin-top: 2rem;
  padding: 1rem;
  text-align: center;
  font-size: 0.9375rem;
}
.contacto-form__feedback:empty {
  display: none;
}
.contacto-form__feedback--success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.contacto-form__feedback--error {
  background-color: #ffebee;
  color: #b32d2e;
  border: 1px solid #ef9a9a;
}

.woocommerce-page {
  padding-top: 100px;
  padding-bottom: 8rem;
}
@media (max-width: 768px) {
  .woocommerce-page {
    padding-top: 60px;
  }
}
.woocommerce-page__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .woocommerce-page__container {
    padding: 0 1rem;
  }
}
.woocommerce-page__header {
  padding: 6rem 0 4rem;
  text-align: center;
}
@media (max-width: 768px) {
  .woocommerce-page__header {
    padding: 4rem 0 2rem;
  }
}
.woocommerce-page__breadcrumb {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: #666666;
}
.woocommerce-page__breadcrumb a {
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
}
.woocommerce-page__breadcrumb a:hover {
  color: #000000;
}
.woocommerce-page__breadcrumb-separator {
  margin: 0 0.5rem;
}
.woocommerce-page__breadcrumb-current {
  color: #000000;
}
.woocommerce-page__title {
  font-family: big-caslon-fb, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  margin: 0;
}
.woocommerce-page__content {
  max-width: 1000px;
  margin: 0 auto;
}

.cart {
  margin-bottom: 4rem;
}
.cart__header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 40px;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eeeeee;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666666;
}
@media (max-width: 1024px) {
  .cart__header {
    display: none;
  }
}
.cart__item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 40px;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 1024px) {
  .cart__item {
    grid-template-columns: 1fr 1fr 40px;
    grid-template-rows: auto auto;
    gap: 1rem 2rem;
  }
}
.cart__item-product {
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .cart__item-product {
    grid-column: 1/3;
  }
}
.cart__item-thumbnail {
  width: 80px;
  height: 100px;
  flex-shrink: 0;
  background: #f7f7f7;
}
.cart__item-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cart__item-thumbnail {
    width: 70px;
    height: 85px;
  }
}
.cart__item-details {
  flex: 1;
}
.cart__item-name {
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}
.cart__item-name a {
  color: #000000;
  text-decoration: none;
}
.cart__item-name a:hover {
  text-decoration: underline;
}
.cart__item-price-mobile {
  display: none;
  font-size: 0.875rem;
  color: #666666;
}
@media (max-width: 1024px) {
  .cart__item-price-mobile {
    display: block;
  }
}
.cart__item-price {
  font-size: 0.9375rem;
  color: #333333;
}
@media (max-width: 1024px) {
  .cart__item-price {
    display: none;
  }
}
@media (max-width: 1024px) {
  .cart__item-quantity {
    justify-self: start;
  }
}
.cart__item-quantity .quantity {
  display: flex;
  align-items: center;
  border: 1px solid #dddddd;
}
.cart__item-quantity .quantity input[type=number] {
  width: 50px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 0.875rem;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -moz-appearance: textfield;
}
.cart__item-quantity .quantity input[type=number]::-webkit-outer-spin-button, .cart__item-quantity .quantity input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart__item-quantity .quantity input[type=number]:focus {
  outline: none;
}
.cart__item-subtotal {
  font-size: 0.9375rem;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cart__item-subtotal {
    justify-self: end;
  }
}
@media (max-width: 1024px) {
  .cart__item-remove {
    grid-column: 3;
    grid-row: 1/3;
    align-self: center;
    justify-self: end;
  }
}
.cart__remove-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #999999;
  transition: color 0.2s ease;
}
.cart__remove-btn:hover {
  color: #000000;
}
.cart__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cart__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.cart__coupon {
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .cart__coupon {
    flex: 1;
  }
}
.cart__coupon-input {
  padding: 0.75rem 1rem;
  border: 1px solid #dddddd;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  width: 200px;
}
.cart__coupon-input:focus {
  outline: none;
  border-color: #000000;
}
@media (max-width: 768px) {
  .cart__coupon-input {
    flex: 1;
    width: auto;
  }
}
.cart__coupon-btn {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cart__update-btn {
    width: 100%;
  }
}

.cart-collaterals {
  margin-top: 4rem;
}
.cart-collaterals .cart_totals {
  margin-left: auto;
  max-width: 400px;
}
@media (max-width: 768px) {
  .cart-collaterals .cart_totals {
    max-width: 100%;
  }
}
.cart-collaterals .cart_totals h2 {
  font-family: big-caslon-fb, serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.cart-collaterals .cart_totals table {
  width: 100%;
  border-collapse: collapse;
}
.cart-collaterals .cart_totals table th,
.cart-collaterals .cart_totals table td {
  padding: 1rem 0;
  border-bottom: 1px solid #eeeeee;
  font-size: 0.9375rem;
}
.cart-collaterals .cart_totals table th {
  text-align: left;
  font-weight: 400;
  color: #666666;
}
.cart-collaterals .cart_totals table td {
  text-align: right;
}
.cart-collaterals .cart_totals table .order-total th,
.cart-collaterals .cart_totals table .order-total td {
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: none;
}
.cart-collaterals .cart_totals table .order-total th {
  color: #000000;
}
.cart-collaterals .cart_totals .wc-proceed-to-checkout {
  margin-top: 2rem;
}
.cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button {
  display: block;
  width: 100%;
  padding: 1rem;
  background: #000000;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.2s ease, color 0.2s ease;
}
.cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:hover {
  background: #333333;
}

.cart-empty {
  text-align: center;
  padding: 6rem 0;
}
.cart-empty__message {
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 4rem;
}
.cart-empty__btn {
  display: inline-block;
}

.woocommerce-info {
  display: none;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}
.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before {
  display: none;
}

.woocommerce-message {
  background: #f7f7f7;
  border-left: 3px solid #000000;
}

.woocommerce-error {
  background: #fff5f5;
  border-left: 3px solid #c53030;
  color: #c53030;
}
.woocommerce-error li {
  list-style: none;
}

.woocommerce-page--checkout .woocommerce-page__content {
  max-width: 1200px;
}

.checkout__layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 6rem;
}
@media (max-width: 1024px) {
  .checkout__layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.checkout__fields {
  order: 1;
}
@media (max-width: 1024px) {
  .checkout__fields {
    order: 2;
  }
}
.checkout__sidebar {
  order: 2;
}
@media (max-width: 1024px) {
  .checkout__sidebar {
    order: 1;
  }
}
.checkout__section-title {
  font-family: big-caslon-fb, serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eeeeee;
}
.checkout__order-review {
  background: #f7f7f7;
  padding: 2rem;
}
@media (max-width: 768px) {
  .checkout__order-review {
    padding: 1rem;
  }
}

.woocommerce-checkout h3 {
  font-family: big-caslon-fb, serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 2rem;
}
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
  margin-bottom: 4rem;
}
.woocommerce-checkout .form-row {
  margin-bottom: 1rem;
}
.woocommerce-checkout .form-row label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333333;
}
.woocommerce-checkout .form-row label .required {
  color: #c53030;
}
.woocommerce-checkout .form-row input[type=text],
.woocommerce-checkout .form-row input[type=email],
.woocommerce-checkout .form-row input[type=tel],
.woocommerce-checkout .form-row input[type=password],
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #dddddd;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9375rem;
  transition: border-color 0.2s ease;
}
.woocommerce-checkout .form-row input[type=text]:focus,
.woocommerce-checkout .form-row input[type=email]:focus,
.woocommerce-checkout .form-row input[type=tel]:focus,
.woocommerce-checkout .form-row input[type=password]:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
  outline: none;
  border-color: #000000;
}
.woocommerce-checkout .form-row textarea {
  min-height: 100px;
  resize: vertical;
}
.woocommerce-checkout .form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.woocommerce-checkout .form-row.form-row-first, .woocommerce-checkout .form-row.form-row-last {
  width: calc(50% - 0.5rem);
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px) {
  .woocommerce-checkout .form-row.form-row-first, .woocommerce-checkout .form-row.form-row-last {
    width: 100%;
    display: block;
  }
}
.woocommerce-checkout .form-row.form-row-first {
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .woocommerce-checkout .form-row.form-row-first {
    margin-right: 0;
  }
}
.woocommerce-checkout .form-row.form-row-last {
  margin-left: 0.5rem;
}
@media (max-width: 768px) {
  .woocommerce-checkout .form-row.form-row-last {
    margin-left: 0;
  }
}
.woocommerce-checkout .woocommerce-input-wrapper {
  width: 100%;
}
.woocommerce-checkout #ship-to-different-address label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  cursor: pointer;
}
.woocommerce-checkout #ship-to-different-address label input[type=checkbox] {
  width: auto;
}

.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table td {
  padding: 1rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #eeeeee;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table thead th {
  text-align: left;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #666666;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table thead th.product-total {
  text-align: right;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tbody .product-name {
  font-weight: 400;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tbody .product-total {
  text-align: right;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tfoot th {
  text-align: left;
  font-weight: 400;
  color: #666666;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tfoot td {
  text-align: right;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tfoot .order-total th,
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tfoot .order-total td {
  font-size: 1rem;
  font-weight: 500;
  border-bottom: none;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tfoot .order-total th {
  color: #000000;
}

.woocommerce-checkout-payment {
  background: #ffffff;
  padding: 2rem;
  margin-top: 2rem;
}
.woocommerce-checkout-payment .wc_payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method {
  padding: 1rem 0;
  border-bottom: 1px solid #eeeeee;
}
.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method:last-child {
  border-bottom: none;
}
.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  cursor: pointer;
}
.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method input[type=radio] {
  margin: 0;
}
.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method .payment_box {
  padding: 1rem 0 0 1.5rem;
  font-size: 0.875rem;
  color: #666666;
}
.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method .payment_box p {
  margin: 0;
}
.woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 2rem;
  font-size: 0.875rem;
}
.woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text {
  color: #666666;
}
.woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text a {
  color: #000000;
}
.woocommerce-checkout-payment .place-order #place_order {
  display: block;
  width: 100%;
  padding: 1rem;
  background: #000000;
  color: #ffffff;
  border: none;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s ease;
}
.woocommerce-checkout-payment .place-order #place_order:hover {
  background: #333333;
}
.woocommerce-checkout-payment .place-order #place_order:disabled {
  background: #dddddd;
  cursor: not-allowed;
}

.woocommerce-page--account .woocommerce-page__content {
  max-width: 1200px;
}

.woocommerce:has(.woocommerce-MyAccount-navigation) {
  display: flex;
  gap: 6rem;
}
@media (max-width: 768px) {
  .woocommerce:has(.woocommerce-MyAccount-navigation) {
    flex-direction: column;
    gap: 4rem;
  }
}

.woocommerce-MyAccount-navigation {
  flex-shrink: 0;
  width: 200px;
}
@media (max-width: 768px) {
  .woocommerce-MyAccount-navigation {
    width: 100%;
  }
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid #eeeeee;
}
.woocommerce-MyAccount-navigation li:first-child {
  border-top: 1px solid #eeeeee;
}
.woocommerce-MyAccount-navigation li.is-active a {
  color: #000000;
  background: #f7f7f7;
  padding-left: 1rem;
}
.woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, padding 0.2s ease;
}
.woocommerce-MyAccount-navigation li a:hover {
  color: #000000;
}

.woocommerce-MyAccount-content {
  flex: 1;
  min-width: 0;
}
.woocommerce-MyAccount-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #333333;
}
.woocommerce-MyAccount-content p a {
  color: #000000;
  text-decoration: underline;
}
.woocommerce-MyAccount-content p a:hover {
  text-decoration: none;
}
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
  font-family: big-caslon-fb, serif;
  font-weight: 400;
  margin: 0 0 2rem;
}
.woocommerce-MyAccount-content h2 {
  font-size: 1.5rem;
}
.woocommerce-MyAccount-content h3 {
  font-size: 1.25rem;
}

.woocommerce-form-login,
.woocommerce-form-register {
  max-width: 400px;
}
.woocommerce-form-login .woocommerce-form-row,
.woocommerce-form-register .woocommerce-form-row {
  margin-bottom: 1rem;
}
.woocommerce-form-login .woocommerce-form-row label,
.woocommerce-form-register .woocommerce-form-row label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333333;
}
.woocommerce-form-login .woocommerce-form-row label .required,
.woocommerce-form-register .woocommerce-form-row label .required {
  color: #c53030;
}
.woocommerce-form-login .woocommerce-form-row input[type=text],
.woocommerce-form-login .woocommerce-form-row input[type=email],
.woocommerce-form-login .woocommerce-form-row input[type=password],
.woocommerce-form-register .woocommerce-form-row input[type=text],
.woocommerce-form-register .woocommerce-form-row input[type=email],
.woocommerce-form-register .woocommerce-form-row input[type=password] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #dddddd;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9375rem;
  transition: border-color 0.2s ease;
}
.woocommerce-form-login .woocommerce-form-row input[type=text]:focus,
.woocommerce-form-login .woocommerce-form-row input[type=email]:focus,
.woocommerce-form-login .woocommerce-form-row input[type=password]:focus,
.woocommerce-form-register .woocommerce-form-row input[type=text]:focus,
.woocommerce-form-register .woocommerce-form-row input[type=email]:focus,
.woocommerce-form-register .woocommerce-form-row input[type=password]:focus {
  outline: none;
  border-color: #000000;
}
.woocommerce-form-login .woocommerce-form__label-for-checkbox,
.woocommerce-form-register .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  cursor: pointer;
}
.woocommerce-form-login .woocommerce-form__label-for-checkbox input[type=checkbox],
.woocommerce-form-register .woocommerce-form__label-for-checkbox input[type=checkbox] {
  width: auto;
}
.woocommerce-form-login .woocommerce-button,
.woocommerce-form-register .woocommerce-button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #000000;
  color: #ffffff;
  border: none;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 1rem;
}
.woocommerce-form-login .woocommerce-button:hover,
.woocommerce-form-register .woocommerce-button:hover {
  background: #333333;
}
.woocommerce-form-login .woocommerce-LostPassword,
.woocommerce-form-register .woocommerce-LostPassword {
  margin-top: 1rem;
}
.woocommerce-form-login .woocommerce-LostPassword a,
.woocommerce-form-register .woocommerce-LostPassword a {
  font-size: 0.875rem;
  color: #666666;
}
.woocommerce-form-login .woocommerce-LostPassword a:hover,
.woocommerce-form-register .woocommerce-LostPassword a:hover {
  color: #000000;
}

.u-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}
@media (max-width: 768px) {
  .u-columns {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.u-columns .u-column1 h2,
.u-columns .u-column2 h2 {
  font-family: big-caslon-fb, serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eeeeee;
}

.woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-orders-table th,
.woocommerce-orders-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eeeeee;
  font-size: 0.875rem;
}
.woocommerce-orders-table thead th {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #666666;
}
.woocommerce-orders-table tbody td {
  vertical-align: middle;
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-number a {
  color: #000000;
  font-weight: 500;
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #000000;
  color: #ffffff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.2s ease;
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a:hover {
  background: #333333;
}
@media (max-width: 768px) {
  .woocommerce-orders-table thead {
    display: none;
  }
  .woocommerce-orders-table tbody tr {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid #eeeeee;
  }
  .woocommerce-orders-table tbody td {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border: none;
  }
  .woocommerce-orders-table tbody td::before {
    content: attr(data-title);
    font-weight: 500;
    color: #666666;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }
}

.woocommerce-MyAccount-content:has(.woocommerce-Address) > .woocommerce-Addresses,
.woocommerce-Addresses {
  display: flex;
  gap: 6rem;
}
@media (max-width: 768px) {
  .woocommerce-MyAccount-content:has(.woocommerce-Address) > .woocommerce-Addresses,
  .woocommerce-Addresses {
    flex-direction: column;
    gap: 4rem;
  }
}

.woocommerce-Address {
  flex: 1;
  min-width: 0;
}
.woocommerce-Address header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.woocommerce-Address header h3 {
  font-family: big-caslon-fb, serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0;
}
.woocommerce-Address > h3 {
  font-family: big-caslon-fb, serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 1rem;
}
.woocommerce-Address address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #333333;
}
.woocommerce-Address .edit {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666666;
  text-decoration: none;
  white-space: nowrap;
}
.woocommerce-Address .edit:hover {
  color: #000000;
}

.woocommerce-EditAccountForm {
  max-width: 600px;
}
.woocommerce-EditAccountForm fieldset {
  border: none;
  padding: 0;
  margin: 4rem 0 0;
}
.woocommerce-EditAccountForm fieldset legend {
  font-family: big-caslon-fb, serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2rem;
  padding: 0;
}
.woocommerce-EditAccountForm .woocommerce-form-row {
  margin-bottom: 1rem;
}
.woocommerce-EditAccountForm .woocommerce-form-row label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333333;
}
.woocommerce-EditAccountForm .woocommerce-form-row label .required {
  color: #c53030;
}
.woocommerce-EditAccountForm .woocommerce-form-row input[type=text],
.woocommerce-EditAccountForm .woocommerce-form-row input[type=email],
.woocommerce-EditAccountForm .woocommerce-form-row input[type=password] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #dddddd;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9375rem;
  transition: border-color 0.2s ease;
}
.woocommerce-EditAccountForm .woocommerce-form-row input[type=text]:focus,
.woocommerce-EditAccountForm .woocommerce-form-row input[type=email]:focus,
.woocommerce-EditAccountForm .woocommerce-form-row input[type=password]:focus {
  outline: none;
  border-color: #000000;
}
.woocommerce-EditAccountForm .woocommerce-form-row.form-row-first, .woocommerce-EditAccountForm .woocommerce-form-row.form-row-last {
  width: calc(50% - 0.5rem);
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px) {
  .woocommerce-EditAccountForm .woocommerce-form-row.form-row-first, .woocommerce-EditAccountForm .woocommerce-form-row.form-row-last {
    width: 100%;
    display: block;
  }
}
.woocommerce-EditAccountForm .woocommerce-form-row.form-row-first {
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .woocommerce-EditAccountForm .woocommerce-form-row.form-row-first {
    margin-right: 0;
  }
}
.woocommerce-EditAccountForm .woocommerce-form-row.form-row-last {
  margin-left: 0.5rem;
}
@media (max-width: 768px) {
  .woocommerce-EditAccountForm .woocommerce-form-row.form-row-last {
    margin-left: 0;
  }
}
.woocommerce-EditAccountForm em {
  display: block;
  font-size: 0.8125rem;
  color: #666666;
  margin-top: 0.5rem;
  font-style: normal;
}
.woocommerce-EditAccountForm button[type=submit] {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #000000;
  color: #ffffff;
  border: none;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 2rem;
}
.woocommerce-EditAccountForm button[type=submit]:hover {
  background: #333333;
}

.woocommerce-address-fields {
  max-width: 600px;
}
.woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row {
  margin-bottom: 1rem;
}
.woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333333;
}
.woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row label .required {
  color: #c53030;
}
.woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row input[type=text],
.woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row input[type=email],
.woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row input[type=tel],
.woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #dddddd;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9375rem;
  transition: border-color 0.2s ease;
}
.woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row input[type=text]:focus,
.woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row input[type=email]:focus,
.woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row input[type=tel]:focus,
.woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row select:focus {
  outline: none;
  border-color: #000000;
}
.woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row select {
  appearance: none;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row.form-row-first, .woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row.form-row-last {
  width: calc(50% - 0.5rem);
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px) {
  .woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row.form-row-first, .woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row.form-row-last {
    width: 100%;
    display: block;
  }
}
.woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row.form-row-first {
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row.form-row-first {
    margin-right: 0;
  }
}
.woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row.form-row-last {
  margin-left: 0.5rem;
}
@media (max-width: 768px) {
  .woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row.form-row-last {
    margin-left: 0;
  }
}
.woocommerce-address-fields button[type=submit] {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #000000;
  color: #ffffff;
  border: none;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 2rem;
}
.woocommerce-address-fields button[type=submit]:hover {
  background: #333333;
}

.woocommerce-no-orders {
  padding: 6rem;
  background: #f7f7f7;
  text-align: center;
}
.woocommerce-no-orders__message {
  font-size: 1rem;
  color: #333333;
  margin: 0 0 2rem;
}
.woocommerce-no-orders__button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.2s ease;
}
.woocommerce-no-orders__button:hover {
  background: #333333;
}

.woocommerce-message--info,
.woocommerce-Message--info {
  padding: 4rem;
  background: #f7f7f7;
  text-align: center;
}
.woocommerce-message--info .woocommerce-info,
.woocommerce-Message--info .woocommerce-info {
  display: block;
  margin-bottom: 1rem;
}
.woocommerce-message--info .woocommerce-Button,
.woocommerce-Message--info .woocommerce-Button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.2s ease;
}
.woocommerce-message--info .woocommerce-Button:hover,
.woocommerce-Message--info .woocommerce-Button:hover {
  background: #333333;
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-modal--visible {
  opacity: 1;
  visibility: visible;
}
.search-modal--visible .search-modal__content {
  transform: translateY(0);
}
.search-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.92);
}
.search-modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .search-modal__content {
    padding: 4rem 1rem;
  }
}
.search-modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 300;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  z-index: 10;
}
.search-modal__close:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .search-modal__close {
    top: 1rem;
    right: 1rem;
  }
}
.search-modal__header {
  padding-top: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .search-modal__header {
    padding-top: 2rem;
    margin-bottom: 2rem;
  }
}
.search-modal__title {
  font-family: big-caslon-fb, serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .search-modal__title {
    font-size: 1.25rem;
  }
}
.search-modal__input-wrapper {
  position: relative;
}
.search-modal__input {
  width: 100%;
  padding: 1rem 4rem 1rem 0;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #ffffff;
  background: transparent;
  border: none;
  border-bottom: 1px solid #666666;
  outline: none;
  transition: border-color 0.2s ease;
}
.search-modal__input::placeholder {
  color: #666666;
}
.search-modal__input:focus {
  border-bottom-color: #ffffff;
}
@media (max-width: 768px) {
  .search-modal__input {
    font-size: 1.125rem;
    padding: 0.5rem 2rem 0.5rem 0;
  }
}
.search-modal__input-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #999999;
  pointer-events: none;
}
.search-modal__results {
  flex: 1;
  overflow-y: auto;
  padding-top: 2rem;
}
.search-modal__results::-webkit-scrollbar {
  width: 4px;
}
.search-modal__results::-webkit-scrollbar-track {
  background: transparent;
}
.search-modal__results::-webkit-scrollbar-thumb {
  background: #666666;
  border-radius: 2px;
}
.search-modal__loading {
  text-align: center;
  color: #999999;
  font-size: 0.875rem;
  padding: 4rem 0;
}
.search-modal__no-results {
  text-align: center;
  color: #999999;
  font-size: 1rem;
  padding: 6rem 0;
}
.search-modal__error {
  text-align: center;
  color: #ff6b6b;
  font-size: 0.875rem;
  padding: 4rem 0;
}
.search-modal__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .search-modal__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .search-modal__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.search-modal__item {
  display: block;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.search-modal__item:hover {
  opacity: 0.8;
}
.search-modal__item-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: #f7f7f7;
  margin-bottom: 0.5rem;
}
.search-modal__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.search-modal__item-info {
  text-align: left;
}
.search-modal__item-name {
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-modal__item-price {
  font-size: 0.8125rem;
  color: #999999;
  margin: 0;
}
.search-modal__view-all {
  text-align: center;
  padding: 4rem 0;
}
.search-modal__view-all-link {
  display: inline-block;
  font-size: 0.875rem;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}
.search-modal__view-all-link:hover {
  opacity: 0.7;
}

.woocommerce ul.products li.product {
  text-align: center;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 0.875rem;
  font-weight: 400;
  padding: 1rem 0 0.5rem;
}
.woocommerce ul.products li.product .price {
  color: #666666;
  font-size: 0.875rem;
}
.woocommerce ul.products li.product a img {
  margin-bottom: 0;
}

.woocommerce-benefits {
  max-width: 800px;
  margin: 0 auto 6rem;
  padding: 4rem;
  background-color: #f7f7f7;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .woocommerce-benefits {
    padding: 2rem;
    margin-bottom: 4rem;
  }
}
.woocommerce-benefits__title {
  font-family: big-caslon-fb, serif;
  font-size: 1.75rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .woocommerce-benefits__title {
    font-size: 1.5rem;
  }
}
.woocommerce-benefits__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.woocommerce-benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #333333;
  line-height: 1.6;
}
.woocommerce-benefits__item strong {
  font-weight: 500;
  color: #000000;
}
.woocommerce-benefits__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #000000;
  margin-top: 2px;
}
.woocommerce-benefits__icon svg {
  display: block;
}

.woocommerce-account .page-intro-spacer {
  height: 100px;
}
@media (max-width: 768px) {
  .woocommerce-account .page-intro-spacer {
    height: 80px;
  }
}
.woocommerce-account .u-columns.col2-set {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .woocommerce-account .u-columns.col2-set {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 0 1rem;
  }
}
.woocommerce-account .u-columns.col2-set::before, .woocommerce-account .u-columns.col2-set::after {
  display: none;
}
.woocommerce-account .u-columns.col2-set .u-column1,
.woocommerce-account .u-columns.col2-set .u-column2,
.woocommerce-account .u-columns.col2-set .col-1,
.woocommerce-account .u-columns.col2-set .col-2 {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce-account h2 {
  font-family: big-caslon-fb, serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eeeeee;
}
.woocommerce-account .woocommerce-form label {
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
  margin-bottom: 0.5rem;
  display: block;
}
.woocommerce-account .woocommerce-form .input-text {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid #dddddd;
  border-radius: 0;
  transition: border-color 0.2s ease;
}
.woocommerce-account .woocommerce-form .input-text:focus {
  outline: none;
  border-color: #000000;
}
.woocommerce-account .woocommerce-form .form-row {
  margin-bottom: 1rem;
}
.woocommerce-account .woocommerce-form button[type=submit] {
  width: 100%;
  padding: 1rem;
  font-family: tt-commons, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.woocommerce-account .woocommerce-form button[type=submit]:hover {
  background-color: #ffffff;
  color: #000000;
}
.woocommerce-account .lost_password {
  margin-top: 1rem;
}
.woocommerce-account .lost_password a {
  font-size: 0.875rem;
  color: #666666;
  text-decoration: underline;
}
.woocommerce-account .lost_password a:hover {
  color: #000000;
}
.woocommerce-account .woocommerce-form-login {
  max-width: 450px;
  margin: 0 auto;
}

/*# sourceMappingURL=style.css.map */
