/* ================================================================
   BAIDYANATH PRASADAM — Complete Website Redesign
   Divine Saffron, Maroon & Gold Theme
   ================================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  --primary:        #FF6A00;
  --primary-dark:   #D95A00;
  --primary-light:  #FFF0E6;
  --maroon:         #7B1E1E;
  --maroon-dark:    #521414;
  --maroon-deep:    #2D0A0A;
  --cream:          #FFFAF4;
  --bg-section:     #FFF5E9;
  --dark:           #1C0A00;
  --dark2:          #2D1006;
  --text:           #2C2C2C;
  --text-muted:     #6B6B6B;
  --white:          #FFFFFF;
  --border:         #E8D5C0;
  --border-light:   #F5EAD8;
  --shadow-xs:      0 1px 4px rgba(0,0,0,.06);
  --shadow-sm:      0 2px 10px rgba(0,0,0,.08);
  --shadow:         0 4px 22px rgba(0,0,0,.12);
  --shadow-orange:  0 6px 28px rgba(255,106,0,.28);
  --shadow-maroon:  0 6px 22px rgba(123,30,30,.35);
  --radius:         14px;
  --radius-sm:      8px;
  --radius-pill:    50px;
  --transition:     all .3s cubic-bezier(.4,0,.2,1);
}

/* ================================================================
   BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--maroon);
}

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

img { max-width: 100%; height: auto; }

.container { max-width: 1240px; }

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.bdn-announcement-bar {
  background: linear-gradient(90deg, var(--maroon-deep) 0%, var(--maroon) 40%, var(--primary) 70%, var(--maroon) 100%);
  background-size: 200% 100%;
  animation: barShimmer 6s linear infinite;
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 500;
  padding: 9px 0;
  text-align: center;
  letter-spacing: .4px;
  overflow: hidden;
}
@keyframes barShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.bdn-announcement-bar .bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.bdn-announcement-bar .bar-item {
  display: flex; align-items: center; gap: 7px;
}
.bdn-announcement-bar .bar-item i { color: rgba(255,255,255,.9); font-size: .9rem; }
.bdn-announcement-bar .bar-item strong { color: rgba(255,255,255,.9); font-weight: 700; }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 18px rgba(0,0,0,.07);
  position: sticky;
  top: 0;
  z-index: 999;
}

.topbar {
  background: var(--white);
  padding: 16px 0 12px;
  border-bottom: 1px solid var(--border-light);
}

/* Logo */
.site-branding .site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.site-branding .site-logo img.my_main_logo {
  height: 68px !important;
  width: auto !important;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(255,106,0,.2));
}
.site-branding .site-logo:hover img { transform: scale(1.04); }

/* Search box */
.search-box-wrap .search-box-inner { width: 100%; }
.search-box-wrap .search-box {
  border: 2px solid var(--border) !important;
  border-radius: var(--radius-pill) !important;
  overflow: hidden;
  background: var(--cream) !important;
  transition: var(--transition);
  display: flex !important;
}
.search-box-wrap .search-box:focus-within {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px rgba(255,106,0,.1);
}
.search-box-wrap .search-box .form-control {
  background: transparent !important;
  border: none !important;
  padding: 10px 18px !important;
  font-size: .9rem !important;
  box-shadow: none !important;
  color: var(--text);
}
.search-box-wrap .search-box .form-control::placeholder { color: var(--text-muted); }
/* Search submit button */
.search-box-wrap .search-box .input-group-btn {
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  left: auto !important;             /* cancel any left:15px from theme */
  margin: 0 !important;
  /* styles.min.css sets transform:translateY(-50%) on .input-group .input-group-btn
     which shifts the whole button upward out of the field — cancel it */
  transform: none !important;
  display: block !important;        /* not inline-block */
  z-index: 10;
}
.search-box-wrap .search-box .input-group-btn button,
.search-box-wrap .search-box button[type="submit"] {
  height: 100% !important;
  width: 46px !important;
  padding: 0 !important;
  background: linear-gradient(135deg, var(--primary), #FF8C35) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0 !important;
  cursor: pointer;
  font-size: 1.1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: var(--transition);
}
.search-box-wrap .search-box .input-group-btn button:hover,
.search-box-wrap .search-box button[type="submit"]:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
}
.search-box-wrap .search-box .form-control {
  padding-right: 52px !important;
  padding-left: 18px !important;    /* cancel theme's 37px left-padding for icon */
}

/* ── Topbar flex row — vertically center logo + toolbar on every screen ── */
.site-header .topbar .col-lg-12 > .d-flex { align-items: center !important; }

/* Toolbar */
.toolbar {
  gap: 4px;
  align-items: center !important;
}
.toolbar .toolbar-item > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text) !important;
  text-decoration: none !important;
  transition: var(--transition);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  min-width: 52px;
}
.toolbar .toolbar-item > a:hover { color: var(--primary) !important; background: var(--primary-light); }
.toolbar .toolbar-item > a > div > i { font-size: 1.3rem; display: block; }
.toolbar .toolbar-item > a .text-label { font-size: .68rem; font-weight: 600; margin-top: 2px; letter-spacing: .3px; }
.toolbar .toolbar-item .count-label {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--primary) !important;
  color: var(--white) !important;
  font-size: .6rem;
  min-width: 18px; height: 18px;
  border-radius: 50px;
  /* use !important so flex wins over styles.min.css display:block (specificity 0,6,2) */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 700;
  border: 2px solid white;
  line-height: 1 !important;       /* cancel styles.min.css line-height:18px */
  text-align: center !important;
}
/* Match styles.min.css high-specificity rule and force our orange + centering */
.site-header .toolbar .toolbar-item > a > div > .cart-icon > .count-label,
.site-header .toolbar .toolbar-item > a > div > .compare-icon > .count-label {
  background: var(--primary) !important;
  background-color: var(--primary) !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1 !important;
  font-size: 10px !important;
  border: 2px solid #fff !important;
}
.toolbar .toolbar-item .cart-icon,
.toolbar .toolbar-item .compare-icon { position: relative; display: inline-block; }

/* India Post logo — sized via CSS only (inline style removed from blade) */
.india_post {
  height: 48px !important;
  width: auto !important;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.15));
  display: block;
}
.toolbar-item-indiapost {
  display: flex !important;
  align-items: center !important;
  padding: 0 4px !important;
}
@media (max-width: 991px) {
  .india_post { height: 34px !important; }
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%) !important;
  padding: 0 !important;
  box-shadow: 0 4px 18px rgba(82,20,20,.45);
  position: relative;
}

/* Categories dropdown button */
.categories .categories-btn,
.categories > a {
  background: linear-gradient(135deg, var(--primary), #FF8C35) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  font-size: .87rem !important;
  padding: 10px 18px !important;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition) !important;
  letter-spacing: .3px;
  text-decoration: none !important;
}
.categories .categories-btn:hover,
.categories > a:hover {
  box-shadow: var(--shadow-orange) !important;
  transform: translateY(-1px);
}

/* Dropdown popup */
.categories-dropdown-wrap,
.categories .categories-dropdown {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow) !important;
  border: 1px solid var(--border) !important;
  overflow: hidden;
}

/* Nav links */
.navbar .nav-inner { display: flex; align-items: center; }
.navbar .site-menu > ul {
  margin: 0; padding: 0; list-style: none;
  display: flex; align-items: stretch;
}
.navbar .site-menu > ul > li { position: relative; }
.navbar .site-menu > ul > li > a,
.navbar .site-menu > ul > li > .main-link {
  color: rgba(255,255,255,.88) !important;
  font-family: 'Inter', sans-serif;
  font-size: .87rem;
  font-weight: 500;
  padding: 14px 15px;
  display: flex; align-items: center; gap: 4px;
  text-decoration: none !important;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.navbar .site-menu > ul > li > a::after,
.navbar .site-menu > ul > li > .main-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  transition: var(--transition);
}
.navbar .site-menu > ul > li > a:hover,
.navbar .site-menu > ul > li.active > a,
.navbar .site-menu > ul > li > .main-link:hover {
  color: rgba(255,255,255,.9) !important;
}
.navbar .site-menu > ul > li > a:hover::after,
.navbar .site-menu > ul > li.active > a::after,
.navbar .site-menu > ul > li > .main-link:hover::after {
  left: 0; right: 0;
}

/* Dropdown menu */
.navbar .t-h-dropdown-menu {
  background: var(--white) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow) !important;
  border: 1px solid var(--border-light) !important;
  min-width: 200px !important;
  padding: 8px !important;
}
.navbar .t-h-dropdown-menu a {
  color: var(--text) !important;
  padding: 9px 14px !important;
  border-radius: var(--radius-sm) !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-size: .85rem !important;
  font-weight: 500 !important;
  transition: var(--transition) !important;
  text-decoration: none !important;
}
.navbar .t-h-dropdown-menu a::after { display: none !important; }
.navbar .t-h-dropdown-menu a:hover {
  background: var(--primary) !important;
  color: #FFFFFF !important;
}
.navbar .t-h-dropdown-menu a:hover i { color: #FFFFFF !important; }
.navbar .t-h-dropdown-menu a i { color: var(--primary); font-size: .8rem; }

/* ================================================================
   PAGE TITLE / BREADCRUMB
   ================================================================ */
.page-title {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  padding: 16px 0;
}
.page-title .breadcrumbs {
  margin: 0; padding: 0; list-style: none;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.page-title .breadcrumbs li { font-size: .85rem; color: rgba(255,255,255,.75); }
.page-title .breadcrumbs li a { color: rgba(255,255,255,.9) !important; text-decoration: none; font-weight: 500; }
.page-title .breadcrumbs li a:hover { color: var(--white) !important; }
.page-title .breadcrumbs .separator { color: rgba(255,255,255,.35); font-size: .7rem; }

/* ================================================================
   BUTTONS
   ================================================================ */
/* Lock ALL .btn-primary states — prevents Bootstrap 5 dark-blue hover override */
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle,
.btn-check:checked + .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #FF8C35 100%) !important;
  background-color: var(--primary) !important;  /* fallback if gradient stripped */
  color: #FFFFFF !important;
  border: none !important;
  border-color: transparent !important;
  box-shadow: 0 3px 14px rgba(255,106,0,.3) !important;
}
.btn-primary {
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  font-size: .85rem !important;
  letter-spacing: .3px !important;
  transition: var(--transition) !important;
  padding: 9px 22px !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
  background-color: var(--primary-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-orange) !important;
}
.btn-primary:active { transform: translateY(0) !important; }

.btn-outline-secondary {
  border: 2px solid var(--border) !important;
  color: var(--text-muted) !important;
  border-radius: var(--radius-pill) !important;
  background: transparent !important;
  font-weight: 600 !important;
  font-size: .85rem !important;
  transition: var(--transition) !important;
  padding: 7px 20px !important;
}
.btn-outline-secondary:hover {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  background: var(--primary-light) !important;
}

/* Add to cart / Buy Now inline button */
.add_to_single_cart,
.add_to_cart_btn {
  background: linear-gradient(135deg, var(--primary) 0%, #FF8C35 100%) !important;
  border: none !important;
  border-radius: var(--radius-pill) !important;
  color: var(--white) !important;
  font-size: .8rem !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  letter-spacing: .3px;
  transition: var(--transition) !important;
  box-shadow: 0 3px 12px rgba(255,106,0,.3) !important;
  cursor: pointer;
}
.add_to_single_cart:hover,
.add_to_cart_btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-orange) !important;
}

/* ================================================================
   FORM CONTROLS
   ================================================================ */
.form-control:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(255,106,0,.15) !important;
}
.form-control {
  border-radius: var(--radius-sm) !important;
  border-color: var(--border) !important;
  font-size: .9rem;
}

/* ================================================================
   SECTION TITLES
   ================================================================ */
.section-title,
.section-title2,
.section-title3 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 0;
}
.section-title h2, .section-title2 h2, .section-title3 h2,
.section-title .h3, .section-title2 .h3, .section-title3 .h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--maroon);
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 0;
}
.section-title h2::before, .section-title2 h2::before, .section-title3 h2::before,
.section-title .h3::before, .section-title2 .h3::before, .section-title3 .h3::before {
  content: '— ';
  color: var(--primary);
  font-style: italic;
  /* color.php injects background:#FF6A00!important on this pseudo-element — reset it */
  background: transparent !important;
  background-color: transparent !important;
}
.section-title h2::after, .section-title2 h2::after, .section-title3 h2::after,
.section-title .h3::after, .section-title2 .h3::after, .section-title3 .h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--primary), #D95A00);
  border-radius: 3px;
}

/* ================================================================
   SERVICE SECTION
   ================================================================ */
.service-section {
  background: var(--bg-section);
  padding: 44px 0;
}
.single-service,
.single-service2 {
  background: var(--white) !important;
  border-radius: var(--radius) !important;
  padding: 28px 18px 24px !important;
  transition: var(--transition);
  border: 1px solid var(--border-light) !important;
  text-align: center;
  height: 100%;
}
/* styles.min.css .single-service.single-service2 adds display:flex;text-align:left —
   override so service cards stay centered and vertical */
.single-service.single-service2 {
  display: block !important;
  text-align: center !important;
}
.single-service.single-service2 .content {
  text-align: center !important;
}
.single-service.single-service2 img {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.single-service:hover,
.single-service2:hover {
  box-shadow: var(--shadow) !important;
  transform: translateY(-5px);
  border-color: var(--primary) !important;
}
.single-service img,
.single-service2 img {
  width: 64px; height: 64px;
  object-fit: contain;
  margin-bottom: 14px;
  transition: var(--transition);
}
.single-service:hover img,
.single-service2:hover img { transform: scale(1.1) rotate(-4deg); }
.single-service h6,
.single-service2 h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: var(--maroon);
  margin-bottom: 6px;
}
.single-service p,
.single-service2 p { font-size: .8rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ================================================================
   BANNER SECTION
   ================================================================ */
.bannner-section { padding: 0 0 10px; }
.genius-banner {
  display: block;
  border-radius: var(--radius) !important;
  overflow: hidden;
  position: relative;
  text-decoration: none !important;
}
.genius-banner img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  transition: transform .5s ease;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.genius-banner:hover img { transform: scale(1.05); }
.genius-banner .inner-content {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: rgba(0,0,0,.52);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}
.genius-banner .inner-content p {
  color: rgba(255,255,255,.9) !important;
  font-size: .75rem;
  margin: 0 0 2px;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 600;
}
.genius-banner .inner-content h4 {
  color: var(--white) !important;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  font-family: 'Playfair Display', serif;
}

/* ================================================================
   PRODUCT CARDS
   ================================================================ */
.product-card {
  background: var(--white) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
  box-shadow: var(--shadow-xs) !important;
  transition: var(--transition);
  border: 1.5px solid transparent !important;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-orange) !important;
  border-color: rgba(255,106,0,.22) !important;
}
.product-card .product-thumb {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 1;
}
.product-card .product-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.product-card:hover .product-thumb img { transform: scale(1.07); }

/* Badges */
.product-badge {
  position: absolute;
  z-index: 2;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  line-height: 1.4;
}
.product-badge:first-child { top: 10px; left: 10px; }
.product-badge.product-badge2 { top: 10px; right: 10px; left: auto; }
.product-badge.bg-info {
  background: linear-gradient(135deg, var(--primary), #FF8C35) !important;
  color: var(--white) !important;
}
.product-badge.bg-secondary {
  background: rgba(50,50,50,.82) !important;
  color: var(--white) !important;
}

/* Product hover buttons */
.product-button-group {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
  transform: translateY(8px);
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-button-group { opacity: 1; transform: translateY(0); }
.product-button {
  background: var(--white) !important;
  color: var(--text) !important;
  border-radius: 50% !important;
  width: 36px; height: 36px;
  display: inline-flex !important;
  align-items: center; justify-content: center;
  font-size: .9rem !important;
  text-decoration: none !important;
  transition: var(--transition) !important;
  box-shadow: var(--shadow-sm) !important;
  border: none !important;
}
.product-button:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
  transform: scale(1.12) !important;
}

/* Card body */
.product-card .product-card-body,
.product-card .product-card-inner .product-card-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card .product-category { margin-bottom: 4px; }
.product-card .product-category a {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--primary) !important;
  text-decoration: none !important;
}
.product-card .product-title,
.product-card h3.product-title {
  font-family: 'Inter', sans-serif !important;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 8px;
  color: var(--text);
  flex: 1;
}
.product-card .product-title a,
.product-card h3.product-title a {
  color: var(--text) !important;
  text-decoration: none !important;
  transition: var(--transition);
}
.product-card .product-title a:hover,
.product-card h3.product-title a:hover { color: var(--primary) !important; }

.product-card .product-price,
.product-card h4.product-price {
  /* h4 inherits Playfair Display (serif) — override to Inter for clean numerics */
  font-family: 'Inter', -apple-system, sans-serif !important;
  color: var(--maroon) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin-bottom: 10px;
}
.product-card .product-price del,
.product-card h4.product-price del {
  color: var(--text-muted) !important;
  font-size: .8rem;
  font-weight: 400;
  margin-right: 5px;
}

/* Rating stars */
.rating-stars { margin-bottom: 8px; }
.rating-stars .filled { color: var(--primary) !important; }
.rating-stars i { font-size: .78rem; }

/* ================================================================
   SELECTED / FEATURED PRODUCT SECTION
   ================================================================ */
.selected-product-section,
.selected-product-section.theme2 {
  background: var(--white);
  padding: 56px 0;
}

/* ================================================================
   HERO SLIDER — full redesign
   ================================================================ */

/* Wrapper: clips the overlay and gives the absolute positioning context */
.slider-area-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--maroon-deep);
}

/* Slider item: fixed height, image fills it */
.hero-slider { border-radius: 0 !important; }
.hero-slider .item {
  height: 580px !important;
  padding: 0 !important;
  display: block !important;
  overflow: hidden;
  background: var(--maroon-deep) !important;
}
.hero-slider .item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
}

/* Nav arrows — always visible, circular, glass style */
.hero-slider .owl-carousel .owl-nav div {
  position: absolute !important;
  top: 50% !important;
  margin-top: -24px !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.18) !important;
  border: 1.5px solid rgba(255,255,255,.35) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  color: #fff !important;
  opacity: 1 !important;
  font-size: 1.15rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all .25s !important;
  z-index: 30 !important;
}
.hero-slider .owl-carousel .owl-nav div:hover {
  background: rgba(255,106,0,.75) !important;
  border-color: rgba(255,106,0,.5) !important;
}
.hero-slider:hover .owl-carousel .owl-nav div { opacity: 1 !important; }
.hero-slider .owl-carousel .owl-prev { left: 18px !important; }
.hero-slider .owl-carousel .owl-next { right: 18px !important; }

/* Dots — bottom-right, pill style */
.hero-slider .owl-dots {
  position: absolute !important;
  bottom: 18px !important;
  right: 22px !important;
  z-index: 30 !important;
  left: auto !important;
  margin: 0 !important;
}
.hero-slider .owl-dots .owl-dot span {
  background: rgba(255,255,255,.45) !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50px !important;
  margin: 0 4px !important;
  transition: all .25s !important;
}
.hero-slider .owl-dots .owl-dot.active span {
  background: #FF6A00 !important;
  width: 24px !important;
}

/* Bottom gradient overlay — text sits on a smooth dark fade */
.slider-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 20;
  background: linear-gradient(to top,
    rgba(20,4,4,.88) 0%,
    rgba(20,4,4,.55) 38%,
    rgba(20,4,4,.18) 65%,
    transparent 100%);
  padding: 52px 40px 28px;
  pointer-events: none;
}
.slider-text-content {
  max-width: 580px;
  pointer-events: all;
}
.slider-om {
  font-size: 1.8rem;
  color: #FF8C35;
  font-family: serif;
  text-shadow: 0 0 28px rgba(255,106,0,.55);
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}
.slider-headline {
  font-size: 1.85rem;
  color: #fff;
  font-family: 'Playfair Display', serif !important;
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
  margin: 0 0 16px;
  line-height: 1.35;
}
.slider-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF6A00, #D95A00) !important;
  color: #fff !important;
  padding: 11px 28px;
  border-radius: 50px;
  font-size: .94rem;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(255,106,0,.42);
  transition: all .28s;
  letter-spacing: .03em;
}
.slider-cta::before { display: none !important; content: none !important; }
.slider-cta:hover {
  background: linear-gradient(135deg, #D95A00, #B84A00) !important;
  box-shadow: 0 6px 30px rgba(255,106,0,.58) !important;
  transform: translateY(-2px);
  color: #fff !important;
}

/* Mobile */
@media (max-width: 991px) {
  .hero-slider .item { height: 420px !important; }
  .slider-headline { font-size: 1.45rem; }
}
@media (max-width: 767px) {
  .hero-slider .item { height: 280px !important; }
  .slider-overlay { padding: 28px 20px 16px; }
  .slider-headline { font-size: 1.05rem; margin-bottom: 12px; }
  .slider-om { font-size: 1.3rem; margin-bottom: 4px; }
  .slider-cta { font-size: .79rem; padding: 8px 18px; }
  .hero-slider .owl-carousel .owl-nav div { width: 36px !important; height: 36px !important; font-size: .9rem !important; }
  .hero-slider .owl-carousel .owl-prev { left: 10px !important; }
  .hero-slider .owl-carousel .owl-next { right: 10px !important; }
}
@media (max-width: 480px) {
  .hero-slider .item { height: 220px !important; }
  .slider-headline { font-size: .92rem; }
  .slider-om { font-size: 1.1rem; }
}

/* ================================================================
   REVIEW CARDS
   ================================================================ */
.review-section-wrap {
  background: var(--bg-section);
  padding: 56px 0;
}
.review-card-new {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 3px solid var(--primary);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card-new:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.review-card-new .review-header { display: flex; align-items: center; gap: 14px; }
.review-card-new .review-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--primary);
  flex-shrink: 0;
  background: var(--cream);
}
.review-card-new .review-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--maroon);
  margin: 0 0 2px;
}
.review-card-new .review-subject {
  font-size: .8rem;
  color: var(--text-muted);
  margin: 0;
}
.review-card-new .review-rating {
  color: var(--primary);
  font-weight: 700;
  font-size: .88rem;
  display: flex; align-items: center; gap: 5px;
}
.review-card-new .review-rating i { font-size: .95rem; }

/* ================================================================
   BLOG SECTION
   ================================================================ */
.blog-section-h { background: var(--cream); padding: 56px 0; }
.blog-post {
  background: var(--white) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
  display: block !important;
  text-decoration: none !important;
  color: var(--text) !important;
  transition: var(--transition) !important;
  box-shadow: var(--shadow-xs) !important;
  border: 1px solid var(--border-light) !important;
  height: 100%;
}
.blog-post:hover { box-shadow: var(--shadow) !important; transform: translateY(-5px); border-color: rgba(255,106,0,.2) !important; }
.blog-post .post-thumb { overflow: hidden; }
.blog-post .post-thumb img {
  width: 100%; display: block;
  transition: transform .5s ease;
  aspect-ratio: 16/9; object-fit: cover;
}
.blog-post:hover .post-thumb img { transform: scale(1.06); }
.blog-post .post-body { padding: 18px 20px 22px; }
.blog-post .post-title {
  font-family: 'Playfair Display', serif;
  font-size: .96rem;
  font-weight: 600;
  color: var(--text) !important;
  line-height: 1.5;
  margin: 0 0 10px;
  transition: var(--transition);
}
.blog-post:hover .post-title { color: var(--primary) !important; }
.blog-post .post-meta {
  list-style: none; padding: 0;
  margin: 0 0 10px;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.blog-post .post-meta li { font-size: .75rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.blog-post .post-meta li i { color: var(--primary); }
.blog-post p { font-size: .82rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: linear-gradient(160deg, var(--dark2) 0%, var(--dark) 100%) !important;
  color: rgba(255,255,255,.82);
  padding: 64px 0 0 !important;
  margin-top: 64px;
  border-top: 4px solid var(--primary) !important;
  position: relative;
}
.site-footer::before {
  content: '🕉';
  position: absolute;
  top: -24px; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  line-height: 48px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(255,106,0,.55);
  z-index: 1;
}

.site-footer .widget { margin-bottom: 0; }
.site-footer .widget-title,
.site-footer h3.widget-title {
  font-family: 'Playfair Display', serif !important;
  color: rgba(255,255,255,.9) !important;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  letter-spacing: .3px;
}

/* Contact info */
.site-footer p {
  color: rgba(255,255,255,.72) !important;
  font-size: .875rem;
  line-height: 1.75;
}
.site-footer p strong { color: rgba(255,255,255,.9) !important; }
.site-footer ul.list-unstyled { margin: 0; }
.site-footer ul.list-unstyled li {
  color: rgba(255,255,255,.7);
  font-size: .84rem;
  margin-bottom: 4px;
}

/* Footer links */
.site-footer .widget-links ul { list-style: none; padding: 0; margin: 0; }
.site-footer .widget-links ul li { margin-bottom: 10px; }
.site-footer .widget-links ul li a {
  color: rgba(255,255,255,.72) !important;
  font-size: .875rem;
  text-decoration: none !important;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.site-footer .widget-links ul li a::before {
  content: '›';
  color: var(--primary);
  font-size: 1.2rem;
  line-height: 1;
  transition: var(--transition);
}
.site-footer .widget-links ul li a:hover {
  color: rgba(255,255,255,.9) !important;
  padding-left: 4px;
}
.site-footer .widget-links ul li a:hover::before { color: rgba(255,255,255,.9); }

/* Social links */
.footer-social-links { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.footer-social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75) !important;
  font-size: .92rem;
  transition: var(--transition);
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,.14);
}
.footer-social-links a:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
  transform: translateY(-3px) scale(1.08);
  border-color: var(--primary);
  box-shadow: 0 5px 16px rgba(255,106,0,.45);
}

/* Newsletter */
.site-footer .subscriber-form .input-group { position: relative; }
.site-footer .subscriber-form .form-control {
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm) !important;
  color: var(--white) !important;
  /* icon is at left:15px — give it breathing room so text doesn't overlap */
  padding: 11px 16px 11px 40px !important;
}
.site-footer .subscriber-form .form-control::placeholder { color: rgba(255,255,255,.45) !important; }
.site-footer .subscriber-form .form-control:focus {
  background: rgba(255,255,255,.13) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(255,106,0,.2) !important;
}
.site-footer .subscriber-form .input-group-addon {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: rgba(255,255,255,.75) !important;   /* brighter — visible on dark input */
  padding: 0 !important;
  font-size: .95rem !important;
}
.site-footer .text-sm, .site-footer .opacity-80 { color: rgba(255,255,255,.5) !important; font-size: .78rem !important; }

.site-footer .btn-primary {
  background: linear-gradient(135deg, var(--primary), #FF8C35) !important;
  border: none !important;
}
.site-footer .btn-primary:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important; }

.gateway_image { opacity: .7; filter: brightness(1.5); max-height: 38px; }

/* Footer copyright */
.footer-copyright {
  text-align: center;
  font-size: .8rem !important;
  color: rgba(255,255,255,.4) !important;
  padding: 18px 0 !important;
  margin: 32px 0 0 !important;
  border-top: 1px solid rgba(255,255,255,.07) !important;
}

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.scroll-to-top-btn {
  background: linear-gradient(135deg, var(--primary), #FF8C35) !important;
  color: var(--white) !important;
  width: 46px !important; height: 46px !important;
  border-radius: 50% !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  box-shadow: var(--shadow-orange) !important;
  transition: var(--transition) !important;
  text-decoration: none !important;
  font-size: 1.15rem !important;
  bottom: 28px !important; right: 28px !important;
}
.scroll-to-top-btn:hover { transform: translateY(-4px) !important; box-shadow: 0 10px 28px rgba(255,106,0,.5) !important; }

/* ================================================================
   MOBILE MENU
   ================================================================ */
.mobile-menu {
  background: var(--maroon-deep) !important;
  border-left: 3px solid var(--primary);
}
.mobile-menu .mm-heading-area h4 { color: rgba(255,255,255,.9) !important; font-family: 'Playfair Display', serif; }
.mobile-menu .nav-tabs { border-bottom: 1px solid rgba(255,255,255,.1) !important; }
.mobile-menu .nav-tabs .nav-item span {
  /* styles.min.css forces background:#f5f6f9 and padding:5px 0 — override */
  background: rgba(255,255,255,.06) !important;
  color: rgba(255,255,255,.7) !important;
  cursor: pointer;
  padding: 12px 6px !important;   /* narrow h-padding so "Prasad Category" fits on one line */
  display: block;
  font-weight: 600;
  font-size: .78rem !important;   /* slightly smaller so two-word label fits */
  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}
.mobile-menu .nav-tabs .nav-item span.active {
  /* styles.min.css forces background:#fff — override to dark */
  background: rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.95) !important;
  border-bottom-color: var(--primary) !important;
}
/* styles.min.css sets .slideable-menu{background:#fff;padding:10px 15px} and
   .tab-content{background:#fff} — force dark bg and remove container padding
   so item separators stretch edge-to-edge */
.mobile-menu .slideable-menu,
.mobile-menu .tab-content,
.mobile-menu .tab-pane {
  background: var(--maroon-deep) !important;
  padding: 0 !important;
}
.mobile-menu .slideable-menu ul li a {
  color: rgba(255,255,255,.8) !important;
  font-size: .875rem;
  padding: 13px 20px !important;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07) !important;
  text-decoration: none !important;
}
.mobile-menu .slideable-menu ul li:last-child a { border-bottom: none !important; }
.mobile-menu .slideable-menu ul li a:hover,
.mobile-menu .slideable-menu ul li.active a { color: var(--primary) !important; }
.mobile-menu .slideable-menu ul li a i { color: var(--primary) !important; font-size: .75rem; flex-shrink: 0; }
/* Also fix the inline t-h-dropdown menu inside mobile slideable-menu */
.mobile-menu .slideable-menu .t-h-dropdown-menu {
  background: rgba(0,0,0,.25) !important;
  border: none !important;
}
.mobile-menu .slideable-menu .t-h-dropdown-menu a {
  color: rgba(255,255,255,.75) !important;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-menu .slideable-menu .t-h-dropdown-menu a:hover { color: var(--primary) !important; }

/* Mobile category tab */
.mobile-menu .widget-categories,
.mobile-menu .mobile-cat { padding: 0 !important; }

/* styles.min.css adds li::before (feather chevron icon) at left:0 and
   li { padding-left:16px } — together they create a big gap before the text.
   We have our own expand arrow inside the <a>, so hide the li::before entirely. */
.mobile-menu .widget-categories ul > li::before,
.mobile-menu .mobile-cat ul > li::before {
  display: none !important;
  content: none !important;
}
.mobile-menu .widget-categories ul > li,
.mobile-menu .mobile-cat ul > li {
  padding-left: 0 !important;   /* remove the 16px indent that was for ::before */
  margin-bottom: 0 !important;
  list-style: none !important;
}

/* All category links: flex so text is left, expand arrow is right, both centered */
.mobile-menu .widget-categories a,
.mobile-menu .mobile-cat a,
.mobile-menu .mobile-cat ul li a {
  color: rgba(255,255,255,.8) !important;
  padding: 13px 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-bottom: 1px solid rgba(255,255,255,.07) !important;
  text-decoration: none !important;
  gap: 10px;
  width: 100% !important;
}
.mobile-menu .mobile-cat a:hover,
.mobile-menu .widget-categories a:hover { color: var(--primary) !important; }

/* Expand arrow span — cancel float:right, sit as flex child on the right */
.mobile-menu .mobile-cat .category_search span,
.mobile-menu .mobile-cat .has-children .category_search span {
  float: none !important;
  flex-shrink: 0;
  width: 24px !important;
  height: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255,255,255,.1) !important;
  color: rgba(255,255,255,.65) !important;
  border-radius: 4px !important;
  font-size: .75rem !important;
}
.mobile-menu .mobile-cat .category_search span:hover {
  background: var(--primary) !important;
  color: #fff !important;
}

/* Sub & child categories — indent to show hierarchy, no expand arrow needed */
.mobile-menu .mobile-cat ul#subcategory_list li a {
  padding-left: 32px !important;
  font-size: .83rem !important;
  color: rgba(255,255,255,.65) !important;
  justify-content: flex-start !important;
}
.mobile-menu .mobile-cat ul#childcategory_list li a {
  padding-left: 46px !important;
  font-size: .78rem !important;
  color: rgba(255,255,255,.5) !important;
  justify-content: flex-start !important;
}

/* Remove the white border-left styles.min.css adds on nested subcategory ul */
.mobile-menu .widget-categories ul > li.has-children ul,
.mobile-menu .mobile-cat ul > li.has-children ul {
  border-left: none !important;
}

/* ================================================================
   CART DROPDOWN
   ================================================================ */
.cart-dropdown.widget-cart {
  background: var(--white) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow) !important;
  border: 1px solid var(--border-light) !important;
  padding: 16px !important;
}
.cart-dropdown .entry {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.cart-dropdown .entry-thumb img {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-light);
}
.cart-dropdown .entry-title a {
  font-size: .84rem; font-weight: 600;
  color: var(--text) !important; text-decoration: none !important;
}
.cart-dropdown .entry-title a:hover { color: var(--primary) !important; }
.cart-dropdown .entry-meta { font-size: .78rem; color: var(--text-muted); }
.cart-dropdown .entry-delete a {
  color: var(--text-muted) !important;
  font-size: .9rem; transition: var(--transition);
  margin-left: auto;
}
.cart-dropdown .entry-delete a:hover { color: #dc3545 !important; }

/* ================================================================
   OWL CAROUSEL DOTS
   ================================================================ */
.owl-dots { text-align: center; margin-top: 18px; }
.owl-dots .owl-dot span {
  background: var(--border) !important;
  width: 10px !important; height: 10px !important;
  border-radius: 50% !important;
  display: block;
  transition: var(--transition) !important;
  margin: 0 4px;
}
.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  background: var(--primary) !important;
  width: 28px !important;
  border-radius: 5px !important;
}

/* Hero slider rules consolidated in the HOMEPAGE MARQUEE / HERO TEXT section above */

/* ================================================================
   PRELOADER
   ================================================================ */
#preloader {
  background: var(--cream) !important;
  display: flex; /* no !important — JS must be able to set display:none to hide it */
  align-items: center !important;
  justify-content: center !important;
}
#preloader img {
  /* reset the absolute positioning from styles.min.css so flex centering works */
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  max-width: 120px !important;
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: .7; } }

/* ================================================================
   SPACING UTILITIES
   ================================================================ */
.mt-30 { margin-top: 30px !important; }
.mt-50 { margin-top: 50px !important; }
.mb-30 { margin-bottom: 30px !important; }
.pt-0  { padding-top: 0 !important; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1199px) {
  .navbar .site-menu > ul > li > a,
  .navbar .site-menu > ul > li > .main-link { padding: 14px 11px; font-size: .83rem; }
}

@media (max-width: 991px) {
  .navbar { padding: 8px 0 !important; }
  .site-footer { padding: 52px 0 0 !important; }
}

@media (max-width: 767px) {
  .bdn-announcement-bar .bar-inner { gap: 16px; }
  .bdn-announcement-bar .bar-item:not(:first-child) { display: none; }
  .section-title h2, .section-title2 h2, .section-title .h3, .section-title2 .h3 { font-size: 1.45rem; }
  .site-footer { padding: 50px 0 0 !important; margin-top: 40px; }
  .site-footer .col-lg-4 { margin-bottom: 32px; }
  .my_main_logo { height: 52px !important; }
}

@media (max-width: 575px) {
  .topbar { padding: 10px 0 8px; }
  .section-title h2, .section-title .h3 { font-size: 1.25rem; }
}

/* ================================================================
   BUTTON HOVER BLACK FIX
   styles.min.css adds a ::before pseudo with background:#111 that
   sweeps to width:100% on hover — a black wipe overlay that covers
   the button text.  Neutralise it completely.
   ================================================================ */
.btn.btn-primary::before,
.btn.btn-primary:hover::before {
  content: none !important;    /* remove the dark sweep pseudo-element */
  display: none !important;
}
/* Also ensure the button itself never turns dark */
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: linear-gradient(135deg, var(--primary) 0%, #FF8C35 100%) !important;
  background-color: var(--primary) !important;
  color: #FFFFFF !important;
  border: none !important;
}

/* ================================================================
   COLOR.PHP OVERRIDES
   These rules beat the dynamic color.php !important injections
   (same or higher specificity, loaded after color.php).
   ================================================================ */

/* "Prasad Categories" header bar in navbar */
.left-category-area .category-header h4 {
  background: linear-gradient(135deg, #521414 0%, #7B1E1E 100%) !important;
  color: #FFFFFF !important;
}

/* Category list nav links — keep text dark/readable on hover (not orange-on-orange) */
.left-category-area .category-list .navi-link:hover span.text-gray-dark,
.left-category-area .category-list .navi-link:hover {
  color: #FF6A00 !important;
}
/* Sub-category hover — orange text on white bg is fine */
.left-category-area .category-list .sub-c-box .title:hover,
.left-category-area .category-list .sub-c-box .child-category a:hover {
  color: #FF6A00 !important;
}

/* Mobile menu top heading area */
.mm-heading-area {
  background: linear-gradient(135deg, #521414 0%, #7B1E1E 100%) !important;
}

/* Footer social icon circles — keep translucent, NOT filled with primary_color */
.footer-social-links a {
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  color: rgba(255,255,255,.8) !important;
}
.footer-social-links a:hover {
  background: #FF6A00 !important;
  border-color: #FF6A00 !important;
  color: #FFFFFF !important;
}

/* Product card hover-buttons — white circle, orange on hover */
.product-card .product-button-group .product-button {
  background: #FFFFFF !important;
  color: #2C2C2C !important;
}
.product-card .product-button-group .product-button:hover {
  background: #FF6A00 !important;
  color: #FFFFFF !important;
}

/* Owl carousel nav buttons — orange, not yellow */
.features-slider.owl-carousel .owl-nav div:hover,
.newproduct-slider.owl-carousel .owl-nav div:hover,
.home-blog-slider.owl-carousel .owl-nav div:hover,
.bestseller-slider.owl-carousel .owl-nav div:hover,
.flash-deal-slider.owl-carousel .owl-nav div:hover,
.toprated-slider.owl-carousel .owl-nav div:hover,
.popular-category-slider.owl-carousel .owl-nav div:hover,
.brand-slider.owl-carousel .owl-nav div:hover {
  background: #FF6A00 !important;
}

/* widget-title ::after underline — orange, not yellow */
.widget-title::after {
  background-color: #FF6A00 !important;
}

/* Pagination active — maroon */
.pagination li.active span,
.pagination li.active a {
  background: #7B1E1E !important;
  border-color: #7B1E1E !important;
  color: #FFFFFF !important;
}
.pagination li a:hover,
.pagination li span:hover {
  background: #FF6A00 !important;
  border-color: #FF6A00 !important;
  color: #FFFFFF !important;
}

/* Nav tabs active — maroon underline */
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #7B1E1E !important;
  border-bottom-color: #7B1E1E !important;
  background: transparent !important;
}

/* Scroll to top button — keep orange gradient on both normal and hover */
.scroll-to-top-btn,
.scroll-to-top-btn:hover {
  background: linear-gradient(135deg, #FF6A00, #FF8C35) !important;
  background-color: #FF6A00 !important;
  color: #FFFFFF !important;
}

/* ── White text on every orange-background hover ──
   color.php sets orange TEXT on many elements; when hover also adds
   orange BACKGROUND the text becomes invisible. Force white here.     */

/* Primary buttons — force white text (color.php can set orange text on orange bg) */
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active { color: #FFFFFF !important; }

/* Outline buttons — keep their own text color, only go white when filled on hover */
.btn-outline-primary:hover,
.btn-outline-primary:focus { color: #FFFFFF !important; }

/* btn-outline-secondary must NOT be white — it has a light background */
.btn-outline-secondary,
.btn-outline-secondary:focus { color: var(--text-muted) !important; }
.btn-outline-secondary:hover { color: var(--primary) !important; }

/* Navbar categories button */
.categories .categories-btn,
.categories .categories-btn:hover,
.categories > a,
.categories > a:hover { color: #FFFFFF !important; }

/* Navbar main links on hover (override color.php orange text) */
.navbar .site-menu > ul > li > a:hover,
.navbar .site-menu > ul > li.active > a,
.navbar .site-menu > ul > li > .main-link:hover { color: #FFFFFF !important; }

/* Carousel nav arrows — default text and hover */
.owl-carousel .owl-nav div,
.owl-carousel .owl-nav div:hover { color: #FFFFFF !important; }

/* Product card hover buttons */
.product-card .product-button-group .product-button:hover { color: #FFFFFF !important; }

/* Footer social icons */
.footer-social-links a:hover { color: #FFFFFF !important; }

/* Pagination */
.pagination li a:hover,
.pagination li span:hover,
.pagination li.active span,
.pagination li.active a { color: #FFFFFF !important; }

/* Nav tabs active/hover */
.nav-tabs .nav-link:hover { color: #FFFFFF !important; }

/* Scroll to top */
.scroll-to-top-btn,
.scroll-to-top-btn:hover { color: #FFFFFF !important; }

/* Payment buttons */
.gw-pay-button,
.gw-pay-button:hover { color: #FFFFFF !important; }

/* Search button */
.search-box-wrap .search-box .input-group-btn button,
.search-box-wrap .search-box .input-group-btn button:hover,
.search-box-wrap .search-box button[type="submit"],
.search-box-wrap .search-box button[type="submit"]:hover { color: #FFFFFF !important; }

/* ================================================================
   HOME SCREEN — ADDITIONAL COLOR.PHP CONFLICT FIXES
   color.php injects background on pseudo-elements and many elements.
   These overrides run last so we always win.
   ================================================================ */

/* Section-title link decorator ::before — color.php adds orange background */
.section-title .links a::before {
  background: transparent !important;
  background-color: transparent !important;
}

/* Section title underline (::after) — color.php sets background on ::before,
   ::after is our gradient bar; make sure it stays clean */
.section-title h2::after,
.section-title .h3::after,
.section-title2 h2::after,
.section-title2 .h3::after,
.section-title3 h2::after,
.section-title3 .h3::after {
  background: linear-gradient(90deg, #FF6A00, #D95A00) !important;
}

/* Product price — color.php sets orange; keep it, just ensure it's readable */
.product-card .product-price { color: var(--maroon) !important; }

/* Countdown spans (flash deals) — color.php sets orange bg; keep orange */
.product-card .countdown span { background: #FF6A00 !important; color: #FFFFFF !important; }

/* Flash deal / theme2 countdown */
.flash-sell-area.theme2 .product-card .countdown { background: #FF6A00 !important; }
.flash-sell-area.theme2 .product-card .countdown span { color: #FFFFFF !important; }

/* Three-column category carousel nav */
.three_column_product .newproduct-slider .owl-nav div {
  background: #FF6A00 !important;
  color: #FFFFFF !important;
}

/* Blog section post meta links */
.post-meta > li > a:hover { color: #FF6A00 !important; }
.post-title > a:hover { color: #FF6A00 !important; }

/* Brand slider nav */
.brand-slider.owl-carousel .owl-nav div:hover { background: #FF6A00 !important; color: #FFFFFF !important; }

/* ================================================================
   HOMEPAGE — SACRED & RELIGIOUS ENHANCEMENTS
   ================================================================ */

/* ── 1. Sacred Mantra Strip ─────────────────────────────────── */
.sacred-mantra-strip {
  background: linear-gradient(135deg, #1A0505 0%, #521414 50%, #7B1E1E 100%);
  padding: 13px 0;
  position: relative;
  overflow: hidden;
}
.sacred-mantra-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,106,0,.08) 0%, transparent 68%);
  pointer-events: none;
}
.mantra-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.mantra-item {
  color: rgba(255,255,255,.85);
  font-size: .89rem;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  letter-spacing: .02em;
  white-space: nowrap;
}
.mantra-item .om-text {
  color: #FF8C35;
  font-style: normal;
  font-size: 1.05rem;
}
.mantra-sep {
  color: rgba(255,179,71,.4);
  font-size: .72rem;
}
@media (max-width: 576px) {
  .mantra-strip-inner { gap: 4px 12px; }
  .mantra-item { font-size: .78rem; }
}

/* ── 2. Devotee Stats Strip ─────────────────────────────────── */
.devotee-stats-strip {
  background: linear-gradient(135deg, #521414 0%, #7B1E1E 100%);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.devotee-stats-strip::before {
  content: 'ॐ';
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  color: rgba(255,255,255,.03);
  font-family: serif;
  pointer-events: none;
  line-height: 1;
}
.devotee-stats-strip::after {
  content: 'ॐ';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  color: rgba(255,255,255,.03);
  font-family: serif;
  pointer-events: none;
  line-height: 1;
}
.devotee-stats-strip .row {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}
.stat-item {
  text-align: center;
  padding: 20px 12px;
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%; width: 1px;
  background: rgba(255,255,255,.12);
}
.col-6.col-md-3:nth-child(2) .stat-item::after,
.col-6.col-md-3:nth-child(4) .stat-item::after { display: none; }
@media (min-width: 768px) {
  .col-6.col-md-3:nth-child(2) .stat-item::after { display: block; }
  .col-6.col-md-3:nth-child(4) .stat-item::after { display: none; }
}
.stat-num {
  display: block;
  font-size: 2.1rem;
  font-weight: 700;
  color: #FF8C35;
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.62);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
}

/* ── 3. Section pre-Om & sacred subtitle ────────────────────── */
.section-pre-om {
  display: block;
  font-size: 1.7rem;
  color: #FF6A00;
  font-family: serif;
  margin-bottom: 4px;
  text-shadow: 0 0 22px rgba(255,106,0,.28);
  line-height: 1;
}
.section-sacred-sub {
  display: block;
  font-size: .84rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-top: 6px;
  margin-bottom: 28px;
  line-height: 1.55;
}

/* ── 4. Prasad / Product section — sacred Om watermark bg ───── */
.selected-product-section.theme2 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFAF4 0%, #FFF5E9 100%);
}
.selected-product-section.theme2::before {
  content: 'ॐ';
  position: absolute;
  right: 2%;
  top: 4%;
  font-size: 360px;
  color: rgba(123,30,30,.028);
  font-family: serif;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}
.selected-product-section.theme2 .container { position: relative; z-index: 1; }

/* ── 5. Service section — sacred Om watermark ───────────────── */
.service-section {
  position: relative;
  overflow: hidden;
}
.service-section::after {
  content: 'ॐ';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 520px;
  color: rgba(123,30,30,.022);
  font-family: serif;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}
.service-section .container,
.service-section .row { position: relative; z-index: 1; }
/* Saffron top accent on hover */
.single-service,
.single-service2 {
  border-top: 3px solid transparent !important;
}
.single-service:hover,
.single-service2:hover { border-top-color: #FF6A00 !important; }

/* ── 6. Review cards ─────────────────────────────────────────── */
.review-section-wrap {
  background: linear-gradient(180deg, #FFF5E9 0%, #FFFAF4 100%);
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}
.review-section-wrap::before {
  content: 'ॐ';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 520px;
  color: rgba(123,30,30,.022);
  font-family: serif;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}
.review-section-wrap .container { position: relative; z-index: 1; }
.review-card-new {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px 22px;
  box-shadow: 0 4px 22px rgba(82,20,20,.07);
  border-top: 3px solid #FF6A00;
  position: relative;
  height: 100%;
  transition: all .28s;
}
.review-card-new::before {
  content: '\201C';
  position: absolute;
  top: 10px; right: 16px;
  font-size: 4.5rem;
  color: rgba(255,106,0,.1);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.review-card-new:hover {
  box-shadow: 0 8px 34px rgba(82,20,20,.13);
  transform: translateY(-4px);
}
.review-card-new .review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-card-new .review-avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FF6A00;
  flex-shrink: 0;
}
.review-card-new .review-name {
  font-weight: 700;
  font-size: .9rem;
  color: #521414;
  margin: 0 0 2px;
}
.review-card-new .review-subject {
  font-size: .79rem;
  color: #9B8070;
  margin: 0;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.review-card-new .review-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #FF6A00;
  font-size: .84rem;
  font-weight: 700;
  border-top: 1px solid #F5EAD8;
  padding-top: 12px;
  margin-top: 4px;
}
.review-card-new .review-rating i { font-size: .88rem; }

/* ── 7. Blog / Sacred Teachings section ─────────────────────── */
.blog-section-h {
  background: #FFFAF4;
  position: relative;
  overflow: hidden;
}
.blog-section-h::before {
  content: 'ॐ';
  position: absolute;
  right: 1%;
  bottom: 5%;
  font-size: 260px;
  color: rgba(123,30,30,.025);
  font-family: serif;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}
.blog-section-h .container { position: relative; z-index: 1; }
.blog-post {
  background: #fff;
  border-radius: 14px !important;
  overflow: hidden;
  display: block !important;
  text-decoration: none !important;
  box-shadow: 0 3px 18px rgba(0,0,0,.06);
  transition: all .28s;
  border-bottom: 3px solid transparent !important;
}
.blog-post:hover {
  box-shadow: 0 8px 30px rgba(82,20,20,.12) !important;
  transform: translateY(-4px);
  border-bottom-color: #FF6A00 !important;
  text-decoration: none !important;
}
.blog-post .post-thumb img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.blog-post:hover .post-thumb img { transform: scale(1.05); }
.blog-post .post-body { padding: 18px 18px 20px; }
.blog-post .post-title {
  font-family: 'Playfair Display', serif !important;
  font-size: .98rem !important;
  font-weight: 700 !important;
  color: #521414 !important;
  margin-bottom: 8px !important;
  line-height: 1.5 !important;
}
.blog-post .post-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-post .post-meta > li {
  font-size: .74rem;
  color: #9B8070;
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-post .post-meta > li i { color: #FF6A00; font-size: .76rem; }
.blog-post .post-body > p {
  font-size: .81rem;
  color: #6B6B6B;
  margin: 0;
  line-height: 1.65;
}

/* stats strip mobile — moved here to keep responsive section consolidated */
@media (max-width: 767px) {
  .stat-num { font-size: 1.6rem; }
  .devotee-stats-strip { padding: 24px 0; }
}
