/* ==========================================================================
   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;
  }
}
