:root {
  color-scheme: light;
  --bg: #f7f2eb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --border: rgba(14, 14, 14, 0.08);
  --text: #161616;
  --muted: #616161;
  --accent: #111111;
  --accent-soft: #8a6a3f;
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
  --radius: 30px;
  --radius-sm: 20px;
  --transition: 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fcf8f2 0%, var(--bg) 100%);
  min-height: 100vh;
  cursor: none;
}

body * {
  cursor: none;
}

.cursor-glow {
  position: fixed;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(138,106,63,0.45) 35%, transparent 70%);
  mix-blend-mode: multiply;
  transition: transform 120ms ease, width 120ms ease, height 120ms ease;
}

.cursor-glow.active {
  width: 42px;
  height: 42px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(252, 248, 242, 0.84);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.brand-mark img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--accent-soft);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.4rem;
}

.section-block {
  padding: 5rem 0;
}

.hero-section {
  min-height: 90vh;
  display: grid;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
}

.hero-copy {
  max-width: 560px;
  animation: fadeInUp 1s ease both;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-soft);
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
}

.rotating-text {
  color: var(--accent-soft);
  display: inline-block;
  min-width: 10ch;
  transition: opacity 300ms ease;
}

.hero-copy p {
  margin: 1.5rem 0 2rem;
  color: var(--muted);
  max-width: 42rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(17,17,17,0.16);
}

.button-secondary {
  background: transparent;
  color: var(--accent);
  border-color: rgba(17,17,17,0.16);
}

.hero-media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideFade 18s ease-in-out infinite;
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255,255,255,0.08), rgba(17,17,17,0.66));
}

@keyframes slideFade {
  0%, 25% { opacity: 1; }
  33.33%, 100% { opacity: 0; }
}

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

.about-stats {
  display: grid;
  gap: 1rem;
}

.stat-card {
  padding: 1.6rem;
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
  border: 1px solid var(--border);
}

.stat-card strong {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.4rem;
}

.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0.6rem 0 0;
}

.product-grid,
.icon-grid,
.service-grid,
.instagram-grid,
.faq-list {
  display: grid;
  gap: 1.5rem;
}

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

.product-card,
.icon-card,
.service-card,
.faq-item,
.newsletter-card,
.testimonial-card,
.contact-form,
.about-image,
.map-placeholder {
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(17,17,17,0.14);
}

.product-card img {
  height: 320px;
  object-fit: cover;
}

.product-copy {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-copy h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

.product-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.product-copy .price {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
}

.product-copy .button {
  width: 100%;
  margin-top: 1rem;
}

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

.icon-card {
  padding: 2rem;
  text-align: center;
  min-height: 240px;
}

.icon-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  border: 1px solid var(--accent-soft);
}

.icon-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}

.testimonial-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.testimonial-track {
  min-height: 240px;
}

.testimonial-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 500ms ease both;
}

.testimonial-card p {
  color: var(--muted);
  line-height: 1.9;
}

.testimonial-card strong {
  display: block;
  margin-top: 1.4rem;
  font-size: 1rem;
}

.slider-nav {
  border: 1px solid var(--border);
  background: var(--surface-strong);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.slider-nav:hover {
  transform: scale(1.04);
  background: #fff;
}

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

.instagram-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.centered-link {
  margin-top: 1.5rem;
  text-align: center;
}

.contact-cta {
  padding: 3rem 0;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(17,17,17,0.95), rgba(60,46,23,0.78));
  color: #fff;
  border-radius: var(--radius-sm);
}

.cta-card h2 {
  margin: 0.4rem 0 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.service-card {
  padding: 1.8rem;
}

.service-card h3 {
  margin: 0 0 0.6rem;
}

.about-copy h2 {
  margin-top: 0.6rem;
}

.about-highlights {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.about-image {
  min-height: 540px;
  background: url('pics/IMG_7894.jpg') center / cover no-repeat;
}

.contact-page {
  padding-bottom: 4rem;
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.map-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form,
.newsletter-form {
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.newsletter-form input {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-feedback {
  margin: 0;
  color: var(--accent-soft);
  min-height: 1.4rem;
}

.newsletter-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

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

.shop-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 1rem;
  align-items: center;
}

.search-input,
.shop-controls select {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.empty-state {
  padding: 2rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  text-align: center;
  color: var(--muted);
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  transition: transform var(--transition);
}

.faq-item:hover {
  transform: translateY(-1px);
}

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
  padding: 0 1.6rem;
}

.faq-answer.open {
  max-height: 200px;
  padding-top: 1rem;
}

.site-footer {
  padding: 3rem 0 2rem;
  background: #141414;
  color: #f7f2eb;
}

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

.footer-grid h4,
.footer-grid h3 {
  margin-bottom: 1rem;
}

.footer-grid a {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: #ccc;
}

.footer-copy {
  margin-top: 2rem;
  color: #777;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(0,0,0,0.14);
  z-index: 25;
}

.product-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  padding: 1.5rem;
}

.product-modal.active {
  display: grid;
}

.modal-content {
  width: min(980px, 100%);
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.modal-close {
  border: none;
  background: transparent;
  font-size: 2rem;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  cursor: pointer;
}

.modal-body {
  padding: 2rem;
}

.product-details {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.product-details img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  min-height: 420px;
}

.thumbnail-row {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.thumbnail-row button {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.thumbnail-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info h2 {
  margin-top: 0;
}

.product-info p {
  color: var(--muted);
  line-height: 1.8;
}

.product-meta {
  display: grid;
  gap: 1rem;
}

.product-meta label {
  font-weight: 600;
}

.product-meta select,
.product-meta input {
  width: 100%;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
}

.quantity-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.quantity-row input {
  width: 100px;
}

.cart-list {
  display: grid;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 20px;
  background: var(--surface-strong);
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 18px;
}

.cart-item h4 {
  margin: 0 0 0.25rem;
}

.cart-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.cart-total {
  padding: 1.8rem;
  border-radius: 20px;
  background: var(--surface-strong);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-panel {
  margin: 2rem 0;
}

@media (max-width: 1024px) {
  .product-grid,
  .icon-grid,
  .service-grid,
  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  body * {
    cursor: auto;
  }

  .cursor-glow {
    display: none;
  }

  .site-header,
  .section-block,
  .hero-section,
  .about-page .grid-two,
  .contact-page .grid-two {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-section {
    min-height: auto;
  }

  .site-header {
    position: relative;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto auto;
    flex-direction: column;
    background: rgba(255,255,255,0.97);
    padding: 1.5rem 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    transform: translateY(-120%);
    transition: transform var(--transition);
    gap: 1rem;
    display: none;
  }

  .main-nav.open {
    display: flex;
    transform: translateY(0);
  }

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

  .product-grid,
  .icon-grid,
  .service-grid,
  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .cta-card,
  .grid-two,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .cta-card {
    text-align: center;
  }

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

@media (max-width: 540px) {
  .hero-actions,
  .cta-actions,
  .newsletter-form {
    flex-direction: column;
  }

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

  .contact-form input,
  .contact-form textarea,
  .newsletter-form input {
    padding: 0.95rem 1rem;
  }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
