@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --aqua: #bfe8e3;
  --aqua-deep: #71aaa4;
  --aqua-soft: #e9f8f6;
  --gold: #aa7a25;
  --gold-dark: #7d5717;
  --ink: #24211e;
  --muted: #6d6760;
  --line: #ded9d0;
  --cream: #fbfaf6;
  --paper: #ffffff;
  --danger: #a73c3c;
  --success: #35755d;
  --shadow: 0 18px 50px rgba(50, 44, 34, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
}

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

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

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

.topbar {
  background: var(--ink);
  color: white;
  padding: 9px 20px;
  text-align: center;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 250, 246, 0.95);
  border-bottom: 1px solid rgba(170, 122, 37, 0.18);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(170, 122, 37, 0.14);
}

.brand-link span {
  display: flex;
  flex-direction: column;
}

.brand-link strong {
  color: var(--gold-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.brand-link small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav > a:not(.cart-pill) {
  padding: 30px 0;
  position: relative;
}

.main-nav > a:not(.cart-pill)::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-dark);
}

.cart-pill span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  font-size: 0.72rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 50%;
  background: var(--aqua-soft);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.home-hero {
  overflow: hidden;
  padding: 76px 0 84px;
  background:
    radial-gradient(circle at 15% 20%, rgba(191, 232, 227, 0.65), transparent 32%),
    linear-gradient(135deg, #fbfaf6 0%, #f7f0e5 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 6.5vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.87;
}

.hero-copy > p {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.primary-button {
  background: var(--gold);
  color: white;
}

.primary-button:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.primary-button:disabled {
  background: #aaa49b;
  transform: none;
}

.secondary-button {
  border-color: var(--gold);
  background: transparent;
  color: var(--gold-dark);
}

.secondary-button:hover {
  background: var(--gold);
  color: white;
}

.full-width {
  width: 100%;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-trust span::before {
  margin-right: 7px;
  color: var(--gold);
  content: "✓";
}

.hero-visual {
  position: relative;
  min-height: 490px;
}

.hero-logo-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 260px;
  padding: 18px;
  border: 1px solid rgba(170, 122, 37, 0.25);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.hero-logo-card img {
  width: 100%;
}

.hero-photo {
  position: absolute;
  width: 210px;
  height: 330px;
  border: 8px solid white;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-photo.one {
  top: 0;
  left: 0;
  transform: rotate(-4deg);
}

.hero-photo.two {
  right: 0;
  bottom: 0;
  transform: rotate(4deg);
}

.simple-process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

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

.process-grid article {
  position: relative;
  min-height: 170px;
  padding: 38px 48px;
  border-right: 1px solid var(--line);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid article > strong {
  position: absolute;
  top: 25px;
  right: 30px;
  color: rgba(170, 122, 37, 0.18);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.5rem;
}

.process-grid h2 {
  margin-bottom: 7px;
  font-size: 1.9rem;
}

.process-grid p {
  max-width: 230px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.section {
  padding: 92px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.section-heading h2,
.categories-section h2,
.visit-section h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.98;
}

.text-link {
  border-bottom: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 8px 28px rgba(45, 39, 30, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 18px 45px rgba(45, 39, 30, 0.1);
  transform: translateY(-3px);
}

.product-image-button {
  position: relative;
  display: block;
  width: 100%;
  height: 360px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #eee9e1;
}

.product-image-button > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-image-button > img {
  transform: scale(1.025);
}

.product-badge,
.discount-badge,
.sold-out-badge,
.photo-count {
  position: absolute;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-badge {
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: white;
}

.discount-badge {
  top: 12px;
  left: 12px;
  background: #943f49;
  color: white;
  box-shadow: 0 6px 18px rgba(75, 24, 31, 0.22);
}

.product-badge.with-discount {
  top: 50px;
}

.sold-out-badge {
  top: 50%;
  left: 50%;
  padding: 12px 18px;
  background: rgba(36, 33, 30, 0.92);
  color: white;
  font-size: 0.8rem;
  transform: translate(-50%, -50%);
}

.photo-count {
  right: 12px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.product-card.is-sold-out {
  background: #eceae6;
}

.product-card.is-sold-out .product-image-button > img,
.product-card.is-sold-out .product-card-body {
  filter: grayscale(1);
  opacity: 0.62;
}

.product-card.is-sold-out:hover {
  transform: none;
}

.product-card-body {
  padding: 19px;
}

.product-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.product-heading small {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-heading h3 {
  margin: 4px 0 8px;
  font-size: 1.55rem;
  line-height: 1;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.price-display del,
.cart-item-price del {
  color: #8b8680;
  font-size: 0.78em;
  font-weight: 600;
  text-decoration-color: #943f49;
  text-decoration-thickness: 1.5px;
}

.price-display strong,
.cart-item-price strong {
  color: var(--gold-dark);
  white-space: nowrap;
}

.price-sale-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 3px 6px;
  border-radius: 999px;
  background: #f6e6e7;
  color: #8a3540;
  font-family: Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.card-price {
  flex: 0 0 auto;
  align-items: flex-end;
  flex-direction: column;
  gap: 3px;
  font-size: 0.88rem;
}

.product-card-body > p {
  min-height: 66px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.6;
}

.product-meta {
  display: flex;
  min-height: 52px;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 12px;
  color: #57504a;
  font-size: 0.68rem;
  line-height: 1.5;
}

.variant-field,
.catalog-tools label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 12px;
  font-size: 0.68rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  background: white;
  color: var(--ink);
}

input,
select {
  min-height: 46px;
  padding: 10px 12px;
}

textarea {
  padding: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(170, 122, 37, 0.12);
}

.categories-section {
  padding: 92px 0;
  background: var(--aqua-soft);
}

.category-links {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);
  gap: 1px;
  background: rgba(113, 170, 164, 0.26);
}

.category-links > * {
  min-height: 250px;
  padding: 34px;
  background: var(--aqua-soft);
}

.category-links > div p {
  max-width: 400px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.category-links > a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.2s ease;
}

.category-links > a:hover {
  background: var(--aqua);
}

.category-links > a span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
}

.category-links > a b {
  color: var(--gold-dark);
  font-size: 0.72rem;
}

.visit-section {
  padding: 92px 0;
  background: var(--ink);
  color: white;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 70px;
}

.visit-grid > div:first-child > p {
  max-width: 600px;
  margin: 24px 0 30px;
  color: #cfc9c1;
  line-height: 1.8;
}

.hours-card {
  padding: 30px;
  border: 1px solid rgba(170, 122, 37, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.hours-card h2 {
  font-size: 2.3rem;
}

.hours-card > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.hours-card > div:last-child {
  border-bottom: 0;
}

.hours-card span {
  color: #bdb6ae;
  font-size: 0.78rem;
}

.hours-card strong {
  text-align: right;
  font-size: 0.82rem;
}

.site-footer {
  padding-top: 70px;
  background: #151412;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.8fr);
  gap: 50px;
  padding-bottom: 60px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand strong {
  color: var(--aqua);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 8px;
  color: #a9a39c;
  font-size: 0.78rem;
  line-height: 1.7;
}

.footer-grid h3 {
  color: var(--aqua);
  font-size: 1.35rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid a,
.footer-grid span {
  color: #bcb6af;
  font-size: 0.75rem;
  line-height: 1.6;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  padding: 18px 20px;
  border-top: 1px solid #2a2824;
  color: #8a857e;
  text-align: center;
  font-size: 0.68rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 25;
  right: 18px;
  bottom: 18px;
  display: flex;
  min-height: 50px;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1f9d61;
  box-shadow: 0 12px 25px rgba(31, 157, 97, 0.3);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
}

.page-hero {
  padding: 80px 0 70px;
  background:
    linear-gradient(90deg, rgba(191, 232, 227, 0.55), transparent 52%),
    #f7f1e8;
}

.page-hero.compact {
  padding: 60px 0;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 15px;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.page-hero p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.catalog-section {
  padding-top: 45px;
}

.catalog-tools {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  align-items: end;
  gap: 14px;
  margin-bottom: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
}

.catalog-tools label {
  margin: 0;
}

.results-count {
  min-width: 90px;
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: right;
}

.catalog-message {
  padding: 50px 20px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.catalog-message.error {
  color: var(--danger);
}

.toast {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 80px;
  max-width: min(360px, calc(100% - 40px));
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
}

.product-modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 25px;
  overflow: auto;
  place-items: center;
  background: rgba(23, 21, 18, 0.78);
}

.product-modal {
  position: relative;
  display: grid;
  width: min(920px, 100%);
  grid-template-columns: 1fr 0.8fr;
  overflow: hidden;
  border-radius: 12px;
  background: white;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.modal-close {
  position: absolute;
  z-index: 4;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.14);
  font-size: 1.7rem;
}

.modal-gallery > img {
  width: 100%;
  height: 560px;
  background: #eeeae2;
  object-fit: contain;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px;
  overflow-x: auto;
}

.gallery-thumbs button {
  flex: 0 0 58px;
  width: 58px;
  height: 70px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 5px;
}

.gallery-thumbs button.active {
  border-color: var(--gold);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-copy {
  padding: 70px 42px 40px;
}

.modal-copy > small {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal-copy h2 {
  margin: 9px 0 12px;
  font-size: 3rem;
  line-height: 0.95;
}

.modal-price {
  flex-wrap: wrap;
  margin-top: 6px;
  font-size: 1.2rem;
}

.modal-price del {
  font-size: 0.78rem;
}

.modal-price .price-sale-label {
  font-size: 0.64rem;
}

.modal-copy p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.8;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 28px;
}

.cart-list-card,
.checkout-form,
.contact-main-card,
.contact-note,
.info-card,
.admin-catalog-panel,
.admin-form-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 8px 28px rgba(45, 39, 30, 0.05);
}

.section-title-row,
.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.section-title-row h2,
.checkout-form h2,
.admin-toolbar h2 {
  margin-bottom: 0;
  font-size: 2.6rem;
}

.text-button {
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.cart-list {
  margin-top: 22px;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.cart-item img {
  width: 92px;
  height: 110px;
  border-radius: 5px;
  object-fit: cover;
}

.cart-item h3 {
  margin-bottom: 4px;
  font-size: 1.3rem;
}

.cart-item p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.7rem;
}

.cart-item.unavailable {
  opacity: 0.65;
  filter: grayscale(1);
}

.cart-item.unavailable strong {
  color: var(--danger);
  font-size: 0.72rem;
}

.cart-item-price {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 4px;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.quantity-control button {
  width: 34px;
  height: 32px;
  border: 0;
  background: var(--cream);
}

.quantity-control span {
  width: 34px;
  text-align: center;
  font-size: 0.75rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--ink);
}

.cart-total strong {
  color: var(--gold-dark);
  font-size: 1.25rem;
}

.checkout-form > p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

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

.form-grid label,
.admin-form > label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #504a44;
  font-size: 0.7rem;
  font-weight: 800;
}

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

.secure-note {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.5;
  text-align: center;
}

.form-alert {
  margin-top: 17px;
  color: var(--danger);
  font-size: 0.76rem;
  font-weight: 700;
}

.empty-cart {
  padding: 80px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  text-align: center;
}

.empty-cart > span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.empty-cart h2 {
  margin: 12px 0;
  font-size: 3rem;
}

.empty-cart p {
  margin-bottom: 25px;
  color: var(--muted);
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.info-card {
  min-height: 260px;
}

.info-card > span {
  color: rgba(170, 122, 37, 0.23);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
}

.info-card h2 {
  margin: -18px 0 12px;
  font-size: 2.5rem;
}

.info-card p,
.info-card li {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.8;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 25px;
}

.contact-main-card {
  text-align: center;
}

.contact-main-card > img {
  width: min(350px, 100%);
  margin: 0 auto 22px;
}

.contact-main-card h2 {
  font-size: 2.5rem;
}

.contact-main-card p {
  color: var(--muted);
}

.contact-main-card .primary-button,
.contact-main-card .secondary-button {
  max-width: 430px;
  margin: 8px auto;
}

.map-link {
  display: inline-block;
  margin-top: 18px;
}

.contact-side {
  display: grid;
  gap: 25px;
}

.contact-layout .hours-card {
  background: var(--ink);
  color: white;
}

.contact-note {
  background: var(--aqua-soft);
}

.contact-note h2 {
  font-size: 2.4rem;
}

.contact-note p {
  color: var(--muted);
  line-height: 1.7;
}

.legal-content {
  max-width: 820px;
}

.legal-content > section {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  font-size: 2rem;
}

.legal-content p {
  color: var(--muted);
  line-height: 1.9;
}

.admin-page {
  min-height: 100vh;
  padding: 50px 20px 100px;
  background: #f1f0ed;
}

.admin-hero,
.admin-shell {
  width: min(1050px, 100%);
  margin-inline: auto;
}

.admin-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 25px;
}

.admin-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 0.95;
}

.admin-hero p {
  margin-bottom: 0;
  color: var(--muted);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.admin-stats article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.admin-stats span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-stats strong {
  display: block;
  margin-top: 5px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
}

.admin-message {
  margin-bottom: 18px;
  padding: 14px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 5px;
  background: #fff8e9;
  color: #604b25;
  font-size: 0.78rem;
  font-weight: 700;
}

.admin-message.error {
  border-left-color: var(--danger);
  background: #fff0f0;
  color: var(--danger);
}

.admin-catalog-panel,
.admin-form-panel {
  margin-bottom: 25px;
}

.admin-search {
  display: block;
  margin: 22px 0 12px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.admin-search input {
  margin-top: 7px;
}

.admin-product-row {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.admin-product-row > img {
  width: 74px;
  height: 88px;
  border-radius: 5px;
  object-fit: cover;
}

.admin-product-row.status-sold_out > img {
  filter: grayscale(1);
  opacity: 0.55;
}

.admin-product-copy > span {
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-product-copy h3 {
  margin: 3px 0;
  font-size: 1.45rem;
}

.admin-product-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.admin-product-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.admin-product-actions button {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  font-size: 0.65rem;
  font-weight: 800;
}

.admin-product-actions .sold-out-action {
  border-color: #d4a9a9;
  color: var(--danger);
}

.admin-product-actions .available-action {
  border-color: #9fc9b5;
  color: var(--success);
}

.admin-product-actions .delete-action {
  color: var(--muted);
}

.admin-form {
  margin-top: 23px;
}

.sale-toggle {
  padding: 15px 17px;
  border: 1px solid #ead5d7;
  border-radius: 8px;
  background: #fff8f8;
  color: #7e3039 !important;
}

.discount-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid #ead5d7;
  border-radius: 9px;
  background: linear-gradient(135deg, #fffafa, #fff6e9);
}

.discount-fields[hidden] {
  display: none;
}

.discount-fields > label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #504a44;
  font-size: 0.68rem;
  font-weight: 800;
}

.discount-preview {
  margin: 0;
  padding: 11px 13px;
  border-left: 3px solid #943f49;
  border-radius: 4px;
  background: white;
  color: #6e3239;
  font-size: 0.7rem;
  font-weight: 800;
}

.admin-product-copy del {
  color: #8b8680;
}

.admin-product-copy strong {
  color: var(--gold-dark);
}

.admin-sale-label {
  padding: 2px 5px;
  border-radius: 999px;
  background: #f6e6e7;
  color: #8a3540;
  font-weight: 800;
}

.admin-form small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1.5;
}

.admin-check {
  flex-direction: row !important;
  align-items: center;
}

.admin-check input {
  width: 22px;
  min-height: 22px;
}

.admin-images {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
}

.admin-image-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.admin-image-grid > div {
  position: relative;
}

.admin-image-grid img {
  width: 100%;
  height: 130px;
  border-radius: 5px;
  object-fit: cover;
}

.admin-image-grid button {
  width: 100%;
  padding: 6px;
  border: 0;
  background: var(--ink);
  color: white;
  font-size: 0.6rem;
}

.admin-image-grid small {
  position: absolute;
  top: 5px;
  left: 5px;
  padding: 3px 5px;
  border-radius: 3px;
  background: var(--gold);
  color: white;
}

.upload-field {
  padding: 18px;
  border: 1px dashed var(--gold) !important;
  border-radius: 7px;
  background: #fffbf1;
}

.upload-field input {
  padding: 8px;
}

.admin-access-denied {
  width: min(620px, 100%);
  margin: 70px auto;
  padding: 50px;
  border-radius: 10px;
  background: white;
  text-align: center;
}

.admin-access-denied > span {
  color: var(--danger);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-access-denied h1 {
  margin: 12px 0;
  font-size: 3rem;
}

.admin-access-denied p {
  color: var(--muted);
}

@media (max-width: 1050px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-grid {
    gap: 35px;
  }

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

  .category-links > div {
    grid-column: 1 / -1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .site-container {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    font-size: 0.65rem;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-link strong {
    font-size: 1.32rem;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 15px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .main-nav > a:not(.cart-pill) {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav > a:not(.cart-pill)::after {
    display: none;
  }

  .cart-pill {
    margin-top: 12px;
    justify-content: space-between;
  }

  .home-hero {
    padding: 54px 0 65px;
  }

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

  .hero-copy h1 {
    font-size: clamp(3.5rem, 16vw, 5.5rem);
  }

  .hero-visual {
    min-height: 430px;
  }

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

  .process-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 65px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .product-image-button {
    height: 330px;
  }

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

  .category-links > div {
    grid-column: auto;
  }

  .category-links > * {
    min-height: 190px;
  }

  .visit-grid,
  .checkout-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .catalog-tools {
    grid-template-columns: 1fr 1fr;
  }

  .search-field {
    grid-column: 1 / -1;
  }

  .results-count {
    text-align: left;
  }

  .product-modal {
    grid-template-columns: 1fr;
  }

  .modal-gallery > img {
    height: 480px;
  }

  .modal-copy {
    padding: 35px 28px;
  }

  .info-card-grid {
    grid-template-columns: 1fr;
  }

  .admin-hero {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .admin-product-row {
    grid-template-columns: 70px 1fr;
  }

  .admin-product-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .admin-product-actions button {
    flex: 1 1 120px;
  }

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

@media (max-width: 560px) {
  .site-container {
    width: min(100% - 22px, 1180px);
  }

  .brand-link small {
    display: none;
  }

  .hero-copy h1 {
    font-size: 3.65rem;
  }

  .hero-copy > p {
    font-size: 0.92rem;
  }

  .hero-actions > * {
    width: 100%;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-photo {
    width: 160px;
    height: 260px;
  }

  .hero-logo-card {
    width: 200px;
  }

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

  .product-image-button {
    height: 470px;
  }

  .product-card-body {
    padding: 20px;
  }

  .product-card-body > p {
    min-height: auto;
  }

  .catalog-tools {
    grid-template-columns: 1fr;
  }

  .search-field {
    grid-column: auto;
  }

  .page-hero {
    padding: 60px 0 50px;
  }

  .page-hero h1 {
    font-size: 3.7rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .product-modal-backdrop {
    align-items: start;
    padding: 10px;
  }

  .modal-gallery > img {
    height: 390px;
  }

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

  .form-grid .full,
  .admin-form .full {
    grid-column: auto;
  }

  .cart-list-card,
  .checkout-form,
  .contact-main-card,
  .contact-note,
  .info-card,
  .admin-catalog-panel,
  .admin-form-panel {
    padding: 20px;
  }

  .cart-item {
    grid-template-columns: 75px 1fr;
  }

  .cart-item img {
    width: 75px;
    height: 92px;
  }

  .cart-item-price {
    grid-column: 2;
    align-items: flex-start;
  }

  .discount-fields {
    grid-template-columns: 1fr;
  }

  .admin-page {
    padding-inline: 10px;
  }

  .admin-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-toolbar .primary-button {
    width: 100%;
  }

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

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
}

/* Hostinger edition */
.product-card[hidden],
.admin-product-row[hidden] {
  display: none;
}

.loading-shimmer {
  grid-column: 1 / -1;
  padding: 60px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  color: var(--muted);
  text-align: center;
}

.product-option {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.product-option select {
  width: 100%;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}

.product-modal-backdrop[hidden],
.toast[hidden] {
  display: none;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 18px;
  bottom: 84px;
  max-width: min(360px, calc(100% - 36px));
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: white;
  font-weight: 700;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 1.5rem;
}

.modal-thumbs button {
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 10px;
  background: none;
}

.modal-thumbs button.is-active {
  border-color: var(--gold);
}

.modal-thumbs img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}

.empty-state {
  padding: 45px 24px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  text-align: center;
}

.admin-login-page {
  min-height: 100vh;
  display: grid;
  padding: 30px 15px;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(191, 232, 227, 0.75), transparent 38%),
    var(--cream);
}

.admin-login-card {
  width: min(470px, 100%);
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.admin-login-card img {
  width: 84px;
  margin-bottom: 20px;
}

.admin-login-card h1 {
  margin-bottom: 12px;
  font-size: 3rem;
  line-height: 0.95;
}

.admin-login-card form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.admin-login-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.admin-login-card input {
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.admin-error {
  padding: 11px 13px;
  border-radius: 10px;
  background: #fff0f0;
  color: var(--danger);
  font-weight: 700;
}

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

.admin-top-actions button,
.admin-top-actions a {
  min-height: 44px;
}

.admin-password-panel {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.admin-password-panel summary {
  cursor: pointer;
  color: var(--gold-dark);
  font-weight: 800;
}

.admin-password-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.admin-password-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.admin-password-form input {
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.admin-product-copy h3 {
  margin-bottom: 5px;
}

.admin-stats,
.admin-page > .admin-message,
.admin-catalog-panel,
.admin-form-panel,
.admin-password-panel {
  width: min(1050px, 100%);
  margin-inline: auto;
}

.admin-form [type="file"] {
  padding: 13px;
  border: 1px dashed var(--gold);
  border-radius: 12px;
  background: var(--aqua-soft);
}

.image-input-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.image-input-row {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.image-input-row img {
  width: 78px;
  height: 78px;
  border-radius: 8px;
  object-fit: cover;
}

.image-input-row button {
  border: 0;
  background: transparent;
  color: var(--danger);
  font-weight: 800;
}

.upload-progress {
  color: var(--gold-dark);
  font-weight: 700;
}

@media (max-width: 760px) {
  .admin-password-form {
    grid-template-columns: 1fr;
  }
}
