:root {
  --bg:#ffffff;
  --bg-cream:#FAF3E7;
  --text:#2f2a25;
  --muted:#6d6156; /* slightly darker for contrast */
  --gold:#d4af37;
  --gold-dark:#8a6d3b;
  --shadow:0 10px 30px rgba(139,110,59,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* Containers & Utilities */
.container { width:min(1160px, 92%); margin-inline:auto; }
.center { text-align:center; }
.muted { color:var(--muted); }
html, body { margin: 0; padding: 0; }

.h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 1.2rem + 2vw, 2.4rem);
  margin: 0 0 8px;
  color: #2a241e;
}

.section { padding:64px 0; }
.section--light { background:var(--bg-cream); }

/* Buttons */
.btn {
  display:inline-block;
  padding:.9rem 1.15rem;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  border:1px solid var(--gold);
  transition:.25s ease;
  box-shadow:var(--shadow);
}
.btn--gold { background:var(--gold); color:#fff; }
.btn--gold:hover { filter:brightness(.96); transform:translateY(-1px); }
.btn--ghost { background:transparent; color:var(--gold-dark); }
.btn--ghost:hover { background:rgba(212,175,55,.08); }

/* Header */
header {
  margin: 0;
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom:1px solid #f0e9df;
}
.nav { display:flex; align-items:center; justify-content:space-between; }
.brand { display:flex; align-items:center; gap:12px; text-decoration:none; color:inherit; }
.brand__logo { width:50px; height:50px; object-fit:contain; border-radius:8px; box-shadow:var(--shadow); }
.brand__name { display:flex; flex-direction:column; line-height:1.15; }

/* (1) Standardized brand text + subtitle */
.brand__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 0.9rem + 0.8vw, 1.4rem);
  font-weight: 700;
  letter-spacing: .03em;
  margin: 0;
  color: var(--text);
}
.brand__subtitle {
  font-size: clamp(0.68rem, 0.6rem + 0.3vw, 0.78rem);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin: 0;
}

.menu { display:flex; gap:22px; align-items:center; }
.menu a { color:inherit; text-decoration:none; font-weight:500; }
.hamburger { display:none; background:none; border:0; padding:6px 4px; cursor:pointer; }
.hamburger span { display:block; width:26px; height:2px; background:#333; margin:6px 0; transition:.2s; }

@media (max-width: 900px){
  .hamburger{display:block;}
  .menu{
    position:fixed;
    inset:72px 0 auto 0;
    background:#fff;
    padding:18px 22px;
    display:grid;
    gap:14px;
    transform:translateY(-120%);
    transition:.3s ease;
    border-bottom:1px solid #f0e9df;
  }
  .menu.open{transform:translateY(0);}
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg .overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55); }
.hero__content { position: relative; z-index: 1; padding: 40px 20px; }
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 1.6rem + 3vw, 3.2rem);
  margin: 0 0 12px;
}
.hero__subtitle { max-width: 680px; margin: 0 auto 22px; }

/* Grid2 (old about layout) */
.grid2 { display:grid; grid-template-columns: 1.1fr .9fr; gap:36px; align-items:center; }
.about__text p { margin: 0 0 10px; }
.media-card { border-radius:16px; overflow:hidden; box-shadow:var(--shadow); background:#fff; border:1px solid #f3ebdf; }
.media-card__img { width:100%; height: 360px; object-fit:cover; display:block; }
@media (max-width: 900px){
  .grid2{grid-template-columns:1fr; gap:22px;}
  .media-card__img { height: 300px; }
}

/* (?? NEW About Us with Icons) */
.about {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fafafa, #ffffff);
}
.about .intro {
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.7;
}
.about__icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.about__item {
  background: #fff;
  border-radius: 18px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.about__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.about__item h3 {
  margin: 16px 0 10px;
  font-size: 1.2rem;
  color: #222;
}
.about__item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
.icon-box,
.about__item .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #d4af37);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.about__item i { font-size: 1.8rem; color: #fff; }
@media (max-width: 768px) {
  .about__item { padding: 24px 18px; }
  .about__item .icon { width: 60px; height: 60px; }
}

/* Cards */
.cards { display:grid; grid-template-columns:repeat(4, 1fr); gap:18px; margin-top:22px; }
.card {
  background:#fff;
  border:1px solid #f1e8db;
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--shadow);
  text-align:center;
}
.card img { width:100%; aspect-ratio:4/3; object-fit:cover; }
.card h3 { margin:10px; font-size:1.05rem; }
@media (max-width: 900px){
  .cards{grid-template-columns:repeat(2,1fr);}
}

/* (3) New Arrivals Carousel - refined */
#new-arrivals { background:#fffaf3; padding:60px 0; }
.carousel { position: relative; overflow: hidden; }
.carousel__track { display:flex; transition: transform 0.5s ease; gap:20px; padding: 4px 10px; }
.product.card {
  min-width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  margin: 0;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s;
}
.product.card:hover { transform: translateY(-6px); }
.product.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}
.product.card h3 { font-size: 1.15rem; margin: 8px 0 4px; }
.product.card .price { color: var(--gold-dark); font-weight: 700; letter-spacing: .02em; }

.carousel__controls {
  position: absolute;
  top: 45%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}
.carousel__controls button {
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform .2s;
}
.carousel__controls button:hover { background: rgba(0,0,0,0.85); transform: scale(1.05); }

.carousel__dots { text-align: center; margin-top: 16px; }
.carousel__dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; margin: 0 6px; background: #cfc5b4; cursor: pointer;
}
.carousel__dots button.active { background: var(--gold); }

@media (min-width: 600px) {
  .product.card { min-width: 50%; flex: 0 0 50%; }
}
@media (min-width: 992px) {
  .product.card { min-width: 33.333%; flex: 0 0 33.333%; }
}

/* (4) USP with FA icons */
.usp { display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; }
.usp__item {
  background:#fff;
  border:1px solid #f1e8db;
  border-radius:14px;
  padding:20px;
  box-shadow:var(--shadow);
  text-align:center;
}
.usp__item .icon { 
  display:inline-grid; place-items:center; 
  font-size:32px; color: var(--gold-dark); 
  width:56px; height:56px; border-radius:50%;
  background: #fff7d9; margin: 4px auto 10px;
  border: 1px solid #f3e6bf;
}
@media (max-width: 900px){
  .usp{grid-template-columns:1fr;}
}

/* (5) Testimonials with stars */
.quotes { display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; }
.quotes figure {
  background:#fff;
  border:1px solid #f1e8db;
  border-radius:14px;
  padding:18px;
  box-shadow:var(--shadow);
}
.quotes blockquote { margin:0 0 10px; font-size:1.02rem; }
.stars { color:#f6c343; margin: 4px 0 6px; letter-spacing: 1px; }
@media (max-width: 900px){
  .quotes{grid-template-columns:1fr;}
}

/* Gallery */
.gallery { display:grid; grid-template-columns:repeat(4, 1fr); gap:10px; }
.gallery img {
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:12px;
  border:1px solid #f1e8db;
  transition:.2s;
  display:block;
}
.gallery a:hover img { transform:scale(1.02); }
@media (max-width: 900px){
  .gallery{grid-template-columns:repeat(2,1fr);}
}

/* CTA */
.cta { background:linear-gradient(180deg, #fff9f0, #f8eddc); text-align:center; }
.cta .h2 { margin-bottom:8px; }

/* Contact */
.contact { list-style:none; padding:0; margin:12px 0; }
.contact li { margin:6px 0; display: flex; align-items: center; gap: 8px; }
.form {
  display:grid;
  gap:12px;
  background:#fff;
  border:1px solid #f1e8db;
  border-radius:14px;
  padding:16px;
  box-shadow:var(--shadow);
}
.form label { display:grid; gap:6px; font-size:.95rem; }
.form input,.form textarea {
  padding:.85rem 1rem;
  border:1px solid #e7dccd;
  border-radius:10px;
  font:inherit;
  outline:none;
}
.form input:focus,.form textarea:focus { border-color:var(--gold); }

/* (6) Footer refreshed */
.footer {
  border-top:1px solid #f0e9df;
  padding:18px 0;
  background:#fff;
}
.footer__inner {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size: 0.95rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.footer__inner a { color: var(--gold-dark); text-decoration: none; font-weight:600; }
.footer__inner a:hover { text-decoration: underline; }
.footer__dot { color:#d7c9ab; }

/* (7) Reveal animation */
.reveal { opacity:0; transform:translateY(16px); transition:.6s ease; }
.reveal.in { opacity:1; transform:none; }

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
  flex-wrap: wrap;
}
.tab {
  background: #fff;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.25s ease;
}
.tab:hover { background: rgba(212,175,55,.08); }
.tab.active { background: var(--gold); color: #fff; }

/* Map */
.map {
  margin-top: 16px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #f1e8db;
}
.map iframe { display: block; width: 100%; height: 280px; }
/* FAQ Section */
.faq__item {
  background: #fff;
  border: 1px solid #f1e8db;
  border-radius: 14px;
  margin: 12px 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease;
}

.faq__item.open {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.faq__question {
  width: 100%;
  background: var(--bg-cream);
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq__question:hover {
  background: rgba(212, 175, 55, 0.08);
}

.faq__question i {
  transition: transform 0.3s ease;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.faq__item.open .faq__answer {
  max-height: 500px; /* Enough to show content */
  padding: 16px 20px;
}

.faq__item.open .faq__question i {
  transform: rotate(180deg);
}

/* Social Icons in Header */
.social-header {
  display: flex;
  gap: 12px;
  margin-left: 10px;
}
.social-header a {
  color: var(--gold-dark);
  font-size: 1.1rem;
  transition: color 0.3s;
}
.social-header a:hover {
  color: var(--gold);
}
/* Footer Social Icons */
.social-footer {
  display: flex;
  gap: 14px;
}
.social-footer a {
  color: var(--gold-dark);
  font-size: 1.25rem;
  transition: color 0.3s;
}
.social-footer a:hover {
  color: var(--gold);
}
.hero__offer {
  font-size: 1.8rem;   /* same as or slightly bigger than h3 */
  font-weight: 700;
  color: var(--gold);
  margin: 22px 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-shadow: 0 3px 8px rgba(0,0,0,0.5);
}

.hero__offer i {
  font-size: 2rem;     /* icon matches size */
  color: #ffd700;
}

