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

:root {
  --gold: #c8962a;
  --gold-light: #e8b84b;
  --gold-dark: #9a6f1a;
  --cream: #fdf6ec;
  --dark: #1a1209;
  --text: #3a2e1e;
  --text-light: #7a6a52;
  --border: #e8d9c0;
  --white: #ffffff;
  --red: #c0392b;
  --green: #27ae60;
  --shadow: 0 4px 24px rgba(26, 18, 9, 0.1);
  --shadow-lg: 0 8px 40px rgba(26, 18, 9, 0.16);
  --radius: 6px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 14px !important;
}
.logo-img {
  height: 80px;
  width: auto;
  max-width: 220px;
}

@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }
}

.dropdown-menu {
  border-radius: 12px;
  min-width: 240px;
  padding: 10px 0;
}

.dropdown-item {
  padding: 10px 18px;
  font-size: 14px;
}

.dropdown-item:hover {
  background: #f8f3ea;
  color: #b8860b;
}

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

body {
  font-family: "Lato", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
}

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

img {
  max-width: 100%;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--dark);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 7px 0;
  text-align: center;
}
.top-bar span {
  margin: 0 18px;
}
.top-bar .marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
}

/* ---- NAVBAR ---- */
.main-nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(26, 18, 9, 0.07);
}
.nav-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}
.nav-brand span {
  color: var(--dark);
}
.nav-brand small {
  display: block;
  font-size: 0.6rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.2em;
  color: var(--text-light);
  font-weight: 400;
  text-transform: uppercase;
  margin-top: -4px;
}

.navbar-nav .nav-link {
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text) !important;
  padding: 8px 14px !important;
  transition: var(--transition);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover {
  color: var(--gold-dark) !important;
}
.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.nav-icons a {
  color: var(--text);
  font-size: 1.1rem;
  margin-left: 14px;
  transition: var(--transition);
  position: relative;
}
.nav-icons a:hover {
  color: var(--gold);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
}

/* ---- HERO ---- */
.hero-section {
  background: linear-gradient(
    135deg,
    #fff8f5 0%,
    #f8ebe7 45%,
    #e9d1d8 100%
  );
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  background: rgba(161, 77, 103, 0.08);
  border-radius: 50%;
  top: -220px;
  right: -180px;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(161, 77, 103, 0.05);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
}

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

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #a14d67;
  font-family: "Lato", sans-serif;
  margin-bottom: 18px;
  font-weight: 700;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: #4b2c35;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-title em {
  color: #a14d67;
  font-style: italic;
}

.hero-subtitle {
  color: #6d5a61;
  font-size: 1.05rem;
  margin-bottom: 38px;
  max-width: 500px;
  font-weight: 400;
}

.btn-gold {
  background: linear-gradient(135deg, #a14d67, #c76c88);
  color: #fff;
  border: none;
  padding: 14px 34px;
  font-family: "Lato", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(161, 77, 103, 0.3);
  color: #fff;
}

.btn-outline-gold {
  background: transparent;
  color: #a14d67;
  border: 2px solid #a14d67;
  padding: 12px 32px;
  font-family: "Lato", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: #a14d67;
  color: #fff;
  transform: translateY(-2px);
}

.hero-image-col img {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  width: 100%;
  object-fit: cover;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
}

.hero-stat {
  color: #6d5a61;
}

.hero-stat strong {
  display: block;
  font-size: 1.7rem;
  color: #a14d67;
  font-family: "Playfair Display", serif;
}

.hero-stat span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  font-family: "Lato", sans-serif;
  margin-bottom: 10px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  line-height: 1.2;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ---- CATEGORY CARDS ---- */
.category-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.category-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover img {
  transform: scale(1.07);
}
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 18, 9, 0.85) 0%, rgba(26, 18, 9, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.category-label {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
}
.category-count {
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-family: "Lato", sans-serif;
  display: block;
}

/* ---- PRODUCT CARDS ---- */
.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: #f5ede0;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 3px;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
}
.product-badge.new {
  background: var(--green);
}
.product-badge.hot {
  background: var(--red);
}

.product-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(12px);
  transition: var(--transition);
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}
.product-action-btn {
  width: 36px;
  height: 36px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  font-size: 0.9rem;
  color: var(--text);
}
.product-action-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.product-body {
  padding: 16px;
}
.product-category {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  font-family: "Lato", sans-serif;
  margin-bottom: 5px;
}
.product-name {
  font-family: "Playfair Display", serif;
  font-size: 1.02rem;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-rating {
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: var(--gold);
}
.product-rating span {
  color: var(--text-light);
  margin-left: 4px;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.price-current {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  font-family: "Playfair Display", serif;
}
.price-old {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.price-discount {
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 700;
}

.btn-add-cart {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  padding: 10px;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.btn-add-cart:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 150, 42, 0.35);
}

/* ---- OFFER BANNER ---- */
.offer-banner {
  background: linear-gradient(
    135deg,
    #a14d67 0%,
    #b85f7d 50%,
    #c97b95 100%
  );
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.offer-banner::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -220px;
  right: -120px;
}

.offer-banner::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -180px;
  left: -100px;
}

.offer-banner .display-number {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 700;
  color: #fff7d6;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.offer-banner .section-eyebrow {
  color: #ffe8ef !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.offer-banner h2 {
  color: #ffffff !important;
}

.offer-banner p {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ---- FEATURES BAR ---- */
.features-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature-icon {
  font-size: 1.8rem;
  color: var(--gold);
}
.feature-text strong {
  display: block;
  font-size: 0.88rem;
  font-family: "Playfair Display", serif;
  color: var(--dark);
}
.feature-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.testimonial-text {
  font-style: italic;
  color: var(--text);
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  font-family: "Playfair Display", serif;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
}
.testimonial-loc {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ---- NEWSLETTER ---- */
.newsletter-section {
  background: linear-gradient(135deg, #f8edd8, #fdf6ec);
  padding: 64px 0;
}
.newsletter-form .form-control {
  border: 2px solid var(--border);
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 14px 18px;
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--text);
}
.newsletter-form .form-control:focus {
  border-color: var(--gold);
  box-shadow: none;
  outline: none;
}
.newsletter-form .btn-gold {
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 24px;
}
.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}
.footer-heading {
  font-family: "Lato", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.65);
  margin-right: 8px;
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---- PRODUCT PAGE ---- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2e1f08 100%);
  padding: 50px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c8962a' fill-opacity='0.07'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0 5.5 4.5 10 10 10s10-4.5 10-10-4.5-10-10-10-10 4.5-10 10z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 2.5rem;
  position: relative;
}
.page-hero .breadcrumb {
  position: relative;
}
.page-hero .breadcrumb-item a {
  color: var(--gold-light);
}
.page-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.6);
}
.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.3);
}

/* Filter sidebar */
.filter-sidebar {
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 80px;
}
.filter-heading {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.filter-group {
  margin-bottom: 22px;
}
.filter-group-title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  cursor: pointer;
}
.filter-check input[type="checkbox"] {
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
}
.filter-check label {
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
}
.filter-check-count {
  color: var(--text-light);
  font-size: 0.75rem;
}

/* Sort bar */
.sort-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.sort-bar .result-count {
  font-size: 0.85rem;
  color: var(--text-light);
}
.sort-bar select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  background: var(--white);
}
.sort-bar select:focus {
  outline: 1px solid var(--gold);
}

/* ---- CART PAGE ---- */
.cart-table {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cart-table table {
  width: 100%;
}
.cart-table th {
  background: var(--dark);
  color: var(--white);
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 16px;
}
.cart-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.cart-item-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
}
.cart-item-name {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  color: var(--dark);
}
.cart-item-cat {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
}
.qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  background: var(--cream);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}
.qty-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.qty-input {
  width: 44px;
  height: 30px;
  border: 1px solid var(--border);
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 0.9rem;
  font-family: "Lato", sans-serif;
  color: var(--text);
  background: var(--white);
}
.cart-total-box {
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 80px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.cart-total-row:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
}
.cart-empty {
  text-align: center;
  padding: 80px 20px;
}
.cart-empty-icon {
  font-size: 5rem;
  color: var(--border);
  margin-bottom: 20px;
}

/* ---- CHECKOUT PAGE ---- */
.checkout-form .form-label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 6px;
}
.checkout-form .form-control,
.checkout-form .form-select {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}
.checkout-form .form-control:focus,
.checkout-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 150, 42, 0.12);
  outline: none;
}
.checkout-section {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.checkout-section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}

.payment-option {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.payment-option.selected {
  border-color: var(--gold);
  background: rgba(200, 150, 42, 0.05);
}
.payment-option input[type="radio"] {
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
}
.payment-option-icon {
  font-size: 1.5rem;
}
.payment-option-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.payment-option-desc {
  font-size: 0.78rem;
  color: var(--text-light);
}
.cod-badge {
  background: #e8f5e9;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
}

.order-summary-box {
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 80px;
}
.order-summary-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.order-summary-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.order-summary-name {
  font-size: 0.85rem;
  font-family: "Playfair Display", serif;
  color: var(--dark);
}
.order-summary-qty {
  font-size: 0.75rem;
  color: var(--text-light);
}
.order-summary-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-left: auto;
  white-space: nowrap;
}

/* Success page */
.success-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-card {
  background: var(--white);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  max-width: 560px;
  box-shadow: var(--shadow-lg);
}
.success-icon {
  font-size: 5rem;
  color: var(--green);
  margin-bottom: 20px;
}
.success-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.success-msg {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.order-id {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 12px 24px;
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ---- TOAST ---- */
.toast-container-custom {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast-custom {
  background: var(--dark);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  font-size: 0.88rem;
  font-family: "Lato", sans-serif;
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  animation: slideInToast 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast-custom.success {
  border-left-color: var(--green);
}
.toast-custom.error {
  border-left-color: var(--red);
}
@keyframes slideInToast {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutToast {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* ---- WISHLIST ICON ACTIVE ---- */
.wishlisted {
  color: var(--red) !important;
}

/* ---- RANGE SLIDER ---- */
input[type="range"] {
  accent-color: var(--gold);
}

/* ---- PAGINATION ---- */
.pagination .page-link {
  color: var(--gold-dark);
  border-color: var(--border);
}
.pagination .page-item.active .page-link {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.pagination .page-link:hover {
  background: var(--cream);
  color: var(--gold);
}

/* ---- SEARCH BAR ---- */
.search-bar-wrap {
  position: relative;
}
.search-bar-wrap input {
  border: 2px solid var(--border);
  border-radius: 30px;
  padding: 9px 44px 9px 18px;
  font-family: "Lato", sans-serif;
  font-size: 0.88rem;
  width: 220px;
  transition: var(--transition);
}
.search-bar-wrap input:focus {
  outline: none;
  border-color: var(--gold);
  width: 270px;
}
.search-bar-wrap .search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}

/* ---- BACK TO TOP ---- */
#backToTop {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(200, 150, 42, 0.4);
  transition: var(--transition);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 998;
}
#backToTop.visible {
  display: flex;
}
#backToTop:hover {
  transform: translateY(-3px);
}

/* ---- LOADER ---- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s;
}
.loader-ring {
  width: 56px;
  height: 56px;
  border: 4px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin-bottom: 16px;
}
.loader-text {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--gold-dark);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 60px 0 40px;
  }
  .hero-stats {
    gap: 20px;
  }
  .hero-stat strong {
    font-size: 1.3rem;
  }
  .category-card img {
    height: 200px;
  }
  .product-img-wrap {
    height: 210px;
  }
  .filter-sidebar {
    position: static;
    margin-bottom: 20px;
  }
  .cart-table th:nth-child(3),
  .cart-table td:nth-child(3) {
    display: none;
  }
  .toast-container-custom {
    left: 16px;
    right: 16px;
  }
  .search-bar-wrap input {
    width: 160px;
  }
  .search-bar-wrap input:focus {
    width: 190px;
  }
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}

/* ---- ADDED FOR DYNAMIC PHP SITE (parity additions, does not alter base design tokens) ---- */

/* Top bar: two-line content + social icons spacing to match original markup needs */
.top-bar .marquee-wrap span {
  margin: 0 14px;
  white-space: nowrap;
}
.top-bar-social a {
  color: var(--cream);
  font-size: 0.85rem;
  opacity: 0.85;
  transition: var(--transition);
}
.top-bar-social a:hover {
  opacity: 1;
  color: var(--gold-light);
}

/* Cart badge showing running total (₹) instead of a unit count */
.nav-icons .cart-badge {
  position: static;
  display: inline-block;
  width: auto;
  height: auto;
  border-radius: 30px;
  padding: 2px 10px;
  margin-left: 6px;
  font-size: 0.72rem;
}

.search-icon-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-light);
  padding: 0;
  line-height: 1;
}
.search-bar-wrap { position: relative; }

/* 3-level nested dropdown support (Bootstrap 5 has no native nested dropdown) */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
}
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.dropdown-submenu > a.dropdown-toggle::after {
  transform: rotate(-90deg);
  float: right;
  margin-top: 6px;
}
@media (max-width: 991px) {
  .dropdown-submenu > .dropdown-menu {
    position: static;
    left: 0;
    box-shadow: none;
    padding-left: 12px;
  }
}

/* Rating stars (used across home product cards) */
.product-rating .fa-star,
.product-rating .fa-star-o,
.product-rating .fa-star-half-o {
  font-size: 0.78rem;
}

/* Out of stock pill on product cards */
.out-of-stock {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 9, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.out-of-stock .inner {
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
}

/* Hero slider (tbl_slider driven) restyled to match hero-section look */
.bs-slider {
  position: relative;
}
.bs-slider .item {
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}
.bs-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,18,9,0.55) 0%, rgba(26,18,9,0.25) 60%, rgba(26,18,9,0.1) 100%);
}
.bs-slider .slide-text {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: var(--white);
}
.bs-slider .slide_style_left { text-align: left; margin-right: auto; }
.bs-slider .slide_style_center { text-align: center; margin: 0 auto; }
.bs-slider .slide_style_right { text-align: right; margin-left: auto; }
.bs-slider .slide-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 18px;
  color: var(--white);
}
.bs-slider .slide-text p {
  font-size: 1rem;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.85);
}
.bs-slider .carousel-indicators li {
  background: var(--gold);
  opacity: 0.5;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.bs-slider .carousel-indicators li.active {
  opacity: 1;
}
.bs-slider .carousel-control {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0.8;
  transition: var(--transition);
}
.bs-slider .carousel-control:hover {
  background: var(--gold);
  opacity: 1;
}
.bs-slider .carousel-control.left { left: 24px; }
.bs-slider .carousel-control.right { right: 24px; }

/* Service section (tbl_service) styled like features-bar / category cards */
.service .item {
  background: var(--white);
  border-radius: 10px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.service .item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service .item .photo img {
  margin: 0 auto 16px;
  display: block;
}
.service .item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.service .item p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* Headline (featured/latest/popular section titles) mapped to section-header look */
.headline {
  text-align: center;
  margin-bottom: 40px;
}
.headline h2 {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  margin-bottom: 10px;
}
.headline h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}

/* Product carousel item -> reuse product-card look */
.product-carousel .item {
  padding: 0 10px;
}
.product-carousel .thumb {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: #f5ede0;
  border-radius: 10px 10px 0 0;
}
.product-carousel .thumb .photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.product-carousel .item:hover .thumb .photo {
  transform: scale(1.06);
}
.product-carousel .text {
  background: var(--white);
  padding: 16px;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow);
}
.product-carousel .item {
  margin-bottom: 6px;
}
.product-carousel .text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-carousel .text h3 a {
  color: var(--dark);
}
.product-carousel .text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}
.product-carousel .text h4 del {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 8px;
}
.product-carousel .text p a {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.product-carousel .text p a:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.product-carousel .owl-nav button {
  background: var(--white) !important;
  color: var(--gold) !important;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}