/* ===== Ganesha Garden - Bali Statues ===== */

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

:root {
  --gold: #C8A951;
  --gold-light: #E8D5A3;
  --gold-dark: #9E7E2E;
  --stone: #8B7D6B;
  --stone-light: #A89B8C;
  --stone-dark: #5C513F;
  --earth: #3D2B1F;
  --earth-light: #5E4636;
  --cream: #FAF6EE;
  --cream-dark: #EDE5D4;
  --moss: #4A6741;
  --moss-light: #6B8B61;
  --charcoal: #2C2C2C;
  --white: #FFFFFF;
  --shadow: rgba(61, 43, 31, 0.15);
  --shadow-strong: rgba(61, 43, 31, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HEADER ===== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

.header--transparent {
  background: transparent;
}

.header--solid {
  background: rgba(61, 43, 31, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--shadow);
}

.header__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.header__logo-icon {
  height: 40px;
  width: auto;
}

.header__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.header__subtitle {
  font-size: 0.7rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 300;
}

.header__nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header__link {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.header__link:hover::after {
  width: 100%;
}

.header__link:hover {
  color: var(--gold);
}

/* Mobile menu */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.header__burger span {
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--earth);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.4s ease;
    gap: 2.5rem;
  }
  .header__nav--open {
    right: 0;
  }
  .header__link {
    font-size: 1.1rem;
  }
  .header__cart {
    order: 1;
    margin-left: auto;
    margin-right: 0.5rem;
  }
  .header__burger {
    order: 2;
  }
}

/* ===== HERO ===== */

.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    linear-gradient(180deg,
      rgba(61, 43, 31, 0.7) 0%,
      rgba(61, 43, 31, 0.4) 40%,
      rgba(61, 43, 31, 0.7) 100%
    ),
    url('https://images.unsplash.com/photo-1555400038-63f5ba517a47?w=1920&q=80') center/cover no-repeat;
}

.hero__content {
  max-width: 800px;
  padding: 2rem;
  animation: fadeUp 1.2s ease;
}

.hero__ornament {
  color: var(--gold);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5rem;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.hero__title span {
  color: var(--gold);
}

.hero__tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero__desc {
  color: var(--cream-dark);
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero__cta {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.4s ease;
}

.hero__cta:hover {
  background: var(--gold);
  color: var(--earth);
}

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

/* ===== SECTION COMMON ===== */

.section {
  padding: 6rem 2rem;
}

.section--dark {
  background: var(--earth);
  color: var(--cream);
}

.section--stone {
  background: var(--cream-dark);
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__ornament {
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 0.3rem;
  margin-bottom: 0.5rem;
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section__title span {
  color: var(--gold);
}

.section__line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--stone);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.section--dark .section__subtitle {
  color: var(--stone-light);
}

/* ===== FEATURES ===== */

.features-section {
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse at 20% 50%, rgba(200,169,81,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(200,169,81,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.feature {
  text-align: center;
  padding: 2.5rem 2rem 2rem;
  background: var(--white);
  border-radius: 4px;
  position: relative;
  box-shadow: 0 4px 25px rgba(61, 43, 31, 0.07);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.feature::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(200,169,81,0.04) 0%, transparent 60%);
  transform: translate(-50%, 80%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(61, 43, 31, 0.12), 0 0 0 1px rgba(200,169,81,0.1);
}

.feature:hover::before {
  transform: scaleX(1);
}

.feature:hover::after {
  transform: translate(-50%, 50%);
}

.feature__icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.5s ease;
}

.feature__icon-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(200,169,81,0.3);
  transition: all 0.5s ease;
}

.feature:hover .feature__icon-wrap {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: scale(1.08);
}

.feature:hover .feature__icon-wrap::after {
  inset: -8px;
  border-color: rgba(200,169,81,0.5);
  transform: rotate(90deg);
}

.feature__icon {
  font-size: 2.2rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.feature__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--earth);
  position: relative;
}

.feature__text {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.8;
  font-weight: 300;
  position: relative;
}

.feature__number {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(200,169,81,0.07);
  line-height: 1;
  pointer-events: none;
  transition: color 0.5s ease;
}

.feature:hover .feature__number {
  color: rgba(200,169,81,0.13);
}

/* ===== ENVIOS ===== */

.envios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.envios-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 25px rgba(61, 43, 31, 0.07);
  border-left: 3px solid var(--gold);
  transition: all 0.4s ease;
}

.envios-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(61, 43, 31, 0.12);
}

.envios-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.envios-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--earth);
  margin-bottom: 0.8rem;
}

.envios-card__text {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.8;
  font-weight: 300;
}

/* ===== PRODUCT GRID ===== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.4s ease;
  cursor: pointer;
}

.product-card:hover {
  box-shadow: 0 12px 40px var(--shadow-strong);
}

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card__image {
  transform: none;
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--earth);
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.product-card__badge--sold {
  background: #C0392B;
  color: #fff;
  top: 1rem;
  left: auto;
  right: 1rem;
}
.product-card__badge--offer {
  background: #C0392B;
  color: #fff;
  top: 1rem;
  left: auto;
  right: 1rem;
}
.product-card__price--old {
  text-decoration: line-through;
  color: #999 !important;
  font-size: 1rem;
  margin-right: 0.5rem;
  font-weight: 400;
}
.product-card__price--offer {
  color: #E53935 !important;
  font-weight: 700;
  font-size: 1.4rem;
  background: #FFF3F3;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
}

.product-card__body {
  padding: 1.5rem;
}

.product-card__material {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--stone);
  margin-bottom: 0.5rem;
}

.product-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--earth);
}

.product-card__desc {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}

.product-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.product-card__btn {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-dark);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.product-card__btn:hover {
  background: var(--gold);
  color: var(--white);
}

/* ===== PRODUCT MODAL ===== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay--active {
  display: flex;
}

.modal {
  background: var(--white);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--stone);
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.modal__gallery {
  position: relative;
}

.modal__main-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.modal__thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
}

.modal__thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.modal__thumb:hover, .modal__thumb--active {
  opacity: 1;
}

.modal__details {
  padding: 2.5rem;
}

.modal__material {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--stone);
  margin-bottom: 0.5rem;
}

.modal__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--earth);
  margin-bottom: 1rem;
}

.modal__price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.modal__desc {
  font-size: 0.95rem;
  color: var(--stone-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.modal__specs {
  list-style: none;
  margin-bottom: 2rem;
}

.modal__specs li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.85rem;
  display: flex;
  gap: 0.5rem;
}

.modal__specs li strong {
  color: var(--earth);
  min-width: 100px;
}

.modal__contact-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.modal__contact-btn:hover {
  background: var(--gold-dark);
}

/* ===== ABOUT ===== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 10px 10px 0 var(--gold);
}

.about__text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--cream);
}

.about__text p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--stone-light);
  margin-bottom: 1rem;
  font-weight: 300;
}

/* ===== FOOTER ===== */

.footer {
  background: var(--charcoal);
  color: var(--stone-light);
  padding: 4rem 2rem 2rem;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer__brand-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-weight: 300;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  color: var(--stone-light);
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer__social a:hover {
  color: var(--gold);
}

.footer__col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: var(--stone-light);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
  font-weight: 300;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.8rem;
  font-weight: 300;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  color: var(--stone);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s;
}

.footer__legal a:hover {
  color: var(--gold);
}

/* ===== CONTACT ===== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

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

.contact__info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact__info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact__info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--stone);
  margin-bottom: 0.3rem;
}

.contact__info-value {
  font-size: 1rem;
  color: var(--earth);
  font-weight: 500;
}

/* ===== REVIEWS ===== */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 2px;
  box-shadow: 0 4px 15px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.3s;
}

.review-card:hover {
  box-shadow: 0 8px 30px var(--shadow-strong);
}

.review-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-card__text {
  color: var(--stone);
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-card__author {
  border-top: 1px solid var(--cream-dark);
  padding-top: 1rem;
}

.review-card__name {
  font-weight: 600;
  color: var(--earth);
  font-size: 0.95rem;
}

.review-card__location {
  color: var(--stone);
  font-size: 0.8rem;
}

.review-card__photo {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}

.review-form-wrap {
  max-width: 600px;
  margin: 3rem auto 0;
  padding: 0 2rem;
}

.review-form__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--earth);
  text-align: center;
  margin-bottom: 1.5rem;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-form__row {
  display: flex;
  gap: 1rem;
}

.review-form__row input {
  flex: 1;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--cream-dark);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background: var(--white);
}

.review-form input:focus,
.review-form textarea:focus {
  border-color: var(--gold);
}

.review-form textarea {
  min-height: 100px;
  resize: vertical;
}

.review-form__stars-select {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--stone);
}

.review-form__stars {
  display: flex;
  gap: 0.2rem;
}

.review-form__stars span {
  font-size: 1.5rem;
  color: var(--cream-dark);
  cursor: pointer;
  transition: color 0.2s;
}

.review-form__stars span:hover,
.review-form__star--active {
  color: var(--gold) !important;
}

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

.review-form__photo-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px dashed var(--stone);
  color: var(--stone);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}

.review-form__photo-label:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.review-form__btn {
  padding: 0.8rem;
  background: var(--earth);
  color: var(--gold);
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.review-form__btn:hover {
  background: var(--gold);
  color: var(--earth);
}

.review-form__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 700px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-form__row {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ===== CONTACT ===== */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: border-color 0.3s;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  padding: 1rem 2rem;
  background: var(--earth);
  color: var(--gold);
  border: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.contact-form button:hover {
  background: var(--gold);
  color: var(--earth);
}

/* ===== EMPTY STATE ===== */

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.empty-state__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.empty-state__text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--stone);
}

/* ===== LOADING ===== */

.loading-spinner {
  display: flex;
  justify-content: center;
  padding: 4rem;
}

.loading-spinner::after {
  content: '';
  width: 40px;
  height: 40px;
  border: 3px solid var(--cream-dark);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== FILTER TABS ===== */

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--stone-light);
  background: transparent;
  color: var(--stone);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn--active, .filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(200, 169, 81, 0.08);
}

/* ===== SCROLL ANIMATIONS ===== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WHATSAPP FLOATING ===== */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===== HEADER CART ===== */

.header__cart {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  position: relative;
  padding: 0.3rem;
  line-height: 1;
  transition: transform 0.3s;
  text-decoration: none;
  color: inherit;
}
.header__cart:visited,
.header__cart:active,
.header__cart:focus {
  color: inherit;
  text-decoration: none;
}

.header__cart:hover {
  transform: scale(1.15);
}

.header__cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--gold);
  color: var(--earth);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  transition: transform 0.3s;
}

.header__cart-count:empty,
.header__cart-count[data-count="0"] {
  display: none;
}

.header__cart-bounce {
  animation: cartBounce 0.4s ease;
}

@keyframes cartBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

/* ===== CART DRAWER ===== */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay--active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--white);
  z-index: 1501;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 30px var(--shadow-strong);
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cart-drawer--open {
  right: 0;
}

.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.cart-drawer__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--earth);
}

.cart-drawer__close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--stone);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.cart-drawer__close:hover {
  color: var(--earth);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-drawer__empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--stone);
}

.cart-drawer__empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.cart-drawer__empty p {
  font-size: 0.95rem;
  font-weight: 300;
}

.cart-drawer__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Cart item */

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: flex-start;
}

.cart-item__image {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.cart-item__info {
  flex: 1;
  min-width: 0;
}

.cart-item__name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--earth);
  margin-bottom: 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item__price {
  font-size: 0.9rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.cart-item__qty button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--earth);
}

.cart-item__qty button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.cart-item__qty span {
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.cart-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--stone-light);
  padding: 0.2rem;
  transition: color 0.3s;
  flex-shrink: 0;
}

.cart-item__remove:hover {
  color: #c0392b;
}

/* Cart footer */

.cart-drawer__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--cream-dark);
  background: var(--cream);
}

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.cart-drawer__total span:first-child {
  font-weight: 500;
  color: var(--earth);
}

.cart-drawer__total-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.cart-drawer__pay {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
  margin-bottom: 0.7rem;
}

.cart-drawer__pay:hover {
  background: var(--gold-dark);
}

.cart-drawer__pay:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cart-drawer__checkout {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background: #25D366;
  color: var(--white);
  border: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
  margin-bottom: 0.7rem;
}

.cart-drawer__checkout:hover {
  background: #1da851;
}

.cart-drawer__clear {
  display: block;
  width: 100%;
  padding: 0.6rem;
  background: transparent;
  color: var(--stone);
  border: 1px solid var(--cream-dark);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.cart-drawer__clear:hover {
  border-color: var(--stone);
  color: var(--earth);
}

/* Add to cart button on product card */

.product-card__add-cart {
  padding: 0.5rem 1rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.product-card__add-cart:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* Modal add to cart */

.modal__add-cart {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--earth);
  color: var(--gold);
  border: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  margin-bottom: 0.7rem;
}

.modal__add-cart:hover {
  background: var(--gold);
  color: var(--earth);
}

/* Cart added feedback */

.cart-added-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--earth);
  color: var(--gold);
  padding: 0.8rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 1px;
  z-index: 3000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px var(--shadow-strong);
}

.cart-added-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
