@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap");

:root {
  --black: #050505;
  --ink: #141414;
  --white: #ffffff;
  --soft: #f5f5f3;
  --grey-50: #fafafa;
  --grey-100: #f1f1ef;
  --grey-200: #e5e5e2;
  --grey-400: #a0a09b;
  --grey-600: #686864;
  --silver: #b8b8b2;
  --success: #167c48;
  --whatsapp: #25d366;
  --danger: #b42318;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --container: 1240px;
  --header-height: 82px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 26px 70px rgba(0, 0, 0, 0.14);
  --ease: 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

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

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

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

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

h1,
h2,
h3,
h4 {
  line-height: 1.12;
}

:focus-visible {
  outline: 3px solid rgba(5, 5, 5, 0.26);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  border: 1px solid var(--black);
  transition: transform var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(70px, 8vw, 112px);
}

.section-tight {
  padding-block: clamp(48px, 6vw, 76px);
}

.section-soft {
  background: var(--soft);
}

.section-black {
  background: var(--black);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--grey-600);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-black .eyebrow,
.hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.display-title {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--black);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.section-title {
  margin-bottom: 16px;
  color: var(--black);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section-black .section-title {
  color: var(--white);
}

.section-copy {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--grey-600);
  font-size: 1.06rem;
}

.section-black .section-copy {
  color: rgba(255, 255, 255, 0.66);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-head > div:first-child {
  max-width: 760px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap var(--ease), opacity var(--ease);
}

.text-link:hover {
  gap: 15px;
  opacity: 0.68;
}

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 20px;
  background: var(--black);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.announcement a {
  margin-left: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.site-header {
  position: sticky;
  z-index: 900;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow var(--ease), border-color var(--ease);
}

.site-header.scrolled {
  border-color: var(--grey-200);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 70px;
  height: 46px;
  overflow: hidden;
  background: var(--black);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  display: grid;
  color: var(--black);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.18;
  text-transform: uppercase;
}

.brand-name small {
  margin-top: 4px;
  color: var(--grey-600);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(19px, 2.3vw, 34px);
}

.nav-link {
  position: relative;
  padding: 11px 0;
  color: #30302f;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--black);
  content: "";
  transition: transform var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  width: 43px;
  height: 43px;
  display: inline-grid;
  place-items: center;
  background: transparent;
  color: var(--black);
  border: 1px solid var(--grey-200);
  border-radius: 50%;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}

.icon-button:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.menu-toggle {
  display: none;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-dark:hover {
  background: #2a2a29;
}

.btn-light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-outline {
  color: var(--black);
  border-color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #052e17;
  border-color: var(--whatsapp);
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 34px));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  background: var(--black);
  color: var(--white);
}

.hero-content {
  z-index: 2;
  display: flex;
  align-items: center;
  padding: clamp(70px, 8vw, 120px) clamp(30px, 6.2vw, 105px);
}

.hero-copy {
  max-width: 640px;
}

.hero h1 {
  margin-bottom: 26px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(3.1rem, 6.5vw, 6.4rem);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.hero h1 em {
  display: block;
  color: var(--silver);
  font-weight: 600;
}

.hero p {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.69);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.hero-media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.45), transparent 40%), linear-gradient(0deg, rgba(5, 5, 5, 0.2), transparent 35%);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroReveal 1.1s var(--ease) both;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  max-width: 230px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(14px);
}

.hero-note strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.hero-note span {
  color: var(--grey-600);
  font-size: 0.78rem;
}

@keyframes heroReveal {
  from {
    transform: scale(1.06);
    filter: brightness(0.8);
  }
  to {
    transform: scale(1);
    filter: brightness(1);
  }
}

.trust-strip {
  border-bottom: 1px solid var(--grey-200);
}

.trust-list {
  min-height: 82px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 42px;
  padding: 0 18px;
  color: #343432;
  border-right: 1px solid var(--grey-200);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.trust-item:first-child {
  border-left: 1px solid var(--grey-200);
}

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

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

.category-grid-expanded .category-card {
  grid-column: span 4;
  min-height: 520px;
}

.category-grid-expanded .category-card:nth-child(n + 4) {
  grid-column: span 3;
  min-height: 450px;
}

.category-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #ddd;
  color: var(--white);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease), filter 500ms var(--ease);
}

.category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.03) 65%);
  content: "";
}

.category-card:hover img {
  transform: scale(1.045);
  filter: saturate(0.88);
}

.category-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.category-content span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.category-content h3 {
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  font-weight: 600;
}

.category-content p {
  max-width: 340px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 18px;
}

.product-card {
  min-width: 0;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  padding: 7px 10px;
  background: var(--white);
  color: var(--black);
  border-radius: 3px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.quick-view {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  left: 12px;
  min-height: 43px;
  transform: translateY(calc(100% + 15px));
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform var(--ease);
}

.product-card:hover .quick-view,
.quick-view:focus-visible {
  transform: translateY(0);
}

.product-info {
  padding-top: 15px;
}

.product-category {
  display: block;
  margin-bottom: 4px;
  color: var(--grey-600);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-title {
  margin-bottom: 6px;
  color: var(--black);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
}

.product-description {
  min-height: 44px;
  margin-bottom: 10px;
  color: var(--grey-600);
  font-size: 0.84rem;
  line-height: 1.5;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-price {
  color: var(--black);
  font-size: 0.94rem;
  font-weight: 700;
}

.buy-button {
  padding: 9px 13px;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--ease), color var(--ease);
}

.buy-button:hover {
  background: var(--white);
  color: var(--black);
}

.product-empty {
  grid-column: 1 / -1;
  padding: 70px 30px;
  background: var(--soft);
  color: var(--grey-600);
  text-align: center;
}

.product-empty i {
  display: block;
  margin-bottom: 15px;
  color: var(--black);
  font-size: 2rem;
}

.carousel-shell {
  position: relative;
}

.carousel-track {
  display: grid;
  grid-auto-columns: calc(25% - 14px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track > * {
  scroll-snap-align: start;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 26px;
}

.carousel-button[disabled] {
  cursor: not-allowed;
  opacity: 0.34;
}

.editorial {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 650px;
}

.editorial-media {
  min-height: 560px;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-copy {
  display: flex;
  align-items: center;
  padding: clamp(50px, 7vw, 105px);
  background: var(--black);
  color: var(--white);
}

.editorial-copy h2 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.2vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.editorial-copy p {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-200);
  border: 1px solid var(--grey-200);
}

.feature-item {
  min-height: 230px;
  padding: 34px;
  background: var(--white);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
}

.feature-item h3 {
  margin-bottom: 10px;
  color: var(--black);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.feature-item p {
  margin-bottom: 0;
  color: var(--grey-600);
  font-size: 0.9rem;
}

.social-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: clamp(36px, 5vw, 65px);
  background: var(--soft);
}

.social-cta-dark {
  background: #101010;
}

.social-cta-dark h2 {
  color: var(--white);
}

.social-cta-dark p {
  color: rgba(255, 255, 255, 0.62);
}

.social-cta h2 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.social-cta p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--grey-600);
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  background: var(--black);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.8fr 1fr;
  gap: clamp(28px, 4vw, 70px);
  padding-block: 74px 56px;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand .brand-name small {
  color: rgba(255, 255, 255, 0.48);
}

.footer-brand p {
  max-width: 340px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-column h3 {
  margin-bottom: 21px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column li + li {
  margin-top: 10px;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: color var(--ease);
}

.footer-column a:hover {
  color: var(--white);
}

.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  width: 16px;
  margin-top: 6px;
  color: var(--white);
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 23px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.footer-socials a:hover {
  background: var(--white);
  color: var(--black);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 21px;
  color: rgba(255, 255, 255, 0.46);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.75rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 11vw, 150px);
  background: var(--black);
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  top: -40%;
  right: -8%;
  width: min(48vw, 700px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025), 0 0 0 160px rgba(255, 255, 255, 0.015);
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.page-hero p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.08rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.shop-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 25px);
  padding: 26px;
  background: var(--soft);
}

.shop-sidebar h2 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.filter-group + .filter-group {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--grey-200);
}

.filter-label {
  display: block;
  margin-bottom: 11px;
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-options {
  display: grid;
  gap: 8px;
}

.filter-button {
  width: 100%;
  padding: 10px 12px;
  background: var(--white);
  color: var(--grey-600);
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.84rem;
  text-align: left;
  transition: color var(--ease), border-color var(--ease);
}

.filter-button:hover,
.filter-button.active {
  color: var(--black);
  border-color: var(--black);
}

.select-control,
.search-control {
  width: 100%;
  min-height: 46px;
  padding: 10px 13px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--grey-200);
}

.shop-search {
  position: relative;
  flex: 1;
  max-width: 440px;
}

.shop-search i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: var(--grey-600);
}

.shop-search input {
  padding-left: 43px;
}

.shop-count {
  color: var(--grey-600);
  font-size: 0.84rem;
}

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

.service-stack {
  display: grid;
  gap: 30px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
  min-height: 430px;
  background: var(--soft);
}

.service-card:nth-child(even) .service-image {
  order: 2;
}

.service-image {
  min-height: 430px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.service-card:hover .service-image img {
  transform: scale(1.035);
}

.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(35px, 6vw, 80px);
}

.service-number {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--grey-600);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
}

.service-content h2 {
  margin-bottom: 17px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.service-content p {
  margin-bottom: 27px;
  color: var(--grey-600);
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 250px;
  padding: 28px 22px;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.12);
  counter-increment: process;
}

.process-step::before {
  display: block;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.42);
  content: "0" counter(process);
  font-family: var(--serif);
  font-size: 1.7rem;
}

.process-step h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 1rem;
}

.process-step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.83rem;
}

.about-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-monogram {
  position: absolute;
  right: -25px;
  bottom: 35px;
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  font-family: var(--serif);
  font-size: 2.6rem;
}

.about-copy h2 {
  margin-bottom: 23px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.about-copy p {
  color: var(--grey-600);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.mission-card {
  min-height: 350px;
  padding: clamp(36px, 6vw, 75px);
  background: var(--black);
}

.mission-card i {
  margin-bottom: 70px;
  color: var(--silver);
  font-size: 1.6rem;
}

.mission-card h2 {
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
}

.mission-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

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

.value-card {
  min-height: 240px;
  padding: 28px;
  background: var(--soft);
}

.value-card span {
  display: block;
  margin-bottom: 60px;
  color: var(--grey-600);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.value-card h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.value-card p {
  margin-bottom: 0;
  color: var(--grey-600);
  font-size: 0.87rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(38px, 6vw, 85px);
  align-items: start;
}

.contact-panel {
  padding: clamp(34px, 5vw, 58px);
  background: var(--black);
  color: var(--white);
}

.contact-panel h2 {
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  font-weight: 600;
}

.contact-panel > p {
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.62);
}

.contact-list {
  display: grid;
  gap: 13px;
}

.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-item i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
}

.contact-item small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item span {
  color: var(--white);
  font-size: 0.9rem;
  word-break: break-word;
}

.contact-form-wrap h2 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
}

.contact-form-wrap > p {
  margin-bottom: 28px;
  color: var(--grey-600);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.form-group {
  min-width: 0;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--black);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.required {
  color: var(--danger);
}

.form-control {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--black);
  border: 1px solid #d9d9d5;
  border-radius: 4px;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.form-control:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(5, 5, 5, 0.07);
}

textarea.form-control {
  min-height: 125px;
  resize: vertical;
}

.form-note {
  margin: 12px 0 0;
  color: var(--grey-600);
  font-size: 0.76rem;
}

.form-note i {
  margin-right: 6px;
  color: var(--success);
}

.order-dialog,
.quick-dialog {
  width: min(920px, calc(100% - 28px));
  max-height: calc(100vh - 30px);
  padding: 0;
  overflow: auto;
  background: var(--white);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.quick-dialog {
  width: min(840px, calc(100% - 28px));
}

.order-dialog::backdrop,
.quick-dialog::backdrop {
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(4px);
}

.modal-close {
  position: sticky;
  z-index: 5;
  top: 15px;
  float: right;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 15px 15px 0 0;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--grey-200);
  border-radius: 50%;
}

.order-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 640px;
}

.order-product {
  position: relative;
  min-height: 640px;
  background: var(--black);
  color: var(--white);
}

.order-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
}

.order-product-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), transparent);
}

.order-product-info span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-product-info h2 {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
}

.order-product-info strong {
  font-size: 1rem;
}

.order-form-wrap {
  padding: 48px 42px 38px;
}

.order-form-wrap > span {
  color: var(--grey-600);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-form-wrap > h2 {
  margin: 7px 0 24px;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
}

.quick-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quick-image {
  min-height: 590px;
  background: var(--soft);
}

.quick-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.quick-content h2 {
  margin: 7px 0 12px;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
}

.quick-price {
  margin-bottom: 19px;
  font-weight: 700;
}

.quick-description {
  color: var(--grey-600);
}

.quick-meta {
  display: grid;
  gap: 8px;
  margin: 22px 0 28px;
  padding-block: 19px;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  color: var(--grey-600);
  font-size: 0.84rem;
}

.quick-meta strong {
  color: var(--black);
}

.whatsapp-float {
  position: fixed;
  z-index: 850;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--whatsapp);
  color: #073f22;
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.32);
  font-size: 1.6rem;
  transition: transform var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float span {
  position: absolute;
  right: calc(100% + 11px);
  width: max-content;
  padding: 8px 11px;
  transform: translateX(8px);
  background: var(--black);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
}

.whatsapp-float:hover span {
  transform: translateX(0);
  opacity: 1;
}

.toast {
  position: fixed;
  z-index: 1100;
  top: 100px;
  right: 20px;
  max-width: min(380px, calc(100% - 40px));
  padding: 15px 18px;
  transform: translateY(-18px);
  background: var(--black);
  color: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  font-size: 0.86rem;
  opacity: 0;
  pointer-events: none;
  transition: transform var(--ease), opacity var(--ease);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  transform: translateY(25px);
  opacity: 0;
  transition: transform 700ms var(--ease), opacity 700ms var(--ease);
}

.reveal.in-view {
  transform: none;
  opacity: 1;
}

@media (max-width: 1100px) {
  .nav-menu {
    gap: 18px;
  }

  .nav-link {
    font-size: 0.76rem;
  }

  .nav-order {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.92fr;
  }

  .hero-content {
    padding-inline: 42px;
  }

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

  .carousel-track {
    grid-auto-columns: calc(33.333% - 12px);
  }

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

  .footer-main {
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .menu-toggle {
    display: inline-grid;
  }

  .nav-menu {
    position: fixed;
    z-index: 910;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px;
    transform: translateX(105%);
    background: var(--white);
    box-shadow: -18px 20px 50px rgba(0, 0, 0, 0.12);
    transition: transform var(--ease);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    display: block;
    padding: 17px 3px;
    border-bottom: 1px solid var(--grey-200);
    font-size: 0.84rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active {
    color: var(--grey-600);
  }

  .mobile-menu-backdrop {
    position: fixed;
    z-index: 899;
    inset: var(--header-height) 0 0;
    display: none;
    background: rgba(0, 0, 0, 0.5);
  }

  .mobile-menu-backdrop.show {
    display: block;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: 650px;
    padding: 80px 30px;
  }

  .hero-media {
    min-height: 650px;
  }

  .trust-list {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 12px;
  }

  .trust-item {
    border: 0;
  }

  .trust-item:first-child {
    border: 0;
  }

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

  .category-grid-expanded {
    grid-template-columns: 1fr 1fr;
  }

  .category-grid-expanded .category-card,
  .category-grid-expanded .category-card:nth-child(n + 4) {
    grid-column: auto;
    min-height: 480px;
  }

  .category-grid-expanded .category-card:last-child {
    grid-column: 1 / -1;
  }

  .category-card:last-child {
    grid-column: 1 / -1;
    min-height: 480px;
  }

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

  .carousel-track {
    grid-auto-columns: calc(50% - 9px);
  }

  .editorial,
  .about-intro,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .social-cta {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }

  .shop-sidebar .filter-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card,
  .service-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(even) .service-image {
    order: 0;
  }

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

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .announcement {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.64rem;
    letter-spacing: 0.07em;
  }

  .announcement a {
    display: none;
  }

  .brand-mark {
    width: 66px;
    height: 43px;
  }

  .brand-name {
    font-size: 0.7rem;
  }

  .brand-name small {
    font-size: 0.54rem;
  }

  .nav-search {
    display: none;
  }

  .hero-content {
    min-height: 610px;
    padding: 70px 20px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.6rem);
  }

  .hero-actions,
  .service-actions,
  .social-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .service-actions .btn,
  .social-actions .btn {
    width: 100%;
  }

  .hero-meta {
    display: grid;
    gap: 12px;
    margin-top: 36px;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-note {
    right: 15px;
    bottom: 15px;
    left: 15px;
    max-width: none;
  }

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

  .trust-item {
    min-height: 48px;
    border-bottom: 1px solid var(--grey-200);
  }

  .section-head {
    display: block;
  }

  .section-head .text-link {
    margin-top: 20px;
  }

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

  .category-grid-expanded {
    grid-template-columns: 1fr;
  }

  .category-grid-expanded .category-card,
  .category-grid-expanded .category-card:nth-child(n + 4),
  .category-grid-expanded .category-card:last-child {
    grid-column: auto;
  }

  .category-card,
  .category-card:last-child {
    grid-column: auto;
    min-height: 500px;
  }

  .product-grid,
  .shop-products .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 10px;
  }

  .product-info {
    padding-top: 11px;
  }

  .product-description {
    display: none;
  }

  .product-title {
    min-height: 39px;
    font-size: 1rem;
  }

  .product-bottom {
    display: grid;
    align-items: stretch;
  }

  .buy-button {
    width: 100%;
    min-height: 38px;
  }

  .quick-view {
    display: none;
  }

  .carousel-track {
    grid-auto-columns: calc(83% - 9px);
  }

  .editorial-media {
    min-height: 480px;
  }

  .editorial-copy {
    padding: 55px 24px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .social-cta {
    padding: 34px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-block: 55px 40px;
  }

  .footer-bottom {
    display: grid;
    text-align: center;
  }

  .page-hero {
    padding-block: 70px;
  }

  .page-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.8rem);
  }

  .shop-sidebar {
    padding: 20px;
  }

  .shop-toolbar {
    display: grid;
  }

  .shop-search {
    max-width: none;
  }

  .shop-sidebar .filter-options {
    grid-template-columns: 1fr;
  }

  .service-image {
    min-height: 430px;
  }

  .service-content {
    padding: 38px 24px;
  }

  .process-grid,
  .mission-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-monogram {
    right: 12px;
    bottom: 12px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: auto;
  }

  .order-dialog,
  .quick-dialog {
    max-height: calc(100vh - 14px);
    width: calc(100% - 14px);
  }

  .order-layout,
  .quick-layout {
    grid-template-columns: 1fr;
  }

  .order-product {
    min-height: 330px;
  }

  .order-form-wrap,
  .quick-content {
    padding: 34px 20px 28px;
  }

  .quick-image {
    min-height: 410px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (max-width: 390px) {
  .brand-name {
    display: none;
  }

  .product-grid,
  .shop-products .product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-title {
    min-height: 0;
  }

  .product-description {
    display: block;
    min-height: 0;
  }
}

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

  .reveal {
    transform: none;
    opacity: 1;
  }
}
