:root {
  /* --- Match to Divika brand theme --- */
  --brand-primary: #d4a017;
  --brand-accent: #f7eacb;
  --brand-bg: #fffef8;
  --text-color: #222;
  --muted: #6b6b6b;
  --ui-font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  --radius: 14px;
  --shadow: 0 6px 20px rgba(17, 17, 17, 0.08);
  --max-width: 1200px;
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: var(--ui-font);
  background: repeating-radial-gradient(black, transparent 100px);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
}

.navbar {
  padding: 0 0;
}



.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Product Detail Layout */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 80px;
  margin-top: 10rem;
}

.image-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.main-image {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 0 6px 14px rgba(17, 17, 17, 0.06);
  cursor: pointer;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.thumb.active {
  border-color: var(--brand-primary);
  transform: translateY(-3px)
}

.product-info {
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.product-title {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.product-sub {
  color: var(--muted);
  margin-bottom: 18px;
}

.feature-pill {
  display: inline-block;
  background: var(--brand-accent);
  color: var(--text-color);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.95rem;
  margin: 4px;
}

.btn-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand-primary);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}

.details-section {
  margin-top: 22px;
  color: var(--muted)
}

.details-section h3 {
  color: var(--text-color);
  margin: 12px 0 8px 0
}

.details-section ul,
.details-section ol {
  margin: 6px 0 16px 1.15rem;
}

/* Lightbox Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.6);
  z-index: 1000;
  padding: 24px;
}

.modal.open {
  display: flex;
}

.modal-content {
  max-width: 900px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  animation: zoomIn .18s ease;
}

/* New Technical Botanical Sheet Styling */
.botanical-sheet {
  background: #f9fbf9;
  border: 1px solid #e0eadd;
  border-radius: 8px;
  padding: 20px;
  margin: 25px 0;
}

.botanical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 15px;
}

.botanical-item {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  border-left: 4px solid #2E7D32;
  font-size: 0.9rem;
}

.shade-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.shade-table td,
.shade-table th {
  border: 1px solid #eee;
  padding: 10px;
  font-size: 0.9rem;
}

.breadcrumb-simple {
  padding: 10px 0;
  font-size: 0.8rem;
  color: #777;
}

.breadcrumb-simple a {
  color: #2E7D32;
  text-decoration: none;
}

.product-faq {
  padding: 50px 0;
  background: #fff;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #2E7D32;
}

.faq-answer {
  display: none;
  padding-top: 10px;
  color: #666;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question::after {
  content: '-';
}

/* Comparison Table Styling */
.comparison-table-wrapper {
  margin: 40px 0;
  overflow-x: auto;
  /* Enables horizontal scroll on small phones */
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.comparison-table thead th {
  background-color: #f8f8f8;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* Highlighting the Divika Column */
.comparison-table th.highlight {
  background-color: #2E7D32;
  color: #ffffff;
}

.comparison-table td:nth-child(2) {
  background-color: #f9fbf9;
  font-weight: 500;
  color: #2E7D32;
}

/* Icons */
.fa-check-circle {
  color: #2E7D32;
  margin-right: 5px;
}

.fa-times-circle {
  color: #d32f2f;
  margin-right: 5px;
  opacity: 0.6;
}

@media (max-width: 480px) {
  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px;
  }
}



.modal-content img {
  width: 100%
}

@keyframes zoomIn {
  from {
    transform: scale(0.98);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

#modalClose {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 22px;
  background: none;
  border: 0;
  cursor: pointer;
  color: #fff
}


@media(max-width:880px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
}