/* Deeksha Gems — Approved Homepage Styles */
:root {
  --navy: #0a2342;
  --navy-deep: #061a33;
  --accent: #c4786a;
  --accent-soft: #e8a89e;
  --rose: #d4a59a;
  --cream: #faf6f3;
  --cream-band: #f5ebe6;
  --bg-card: #f3f1ef;
  --text: #0a2342;
  --muted: #6b7280;
  --price: #1a9b4a;
  --white: #ffffff;
  --border: #e5e0db;
  --serif: "Playfair Display", "Times New Roman", Georgia, serif;
  --sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --script: "Great Vibes", cursive;
  --max: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* ========== HEADER ========== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.brand-text h1 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.1;
}

.brand-text p {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--navy);
  margin-top: 3px;
  font-weight: 500;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.main-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy);
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--accent);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
}

.nav-chevron {
  font-size: 0.6rem;
  margin-top: 1px;
}

.header-utils {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.search-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  background: #fafafa;
  width: 210px;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-family: var(--sans);
  width: 100%;
  color: var(--muted);
}

.search-box button {
  border: none;
  background: transparent;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--navy);
  display: flex;
}

.icon-btn {
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 0;
  background: #e53935;
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  background: var(--cream) url("../images/hero-gems.png") right center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(250, 246, 243, 0.97) 0%,
    rgba(250, 246, 243, 0.88) 38%,
    rgba(250, 246, 243, 0.35) 62%,
    rgba(250, 246, 243, 0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 0;
  max-width: 560px;
}

.hero-script {
  font-family: var(--script);
  font-size: 2.6rem;
  color: #9a4f45;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.hero h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.hero-roles {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--navy-deep);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 32px;
  border: 1.5px solid var(--navy);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ========== SECTION HEADINGS ========== */
.section {
  padding: 64px 0;
}

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

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
}

.section-title h2 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-title .line {
  flex: 1;
  max-width: 160px;
  height: 1px;
  background: var(--rose);
  position: relative;
}

.section-title .line::after {
  content: "◆";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.45rem;
  color: var(--rose);
}

.section-title .line.left::after {
  right: -10px;
}

.section-title .line.right::after {
  left: -10px;
}

/* ========== CATEGORIES ========== */
.section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.section-heading h2 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading .heading-ornament {
  margin-top: 12px;
  margin-bottom: 0;
}

.section-heading .heading-ornament:first-child {
  margin-top: 0;
  margin-bottom: 12px;
}

.heading-ornament,
.cat-ornament {
  display: block;
  width: 72px;
  height: 10px;
  margin: 0 auto;
  position: relative;
}

.heading-ornament::before,
.cat-ornament::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #d4a59a;
  transform: translateY(-50%);
}

.heading-ornament::after,
.cat-ornament::after {
  content: "◆";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.45rem;
  color: #d4a59a;
  background: transparent;
  line-height: 1;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.category-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 168px;
  padding: 22px 16px 22px 26px;
  border-radius: 10px;
  border: 1px solid #ebe6e2;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(10, 35, 66, 0.08);
}

.cat-precious {
  background: linear-gradient(135deg, #fbf8f6 0%, #f7f0ec 55%, #f4ebe6 100%);
}

.cat-semi {
  background: linear-gradient(135deg, #fbfaf7 0%, #f5f3ee 55%, #f0efe8 100%);
}

.cat-crystal {
  background: linear-gradient(135deg, #faf8fb 0%, #f3eef6 55%, #efe8f3 100%);
}

.cat-copy {
  flex: 0 0 auto;
  max-width: 46%;
  z-index: 1;
}

.category-card h3 {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 10px;
}

.category-card .cat-ornament {
  width: 54px;
  margin: 0 0 10px;
}

.category-card .explore {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: #c4786a;
  letter-spacing: 0.02em;
}

.category-card .cat-img {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  height: 130px;
  margin: 0;
  aspect-ratio: auto;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.category-card .cat-img img {
  width: auto;
  max-width: 100%;
  height: 130px;
  object-fit: contain;
  object-position: right center;
  display: block;
}

/* ========== PRODUCTS ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.product-card {
  background: var(--white);
  text-align: left;
}

.product-img {
  aspect-ratio: 1;
  background: #f7f5f3;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.product-img img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-card h3 {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}

.product-meta {
  font-size: 0.68rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-prices {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-now {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--price);
}

.price-was {
  font-size: 0.72rem;
  color: var(--muted);
  text-decoration: line-through;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wish-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 4px;
  display: flex;
}

.wish-btn:hover,
.wish-btn.active {
  color: #e53935;
}

.cart-add {
  width: 32px;
  height: 32px;
  background: var(--navy);
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-add:hover {
  background: var(--navy-deep);
}

.view-all-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ========== REVIEWS ========== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  right: 28px;
  font-family: Georgia, serif;
  font-size: 8rem;
  color: #ece8e4;
  line-height: 1;
  pointer-events: none;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eee;
}

.stars {
  color: #f5a623;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.review-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.review-card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.review-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  z-index: 1;
}

/* ========== SERVICES ========== */
.services-bar {
  background: var(--cream-band);
  padding: 36px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.service-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  color: var(--accent);
}

.service-item h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

.service-item p {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ========== CONTACT INFO ========== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy);
  color: #d0d7e0;
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 0.9fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand .footer-logo img,
.footer-brand .footer-logo svg {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-brand h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: white;
  letter-spacing: 0.04em;
}

.footer-brand .tag {
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  color: #a8b4c4;
  text-transform: uppercase;
}

.footer-brand > p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #a8b4c4;
  margin-bottom: 18px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.2s;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.82rem;
  color: #a8b4c4;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: white;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.8rem;
  color: #a8b4c4;
  margin-bottom: 14px;
  line-height: 1.45;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  text-align: center;
  font-size: 0.75rem;
  color: #7a8799;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 16px 24px;
    gap: 12px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .search-box {
    display: none;
  }

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

  .category-card {
    min-height: 150px;
  }

  .category-card .cat-img {
    height: 120px;
  }

  .category-card .cat-img img {
    height: 120px;
  }

  .contact-grid,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero {
    min-height: 380px;
    background-position: 70% center;
  }
}

@media (max-width: 600px) {
  .products-grid,
  .contact-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cat-copy {
    max-width: 48%;
  }

  .category-card h3 {
    font-size: 1rem;
  }

  .hero-content {
    padding: 48px 0;
  }

  .section {
    padding: 48px 0;
  }

  .section-title .line {
    max-width: 40px;
  }
}

/* ========== NAV DROPDOWN ========== */
.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(10, 35, 66, 0.12);
  padding: 10px 0;
  z-index: 120;
}

.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  color: var(--accent);
  background: var(--cream);
}

.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  display: block;
}

.nav-item:hover > a,
.nav-item.open > a {
  color: var(--accent);
}

/* ========== PAGE HERO ========== */
.page-hero {
  background: var(--cream);
  padding: 56px 0 48px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-hero p {
  max-width: 620px;
  margin: 0 auto 14px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

.page-hero .heading-ornament {
  margin-top: 4px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--navy);
  font-weight: 600;
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about-copy h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.about-copy p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream);
  min-height: 320px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 12px;
}

.role-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 18px;
  text-align: center;
  scroll-margin-top: 100px;
}

.role-card h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.role-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ========== SHOP ========== */
.shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}

.shop-sidebar {
  background: var(--cream);
  border-radius: 8px;
  padding: 22px 18px;
  border: 1px solid var(--border);
  position: sticky;
  top: 90px;
}

.shop-sidebar h3 {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.shop-sidebar a {
  display: block;
  padding: 8px 0;
  font-size: 0.82rem;
  color: #555;
  border-bottom: 1px solid #ebe6e2;
}

.shop-sidebar a:hover,
.shop-sidebar a.active {
  color: var(--accent);
  font-weight: 600;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.shop-toolbar .result-count {
  font-size: 0.82rem;
  color: var(--muted);
}

.shop-search {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  min-width: 240px;
}

.shop-search input {
  border: none;
  outline: none;
  padding: 10px 12px;
  font-size: 0.82rem;
  font-family: var(--sans);
  width: 100%;
}

.shop-search button {
  border: none;
  background: transparent;
  padding: 8px 12px;
  cursor: pointer;
  color: var(--navy);
}

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

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.chip {
  display: inline-flex;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: #fff;
}

.chip:hover,
.chip.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.product-card[hidden] {
  display: none !important;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ========== CONTACT ========== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 26px;
}

.contact-form h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 18px;
}

.form-row {
  margin-bottom: 14px;
}

.form-row label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 11px 12px;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--navy);
  background: #fcfcfc;
  outline: none;
  transition: border-color 0.2s;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  background: #fff;
}

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

.form-row.error input,
.form-row.error textarea {
  border-color: #e53935;
}

.form-error {
  display: none;
  font-size: 0.72rem;
  color: #e53935;
  margin-top: 4px;
}

.form-row.error .form-error {
  display: block;
}

.form-success {
  display: none;
  background: #e8f7ee;
  color: #1a9b4a;
  border: 1px solid #b7e4c7;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.form-success.show {
  display: block;
}

.contact-aside .contact-card {
  margin-bottom: 14px;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  background: #25d366;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 4px;
}

.whatsapp-cta:hover {
  background: #1ebe57;
}

/* ========== INNER PAGE RESPONSIVE ========== */
@media (max-width: 1100px) {
  .shop-products {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 900px) {
  .about-grid,
  .contact-layout,
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }

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

  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 12px;
    display: none;
  }

  .nav-item.open .nav-dropdown {
    display: block;
  }
}

@media (max-width: 600px) {
  .shop-products,
  .roles-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 40px 0 32px;
  }
}

/* ========== TOAST / BADGES ========== */
.dg-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.dg-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.wish-badge {
  position: absolute;
  top: 2px;
  right: 0;
  background: var(--accent);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wish-btn.active {
  color: #e53935;
}
.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  text-align: center;
}

/* ========== PRODUCT DETAIL ========== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.product-gallery .main-shot {
  background: #f7f5f3;
  border-radius: 8px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
}
.product-gallery .main-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery-thumbs {
  display: flex;
  gap: 10px;
}
.gallery-thumb {
  width: 72px;
  height: 72px;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: #f7f5f3;
  cursor: pointer;
  padding: 0;
}
.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--navy);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-info .product-cat {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.product-info h1 {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.25;
}
.product-info .meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.product-info .prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}
.product-info .prices .price-now {
  font-size: 1.4rem;
}
.product-info .desc {
  color: #555;
  line-height: 1.7;
  margin-bottom: 22px;
  font-size: 0.92rem;
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.qty-row label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.qty-row input {
  width: 72px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px;
  font-size: 0.95rem;
  text-align: center;
}
.product-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.product-actions-row .btn-primary,
.product-actions-row .btn-outline {
  min-width: 160px;
}
.product-card .product-img {
  display: block;
}
.product-card h3 a:hover {
  color: var(--accent);
}
.product-card .cart-add-label {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
  font-size: 0.72rem;
  padding: 10px 12px;
}

/* ========== CART / CHECKOUT ========== */
.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  align-items: start;
}
.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 90px;
  height: 90px;
  background: #f7f5f3;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.cart-item-info h3 {
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.cart-item-info p {
  font-size: 0.75rem;
  color: var(--muted);
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--navy);
}
.qty-input {
  width: 48px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px;
}
.cart-item-total {
  text-align: right;
}
.link-remove {
  display: block;
  margin-top: 6px;
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-size: 0.75rem;
}
.cart-summary,
.checkout-summary {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  position: sticky;
  top: 90px;
}
.cart-summary h3,
.checkout-summary h3 {
  font-family: var(--serif);
  margin-bottom: 16px;
  color: var(--navy);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  margin-bottom: 10px;
  color: #555;
}
.summary-row.total {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 12px;
  color: var(--navy);
  font-size: 1rem;
}
.empty-cart {
  text-align: center;
  padding: 48px 20px;
  background: var(--cream);
  border-radius: 8px;
}
.empty-cart h3 {
  font-family: var(--serif);
  color: var(--navy);
  margin-bottom: 8px;
}
.empty-cart p {
  color: var(--muted);
  margin-bottom: 18px;
}
.checkout-lines {
  list-style: none;
  margin-bottom: 12px;
}
.checkout-lines li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid #ebe6e2;
  color: #555;
}
.success-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--cream);
  border-radius: 10px;
  padding: 40px 28px;
}
.success-box h2 {
  font-family: var(--serif);
  color: var(--navy);
  margin-bottom: 10px;
}
.success-box p {
  color: #555;
  margin-bottom: 10px;
}
.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}
.wishlist-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .product-detail,
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .cart-item {
    grid-template-columns: 70px 1fr;
  }
  .cart-item-qty,
  .cart-item-total {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }
  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cart-summary,
  .checkout-summary {
    position: static;
  }
}
@media (max-width: 600px) {
  .wishlist-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== QTY STEPPER ========== */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.qty-stepper .qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 0;
  background: #f7f5f3;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--navy);
}
.qty-stepper .qty-btn:hover {
  background: var(--cream-band);
}
.qty-stepper input {
  width: 56px;
  height: 40px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-radius: 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0;
  background: #fff;
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-row {
  align-items: center;
}

/* ========== PAYMENT OPTIONS ========== */
.payment-options {
  margin: 22px 0 20px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fcfbfa;
}
.payment-options h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.payment-powered {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.payment-powered strong {
  color: #072654;
}
.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pay-method {
  display: block;
  cursor: pointer;
}
.pay-method input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pay-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.pay-card strong {
  font-size: 0.82rem;
  color: var(--navy);
}
.pay-card small {
  font-size: 0.7rem;
  color: var(--muted);
}
.pay-method.active .pay-card,
.pay-method:hover .pay-card {
  border-color: var(--navy);
  box-shadow: 0 0 0 1px var(--navy);
}
.checkout-pay {
  margin-top: 8px;
  margin-bottom: 18px;
}
@media (max-width: 600px) {
  .payment-methods {
    grid-template-columns: 1fr;
  }
}
