/* ==========================================================================
   PurohitBaba.com — customize.css
   All site-specific custom CSS (on top of Bootstrap 5 + MDB UI Kit).
   Loaded once, globally, from resources/views/templates/s-cart-light/main.blade.php

   TABLE OF CONTENTS
   1.  Global / Loading / Utility
   2.  Breadcrumb Banner
   3.  Product Card (shared component — home, shop, product detail)
   4.  Homepage
   5.  Shop / Category Listing Page
   6.  Product Detail Page
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. GLOBAL / LOADING / UTILITY
   (moved from common/css.blade.php)
-------------------------------------------------------------------------- */
.sc-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #1f222b;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.7);
}

#sc-loading {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, 0.7);
}

/* price */
.sc-new-price {
  color: #FE980F;
  font-size: 20px;
  padding: 10px 5px;
  font-weight: bold;
}

.sc-old-price {
  text-decoration: line-through;
  color: #a95d5d;
  font-size: 18px;
  padding: 10px;
}

/* product build / group */
.sc-product-build {
  font-size: 20px;
  font-weight: bold;
}

.sc-product-build img {
  width: 50px;
}

.sc-product-group img {
  width: 100px;
  cursor: pointer;
}

.sc-product-group:hover {
  box-shadow: 0px 0px 2px #999;
}

.sc-product-group:active,
.sc-product-group.active {
  box-shadow: 0px 0px 2px #ff00ff;
}

/* shipping address table */
.sc-shipping-address td {
  padding: 3px !important;
}

.sc-shipping-address textarea,
.sc-shipping-address input[type="text"],
.sc-shipping-address option {
  width: 100%;
  padding: 7px !important;
}

.row_cart>td {
  vertical-align: middle !important;
}

input[type="number"] {
  text-align: center;
  padding: 2px;
}

.sc-notice {
  clear: both;
  font-size: 20px;
  background: #f3f3f3;
  width: 100%;
}

img.new {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 0px !important;
}

.pointer {
  cursor: pointer;
}

.add-to-cart-list {
  padding: 5px 10px !important;
  margin: 2px !important;
  letter-spacing: 0px !important;
  font-size: 12px !important;
  border-radius: 5px;
}

.help-block {
  font-size: 12px;
  color: red;
  font-style: italic;
}

.post-minimal-time {
  font-size: 10px;
  font-style: italic;
}

.sc-point {
  cursor: pointer;
}


/* --------------------------------------------------------------------------
   2. BREADCRUMB BANNER
   (moved from common/breadcrumb.blade.php)
-------------------------------------------------------------------------- */
.breadcrumb-banner {
  position: relative;
  height: 200px;
  max-height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f89b20 0%, #ff8c00 100%);
  margin-bottom: 0;
}

.breadcrumb-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 155, 32, 0.5) 0%, rgba(255, 140, 0, 0.5) 100%);
  z-index: 1;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.breadcrumb-title {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
  animation: fadeInUp 0.6s ease-out;
}

.breadcrumb-nav {
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.breadcrumb-custom-path {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumb-custom-path li {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.breadcrumb-custom-path li:not(:last-child)::after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 10px;
  color: #999;
  margin-left: 10px;
}

.breadcrumb-custom-path li a {
  color: #f89b20;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.breadcrumb-custom-path li a:hover {
  color: #d87e10;
  text-decoration: underline;
}

.breadcrumb-custom-path li.active {
  color: #666;
  font-weight: 600;
}

.breadcrumb-home-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #f89b20 0%, #ff8c00 100%);
  border-radius: 50%;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
}

.breadcrumb-custom-path li a:hover .breadcrumb-home-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(248, 155, 32, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .breadcrumb-banner {
    height: 150px;
    max-height: 150px;
  }

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

  .breadcrumb-custom-path {
    font-size: 13px;
  }

  .breadcrumb-nav {
    padding: 12px 0;
  }
}

@media (max-width: 576px) {
  .breadcrumb-banner {
    height: 120px;
    max-height: 120px;
  }

  .breadcrumb-title {
    font-size: 1.25rem;
  }

  .breadcrumb-custom-path {
    font-size: 12px;
  }

  .breadcrumb-home-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}


/* --------------------------------------------------------------------------
   3. PRODUCT CARD (shared component)
   Used on: Homepage, Shop/Category listing, Product detail (related products)
   (moved from common/product_single.blade.php — was previously duplicated
   once per product on the page; now loaded a single time site-wide)
-------------------------------------------------------------------------- */
.modern-product-card {
  position: relative;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.modern-product-card:hover {
  box-shadow: 0 8px 25px rgba(255, 61, 0, 0.2);
  transform: translateY(-5px);
}

/* Product Badges */
.product-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-sale {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.badge-bundle {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}

.badge-group {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white;
}

.badge-low-stock {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  color: white;
}

/* Product Figure */
.product-figure {
  position: relative;
  background: #f8f9fa;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  padding: 15px;
}

.modern-product-card:hover .product-figure img {
  transform: scale(1.08);
}

/* Quick Actions */
.quick-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.modern-product-card:hover .quick-actions {
  opacity: 1;
  transform: translateX(0);
}

.quick-action-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  color: #FF6A00;
}

.quick-action-btn:hover {
  background: linear-gradient(90deg, #FF6A00, #FF3D00);
  color: white;
  transform: scale(1.1);
}

/* Product Body */
.product-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-vendor {
  font-size: 11px;
  color: #95a5a6;
  margin-bottom: 6px;
}

.product-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.3;
  min-height: 38px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-title a:hover {
  color: #FF6A00;
}

/* Product Rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.product-rating i {
  font-size: 12px;
  color: #ddd;
}

.product-rating i.active {
  color: #FF6A00;
}

.rating-count {
  font-size: 11px;
  color: #95a5a6;
  margin-left: 4px;
}

/* Product Price */
.product-price-section {
  margin: auto 0 12px;
}

.product-price-section .price {
  font-size: 20px;
  font-weight: 700;
  color: #FF6A00;
}

.product-price-section .price-before {
  font-size: 14px;
  color: #95a5a6;
  text-decoration: line-through;
  margin-right: 6px;
}

/* Add to Cart Button */
.btn-add-to-cart,
.btn-view-details {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #FF6A00, #FF3D00);
  color: white;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

.btn-add-to-cart:hover,
.btn-view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 61, 0, 0.4);
  color: white;
}

.btn-view-details {
  background: linear-gradient(90deg, #11998e 0%, #38ef7d 100%);
}

@media (max-width: 768px) {
  .product-figure {
    height: 160px;
  }

  .product-figure img {
    padding: 10px;
  }

  .product-title {
    font-size: 13px;
    min-height: 35px;
  }

  .quick-actions {
    opacity: 1;
    transform: translateX(0);
  }

  .quick-action-btn {
    width: 32px;
    height: 32px;
  }

  .product-body {
    padding: 12px;
  }

  .btn-add-to-cart,
  .btn-view-details {
    padding: 9px;
    font-size: 12px;
  }
}


/* --------------------------------------------------------------------------
   4. HOMEPAGE
   (moved from screen/shop_home.blade.php)
-------------------------------------------------------------------------- */
.category-section {
  background: linear-gradient(90deg, #FF6A00, #FF3D00);
  padding: 30px 15px;
  border-radius: 12px;
  margin-top: 15px;
}

.section-header {
  margin-bottom: 20px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.section-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px;
  max-width: 100%;
}

.category-card {
  background: white;
  padding: 15px 10px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #FF6A00, #FF3D00);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.category-card:hover::before {
  opacity: 0.1;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 61, 0, 0.3);
}

.category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #FF6A00, #FF3D00);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.category-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.category-icon i {
  font-size: 28px;
  color: white;
}

.category-name {
  font-size: 13px;
  font-weight: 600;
  color: #2c3e50;
  margin: 5px 0 3px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.category-count {
  font-size: 11px;
  color: #95a5a6;
  position: relative;
  z-index: 1;
}

/* Featured Section */
.featured-section {
  padding: 25px 0;
}

.section-header.d-flex .section-title {
  font-size: 22px;
  color: #2c3e50;
}

.section-header.d-flex .section-subtitle {
  color: #7f8c8d;
}

.carousel-nav {
  display: flex;
  gap: 8px;
}

.carousel-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #FF6A00;
  background: white;
  color: #FF6A00;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: linear-gradient(90deg, #FF6A00, #FF3D00);
  color: white;
  transform: scale(1.05);
}

.featured-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.featured-carousel::-webkit-scrollbar {
  height: 6px;
}

.featured-carousel::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.featured-carousel::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #FF6A00, #FF3D00);
  border-radius: 10px;
}

/* Highlights Section */
.highlights-section {
  padding: 15px 0;
}

.highlight-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 61, 0, 0.15);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(90deg, #FF6A00, #FF3D00);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 24px;
  color: white;
}

.highlight-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 3px;
}

.highlight-content p {
  font-size: 13px;
  color: #7f8c8d;
  margin: 0;
}

/* Products Section (homepage "All Products") */
.products-section {
  padding: 25px 0;
}

.products-section .filter-controls {
  flex-wrap: wrap;
}

.products-section .filter-controls form {
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.product-grid-item {
  height: 100%;
}

/* Empty State (shared: homepage + shop listing) */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

.empty-state i {
  font-size: 60px;
  color: #bdc3c7;
  margin-bottom: 15px;
}

.empty-state h4 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 8px;
}

.empty-state p {
  color: #7f8c8d;
  font-size: 14px;
}

/* Responsive */
@media (min-width: 1400px) {
  .product-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 20px;
  }

  .category-section {
    padding: 20px 10px;
  }

  .category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .category-icon {
    width: 50px;
    height: 50px;
  }

  .category-icon img {
    width: 30px;
    height: 30px;
  }

  .category-icon i {
    font-size: 20px;
  }

  .category-name {
    font-size: 11px;
  }

  .category-count {
    font-size: 10px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .highlight-card {
    flex-direction: row;
    padding: 15px;
    gap: 12px;
  }

  .highlight-icon {
    width: 45px;
    height: 45px;
  }

  .highlight-content h5 {
    font-size: 14px;
  }

  .highlight-content p {
    font-size: 12px;
  }

  .carousel-nav {
    display: none;
  }

  .featured-section,
  .products-section,
  .highlights-section {
    padding: 15px 0;
  }
}

@media (max-width: 480px) {
  .category-section {
    padding: 15px 8px;
    margin-top: 10px;
  }

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

  .filter-controls {
    width: 100%;
    justify-content: center;
  }
}


/* --------------------------------------------------------------------------
   5. SHOP / CATEGORY LISTING PAGE
   (screen/shop_product_list.blade.php — modernized to match the
   homepage / product-detail design language)
-------------------------------------------------------------------------- */
.shop-list-wrapper {
  padding: 10px 0 25px;
}

/* Sub-category strip */
.subcategory-section {
  margin-bottom: 25px;
}

.subcategory-heading {
  font-size: 15px;
  font-weight: 700;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.subcategory-heading i {
  color: #FF6A00;
}

.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.subcategory-card {
  background: white;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  padding: 14px 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: block;
}

.subcategory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(255, 61, 0, 0.18);
}

.subcategory-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 8px;
  display: block;
}

.subcategory-card p {
  font-size: 13px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  line-height: 1.3;
}

/* Toolbar: result count + sort */
.shop-list-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.shop-list-toolbar .product-top-panel-title {
  margin: 0;
  font-size: 13px;
  color: #7f8c8d;
}

.shop-list-toolbar #filter_sort .input-group-text {
  background: white;
  color: #FF6A00;
}

/* Product grid for shop/category page */
.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

@media (min-width: 1400px) {
  .shop-product-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .shop-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .shop-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .shop-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .subcategory-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .subcategory-card img {
    width: 48px;
    height: 48px;
  }

  .shop-list-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}


/* --------------------------------------------------------------------------
   6. PRODUCT DETAIL PAGE
   (moved from screen/shop_product_detail.blade.php)
-------------------------------------------------------------------------- */
.product-detail-wrapper {
  background: linear-gradient(135deg, #fff5e6 0%, #ffffff 50%, #ffebee 100%);
  padding: 24px 0;
}

/* Image Gallery Section */
.product-gallery-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.product-gallery-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f89b20 0%, #b50000 100%);
}

.slick-product-figure {
  border-radius: 12px;
  overflow: hidden;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.slick-product-figure:hover {
  transform: scale(1.02);
}

.slick-product-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Product Info Section */
.product-info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.product-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b50000 0%, #f89b20 100%);
}

.product-title-mui {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-family: 'Roboto', sans-serif;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.product-sku-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #1976d2;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 12px;
}

/* Price Section */
.price-section-mui {
  background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
  padding: 12px 16px;
  border-radius: 10px;
  border-left: 3px solid #f89b20;
  margin: 12px 0;
}

.product-price-original {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f89b20;
  margin: 0;
}

.product-price-old {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
  margin-right: 10px;
}

.price-save-badge {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(76, 175, 80, 0.3);
}

.product-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #f89b20 50%, transparent 100%);
  margin: 16px 0;
}

/* Quantity Section */
.quantity-section-mui {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.quantity-selector-mui {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fa;
  padding: 6px 12px;
  border-radius: 20px;
  border: 2px solid #e0e0e0;
}

.quantity-selector-mui label {
  font-weight: 600;
  color: #333;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.quantity-selector-mui label i {
  color: #f89b20;
  font-size: 0.95rem;
}

.quantity-selector-mui input {
  width: 70px;
  padding: 6px 10px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.quantity-selector-mui input:focus {
  outline: none;
  border-color: #f89b20;
  box-shadow: 0 0 0 3px rgba(248, 155, 32, 0.1);
}

/* Add to Cart Button */
.add-to-cart-btn-mui {
  background: linear-gradient(135deg, #f89b20 0%, #b50000 100%);
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 12px rgba(248, 155, 32, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.add-to-cart-btn-mui:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(248, 155, 32, 0.5);
  color: #ffffff;
}

.add-to-cart-btn-mui i {
  font-size: 1rem;
}

/* Product Meta Info */
.product-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.product-meta-item:last-child {
  border-bottom: none;
}

.product-meta-label {
  font-weight: 600;
  color: #333;
  min-width: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.product-meta-label i {
  color: #f89b20;
  font-size: 1rem;
}

.product-meta-value {
  color: #666;
  flex: 1;
  font-size: 0.9rem;
}

.product-meta-value a {
  color: #b50000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.product-meta-value a:hover {
  color: #f89b20;
}

/* Stock Status */
.stock-badge-in {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 6px rgba(76, 175, 80, 0.3);
}

.stock-badge-out {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 6px rgba(244, 67, 54, 0.3);
}

/* Attributes Section */
.attributes-section {
  margin: 12px 0;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 3px solid #b50000;
}

/* Social Share */
.social-share-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.social-share-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.social-share-title i {
  color: #f89b20;
}

.social-btn-mui {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-right: 8px;
  font-size: 0.9rem;
}

.social-btn-mui:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: white;
}

.social-btn-facebook {
  background: linear-gradient(135deg, #3b5998 0%, #4267B2 100%);
}

.social-btn-twitter {
  background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
}

.social-btn-instagram {
  background: linear-gradient(135deg, #E1306C 0%, #F56040 50%, #FCAF45 100%);
}

.social-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

/* Tabs Section */
.tabs-section-mui {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.tabs-section-mui::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f89b20 0%, #b50000 100%);
}

.nav-tabs-mui {
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 16px;
}

.nav-tabs-mui .nav-link {
  color: #666;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.nav-tabs-mui .nav-link:hover {
  color: #f89b20;
  border-bottom-color: #f89b20;
}

.nav-tabs-mui .nav-link.active {
  color: #b50000;
  border-bottom-color: #b50000;
  background: transparent;
}

.tab-content-mui {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Related Products Section */
.related-section-mui {
  padding: 32px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.related-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-family: 'Roboto', sans-serif;
  letter-spacing: -0.5px;
}

.related-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.related-decorator {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f89b20 0%, #b50000 100%);
  margin: 0 auto 32px;
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .product-detail-wrapper {
    padding: 20px 0;
  }

  .product-title-mui {
    font-size: 1.5rem;
  }

  .product-info-card,
  .product-gallery-card,
  .tabs-section-mui {
    padding: 16px;
  }

  .quantity-section-mui {
    flex-direction: column;
    align-items: stretch;
  }

  .add-to-cart-btn-mui {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .product-title-mui {
    font-size: 1.35rem;
  }

  .product-info-card,
  .product-gallery-card {
    padding: 14px;
    border-radius: 10px;
  }

  .product-meta-label {
    min-width: 85px;
    font-size: 0.85rem;
  }

  .social-btn-mui {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

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

  .price-section-mui {
    padding: 10px 14px;
  }
}

@media (max-width: 575px) {
  .product-title-mui {
    font-size: 1.2rem;
  }

  .quantity-selector-mui {
    flex-direction: column;
    align-items: stretch;
  }

  .quantity-selector-mui input {
    width: 100%;
  }

  .product-meta-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}


/* ==========================================================================
   7. HERO — GAYA SHRADDH (मृत्यु उपरांत कर्म)
   Homepage "banner_top" block: block/banner_image.blade.php
   Palette: reverent maroon/indigo dusk + the site's existing gold↔maroon
   gradient (#f89b20 → #b50000), already used on the product-detail page,
   reused here for CTA continuity with the rest of the brand.
   ========================================================================== */

.gaya-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 48px;
  color: #fdf6ec;
  isolation: isolate;
}

/* Background photo (swap the file at resources: images/gaya/vishnupad-falgu.jpg) */
.gaya-hero-bg {
  position: absolute;
  inset: 0;
  background-color: #2a0e12;
  background-size: cover;
  background-position: center;
  z-index: -3;
}

/* Reverent dark overlay so text stays fully readable over any photo */
.gaya-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 6, 10, 0.88) 0%, rgba(30, 8, 12, 0.82) 45%, rgba(20, 6, 10, 0.92) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(248, 155, 32, 0.18) 0%, transparent 55%);
  z-index: -2;
}

.gaya-hero-inner {
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------------------
   Interactive rangoli — Om (ॐ) assembled from rice-grain points that
   gather wherever the visitor's cursor/finger travels across the hero
-------------------------------------------------------------------- */
.gaya-rangoli-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.9;
}

/* --------------------------------------------------------------------
   Rising embers
-------------------------------------------------------------------- */
.gaya-embers {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.gaya-ember {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd98a 0%, #f89b20 55%, transparent 75%);
  box-shadow: 0 0 6px 1px rgba(248, 155, 32, 0.7);
  opacity: 0;
  animation: gaya-ember-rise var(--gaya-duration, 6s) ease-out forwards;
}

@keyframes gaya-ember-rise {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.6);
  }
  10% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translate(var(--gaya-drift, 0px), -320px) scale(1.1);
  }
}

/* --------------------------------------------------------------------
   Badge / Title / Subtext
-------------------------------------------------------------------- */
.gaya-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(248, 155, 32, 0.16);
  border: 1px solid rgba(248, 155, 32, 0.45);
  color: #f8b862;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
}

.gaya-title {
  margin: 0 0 18px;
  line-height: 1.25;
}

.gaya-title-hi {
  display: block;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  background: linear-gradient(90deg, #ffd98a 0%, #f89b20 45%, #e6b877 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.gaya-title-en {
  display: block;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 500;
  color: #f2e6d8;
  opacity: 0.9;
  margin-top: 6px;
}

.gaya-subtext {
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.75;
  color: #ecdfd0;
  opacity: 0.92;
  margin-bottom: 26px;
}

.gaya-subtext strong {
  color: #ffd98a;
  font-weight: 600;
}

/* --------------------------------------------------------------------
   CTA
-------------------------------------------------------------------- */
.gaya-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.btn-gaya-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  background: linear-gradient(135deg, #f89b20 0%, #b50000 100%);
  color: #fff !important;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 30px;
  box-shadow: 0 6px 22px rgba(181, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gaya-cta:hover,
.btn-gaya-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(181, 0, 0, 0.55);
  color: #fff;
}

.gaya-cta-link {
  text-decoration: none;
  color: #f2e6d8;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.85;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.gaya-cta-link:hover,
.gaya-cta-link:focus-visible {
  color: #ffd98a;
  opacity: 1;
  border-bottom-color: #ffd98a;
}

.gaya-cta-link i {
  transition: transform 0.3s ease;
  display: inline-block;
}

.gaya-cta-link:hover i {
  transform: translateY(3px);
}

/* --------------------------------------------------------------------
   Diya (interactive lamp)
-------------------------------------------------------------------- */
.gaya-diya-panel {
  text-align: center;
  padding: 20px;
}

.gaya-diya-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(248, 155, 32, 0.35);
  border-radius: 20px;
  padding: 22px 18px 16px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(4px);
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

.gaya-diya-btn:hover,
.gaya-diya-btn:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(248, 155, 32, 0.6);
  transform: translateY(-3px);
  outline: none;
}

.gaya-diya-svg {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.gaya-diya-flame {
  transform-origin: 60px 50px;
  animation: gaya-flame-flicker 2.4s ease-in-out infinite;
  opacity: 0.55;
  transition: opacity 0.4s ease;
}

.gaya-diya-btn.is-lit .gaya-diya-flame {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(255, 176, 46, 0.85));
}

@keyframes gaya-flame-flicker {
  0%, 100% { transform: scaleY(1) rotate(0deg); }
  25%      { transform: scaleY(1.06) rotate(-1.5deg); }
  50%      { transform: scaleY(0.96) rotate(1deg); }
  75%      { transform: scaleY(1.04) rotate(-0.5deg); }
}

.gaya-diya-caption {
  display: block;
  color: #f2e6d8;
  font-size: 0.95rem;
  font-weight: 600;
}

.gaya-diya-hint {
  margin: 10px 0 0;
  font-size: 0.8rem;
  color: #cbb89e;
  opacity: 0.8;
}

/* --------------------------------------------------------------------
   Ritual sequence — 3D flip cards
-------------------------------------------------------------------- */
.gaya-rituals {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(248, 155, 32, 0.2);
}

.gaya-rituals-heading {
  text-align: center;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 700;
  color: #f2e6d8;
  margin-bottom: 30px;
}

.gaya-flip-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.gaya-flip-card {
  perspective: 1200px;
  height: 200px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--gaya-card-delay, 0ms);
  border-radius: 14px;
}

.gaya-flip-card.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.gaya-flip-card:focus-visible {
  outline: 2px solid #ffd98a;
  outline-offset: 4px;
}

.gaya-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

/* Desktop: flip on hover. All devices: flip when .is-flipped is toggled by JS. */
@media (hover: hover) {
  .gaya-flip-card:hover .gaya-flip-inner {
    transform: rotateY(180deg);
  }
}

.gaya-flip-card.is-flipped .gaya-flip-inner {
  transform: rotateY(180deg);
}

.gaya-flip-front,
.gaya-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 14px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gaya-flip-front {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(248, 155, 32, 0.3);
}

.gaya-flip-step {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(248, 155, 32, 0.6);
  letter-spacing: 1px;
}

.gaya-flip-icon {
  font-size: 1.7rem;
  color: #f89b20;
  margin-bottom: 10px;
}

.gaya-flip-hi {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fdf6ec;
  margin: 0;
}

.gaya-flip-back {
  background: linear-gradient(135deg, #b50000 0%, #f89b20 100%);
  transform: rotateY(180deg);
}

.gaya-flip-back p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #fff;
}

/* --------------------------------------------------------------------
   Motion & accessibility preferences
-------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .gaya-diya-flame {
    animation: none;
  }

  .gaya-ember {
    display: none;
  }

  .gaya-flip-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gaya-flip-inner {
    transition: none;
  }
}

/* --------------------------------------------------------------------
   Responsive
-------------------------------------------------------------------- */
@media (max-width: 1199px) {
  .gaya-flip-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .gaya-diya-panel {
    padding-top: 6px;
  }
}

/* Mobile: the hero was taking up "half the scroll" — the fixes below
   convert the 5 ritual cards from a tall stacked grid into one compact
   swipeable row, shrink the diya panel, and tighten vertical spacing
   throughout so the whole hero fits in a much shorter space. */
@media (max-width: 767px) {
  .gaya-hero {
    padding: 28px 0 22px;
  }

  .gaya-badge {
    padding: 5px 12px;
    font-size: 0.75rem;
    margin-bottom: 12px;
  }

  .gaya-title {
    margin-bottom: 12px;
  }

  .gaya-subtext {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .gaya-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .btn-gaya-cta {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .gaya-rangoli-canvas {
    opacity: 0.5;
  }

  /* Diya: shrink into a compact inline strip instead of a tall panel */
  .gaya-diya-panel {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 10px 14px;
    max-width: 100%;
  }

  .gaya-diya-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: none;
    width: 100%;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .gaya-diya-svg {
    max-width: 56px;
    margin: 0;
    flex-shrink: 0;
  }

  .gaya-diya-caption {
    font-size: 0.85rem;
    text-align: left;
  }

  .gaya-diya-hint {
    display: none;
  }

  /* Ritual sequence: one compact swipeable row instead of a stacked grid */
  .gaya-rituals {
    margin-top: 26px;
    padding-top: 18px;
  }

  .gaya-rituals-heading {
    font-size: 1.05rem;
    margin-bottom: 16px;
  }

  .gaya-flip-row {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 6px;
    margin: 0 -4px;
    -webkit-overflow-scrolling: touch;
  }

  .gaya-flip-row::-webkit-scrollbar {
    height: 5px;
  }

  .gaya-flip-row::-webkit-scrollbar-thumb {
    background: rgba(248, 155, 32, 0.4);
    border-radius: 10px;
  }

  .gaya-flip-card {
    flex: 0 0 132px;
    height: 150px;
    scroll-snap-align: start;
  }

  .gaya-flip-icon {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }

  .gaya-flip-hi {
    font-size: 0.9rem;
  }

  .gaya-flip-back p {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .gaya-flip-card {
    flex-basis: 118px;
    height: 140px;
  }
}


/* ==========================================================================
   8. QUICK BOOKING ENQUIRY MODAL (Gaya Shraddh)
   Bootstrap 5 modal, themed to match the hero above.
   ========================================================================== */
.gaya-booking-modal .modal-content {
  background: linear-gradient(160deg, #2a0e12 0%, #3a1418 100%);
  color: #f2e6d8;
  border: 1px solid rgba(248, 155, 32, 0.25);
  border-radius: 16px;
  overflow: hidden;
}

.gaya-booking-modal .modal-header {
  border-bottom: 1px solid rgba(248, 155, 32, 0.2);
  padding: 18px 22px;
}

.gaya-booking-modal .modal-title {
  font-weight: 700;
  color: #ffd98a;
  font-size: 1.15rem;
}

.gaya-booking-modal .btn-close {
  filter: invert(1) grayscale(1) brightness(1.8);
  opacity: 0.8;
}

.gaya-booking-modal .btn-close:hover {
  opacity: 1;
}

.gaya-booking-modal .modal-body {
  padding: 20px 22px 6px;
}

.gaya-modal-intro {
  font-size: 0.9rem;
  color: #cbb89e;
  margin-bottom: 16px;
}

.gaya-booking-modal .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f2e6d8;
  margin-bottom: 5px;
}

.gaya-booking-modal .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(248, 155, 32, 0.3);
  color: #fdf6ec;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 0.9rem;
}

.gaya-booking-modal .form-control::placeholder {
  color: rgba(242, 230, 216, 0.45);
}

.gaya-booking-modal .form-control:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: #f89b20;
  box-shadow: 0 0 0 3px rgba(248, 155, 32, 0.18);
  color: #fdf6ec;
}

.gaya-booking-modal .form-control[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) grayscale(1) brightness(1.6);
  cursor: pointer;
}

.gaya-modal-alt-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: #f8b862;
  text-decoration: none;
  margin: 4px 0 14px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.gaya-modal-alt-link:hover {
  color: #ffd98a;
  border-bottom-color: #ffd98a;
}

.gaya-booking-alert {
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.gaya-booking-alert--success {
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #a8e6ab;
}

.gaya-booking-alert--error {
  background: rgba(244, 67, 54, 0.15);
  border: 1px solid rgba(244, 67, 54, 0.4);
  color: #ffb3ac;
}

.gaya-booking-modal .modal-footer {
  border-top: 1px solid rgba(248, 155, 32, 0.2);
  padding: 14px 22px 20px;
  gap: 10px;
}

.btn-gaya-modal-cancel {
  background: transparent;
  border: 1px solid rgba(242, 230, 216, 0.35);
  color: #f2e6d8;
  padding: 9px 18px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-gaya-modal-cancel:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-gaya-modal-submit {
  background: linear-gradient(135deg, #f89b20 0%, #b50000 100%);
  border: none;
  color: #fff;
  padding: 9px 24px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(181, 0, 0, 0.4);
  transition: all 0.3s ease;
  min-width: 140px;
}

.btn-gaya-modal-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 0, 0, 0.55);
  color: #fff;
}

.btn-gaya-modal-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

@media (max-width: 575px) {
  .gaya-booking-modal .modal-dialog {
    margin: 12px;
  }

  .gaya-booking-modal .modal-body {
    padding: 16px 16px 4px;
  }

  .gaya-booking-modal .modal-footer {
    padding: 12px 16px 16px;
    flex-direction: column-reverse;
  }

  .btn-gaya-modal-cancel,
  .btn-gaya-modal-submit {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================================================
   9. SHOP BY CATEGORY — compact chip cloud (homepage)
   block/categories_icons_slider.blade.php
   Replaces the Swiper carousel entirely: every category is visible at
   once as a small pill/chip, wrapping to a couple of short rows instead
   of hiding items behind slide arrows + autoplay. No slider library
   used for this block anymore.
   ========================================================================== */
.cis-title-icon {
  color: #FF6A00;
}

.catchip-wrap {
  position: relative;
  max-height: 108px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.catchip-wrap.is-expanded {
  max-height: 2000px;
}

.catchip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 4px 4px 14px;
}

.catchip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid #f0e4d8;
  border-radius: 30px;
  padding: 5px 16px 5px 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.catchip:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #FF6A00 0%, #FF3D00 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 61, 0, 0.28);
}

.catchip-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #fdf1e4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catchip-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catchip-label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.catchip:hover .catchip-label {
  color: #ffffff;
}

/* Fade hint at the bottom edge when collapsed, so it reads as "more below"
   rather than an abrupt cut-off */
.catchip-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 85%);
  pointer-events: none;
}

.catchip-wrap.is-expanded .catchip-fade {
  display: none;
}

.catchip-toggle {
  margin-top: 4px;
  background: transparent;
  border: none;
  color: #FF3D00;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 20px;
  transition: background 0.3s ease;
}

.catchip-toggle:hover,
.catchip-toggle:focus-visible {
  background: rgba(255, 106, 0, 0.12);
  outline: none;
}

.catchip-toggle i {
  transition: transform 0.3s ease;
}

@media (max-width: 575px) {
  .catchip-wrap {
    max-height: 130px;
  }

  .catchip {
    padding: 4px 12px 4px 4px;
    gap: 6px;
  }

  .catchip-icon {
    width: 28px;
    height: 28px;
  }

  .catchip-label {
    font-size: 12px;
  }
}


/* ==========================================================================
   10. NEW PRODUCTS — unified grid + category filter pills
   block/product_new.blade.php
   Replaces 8 repeated per-category sections (was ~48 stacked product
   cards) with one grid filtered client-side via pills — same content,
   far less scroll. Recolored from Material blue to brand palette.
   ========================================================================== */
.npx-section {
  padding: 40px 0 48px;
}

.npx-header {
  text-align: center;
  margin-bottom: 28px;
}

.npx-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.npx-title-icon {
  color: #FF6A00;
  font-size: 1.5rem;
  margin-right: 4px;
}

.npx-title-en {
  font-size: 1.1rem;
  font-weight: 500;
  color: #7f8c8d;
}

.npx-subtitle {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

.npx-decorator {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #FF6A00 0%, #FF3D00 100%);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* Filter pills */
.npx-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 0 4px;
}

.npx-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid #eee;
  color: #444;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.npx-pill:hover {
  border-color: rgba(255, 106, 0, 0.5);
  color: #FF3D00;
}

.npx-pill.is-active {
  background: linear-gradient(135deg, #FF6A00 0%, #FF3D00 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 61, 0, 0.3);
}

.npx-pill-count {
  background: rgba(0, 0, 0, 0.06);
  color: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 10px;
}

.npx-pill.is-active .npx-pill-count {
  background: rgba(255, 255, 255, 0.25);
}

/* Grid — reuses .shop-product-grid columns; .npx-item stays display:contents
   so it doesn't break the grid's direct-child sizing, while still being a
   real element the filter script can hide/show and tag with data-category */
.npx-grid {
  margin-top: 4px;
}

.npx-item {
  display: contents;
}

.npx-empty {
  text-align: center;
  padding: 50px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  color: #7f8c8d;
}

.npx-empty i {
  font-size: 46px;
  color: #d8b98a;
  margin-bottom: 12px;
  display: block;
}

.npx-empty h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 6px;
}

.npx-viewall-wrap {
  text-align: center;
  margin-top: 32px;
}

.npx-viewall-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: linear-gradient(135deg, #FF6A00 0%, #FF3D00 100%);
  color: #fff;
  padding: 12px 30px;
  border-radius: 26px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(255, 61, 0, 0.3);
  transition: all 0.3s ease;
}

.npx-viewall-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 61, 0, 0.42);
  color: #fff;
}

@media (max-width: 767px) {
  .npx-section {
    padding: 28px 0 32px;
  }

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

  .npx-title-en {
    display: block;
    font-size: 0.9rem;
    margin-top: 2px;
  }

  .npx-subtitle {
    font-size: 0.85rem;
  }

  .npx-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px;
    margin: 0 -12px 22px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .npx-pills::-webkit-scrollbar {
    height: 4px;
  }

  .npx-pills::-webkit-scrollbar-thumb {
    background: rgba(255, 106, 0, 0.4);
    border-radius: 10px;
  }

  .npx-pill {
    flex-shrink: 0;
    padding: 7px 14px;
    font-size: 0.8rem;
  }
}


/* ==========================================================================
   11. RASHI WHEEL — floating zodiac in space (homepage)
   block/why_shop_with_us.blade.php
   Replaces the old "Why Shop With Us" trust-badge section with an
   interactive zodiac wheel: 12 rashis as glowing floating planets;
   click one to reveal today's rashifal in the side panel.
   ========================================================================== */
.rashi-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0 80px;
  background: radial-gradient(ellipse at top, #1b1030 0%, #0a0618 55%, #050310 100%);
  color: #f2ecff;
}

.rashi-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.rashi-star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: rashi-twinkle var(--twinkle-duration, 3s) ease-in-out infinite;
  animation-delay: var(--twinkle-delay, 0s);
}

@keyframes rashi-twinkle {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.95; }
}

.rashi-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

.rashi-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #ffe8b0 0%, #ffb85c 50%, #ff8a3d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 184, 92, 0.25);
}

.rashi-subtitle {
  font-size: 0.95rem;
  color: rgba(242, 236, 255, 0.7);
  margin: 0;
}

.rashi-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.rashi-wheel {
  position: relative;
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  --rashi-radius: 220px;
  flex-shrink: 0;
}

.rashi-slot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--rashi-radius)) rotate(calc(-1 * var(--angle)));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 70px;
}

.rashi-slot-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(242, 236, 255, 0.75);
  white-space: nowrap;
}

.rashi-planet {
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 50%;
}

.rashi-planet:hover,
.rashi-planet:focus-visible {
  transform: scale(1.18);
  outline: none;
}

.rashi-planet.is-active {
  transform: scale(1.22);
}

.rashi-planet.is-active .rashi-planet-orb {
  box-shadow: 0 0 0 3px rgba(255, 214, 130, 0.9), 0 0 24px rgba(255, 184, 92, 0.7);
}

.rashi-planet-orb {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rashi-float 4.5s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

@keyframes rashi-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.rashi-symbol {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 25px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.rashi-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 178%;
  height: 178%;
  transform: translate(-50%, -50%) rotate(-25deg) scaleY(0.4);
  border: 2.5px solid rgba(255, 224, 168, 0.85);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 224, 168, 0.45);
  z-index: 1;
  pointer-events: none;
}

/* Planet color variants (traditional Vedic rulership per sign) */
.rashi-planet-orb--mars {
  background: radial-gradient(circle at 35% 30%, #ff9d73, #d8481d 60%, #7a2607 100%);
}

.rashi-planet-orb--venus {
  background: radial-gradient(circle at 35% 30%, #fff0d1, #e8a95c 60%, #a8672a 100%);
}

.rashi-planet-orb--mercury {
  background: radial-gradient(circle at 35% 30%, #dfe7ea, #8fa3ac 60%, #48575e 100%);
}

.rashi-planet-orb--moon {
  background: radial-gradient(circle at 35% 30%, #ffffff, #d7dde0 55%, #a3aeb3 100%);
}

.rashi-planet-orb--sun {
  background: radial-gradient(circle at 35% 30%, #fff6c8, #ffb100 55%, #d3560a 100%);
  box-shadow: 0 0 26px rgba(255, 177, 0, 0.65), 0 4px 18px rgba(0, 0, 0, 0.4);
}

.rashi-planet-orb--saturn {
  background: radial-gradient(circle at 35% 30%, #fff2c6, #d9a24e 60%, #8a5a12 100%);
}

.rashi-planet-orb--jupiter {
  background:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.06) 0px, rgba(0, 0, 0, 0.06) 3px, transparent 3px, transparent 7px),
    radial-gradient(circle at 35% 30%, #ffe3ae, #d9873f 58%, #7a4413 100%);
}

/* Center decorative core */
.rashi-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 130, 0.18) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rashi-core-pulse 3.5s ease-in-out infinite;
}

.rashi-core i {
  font-size: 32px;
  color: rgba(255, 214, 130, 0.55);
}

@keyframes rashi-core-pulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
  }
}

/* Detail panel */
.rashi-detail {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 214, 130, 0.25);
  border-radius: 18px;
  padding: 34px 32px;
  min-width: 320px;
  max-width: 380px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(6px);
}

.rashi-detail-empty {
  color: rgba(242, 236, 255, 0.6);
  width: 100%;
}

.rashi-detail-empty i {
  font-size: 30px;
  color: rgba(255, 214, 130, 0.5);
  margin-bottom: 12px;
  display: block;
}

.rashi-detail-symbol {
  font-size: 34px;
  color: #ffd682;
  display: block;
  margin-bottom: 8px;
}

.rashi-detail-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.rashi-detail-dates {
  font-size: 0.78rem;
  color: rgba(242, 236, 255, 0.55);
  display: block;
  margin-bottom: 14px;
}

.rashi-detail-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(242, 236, 255, 0.9);
  margin: 0;
}

.rashi-detail-updating {
  display: block;
  margin-top: 12px;
  font-size: 0.75rem;
  color: rgba(255, 214, 130, 0.7);
}

/* Motion & accessibility */
@media (prefers-reduced-motion: reduce) {

  .rashi-star,
  .rashi-planet-orb,
  .rashi-core {
    animation: none;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .rashi-wheel {
    --rashi-radius: 145px;
  }

  .rashi-stage {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .rashi-section {
    padding: 44px 0 50px;
  }

  .rashi-stage {
    flex-direction: column;
  }

  .rashi-wheel {
    width: min(85vw, 340px);
    height: min(85vw, 340px);
    --rashi-radius: 125px;
  }

  .rashi-planet-orb {
    width: 40px;
    height: 40px;
  }

  .rashi-symbol {
    font-size: 16px;
  }

  .rashi-slot-label {
    font-size: 10px;
  }

  .rashi-detail {
    min-width: 0;
    width: 100%;
    max-width: 420px;
    padding: 24px 20px;
    min-height: 190px;
  }
}

@media (max-width: 480px) {
  .rashi-wheel {
    width: min(90vw, 300px);
    height: min(90vw, 300px);
    --rashi-radius: 108px;
  }

  .rashi-planet-orb {
    width: 36px;
    height: 36px;
  }
}


/* --------------------------------------------------------------------
   Ambient background scene — distant planets, nebula glow, shooting
   stars. Purely decorative (aria-hidden), sits behind the wheel/panel
   and fills the wide desktop canvas instead of leaving it empty.
-------------------------------------------------------------------- */
.rashi-bg-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.rashi-nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.rashi-nebula--1 {
  width: 420px;
  height: 420px;
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.5) 0%, transparent 70%);
  animation: rashi-nebula-drift 22s ease-in-out infinite;
}

.rashi-nebula--2 {
  width: 480px;
  height: 480px;
  bottom: -200px;
  right: -160px;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.35) 0%, transparent 70%);
  animation: rashi-nebula-drift 26s ease-in-out infinite reverse;
}

@keyframes rashi-nebula-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.08); }
}

.rashi-bg-planet {
  position: absolute;
  border-radius: 50%;
  filter: blur(1.5px);
  opacity: 0.55;
  animation: rashi-bg-drift 30s ease-in-out infinite;
  transform: translate(var(--parallax-x, 0px), var(--parallax-y, 0px));
  transition: transform 0.6s ease-out;
}

.rashi-bg-planet--1 {
  width: 90px;
  height: 90px;
  top: 8%;
  right: 8%;
  animation-duration: 34s;
}

.rashi-bg-planet--2 {
  width: 70px;
  height: 70px;
  bottom: 12%;
  right: 18%;
  animation-duration: 40s;
  animation-direction: reverse;
}

.rashi-bg-planet--3 {
  width: 46px;
  height: 46px;
  top: 18%;
  left: 6%;
  opacity: 0.4;
  animation-duration: 28s;
}

.rashi-bg-planet--4 {
  width: 34px;
  height: 34px;
  bottom: 20%;
  left: 12%;
  opacity: 0.45;
  animation-duration: 24s;
  animation-direction: reverse;
}

@keyframes rashi-bg-drift {
  0%, 100% { margin: 0; }
  50% { margin: -18px 0 0 14px; }
}

.rashi-bg-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 178%;
  height: 178%;
  transform: translate(-50%, -50%) rotate(-25deg) scaleY(0.4);
  border: 3px solid rgba(255, 224, 168, 0.6);
  border-radius: 50%;
  pointer-events: none;
}

.rashi-shooting-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: rashi-shoot 9s linear infinite;
}

.rashi-shooting-star::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8));
  transform: translateY(-50%);
}

.rashi-shooting-star--1 {
  top: 15%;
  left: 10%;
  animation-delay: 1s;
}

.rashi-shooting-star--2 {
  top: 55%;
  left: 70%;
  animation-delay: 6.5s;
}

@keyframes rashi-shoot {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  2% {
    opacity: 1;
  }
  14% {
    opacity: 0;
    transform: translate(220px, 140px);
  }
  100% {
    opacity: 0;
    transform: translate(220px, 140px);
  }
}

@media (max-width: 991px) {
  .rashi-bg-planet--1,
  .rashi-bg-planet--2 {
    opacity: 0.35;
  }

  .rashi-bg-planet--3,
  .rashi-bg-planet--4 {
    display: none;
  }

  .rashi-nebula {
    opacity: 0.22;
  }
}

@media (max-width: 767px) {
  .rashi-bg-scene {
    display: none;
  }
}


/* --------------------------------------------------------------------
   Birthdate finder — "find my rashi" mini tool in the empty-state panel
-------------------------------------------------------------------- */
.rashi-finder-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(242, 236, 255, 0.9);
  margin-bottom: 14px;
}

.rashi-finder {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 10px;
}

.rashi-finder-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 214, 130, 0.3);
  border-radius: 10px;
  color: #f2ecff;
  padding: 9px 12px;
  font-size: 0.85rem;
  min-width: 0;
}

.rashi-finder-input::-webkit-calendar-picker-indicator {
  filter: invert(1) grayscale(1) brightness(1.6);
  cursor: pointer;
}

.rashi-finder-input:focus {
  outline: none;
  border-color: #ffd682;
  box-shadow: 0 0 0 3px rgba(255, 214, 130, 0.18);
}

.rashi-finder-btn {
  flex-shrink: 0;
  width: 42px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffd682 0%, #ff8a3d 100%);
  color: #2a1400;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rashi-finder-btn:hover,
.rashi-finder-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 138, 61, 0.4);
  outline: none;
}

.rashi-finder-error {
  font-size: 0.78rem;
  color: #ff9d8a;
  margin-bottom: 8px;
}

.rashi-finder-hint {
  font-size: 0.75rem;
  color: rgba(242, 236, 255, 0.45);
  margin: 0;
}

.rashi-detail-reset {
  margin-top: 16px;
  background: transparent;
  border: 1px solid rgba(242, 236, 255, 0.25);
  color: rgba(242, 236, 255, 0.8);
  padding: 6px 16px;
  border-radius: 18px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rashi-detail-reset:hover,
.rashi-detail-reset:focus-visible {
  background: rgba(255, 214, 130, 0.12);
  border-color: rgba(255, 214, 130, 0.4);
  color: #ffd682;
  outline: none;
}
