:root {
  --bg-main: #fcf8e5;
  --secondary: #f46c33;
  --text-dark: #000;
  --white: #fff;
  --header-height: 72px;
  --transition: 0.3s ease;
}

html {
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--bg-main);
  color: var(--text-dark);
  overflow-x: hidden;
}

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

/* TOP BAR */
.top-bar {
  background: var(--secondary);
  color: #fff;
  padding: 8px;
}

/* HEADER */
.main-header {
  background: var(--bg-main);
  height: var(--header-height);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 20px;
  font-weight: 600;
}

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

/* DESKTOP MENU */
.desktop-menu ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.desktop-menu li {
  position: relative;
}

.desktop-menu a {
  font-size: 14px;
  font-weight: 500;
}

.desktop-menu a:hover,
.desktop-menu a.active {
  color: var(--secondary);
}

/* MEGA MENU */
.mega-parent {
  position: static;
}

.mega-menu {
  position: absolute;
  left: 0;
  width: 800px;

  top: 50px;
  background: var(--bg-main);
  padding: 40px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mega-parent:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
}

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

.mega-grid h6 {
  color: var(--secondary);
  font-weight: 600;
}

.mega-grid a {
  display: block;
  margin-bottom: 8px;
}

/* HEADER ICONS */
.header-icons i {
  margin-left: 16px;
  cursor: pointer;
}

/* MOBILE MENU */
.menu-toggle {
  background: none;
  border: none;
  font-size: 22px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -80%;
  width: 80%;
  height: 100%;
  background: var(--bg-main);
  padding: 20px;
  z-index: 1000;
  transition: var(--transition);
}

.mobile-menu.active {
  left: 0;
}

.close-btn {
  font-size: 32px;
  position: absolute;
  top: 10px;
  right: 20px;
}

.mobile-nav {
  list-style: none;
  padding: 50px 0 0;
}

.mobile-nav li {
  border-bottom: 1px solid #eee;
}

.mobile-nav a,
.mobile-dropdown>div {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  font-weight: 500;
  cursor: pointer;
}

.mobile-dropdown ul {
  display: none;
  padding-left: 15px;
}

.mobile-dropdown.open ul {
  display: block;
}

.mobile-dropdown.open i {
  transform: rotate(180deg);
}

/* OVERLAY */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
}

#overlay.show {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .desktop-menu {
    display: none !important;
  }

  .mega-menu {
    display: none;
  }
}

/* =========================
   CUSTOM HAMBURGER TOGGLE
========================= */
.menu-toggle {
  width: 32px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Different line widths (modern look) */
.menu-toggle span:nth-child(1) {
  width: 100%;
}

.menu-toggle span:nth-child(2) {
  width: 70%;
}

.menu-toggle span:nth-child(3) {
  width: 40%;
}

/* Optional hover effect */
.menu-toggle:hover span {
  background: var(--secondary);
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #470601;
  color: var(--white);
  padding: 70px 0 0;
  font-size: 14px;
}

.footer a {
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.footer a:hover {
  color: var(--secondary);
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Footer Titles */
.footer h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--white);
}

/* Footer Text */
.footer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Footer Lists */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

/* Social Icons */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 50px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .footer {
    padding: 50px 0 0;
  }

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

  .footer-bottom {
    font-size: 12px;
  }
}

/* =========================
   LOGO – GLOBAL
========================= */
.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* =========================
   HEADER LOGO
========================= */
.main-header .logo {
  height: var(--header-height);
}

.main-header .logo img {
  max-height: 42px;
  /* Ideal for 72px header */
  width: auto;
}

/* =========================
   FOOTER LOGO
========================= */
.footer .logo {
  margin-bottom: 14px;
}

.footer .logo img {
  max-height: 55px;
  /* Slightly larger for branding */
  width: auto;
}

/* =========================
   RESPONSIVE LOGO
========================= */
@media (max-width: 991px) {
  .main-header .logo img {
    max-height: 38px;
  }

  .footer .logo img {
    max-height: 50px;
  }
}

@media (max-width: 575px) {
  .main-header .logo img {
    max-height: 34px;
  }

  .footer .logo img {
    max-height: 46px;
  }
}

/* HERO SLIDER */
.hero-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slider {
  position: relative;
  height: 85vh;
  min-height: 380px;
  max-height: 900px;
}

/* Slide Base Style */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Slide Content */
.slide-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 550px;
}

.slide-content {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 60px 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}








.slide-content h1 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.25;
}

.slide-content p {
  margin: 15px 0 25px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.95;
}

/* Button */
.btn-primary {
  display: inline-block;
  padding: 12px 35px;
  background: #d4af37;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.btn-primary:hover {
  background: #b8962e;
}

/* Navigation Dots */
.slider-nav {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-nav .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.4;
  cursor: pointer;
  transition: 0.3s ease;
}

.slider-nav .dot.active {
  opacity: 1;
  transform: scale(1.15);
}

/* ============================
   RESPONSIVE BREAKPOINTS
   ============================ */

/* Tablets */
@media (max-width: 991px) {
  .slider {
    height: 40vh;
  }

  .slide-content {
    left: 6%;
    right: 6%;
  }
}

/* Mobile Landscape / Mid devices */
@media (max-width: 768px) {
  .slider {
    height: 45vh;
    min-height: 350px;
  }

  /* .slide-content {
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
  } */
}

/* Small Phones */
@media (max-width: 480px) {
  .slider {
    height: 40vh;
  }

  .slide-content h1 {
    font-size: 1.6rem;
  }

  .btn-primary {
    padding: 10px 26px;
  }

  .slider-nav .dot {
    width: 9px;
    height: 9px;
  }
}

/* Extra small phones (Galaxy Fold size) */
@media (max-width: 360px) {
  .slider {
    height: 25vh;
  }

  .slide-content h1 {
    font-size: 1.4rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .btn-primary {
    font-size: 0.85rem;
    padding: 8px 20px;
  }
}

/* New Arrivals Section */
.new-arrivals-section {
  padding: 60px 0;
  background: #faf6e5;
  /* same theme color */
}

.na-header {
  text-align: center;
  /* margin-bottom: 40px; */
}

.na-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000;
}

.na-header .view-all {
  display: inline-block;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--theme-primary, #e67820);
  text-decoration: none;
}

/* --- MOBILE E-COMMERCE OPTIMIZED --- */

@media (max-width: 768px) {
  .new-arrivals-section {
    padding: 40px 0;
  }

  .na-header h2 {
    font-size: 1.8rem;
  }
}

/* ================================
   Divine Collections Section
   ================================ */
.collections-section {
  padding: 60px 0;
  background: #faf6e5;
}

.cs-header {
  text-align: center;
  margin-bottom: 35px;
}

.cs-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #000;
}

.cs-header .view-all {
  display: inline-block;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--theme-primary, #e67820);
  text-decoration: none;
}

/* ===============================
   Desktop Grid
   =============================== */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 30px;
}

/* ===============================
   Category Card
   =============================== */
.cs-card {
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.cs-image {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.cs-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  transition: 0.35s ease;
}

/* Hover Effects (Desktop) */
.cs-card:hover img {
  transform: scale(1.07);
}

.cs-card:hover {
  transform: translateY(-6px);
}

.cs-title {
  margin-top: 12px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
}

/* ====================================
   MOBILE SLIDER — Shopping App Style
   ==================================== */
@media (max-width: 768px) {
  .cs-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 0 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox remove scrollbar */
  }

  /* Hide scrollbar Chrome/Safari */
  .cs-grid::-webkit-scrollbar {
    display: none;
  }

  .cs-card {
    min-width: 48%;
    flex: 0 0 auto;
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
    transition: 0.3s ease;
  }

  .cs-image img {
    height: 150px;
    border-radius: 12px;
  }

  .cs-title {
    font-size: 0.95rem;
    margin-top: 10px;
    text-align: center;
  }

  /* Tap animation */
  .cs-card:active {
    transform: scale(0.96);
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .cs-card {
    min-width: 60%;
  }

  .cs-image img {
    height: 135px;
  }

  .cs-title {
    font-size: 0.9rem;
  }
}

/* ================================
   COUNTER SECTION
   ================================ */
.counter-section {
  padding: 60px 0;
  background: #faf6e5;
  /* your theme background */
}

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

.counter-box {
  background: #fff;
  padding: 25px 15px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Numbers */
.count-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--theme-primary, #e67820);
  margin-bottom: 6px;
}

/* Labels */
.count-label {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

/* ================================
   MOBILE (Shopping App Layout)
   ================================ */
@media (max-width: 768px) {
  .counter-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 0 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .counter-grid::-webkit-scrollbar {
    display: none;
  }

  .counter-box {
    min-width: 48%;
    flex: 0 0 auto;
    padding: 20px 10px;
    scroll-snap-align: start;
    border-radius: 14px;
  }

  .count-num {
    font-size: 1.7rem;
  }

  .count-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .counter-box {
    min-width: 60%;
  }

  .count-num {
    font-size: 1.5rem;
  }

  .count-label {
    font-size: 0.85rem;
  }
}

/* ===============================
   GEMSTONE SECTION
   =============================== */
.gemstone-section {
  padding: 60px 0;
  background: #faf6e5;
}

.gemstone-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* ===============================
   LEFT BANNER
   =============================== */
.gemstone-banner {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.gemstone-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 300px;
}

.banner-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
}

.banner-content p {
  margin: 10px 0 20px;
  font-size: 1.1rem;
}

.btn-buy {
  background: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-buy:hover {
  background: #e6e6e6;
}

/* ===============================
   NEW PREMIUM PRODUCT CARD
   =============================== */
.gemstone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.gem-card {
  background: #f2ecda;
  border-radius: 18px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: 0.3s ease;
}

.gem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Image container */
.gem-img {
  width: 100%;
  height: 180px;
  background: #efe7cf;
  overflow: hidden;
  border-radius: 14px;
}

.gem-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

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

/* Info area */
.gem-info {
  margin-top: 10px;
}

.gem-title {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  line-height: 1.25;
  min-height: 40px;
}

.gem-price-row {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gem-price {
  color: var(--theme-primary, #e67820);
  font-weight: 700;
}

.gem-tag {
  background: rgba(230, 120, 32, 0.12);
  padding: 5px 10px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--theme-primary, #e67820);
}

/* ===============================
   TABLET RESPONSIVE FIXES
   =============================== */
@media (max-width: 992px) {
  .gemstone-wrapper {
    grid-template-columns: 1fr;
  }

  .gemstone-banner {
    height: 350px;
  }

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

/* ===============================
   MOBILE SHOPPING APP STYLE
   =============================== */
@media (max-width: 600px) {
  .gemstone-section {
    padding: 40px 0;
  }

  .gemstone-banner {
    height: 280px;
  }

  .banner-content h2 {
    font-size: 1.8rem;
  }

  .banner-content p {
    font-size: 0.95rem;
  }

  .gemstone-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 5px;
  }

  .gem-card {
    padding: 12px;
    border-radius: 14px;
  }

  .gem-img {
    height: 130px;
  }

  .gem-title {
    font-size: 0.88rem;
    min-height: 32px;
  }

  .gem-price {
    font-size: 0.92rem;
  }

  .gem-tag {
    font-size: 0.65rem;
    padding: 3px 6px;
  }

  .gem-card:active {
    transform: scale(0.97);
  }
}

/* Extra Small Phones */
@media (max-width: 420px) {
  .gem-img {
    height: 115px;
  }

  .gem-title {
    font-size: 0.85rem;
  }
}

/* ===============================
   PURPOSE SECTION
   =============================== */
.purpose-section {
  padding: 40px 0 20px;
  background: #faf6e5;
}

.purpose-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #000;
}

/* Slider Container */
.purpose-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Track for infinite movement */
.purpose-track {
  display: flex;
  gap: 35px;
  animation: slideInfinite 18s linear infinite;
}

/* Individual Item */
.purpose-item {
  text-align: center;
  min-width: 110px;
}

.purpose-item img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  border-radius: 50%;
  background: #f28c28;
  padding: 10px;
  border: 6px solid #5a1c00;
}

.purpose-item p {
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
}

/* Infinite Scrolling Animation */
@keyframes slideInfinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===============================
   MOBILE RESPONSIVE — Shopping App
   =============================== */
@media (max-width: 768px) {
  .purpose-section {
    padding: 30px 0 15px;
  }

  .purpose-title {
    font-size: 1.6rem;
    margin-bottom: 18px;
  }

  .purpose-track {
    gap: 22px;
    animation-duration: 14s;
  }

  .purpose-item {
    min-width: 90px;
  }

  .purpose-item img {
    width: 62px;
    height: 62px;
    padding: 8px;
    border-width: 5px;
  }

  .purpose-item p {
    font-size: 0.85rem;
  }
}

/* Extra Small Screens */
@media (max-width: 480px) {
  .purpose-track {
    gap: 18px;
  }

  .purpose-item {
    min-width: 80px;
  }

  .purpose-item img {
    width: 55px;
    height: 55px;
    padding: 6px;
  }

  .purpose-item p {
    font-size: 0.8rem;
  }
}

/* ===============================
   INTERACTIVE ANIMATED BANNER
   =============================== */
.interactive-banner {
  padding: 60px 0;
  background: #faf6e5;
}

.ib-box {
  position: relative;
  height: 380px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  transform: translateZ(0);
  background-color: #470601;
  /* your theme bg */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 8%;
}

/* IMAGE ON RIGHT */
.ib-bg {
  width: 50%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  transition: transform 0.8s ease, filter 0.8s ease;
}

/* Hover animation */
.ib-box:hover .ib-bg {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* TEXT LEFT */
.ib-content {
  color: #fff;
  max-width: 420px;
  opacity: 0;
  animation: textFadeIn 1.1s ease forwards;
}

@keyframes textFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-30%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

.ib-title {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.2;
}

.ib-subtitle {
  margin: 12px 0 25px;
  font-size: 1.1rem;
  opacity: 0.95;
}

.ib-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--theme-primary, #e67820);
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.ib-btn:hover {
  background: #c96518;
  transform: translateY(-3px);
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 768px) {
  .ib-box {
    height: 330px;
    flex-direction: column;
    padding: 25px;
    text-align: center;
  }

  .ib-content {
    order: 2;
    max-width: 100%;
  }

  .ib-bg {
    width: 70%;
    height: auto;
    order: 1;
    margin-bottom: 10px;
  }

  .ib-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .ib-box {
    height: auto;
    padding: 20px 15px;
  }

  .ib-bg {
    width: 78%;
  }

  .ib-title {
    font-size: 1.5rem;
  }

  .ib-subtitle {
    font-size: 0.9rem;
  }
}

/* ===============================
   SHOP BY RASHI
   =============================== */
.rashi-section {
  padding: 60px 0 40px;
  background: #faf6e5;
  /* your theme background */
}

.rashi-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 35px;
  color: #000;
}

/* STATIC GRID (NOT SLIDER) */
.rashi-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 25px;
  justify-items: center;
}

/* Item */
.rashi-item {
  text-align: center;
}

.rashi-item img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  background: #f28c28;
  padding: 12px;
  border: 7px solid #5a1c00;
  transition: 0.25s ease;
}

/* Hover effect */
.rashi-item img:hover {
  transform: scale(1.08);
}

.rashi-item p {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

/* ===============================
   RESPONSIVE — SHOPPING APP STYLE
   =============================== */

/* Tablets */
@media (max-width: 992px) {
  .rashi-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .rashi-item img {
    width: 80px;
    height: 80px;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .rashi-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 10px;
    padding: 0 10px;
  }

  .rashi-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .rashi-item img {
    width: 70px;
    height: 70px;
    padding: 10px;
    border-width: 5px;
  }

  .rashi-item p {
    font-size: 0.9rem;
  }
}

/* Extra small phones */
@media (max-width: 420px) {
  .rashi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .rashi-item img {
    width: 60px;
    height: 60px;
  }

  .rashi-item p {
    font-size: 0.85rem;
  }
}

/* ===============================
        BREADCRUMB BANNER
   =============================== */
.app-header {
  position: relative;
  height: 300px;
  overflow: hidden;
  color: #fff;
}

/* background */
.app-bg {
  position: absolute;
  inset: 0;
  background:
    /* soft divine glow */
    radial-gradient(circle at top right,
      rgba(212, 175, 55, 0.35),
      /* spiritual gold */
      transparent 45%),
    /* warm sacred highlight */
    radial-gradient(circle at top left,
      rgba(255, 205, 140, 0.25),
      /* soft saffron */
      transparent 50%),
    /* deep base gradient */
    linear-gradient(145deg,
      #2b1407,
      /* temple brown */
      #6a2c0f,
      /* sacred maroon */
      #c99a3a
      /* muted gold */
    );
}

.app-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom,
      rgba(255, 255, 255, 0.08),
      transparent 60%);
  pointer-events: none;
}

.breadcrumb-chips {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(201, 154, 58, 0.45);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

/* content */
.app-header-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.app-header-content h1 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
}

.app-header-content p {
  font-size: 14px;
  opacity: 0.9;
}

/* breadcrumb chips */
.breadcrumb-chips {
  margin-top: 14px;
  display: inline-flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 8px 14px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.15);
}

.breadcrumb-chips a,
.breadcrumb-chips strong,
.breadcrumb-chips span {
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* curve */
.app-curve {
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 80px;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .app-header {
    height: 250px;
  }

  .app-header-content h1 {
    font-size: 20px;
  }

  .breadcrumb-chips {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* ===============================
   APP STYLE PAGE HEADER
================================ */

.app-header {
  padding: 20px 0;
}

/* Outer soft background layer */
.app-header-wrap {
  background: #452523;
  border-radius: 22px;
  padding: 20px;
}

/* Inner elevated content slab */
.app-header-inner {
  background: #470601;
  border-radius: 18px;
  padding: 32px 28px;

  /* HEIGHT CONTROL */
  min-height: 160px;

  /* Vertical centering (app style) */
  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

/* Title */
.app-header-title {
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

/* Breadcrumb */
.app-header-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.app-header-breadcrumb a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  opacity: 0.85;
}

/* ===============================
   TABLET
================================ */

@media (max-width: 768px) {
  .app-header-wrap {
    padding: 16px;
    border-radius: 18px;
  }

  .app-header-inner {
    padding: 26px 20px;
    border-radius: 14px;
    min-height: 130px;
  }

  .app-header-title {
    font-size: 24px;
  }

  .app-header-breadcrumb {
    font-size: 13px;
  }
}

/* ===============================
   MOBILE (REAL APP FEEL)
================================ */

@media (max-width: 480px) {
  .app-header {
    padding: 14px 0;
  }

  .app-header-wrap {
    padding: 12px;
    border-radius: 16px;
  }

  .app-header-inner {
    padding: 22px 16px;
    border-radius: 12px;
    min-height: 110px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
  }

  .app-header-title {
    font-size: 21px;
  }
}

/* ===============================
   ABOUT STORY SECTION
================================ */

.about-story {
  padding: 50px 0;
  background: #fff9ee;
  text-align: center;
}

/* Main Title */
.about-story-title {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

/* Tagline / Quote */
.about-story-tagline {
  font-size: 18px;
  font-weight: 500;
  color: #111;
  margin-bottom: 28px;
}

/* Paragraphs */
.about-story-text {
  max-width: 960px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

/* Final emphasis line */
.about-story-highlight {
  margin-top: 26px;
  font-size: 17px;
  color: #000;
}

/* ===============================
   TABLET
================================ */

@media (max-width: 768px) {
  .about-story {
    padding: 50px 18px;
  }

  .about-story-title {
    font-size: 28px;
  }

  .about-story-tagline {
    font-size: 16px;
  }

  .about-story-text {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* ===============================
   MOBILE (CLEAN WEBSITE FEEL)
================================ */

@media (max-width: 480px) {
  .about-story {
    padding: 40px 14px;
  }

  .about-story-title {
    font-size: 22px;
  }

  .about-story-tagline {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .about-story-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-story-highlight {
    font-size: 15px;
  }
}

/* ===============================
   ABOUT PRODUCTS SECTION
================================ */

.about-products {
  padding: 80px 0;
  background: #fff9ee;
}

.about-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* Image */
.about-products-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* Content */
.about-products-title {
  font-size: 34px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.about-products-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

/* Button */
.about-products-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 28px;
  background: #ff6a00;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.about-products-btn:hover {
  background: #e65c00;
}

/* ===============================
   TABLET
================================ */

@media (max-width: 992px) {
  .about-products {
    padding: 60px 20px;
  }

  .about-products-grid {
    gap: 40px;
  }

  .about-products-title {
    font-size: 28px;
  }
}

/* ===============================
   MOBILE (STACKED, CLEAN)
================================ */

@media (max-width: 768px) {
  .about-products {
    padding: 50px 16px;
  }

  .about-products-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-products-title {
    font-size: 24px;
  }

  .about-products-text {
    font-size: 15px;
  }
}

/* ===============================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {
  .about-products {
    padding: 40px 14px;
  }

  .about-products-title {
    font-size: 22px;
  }

  .about-products-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-products-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}

/* ===============================
   OUR COMMITMENTS
================================ */

.our-commitments {
  padding: 80px 0;
  background: #fff9ee;
  text-align: center;
}

/* Section title */
.commitments-title {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin-bottom: 50px;
}

/* Grid */
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Item */
.commitment-item {
  padding: 34px 22px;
  border: 2px dashed #ff6a00;
  border-radius: 14px;
  background: transparent;
}

/* Icon */
.commitment-icon {
  font-size: 34px;
  color: #666;
  margin-bottom: 18px;
}

/* Title */
.commitment-item h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

/* Text */
.commitment-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ===============================
   TABLET
================================ */

@media (max-width: 992px) {
  .commitments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commitments-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 480px) {
  .our-commitments {
    padding: 50px 14px;
  }

  .commitments-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .commitments-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .commitment-item {
    padding: 26px 18px;
  }

  .commitment-icon {
    font-size: 30px;
  }

  .commitment-item h4 {
    font-size: 18px;
  }

  .commitment-item p {
    font-size: 14px;
  }
}






/* =====================
   SINGLE PRODUCT PAGE 
======================= */

/* Thumbnail active */
.thumb-img {
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
  width: 100%;
}

.thumb-img.active,
.thumb-img:hover {
  opacity: 1;
  border: 2px solid #ff7a00;
}

/* Image zoom */
.main-image img {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.main-image img.zoomed {
  transform: scale(1.6);
  cursor: zoom-out;
}

.product-page {
  background: #fdf6e9;
  padding: 40px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* GALLERY */
.product-gallery .main-image img {
  width: 100%;
  max-height: 420px;
  /* reduced image size */
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
}

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
  /* Allows thumbs to drop to next line if many */
}

.thumbs img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
}

/* INFO */
.product-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.rating {
  font-size: 14px;
  color: #f28b00;
}

.price-box {
  margin: 16px 0;
}

.price {
  font-size: 28px;
  font-weight: 700;
}

.old-price {
  text-decoration: line-through;
  margin-left: 10px;
  color: #999;
}

.off {
  background: #000;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-left: 8px;
}

/* SELLER INFO */
.seller-info {
  margin-top: 12px;
  font-size: 14px;
  color: #444;
}

.seller-info .label {
  color: #777;
}

.seller-name {
  color: #000;
  font-weight: 600;
}

/* PINCODE CHECK */
.pincode-check {
  margin-top: 16px;
}

.pincode-check label {
  font-size: 13px;
  color: #555;
  display: block;
  margin-bottom: 6px;
}

.pincode-box {
  display: flex;
  gap: 8px;
}

.pincode-box input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.pincode-box button {
  padding: 10px 16px;
  border-radius: 10px;
  background: #ff7a00;
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.pincode-msg {
  margin-top: 6px;
  font-size: 13px;
}

/* Success / Error */
.pincode-msg.success {
  color: green;
}

.pincode-msg.error {
  color: red;
}

/* MOBILE */
@media (max-width: 576px) {
  .pincode-box {
    flex-direction: column;
  }

  .pincode-box button {
    width: 100%;
  }
}

.qty {
  margin: 20px 0;
}

.qty-box {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 100px;
}

.qty-box button,
.qty-box input {
  width: 40px;
  text-align: center;
  border: none;
  background: none;
}

.addon {
  display: block;
  margin: 20px 0;
}

.cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cta-form {
  flex: 1;
  /* Makes Buy/Cart buttons equal width */
}

.btn-cart {
  flex: 1;
  background: #000;
  color: #fff;
  padding: 14px;
  border-radius: 14px;
}

.btn-buy {
  flex: 1;
  background: #f46c33;
  color: #fff;
  padding: 14px;
  border-radius: 14px;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
  align-items: center;
}

.trust img {
  width: 100%;
  max-height: 48px;
  object-fit: contain;
  background: #fff;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}


.btn-wishlist {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
}

/* Tablet */
@media (max-width: 768px) {
  .trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .trust img {
    max-height: 42px;
    padding: 6px;
  }
}

.thumb-img {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

.thumb-img.active,
.thumb-img:hover {
  opacity: 1;
  border: 2px solid #ff7a00;
}

/* MOBILE */
@media (max-width: 768px) {
  .product-grid {
    gap: 20px;
    /* Reduce gap for more space */
    grid-template-columns: 1fr !important;
  }

  .product-title {
    font-size: 22px;
  }

  .cta {
    flex-wrap: wrap;
    /* Stacks buttons if they don't fit */
    position: fixed;
    /* Better than sticky for bottom bars */
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px 20px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
  }
}

.product-accordion {
  margin-top: 30px;
  border-top: 1px solid #f0caa3;
}

.acc-item {
  border-bottom: 1px solid #ff7a00;
}

.acc-title {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.acc-title .icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.acc-content p {
  font-size: 14px;
  color: #444;
  padding-bottom: 16px;
  line-height: 1.6;
}

/* Active state */
.acc-item.active .acc-content {
  max-height: 300px;
}

.acc-item.active .icon {
  transform: rotate(180deg);
}

/* Mobile optimization */
@media (max-width: 768px) {
  .acc-title {
    font-size: 14px;
    padding: 14px 0;
  }
}

/* =====================
   REVIEWS SECTION
======================= */

.review-section {
  background: #fdf6e9;
  padding: 60px 0;
}

.review-header h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.review-summary {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  margin-bottom: 32px;
}

.rating-box {
  text-align: center;
}

.rating-score {
  font-size: 48px;
  font-weight: 700;
}

.stars {
  color: #ff7a00;
  margin: 6px 0;
}

.rating-bars .bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 8px;
}

.bar {
  flex: 1;
  height: 8px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  background: #f46c33;
}

/* REVIEW CARDS */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.review-card {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.review-stars {
  color: #ff7a00;
  font-size: 14px;
}

.review-text {
  font-size: 14px;
  margin: 10px 0;
  color: #444;
}

.review-user {
  display: flex;
  gap: 10px;
  font-size: 13px;
}

.verified {
  color: #ff7a00;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .review-summary {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .rating-bars {
    margin-top: 16px;
  }

  .review-header h2 {
    text-align: center;
  }
}

/* YOU MAY ALSO LIKE SECTION */
.related-products {
  background: #fdf6e9;
  padding: 60px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.section-header h2 {
  font-size: 26px;
  font-weight: 700;
}

/* Slider buttons */
.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* Slider */
.product-slider-wrapper {
  overflow: hidden;
}

.product-slider {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

.product-slide {
  min-width: 260px;
  max-width: 260px;
  flex-shrink: 0;
}

/* Tablet */
@media (max-width: 992px) {
  .product-slide {
    min-width: 220px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .slider-controls {
    display: none;
    /* swipe only on mobile */
  }

  .product-slide {
    min-width: 75%;
  }
}