/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. It is generally better to create a new file per style scope.
 *

 */

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

:root {
  --font-sans: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Libre Baskerville', Georgia, serif;
  --primary: #b12704;
  --primary-hover: #8f1e02;
  --primary-light: #fdf2f0;
  --secondary: #224229;
  --secondary-hover: #172d1c;
  --accent: #fcd964;
  --success: #438c40;
  --danger: #ef4444;
  --info: #06b6d4;
  --warning: #f59e0b;
  
  --bg-main: #f9f8f3;
  --bg-card: #FFFFFF;
  --border: #e6e3d5;
  
  --text-main: #333333;
  --text-muted: #777777;
  --text-white: #ffffff;
  
  --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.03);
  --shadow-md: 0 8px 12px -2px rgba(0, 0, 0, 0.05), 0 3px 6px -3px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 15px 25px -4px rgba(0, 0, 0, 0.08), 0 6px 10px -5px rgba(0, 0, 0, 0.06);
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


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

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

/* Containers & Grid */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-cols-1  { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3  { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4  { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1024px) {
  .grid-cols-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .grid-cols-3, .grid-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .grid-cols-2, .grid-cols-3, .grid-cols-4 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
}

/* Navbar */
.navbar {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-logo span {
  color: var(--primary);
}

.navbar-toggler {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 150;
  outline: none;
}

.navbar-toggler span {
  width: 100%;
  height: 2.5px;
  background-color: var(--secondary);
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.navbar-toggler.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.navbar-toggler.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.navbar-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.navbar-link {
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  text-decoration: none;
}

.navbar-link:hover, .navbar-link.active {
  color: var(--primary);
}

.navbar-search {
  flex-grow: 1;
  max-width: 400px;
  margin: 0 1.5rem;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Responsive styles */
@media (max-width: 991px) {
  .navbar-toggler {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-card);
    box-shadow: -4px 0 25px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 6rem 2rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 140;
    gap: 2.5rem;
    overflow-y: auto;
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin: 0 !important;
    width: 100%;
  }

  .navbar-links li {
    width: 100%;
  }

  .navbar-link {
    font-size: 1.15rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .navbar-search {
    max-width: 100%;
    margin: 0;
    width: 100%;
  }

  .navbar-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    width: 100%;
    margin-top: 1rem;
  }

  .navbar-actions .btn {
    width: 100%;
    padding: 0.75rem;
    border-radius: 999px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-white);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border-color: var(--border);
  background-color: transparent;
  color: var(--text-main);
}

.btn-outline:hover {
  background-color: var(--bg-main);
  border-color: var(--text-muted);
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

/* Cards */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-img-wrapper {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 1.25rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.card:hover .card-img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: var(--primary);
  color: var(--text-white);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 5;
}

.card-content {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--secondary);
  line-height: 1.3;
}

.card-title a {
  color: var(--secondary);
  text-decoration: none;
}

.card-title a:hover {
  color: var(--primary);
}

.card-description {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.card-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--secondary);
}

.required-indicator {
  color: var(--danger);
  margin-left: 0.125rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--bg-card);
  color: var(--text-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.badge-success { background-color: #d1fae5; color: #065f46; }
.badge-danger { background-color: #fee2e2; color: #991b1b; }
.badge-warning { background-color: #fef3c7; color: #92400e; }
.badge-info { background-color: #ecfeff; color: #155e75; }

/* Alert messages */
.alert {
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.alert-notice {
  background-color: #ecfeff;
  border: 1px solid #cffafe;
  color: #0891b2;
}

.alert-alert {
  background-color: #fee2e2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

/* Checkout Steps */
.checkout-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.checkout-step {
  flex: 1;
  text-align: center;
  position: relative;
  font-weight: 500;
  color: var(--text-muted);
}

.checkout-step.active {
  color: var(--primary);
  font-weight: 600;
}

.checkout-step.completed {
  color: var(--success);
}

/* Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}

.table th {
  background-color: #f8fafc;
  padding: 0.875rem 1.25rem;
  font-weight: 600;
  color: var(--secondary);
  border-bottom: 1px solid var(--border);
}

.table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.table tr:last-child td {
  border-bottom: none;
}

/* Sidebar & Admin */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

@media (max-width: 768px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    display: none;
  }
}

.admin-sidebar {
  background-color: var(--secondary);
  color: var(--text-white);
  padding: 1.5rem;
  border-right: 1px solid var(--secondary-hover);
}

.admin-sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-sidebar-links {
  list-style: none;
}

.admin-sidebar-link a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #94a3b8;
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.admin-sidebar-link.active a, .admin-sidebar-link a:hover {
  background-color: var(--secondary-hover);
  color: var(--text-white);
}

.admin-content {
  padding: 2rem;
  background-color: var(--bg-main);
  overflow-y: auto;
}

/* Stats Cards */
.stat-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-card-info {
  display: flex;
  flex-direction: column;
}

.stat-card-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.stat-card-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary);
}

.stat-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Footer */
.footer {
  background-color: var(--secondary);
  color: var(--accent);
  padding: 4rem 0 2rem 0;
  margin-top: 4rem;
  border-top: 1px solid var(--secondary-hover);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--primary);
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--accent);
}

.footer-links a:hover {
  color: var(--text-white);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--secondary-hover);
  text-align: center;
  font-size: 0.875rem;
}

/* Custom styles for filtering and catalog sidebar */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}

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

.filter-sidebar {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  height: fit-content;
}

.filter-section {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}

.filter-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.filter-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--secondary);
}

/* Detail page styling */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

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

.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  background-color: #f1f5f9;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 1rem;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background-color: #f1f5f9;
}

.gallery-thumb.active {
  border-color: var(--primary);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info {
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.product-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.product-price-large {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* Blog section styling */
.blog-post {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

@media (max-width: 480px) {
  .blog-post {
    padding: 1.5rem;
  }
}

.blog-post-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.blog-post-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 3rem;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

/* Comment section */
.comments-section {
  margin-top: 4rem;
}

.comment-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.comment-author {
  font-weight: 600;
  color: var(--secondary);
}

.comment-date {
  color: var(--text-muted);
}

.comment-body {
  font-size: 0.975rem;
  color: #334155;
}

/* Jeeni Millet Mix Homepage Redesign Styles */
.announcement-bar {
  background-color: var(--secondary);
  color: var(--text-white);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  padding: 0.6rem 1rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}

.announcement-bar a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
  margin-left: 0.5rem;
}

/* Hero Banner Slider */
.hero-carousel {
  position: relative;
  width: 100%;
  max-height: 400px; /* Restrict height to a clean, readable level */
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .hero-carousel {
    max-height: 200px;
  }
}
.hero-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.hero-slide {
  position: relative;
  width: 100%;
  flex: 0 0 100%;
}
.hero-slide picture img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 768px) {
  .hero-slide picture img {
    height: 200px;
  }
}

.carousel-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
  outline: none;
}
.carousel-dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

/* Jeeni 4-Features Icon Bar */
.features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 768px) {
  .features-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .features-bar {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.feature-icon-wrapper {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: 50%;
}
.feature-icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.feature-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
}
.feature-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Jeeni Categories Grid */
.category-circle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  justify-content: center;
}
.category-circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
}
.category-circle-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background-color: white;
  border: 4px solid white;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.category-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.category-circle-card:hover .category-circle-wrapper {
  transform: scale(1.08);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.category-circle-card:hover .category-circle-img {
  transform: scale(1.05);
}
.category-circle-title {
  margin-top: 0.8rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
  transition: var(--transition);
}
.category-circle-card:hover .category-circle-title {
  color: var(--primary);
}
.category-circle-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Section Headings Style */
.section-title-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title-main {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  position: relative;
  display: inline-block;
  padding-bottom: 0.6rem;
}
.section-title-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 99px;
}
.section-title-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.35rem;
  font-weight: 600;
}

/* Trust Badges & Certifications */
.cert-badge {
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  border: 1px solid #f9dcd5;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

/* Quick Know About Jeeni Products */
.health-benefits-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .health-benefits-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.health-benefits-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}
.health-benefits-content {
  display: flex;
  flex-direction: column;
}
.benefits-list {
  list-style: none;
  margin-top: 1.5rem;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.benefit-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--success);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.benefit-text-title {
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.95rem;
}
.benefit-text-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* Preparation Step Grid */
.prep-container {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-sm);
}
.prep-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .prep-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .prep-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.prep-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.prep-step:hover {
  transform: translateY(-4px);
}
.prep-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: var(--accent);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  border: 3px solid white;
  outline: 2px solid var(--secondary);
  transition: var(--transition);
}
.prep-step:hover .prep-number {
  background-color: var(--primary);
  color: white;
  outline-color: var(--primary);
}
.prep-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}
.prep-desc {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Connect arrows on desktop for steps */
@media (min-width: 1025px) {
  .prep-step:not(:last-child)::after {
    content: '➔';
    position: absolute;
    top: 25px;
    right: -20%;
    color: var(--border);
    font-size: 1.5rem;
  }
}

/* --- Mobile & General Responsiveness Helpers --- */

.cart-checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.two-column-grid-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.page-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.checkout-actions {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

/* Thumbnail Gallery Scroll */
.gallery-thumbs {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

/* Responsive media queries */
@media (max-width: 991px) {
  .cart-checkout-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .two-column-grid,
  .two-column-grid-large {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .page-header-flex {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0.75rem;
  }
  
  .page-header-flex h2,
  .page-header-flex h1 {
    text-align: center;
  }

  .page-header-flex div,
  .page-header-flex .btn-outline {
    justify-content: center;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .checkout-steps {
    padding: 0.5rem;
    font-size: 0.7rem;
    gap: 0.25rem;
    border-radius: var(--radius-sm);
  }

  .checkout-step {
    font-size: 0.7rem;
  }

  .checkout-actions {
    flex-direction: column-reverse;
    gap: 1rem;
    align-items: stretch;
    margin-top: 2rem;
  }

  .checkout-actions .btn,
  .checkout-actions a {
    width: 100%;
    padding: 0.85rem;
    text-align: center;
  }
  
  .table th, .table td {
    padding: 0.75rem 0.5rem;
  }
}

.action-buttons-flex {
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 576px) {
  .action-buttons-flex {
    flex-direction: column;
    gap: 0.5rem;
  }
}





