.aura-ring {
    position: relative;
    width: 130px;
    height: 130px;
    border: 3px solid #E28413;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotate 3s linear infinite;
    box-shadow: 0 0 25px rgba(226, 132, 19, 0.5);
  }

  .om-symbol {
    font-size: 3rem;
    color: #4B2E2E;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(226, 132, 19, 0.5);
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
  }

  #preloader {
    transition: opacity 0.6s ease, visibility 0.6s ease;
     z-index: 9999;
  }

  #preloader.hide {
    opacity: 0;
    visibility: hidden;
  }

/*** Spinner End ***/

/* Navbar Container */
.divine-navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 500;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Topbar */
.topbar {
  background: linear-gradient(90deg, #E28413, #4B2E2E);
  font-size: 0.85rem;
  text-shadow: 0 0 3px rgba(0,0,0,0.5);
}

/* Navbar */
.navbar {
  background: linear-gradient(135deg, #fff7f0, #fef2e0);
  backdrop-filter: blur(6px);
  border-radius: 0 0 20px 20px;
}

/* Navbar Links */
.navbar-nav .nav-link {
  color: #4B2E2E;
  font-weight: 600;
  margin: 0 8px;
  position: relative;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 4px;
  bottom: -5px;
  left: 50%;
  background: #E28413;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 100%;
  left: 0;
}
.navbar-nav .nav-link:hover {
  color: #E28413;
  text-shadow: 0 0 8px rgba(226,132,19,0.6);
}

/* Dropdown */
.dropdown-menu {
  background: rgba(75,46,46,0.95);
  border: none;
  border-radius: 12px;
  padding: 10px 0;
}
.dropdown-menu .dropdown-item {
  color: #fff;
  padding: 8px 20px;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 2px 0;
}
.dropdown-menu .dropdown-item:hover {
  background: #E28413;
  color: #fff;
  transform: translateX(15px);
  box-shadow: 0 0 10px rgba(226,132,19,0.6);
}

/* Right Icons */
.icon-btn {
  background: #fff;
  border-radius: 20%;
  padding: 10px;
  border: 2px solid #E28413;
  transition: all 0.3s ease;
  color: #4B2E2E;
}
.icon-btn:hover {
  box-shadow: 0 0 15px rgba(226,132,19,0.8);
  transform: scale(1.2);
  color: #4B2E2E;
}

/* Badge */
.badge {
  position: absolute;
  top: -5px;
  right: -20px;
  background: #4B2E2E;
  color: #fff;
  font-size: 0.7rem;
  padding: 0.35em 0.5em;
  border-radius: 50%;
}

/* Responsive Padding */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    padding: 12px 0;
  }
}

/* Modal Fullscreen */
.modal-fullscreen .modal-content {
  background: linear-gradient(145deg, #fff, #fdf7f0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

/* Close Button */
.btn-close-dark {
  width: 2rem;
  height: 2rem;
}

/* Input Field */
.form-control-lg {
  font-size: 1.2rem;
  padding: 1rem 1.2rem;
  transition: all 0.3s ease;
}
.form-control-lg:focus {
  outline: none;
  box-shadow: 0 0 15px rgba(226,132,19,0.4);
}

/* Search Button */
.btn-warning {
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(226,132,19,0.3);
}
.btn-warning:hover {
  background: #d9760f;
  box-shadow: 0 6px 20px rgba(226,132,19,0.5);
}

/* Shadow on input group */
.input-group.shadow-lg {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-radius: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .w-75 {
    width: 90% !important;
  }
  .form-control-lg {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }
  .btn-warning {
    padding: 0.8rem 1.2rem;
  }
}
 .featured-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .featured-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    }
    .featured-product-card img {
        transition: transform 0.3s ease;
    }
    .featured-product-card:hover img {
        transform: scale(1.00);
    }
    .product-title {
        font-size: 1rem;
        color: #4B2E2E;
        padding-top: 10px;
    }
    @media(max-width: 576px){
        .featured-card { max-width:90%; }
        .featured-product-card { max-width:200px; }
    }

    /* Responsive Category Styling */
.categories {
  scrollbar-width: none;
}
.categories::-webkit-scrollbar {
  display: none;
}

.category-img-wrapper {
  background: radial-gradient(circle at center, #FFF5E6, #FFE4B5);
  border-radius: 20%;
  width: 150px;
  height: 170px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.category-card:hover .category-img-wrapper {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 170, 51, 0.3);
}
.category-card:hover .category-img {
  transform: scale(1.1);
}
.hover-shadow {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.hover-shadow:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

/* Small screen optimization */
@media(max-width: 576px){
  .category-img-wrapper {
    width: 120px;
    height: 130px;
  }
  .category-card {
    min-width: 110px !important;
    padding: 1rem;
  }
  h6 {
    font-size: 0.9rem;
  }
}
.hero-new2 h1 { color: #4B2E2E; }
.hero-new2 p { color: #7b4f28; }

.hero-new2 .form-control:focus {
    outline: none;
    border-color: #E28413;
    box-shadow: 0 0 12px rgba(226,132,19,0.3);
}
.hero-new2{
    padding-top: 120px;
}

.hero-new2 .btn-warning {
    background-color: #E28413;
    border-color: #E28413;
    transition: all 0.3s ease;
}

.hero-new2 .btn-warning:hover {
    background-color: #d9760f;
    box-shadow: 0 4px 12px rgba(226,132,19,0.4);
}

.featured-product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width:120px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media(max-width: 991px) {
    .hero-new2 h1 { font-size:2.3rem; }
    .hero-new2 img.img-fluid { max-height:300px; }
    .hero-new2 { padding-top:93px; }
}

@media(max-width: 576px) {
    .hero-new2 h1 { font-size:1.8rem; }
    .hero-new2 p { font-size:0.95rem; }
    .hero-new2 .d-flex.flex-column.flex-sm-row { flex-direction: column !important; }
    .hero-new2 .categories { justify-content:flex-start; }
}
/* Features Styling */
.features-section {
  position: relative;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-halo {
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at center, rgba(255,193,7,0.4), transparent 70%);
  border-radius: 50%;
  animation: pulseHalo 3s infinite ease-in-out;
}

@keyframes pulseHalo {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.1); opacity: 0.6; }
}

.feature-card {
  transition: all 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(226,132,19,0.2);
}
.feature-card i {
  transition: transform 0.4s ease;
}
.feature-card:hover i {
  transform: scale(1.15) rotate(5deg);
}

/* Responsive tweaks */
@media(max-width: 768px){
  .feature-card {
    padding: 2rem 1.5rem;
  }
}
.scroll-wrapper {
  overflow: hidden;
  position: relative;
}

.scroll-content {
  display: flex;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
}

.scroll-content:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.product-card {
  min-width: 250px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
/* Custom hover style for outline-dark buttons */
.btn-outline-dark {
  border-color: #4B2E2E;
  color: #4B2E2E;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color: #4B2E2E;
  color: #fff;
  border-color: #4B2E2E;
}
/* Product Card */
.product-card {
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}

/* Labels */
.product-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #D2691E;
  color: #fff;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}
.offer-label {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #FF6347;
  color: #fff;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}

/* Quick View Button */
.quick-view {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
.product-card:hover .quick-view {
  bottom: 10px;
}

/* Button */
.btn-outline-brown {
  border: 1px solid #D2691E;
  color: #D2691E;
  transition: 0.3s;
}
.btn-outline-brown:hover {
  background-color: #D2691E;
  color: #fff;
}

/* Tabs */
.nav-pills .nav-link.active {
  background-color: #D2691E;
  color: #fff;
}
.nav-pills .nav-link {
  border-radius: 50px;
  font-weight: 500;
  color: #8B4513;
}

/* Mobile Scroll */
.scroll-mobile {
  flex-wrap: nowrap !important;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}
.scroll-mobile::-webkit-scrollbar {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .product-card {
    min-width: 250px;
  }
}
.offer-banner:hover img {
  transform: scale(1.05);
}
.btn-outline-dark {
  border-color: #4B2E2E;
  color: #4B2E2E;
  transition: all 0.3s ease;
}
.btn-outline-dark:hover {
  background-color: #4B2E2E;
  color: #fff;
}
.offer-badge {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}
/* Product Card */
.product-card {
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}

/* Labels */
.product-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #D2691E;
  color: #fff;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}
.offer-label {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #FF6347;
  color: #fff;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}

/* Quick View Button */
.quick-view {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
.product-card:hover .quick-view {
  bottom: 10px;
}

/* Button */
.btn-outline-brown {
  border: 1px solid #D2691E;
  color: #D2691E;
  transition: 0.3s;
}
.btn-outline-brown:hover {
  background-color: #D2691E;
  color: #fff;
}

/* Tabs */
.nav-pills .nav-link.active {
  background-color: #D2691E;
  color: #fff;
}
.nav-pills .nav-link {
  border-radius: 50px;
  font-weight: 500;
  color: #8B4513;
}

/* Mobile Scroll */
.scroll-mobile {
  flex-wrap: nowrap !important;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}
.scroll-mobile::-webkit-scrollbar {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .product-card {
    min-width: 250px;
  }
}
.counter-card {
    transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.counter-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border-color: #D2691E;
}
.icon-circle {
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto;
}
.testimonial-item {
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background-color:#D2691E;
    color:#fff;
    border-radius:50%;
    padding:10px 15px;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    transition:0.3s;
}
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color:#FF9933;
}
.owl-carousel .owl-nav button.owl-prev { left:-25px; }
.owl-carousel .owl-nav button.owl-next { right:-25px; }
.footer-links li {
    margin-bottom:10px;
}
.footer-links li a {
    color:#4B2E2E;
    text-decoration:none;
    transition:0.3s;
}
.footer-links li a:hover {
    color:#FF9933;
    padding-left:5px;
}
.social-icon {
    display:inline-block;
    width:40px;
    height:40px;
    line-height:40px;
    text-align:center;
    border:1px solid #FF9933;
    border-radius:50%;
    color:#FF9933;
    margin-right:10px;
    transition:0.3s;
}
.social-icon:hover {
    background: linear-gradient(45deg,#FF9933,#8B4513);
    color:#fff;
    border-color:#FF9933;
}
@media (max-width:767px) {
    .footer-section {
        text-align:center;
    }
    .social-icon {
        margin:5px;
    }
}
.container-fluid {
    font-family: 'Poppins', sans-serif;
}
.container-fluid a:hover {
    color:#FFF;
    text-decoration:none;
}
@media (max-width:767px) {
    .container-fluid .row {
        text-align:center !important;
    }
}
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF9933, #8B4513);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255,153,51,0.4);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    visibility: hidden;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-5px) scale(1.15);
    color: yellow;
}
.back-to-top i {
    pointer-events: none;
}
 .about-section p {
    line-height: 1.7;
  }

  .about-section img {
    transition: transform 0.5s ease;
  }

  .about-section img:hover {
    transform: scale(1.03);
  }

  .about-section .btn:hover {
    background-color: #5b3a29 !important;
    transition: all 0.3s ease;
  }

  @media (max-width: 768px) {
    .about-section h1 {
      text-align: center;
    }

    .about-section .btn {
      display: block;
      margin: 0 auto;
    }
  }
  .continue-shopping-btn {
    background: white;
    color: #ff9933;
    border: 2px solid #ff9933;
    transition: all 0.3s ease;
}
.continue-shopping-btn:hover {
    background: #ff9933;
    color: white;
    border-color: #ff9933;
}
:root {
        --saffron: #ff9933;
        --brown: #5b3a29;
        --white: #ffffff;
        --light-saffron: #fff3e0;
    }

    /* Text Colors */
    .text-brown{ color: var(--brown) !important; }

    /* Card & Inputs */
    .card{ background: var(--white); }
    .theme-input{
        border:1px solid var(--saffron); border-radius:0.5rem; padding:0.6rem;
        transition:0.3s;
    }
    .theme-input:focus{ border-color: var(--saffron); box-shadow:0 0 8px rgba(255,153,51,0.4); outline:none; }

    /* Buttons */
    .theme-btn{
        background: var(--saffron); color: var(--white); font-weight:700;
        border:none; border-radius:50px; transition:0.3s;
    }
    .theme-btn:hover{ opacity:0.85; }

    /* Tables */
    .table thead{ background: var(--saffron); color: var(--white); }
    .table tbody tr:hover{ background: #fff3e0; transition:0.3s; }
    .table td, .table th{ vertical-align: middle !important; }

    /* Custom Theme Radio Buttons */
    .theme-radio-container{
        display:block; position:relative; padding-left:30px; margin-bottom:15px;
        cursor:pointer; font-size:0.95rem; color: var(--brown); user-select:none;
    }
    .theme-radio-container input{
        position:absolute; opacity:0; cursor:pointer; height:0; width:0;
    }
    .theme-radio-checkmark{
        position:absolute; top:0; left:0; height:20px; width:20px; background-color:#fff;
        border:2px solid var(--saffron); border-radius:50%; transition:0.3s;
    }
    .theme-radio-container:hover input ~ .theme-radio-checkmark{ background-color:#fff2e0; }
    .theme-radio-container input:checked ~ .theme-radio-checkmark{
        background-color: var(--saffron);
        border-color: var(--saffron);
    }
    .theme-radio-checkmark:after{
        content:""; position:absolute; display:none;
    }
    .theme-radio-container input:checked ~ .theme-radio-checkmark:after{
        display:block;
    }
    .theme-radio-container .theme-radio-checkmark:after{
        left:6px; top:6px; width:6px; height:6px;
        border-radius:50%; background: white;
    }

    /* Shipping Progress */
    .shipping-progress {
        height: 6px;
        background-color: #e9ecef;
        border-radius: 3px;
        overflow: hidden;
    }
    
    .shipping-progress-bar {
        height: 100%;
        background-color: var(--saffron);
        transition: width 0.3s ease;
    }

    /* Responsive Design */
    .checkout-container {
        padding-top: 7rem !important;
        min-height: 100vh;
    }

    /* Mobile Optimizations */
    @media (max-width: 768px) {
        .checkout-container {
            padding-top: 6rem !important;
            padding-bottom: 2rem !important;
        }
        
        .checkout-title {
            font-size: 1.5rem;
            margin-bottom: 2rem !important;
        }
        
        .checkout-card {
            margin-bottom: 1.5rem;
        }
        
        .order-summary-table img {
            width: 50px !important;
            height: 50px !important;
        }
        
        .order-summary-table td,
        .order-summary-table th {
            padding: 0.75rem 0.5rem;
            font-size: 0.9rem;
        }
        
        .payment-options {
            margin-top: 1.5rem;
        }
        
        .theme-radio-container {
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 576px) {
        .checkout-container .container {
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        .checkout-title {
            font-size: 1.4rem;
        }
        
        .checkout-card {
            padding: 1.25rem !important;
        }
        
        .order-summary-table {
            font-size: 0.85rem;
        }
        
        .order-summary-table img {
            width: 45px !important;
            height: 45px !important;
        }
        
        .theme-btn {
            padding: 0.875rem 1.5rem;
            font-size: 0.95rem;
        }
        
        .form-label {
            font-size: 0.9rem;
        }
        
        .theme-input {
            padding: 0.5rem 0.75rem;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 400px) {
        .checkout-card {
            padding: 1rem !important;
        }
        
        .checkout-title {
            font-size: 1.3rem;
        }
        
        .order-summary-table {
            font-size: 0.8rem;
        }
        
        .order-summary-table img {
            width: 40px !important;
            height: 40px !important;
        }
        
        .theme-radio-container {
            font-size: 0.85rem;
            padding-left: 25px;
        }
        
        .theme-radio-checkmark {
            width: 18px;
            height: 18px;
        }
        
        .theme-radio-container .theme-radio-checkmark:after {
            left: 5px;
            top: 5px;
            width: 5px;
            height: 5px;
        }
    }

    /* Professional Layout Enhancements */
    .form-section {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #ff9933;
    }
    
    .order-summary-section {
        position: sticky;
        top: 8rem;
    }
    
    .back-to-cart-link {
        transition: all 0.3s ease;
    }
    
    .back-to-cart-link:hover {
        color: #ff9933 !important;
        transform: translateX(-3px);
    }

    .required:after {
        content: " *";
        color: #dc3545;
    }

    /* Grid Layout Improvements */
    .form-grid {
        display: grid;
        gap: 1.5rem;
    }
    
    .form-group-compact {
        margin-bottom: 1rem;
    }

    /* Payment Method Styles */
    .payment-method-option {
        border: 2px solid #f0f0f0;
        border-radius: 10px;
        padding: 15px;
        margin-bottom: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .payment-method-option:hover {
        border-color: var(--saffron);
        background-color: #fffaf0;
    }

    .payment-method-option.selected {
        border-color: var(--saffron);
        background-color: #fff3e0;
    }

    .payment-method-option input[type="radio"] {
        display: none;
    }

    .payment-method-label {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        color: var(--brown);
        margin: 0;
        cursor: pointer;
    }

    .payment-method-icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--saffron);
        color: white;
        border-radius: 50%;
        font-size: 12px;
    }
     .payment-section {
    padding-top: 10rem !important;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, #fffaf5 0%, #fff8f0 100%);
    min-height: 100vh;
  }

  /* Payment Card */
  .payment-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(91, 58, 41, 0.1);
    overflow: hidden;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(91, 58, 41, 0.15);
  }

  /* Left QR Section */
  .qr-box {
    background: linear-gradient(135deg, var(--light-saffron) 0%, #ffe0b2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
  }

  .qr-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron) 0%, var(--brown) 100%);
  }

  .success-icon {
    text-align: center;
    margin-bottom: 2rem;
  }

  .success-icon i {
    font-size: 5rem;
    color: var(--saffron);
    filter: drop-shadow(0 4px 8px rgba(255, 153, 51, 0.3));
  }

  .qr-box h5 {
    color: var(--brown);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }

  .qr-box img {
    max-width: 200px;
    margin-bottom: 1.5rem;
    border: 3px solid var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(91, 58, 41, 0.2);
    transition: transform 0.3s ease;
  }

  .qr-box img:hover {
    transform: scale(1.05);
  }

  /* Right Bank Details */
  .bank-details {
    padding: 3rem 2.5rem;
    background: var(--white);
  }

  .bank-details h3 {
    color: var(--brown);
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }

  .bank-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--saffron);
    border-radius: 2px;
  }

  .bank-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .bank-details ul li {
    font-size: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--brown);
    display: flex;
    align-items: center;
  }

  .bank-details ul li:last-child {
    border-bottom: none;
  }

  .bank-details ul li strong {
    color: var(--brown);
    font-weight: 600;
    min-width: 140px;
    display: inline-block;
  }

  .bank-details ul li span {
    color: var(--brown);
    font-weight: 500;
  }

  /* Order Summary */
  .order-summary {
    background: var(--light-saffron);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 4px solid var(--saffron);
  }

  .order-summary h6 {
    color: var(--brown);
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .order-summary p {
    color: var(--brown);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }

  /* Buttons */
  .payment-btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
  }

  .payment-btn.primary {
    background: var(--saffron);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
  }

  .payment-btn.primary:hover {
    background: var(--brown);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 58, 41, 0.4);
  }

  .payment-btn.secondary {
    background: transparent;
    border: 2px solid var(--saffron);
    color: var(--saffron);
  }

  .payment-btn.secondary:hover {
    background: var(--saffron);
    color: var(--white);
    transform: translateY(-2px);
  }

  .payment-btn:disabled {
    opacity: 0.5;
    pointer-events: none;
  }

  /* Payment Note */
  .payment-note {
    background: var(--light-saffron);
    border-left: 4px solid var(--saffron);
    border-radius: 12px;
    font-size: 0.95rem;
    margin-top: 2rem;
  }

  .payment-note p {
    color: var(--brown);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .payment-section {
      padding-top: 6rem !important;
      padding-bottom: 2rem;
    }

    .qr-box, .bank-details {
      padding: 2rem 1.5rem;
    }

    .qr-box img {
      max-width: 160px;
    }

    .success-icon i {
      font-size: 4rem;
    }

    .bank-details ul li {
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
    }

    .bank-details ul li strong {
      min-width: auto;
    }

    .payment-btn {
      width: 100%;
      margin-bottom: 1rem;
    }

    .button-group {
      flex-direction: column;
    }
  }

  @media (max-width: 576px) {
    .qr-box, .bank-details {
      padding: 1.5rem 1rem;
    }

    .qr-box img {
      max-width: 140px;
    }

    .bank-details h3 {
      font-size: 1.3rem;
    }

    .bank-details ul li {
      font-size: 0.9rem;
    }
  }

  /* Animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
  }

  /* Status Indicator */
  .payment-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
  }

  .status-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
  }

  .status-dot.active {
    background: var(--saffron);
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.3);
  }

  .status-label {
    font-size: 0.8rem;
    color: var(--brown);
    font-weight: 500;
  }