 :root {
     --gold: #D4AF37;
     --dark-gold: #B8941F;
     --light-gold: #F5E7A3;
     --red: #DC143C;
     --dark-red: #8B0000;
     --bright-red: #FF0000;
     --white: #FFFFFF;
     --green: #01aaa7;
     --black: #000000;
     --dark-gray: #1A1A1A;
     --gray: #333333;
     --light-gray: #F8F9FA;
     --lighter-gray: #F5F5F5;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Poppins', sans-serif;
     color: var(--dark-gray);
     background-color: var(--white);
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: "Righteous", sans-serif;
     font-weight: 400;
 }

 .main-title span {
     color: var(--red);
 }

 /* Navigation */
 .navbar {
     background-color: var(--white);
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
     padding: 1rem 0;
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     transition: all 0.3s ease;
 }

 .navbar-brand {
     font-family: "Righteous", sans-serif;
     font-size: 1.8rem;
     font-weight: 400;
     color: var(--red) !important;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .navbar-brand i {
     font-size: 1.5rem;
     color: var(--gold);
 }

 .navbar-nav .nav-link {
     color: var(--black) !important;
     font-weight: 500;
     margin: 0 0.5rem;
     position: relative;
     transition: color 0.3s ease;
 }

 .navbar-nav .nav-link:hover {
     color: var(--red) !important;
 }

 .navbar-nav .nav-link::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: -5px;
     left: 50%;
     background-color: var(--red);
     transition: all 0.3s ease;
 }

 .navbar-nav .nav-link:hover::after {
     width: 100%;
     left: 0%;
 }

 /* Hero Section */
 .hero {
     padding: 120px 0 80px;
     background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 400px;
     background-image: url('../img/bannerbg.png');
     background-size: cover;
     background-position: center;
     z-index: -1;
 }

 .hero-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .hero-content { 
     margin-bottom: 2rem;

 }

 .product-info { 
     position: relative;
 }

 .badge-exclusive {
     display: inline-flex;
     align-items: center;
     gap: 0.3rem;
     background-color: var(--red);
     color: var(--white);
     padding: 0.3rem 0.8rem;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 600;
     margin-bottom: 1rem; 
 }

  

 .product-title {
     font-size: 3.0rem;
     color: var(--black);
     margin-bottom: 1rem;
     line-height: 1.2;
 }

 .product-subtitle {
     font-size: 1.5rem;
     color: var(--red);
     font-weight: 500;
     margin-bottom: 1.5rem;
 }

 .product-description {
     font-size: 1.1rem;
     line-height: 1.6;
     margin-bottom: 2rem;
     color: var(--gray);
 }

 .product-highlights {
     display: flex;
     gap: 1.5rem;
     margin-bottom: 2rem;
 }

 .highlight-item {
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .highlight-item i {
     color: var(--gold);
     font-size: 1.2rem;
 }

 .highlight-text {
     font-size: 0.95rem;
     color: var(--gray);
 }

 .product-pricing {
     display: flex;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
     margin-bottom: 2rem;
     padding: 10px 15px;
     background-color: rgba(212, 175, 55, 0.1);
     border-radius: 10px;
 }

 .price-main {
     font-size: 2.5rem;
     font-weight: 700;
     color: var(--green);
 }

 .price-savings {
     font-size: 14px;
     color: var(--white);
     font-weight: 600;
     padding: 0.5rem 1rem;
     background-color: var(--red);
     border-radius: 20px;
 }

 .product-actions {
     display: flex;
     gap: 1rem; 
 }
.disabled-link {
  pointer-events: none; /* Prevents clicking */
  opacity: 0.6;         /* Makes it look disabled */
  cursor: not-allowed;
}
 .btn-primary {
    text-decoration: none;
     background-color: var(--red);
     color: var(--white);
     border: none;
     padding: 0.8rem 2rem;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 50px;
     cursor: pointer;
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
 }

 .btn-primary:hover {
     background-color: var(--dark-red);
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
 }

 .btn-secondary {
     background-color: var(--white);
     color: var(--black);
     border: 2px solid var(--black);
     padding: 0.8rem 2rem;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 50px;
     cursor: pointer;
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
 }

 .btn-secondary:hover {
     background-color: var(--black);
     color: var(--white);
     transform: translateY(-3px);
 }

 .product-note {
     font-size: 0.9rem;
     color: var(--gray);
     display: flex;
     align-items: baseline;
     gap: 0.5rem;
 }

 .product-image-container {
     position: relative;
 }

 .product-image {
     width: 100%;
     max-width: 500px;
     height: auto;
     border-radius: 10px;
     /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
     transition: transform 0.5s ease;
     border: 4px solid var(--white);  
 }

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

 .product-badge {
     position: absolute;
     top: 20px;
     left: 20px;
     background-color: var(--green);
     color: var(--white);
     font-weight: 700;
     padding: 0.5rem 1rem;
     border-radius: 30px;
     font-size: 0.9rem;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     z-index: 100;
 }
 .swiper-wrapper{
    padding-bottom: 20px;
 }
.swiper-pagination{
        bottom: -3px !important;
    font-size: 14px;
}
.swiper-pagination-current{
    font-weight: 500;
    color: var(--red);
}
 /* Size Selection */
 .size-selection {
     background-color: var(--white);
     border-radius: 15px;
     padding: 1.2rem;
     margin-bottom: 2rem;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
 }

 .size-selection-title {
     font-size: 1.2rem;
     margin-bottom: 1rem;
     color: var(--black);
     text-align: center;
 }

 .size-options {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1rem;
 }

 .size-card-box {
     background-color: var(--white);
     border-radius: 8px;
     padding: 0.8rem;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
     cursor: pointer;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     border: 2px solid transparent;
 }

 .size-card-box::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 3px;
     background-color: var(--red);
     transform: scaleX(0);
     transition: transform 0.3s ease;
 }

 .size-card-box:hover::before {
     transform: scaleX(1);
 }

 .size-card-box:hover {
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(220, 20, 60, 0.15);
 }

 .size-card-box.selected {
     border: 2px solid var(--red);
     box-shadow: 0 3px 15px rgba(220, 20, 60, 0.2);
 }

 .size-card-box.selected::before {
     transform: scaleX(1);
 }

 .size-title {
     font-size: 1rem;
     font-weight: 600;
     margin-bottom: 0.3rem;
     color: var(--black);
 }

 .size-price {
     font-size: 1.3rem;
     font-weight: 700;
     color: var(--red);
     margin-bottom: 0.3rem;
 }

 .size-original {
     font-size: 0.8rem;
     color: var(--gray);
     text-decoration: line-through;
     margin-bottom: 0.5rem;
 }

 .installment-info {
     font-size: 0.75rem;
     color: var(--gold);
     font-weight: 600;
 }

 /* Features Section */
 .features {
     padding: 80px 0;
     background-color: var(--lighter-gray);
 }

 .features-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .features h2 {
     text-align: center;
     font-size: 2.5rem;
     margin-bottom: 3rem;
     color: var(--black);
 }

 .feature-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
 }

 .feature-card {
     background-color: var(--white);
     border-radius: 10px;
     padding: 2rem;
     text-align: center;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
 }

 .feature-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
 }

 .feature-icon {
     width: 80px;
     height: 80px;
     flex: 0 0 80px;
     background-color: rgba(220, 20, 60, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem;
     font-size: 2rem;
     color: var(--red);
 }

 .feature-card h3 {
     font-size: 1.5rem;
     margin-bottom: 1rem;
     color: var(--green);
 }

 .feature-card p {
     font-size: 1rem;
     line-height: 1.6;
     color: var(--gray);
 }

 /* Gallery Section */
 .gallery {
     padding: 80px 0;
     background-color: var(--white);
 }

 .gallery-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .gallery h2 {
     text-align: center;
     font-size: 2.5rem;
     margin-bottom: 3rem;
     color: var(--black);
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
 }

 .gallery-item {
     position: relative;
     overflow: hidden;
     border-radius: 10px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
     height: 280px;
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .gallery-item:hover img {
     transform: scale(1.1);
 }



 /* Reviews Section */
 .reviews {
     padding: 80px 0;
     background-color: var(--lighter-gray);
 }

 .reviews-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .reviews h2 {
     text-align: center;
     font-size: 2.5rem;
     margin-bottom: 3rem;
     color: var(--black);
 }

 .review-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
 }

 .review-card {
     background-color: var(--white);
     border-radius: 10px;
     padding: 2rem;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
 }

 .review-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
 }

 .stars {
     color: var(--gold);
     margin-bottom: 1rem;
 }

 .review-text {
     font-size: 1rem;
     line-height: 1.6;
     margin-bottom: 1.5rem;
     font-style: italic;
     color: var(--gray);
 }

 .review-author {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .author-avatar {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     object-fit: cover;
     border: 2px solid var(--red);
 }

 .author-info {
     font-weight: 600;
     color: var(--black);
 }

 /* Christmas Footer */
 footer {
     background: linear-gradient(135deg, #000000 0%, #292929 100%);
     color: var(--white);
     padding: 60px 0 20px;
     position: relative;
     overflow: hidden;
 }

 footer::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text y="50" font-size="50" fill="rgba(255,255,255,1)">❄</text></svg>');
     background-size: 100px 100px;
     z-index: 0;
     opacity: 0.05;
 }

 .footer-content {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     position: relative;
     z-index: 1;
 }

 .footer-brand {
     font-family: "Righteous", sans-serif;
     font-size: 1.8rem;
     font-weight: 400;
     color: var(--gold);
     margin-bottom: 1rem;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .footer-brand i {
     color: var(--red);
 
 }
 

 .footer-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 2rem;
     margin-bottom: 2rem;
 }

 .footer-links a {
     color: var(--white);
     text-decoration: none;
     display: block;
     margin-bottom: 0.5rem;
     transition: all 0.3s ease;
     position: relative;
     padding-left: 20px;
 }

 .footer-links a::before {
     content: '🎄';
     position: absolute;
     left: 0;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .footer-links a:hover {
     color: var(--gold);
     transform: translateX(5px);
 }

 .footer-links a:hover::before {
     opacity: 1;
 }

 .social-links {
     display: flex;
     gap: 1rem;
 }

 .social-links a {
     color: var(--white);
     font-size: 1.5rem;
     transition: all 0.3s ease;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     background-color: rgba(255, 255, 255, 0.1);
     text-decoration: none;
 }

 .social-links a:hover {
     color: var(--white);
     background-color: var(--red);
     transform: translateY(-3px);
 }

 .christmas-decoration {
     display: flex;
     justify-content: center;
     margin: 2rem 0;
 }

 .christmas-decoration span {
     font-size: 1.5rem;
     margin: 0 0.5rem; 
 }
  

 .footer-copyright {
     text-align: center;
     padding-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     font-size: 0.9rem;
 }

 .footer-copyright i {
     color: var(--red);
     margin: 0 0.2rem;
 }

 /* Notification */
 .notification {
     position: fixed;
     bottom: -100px;
     right: 20px;
     background-color: var(--white);
     padding: 1rem 1.5rem;
     border-radius: 10px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
     display: flex;
     align-items: center;
     gap: 1rem;
     transition: bottom 0.5s ease;
     z-index: 1000;
     border-left: 5px solid var(--red);
 }

 .notification.show {
     bottom: 20px;
 }

 .notification i {
     color: var(--red);
 }

 .notification strong {
     color: var(--black);
 }

 .notification #notification-text {
     color: var(--gray);
 }

 /* Contact Modal */
 .contact-modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.7);
     z-index: 2000;
     overflow: auto; 
 }

 .contact-modal.show {
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .contact-modal-content {
     background-color: var(--white);
     margin: auto;
     padding: 2rem;
     border-radius: 15px;
     width: 90%;
     max-width: 600px;
     position: relative; 
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }
 

 .close-modal {
     position: absolute;
     top: 1rem;
     right: 1rem;
     font-size: 1.5rem;
     color: var(--gray);
     cursor: pointer;
     transition: color 0.3s ease;
 }

 .close-modal:hover {
     color: var(--red);
 }

 .contact-header {
     text-align: center;
     margin-bottom: 2rem;
 }

 .contact-header h2 {
     color: var(--black);
     margin-bottom: 0.5rem;
 }

 .contact-header p {
     color: var(--gray);
 }

 .contact-form {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .form-group {
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
 }

 .form-group label {
     font-weight: 600;
     color: var(--black);
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
     padding: 0.8rem;
     border: 1px solid rgba(0, 0, 0, 0.1);
     border-radius: 8px;
     font-family: 'Poppins', sans-serif;
     transition: all 0.3s ease;
 }

 .form-group input:focus,
 .form-group textarea:focus,
 .form-group select:focus {
     outline: none;
     border-color: var(--red);
     box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
 }

 .form-group textarea {
     resize: vertical;
     min-height: 120px;
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1rem;
 }

 .submit-btn {
     background-color: var(--red);
     color: var(--white);
     border: none;
     padding: 0.8rem 2rem;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 50px;
     cursor: pointer;
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 0.5rem;
     box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
     margin-top: 1rem;
 }

 .submit-btn:hover {
     background-color: var(--dark-red);
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
 }

 .contact-info {
     background-color: rgba(212, 175, 55, 0.1);
     border-radius: 10px;
     padding: 1.5rem;
     margin-top: 2rem;
 }

 .contact-info h3 {
     color: var(--black);
     margin-bottom: 1rem;
     font-size: 1.3rem;
 }

 .contact-info-item {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1rem;
 }

 .contact-info-item i {
     color: var(--gold);
     font-size: 1.2rem;
     width: 30px;
 }

 .contact-info-item p {
     margin: 0;
     color: var(--gray);
     word-break: break-all;
 }

 /* Responsive Design */
 @media (max-width: 992px) {
    .navbar-collapse{
        padding: 20px;
    }
    .navbar-nav .nav-link{
        margin-bottom: 20px;
    }
     .hero-content {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .product-title {
         font-size: 2.5rem;
     }
/* 
     .size-options {
         grid-template-columns: 1fr;
     } */

     .form-row {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 768px) {
    .hero{
        padding: 94px 0 80px;
    }
     .product-title {
         font-size: 1.5rem;
     }

     .price-main {
         font-size: 2rem;
     }

     .navbar-brand {
         font-size: 1.5rem;
     }

     .feature-grid,
     .gallery-grid,
     .review-grid {
         grid-template-columns: 1fr;
     }

     .product-actions {
         flex-direction: column;
     }
     #product-list  .product-actions {
         flex-direction: row;
     }
     .size-price{
        font-size: 14px;
     }
     .installment-info{
        font-size: 12px;
        font-weight: 500;
     }
     .product-pricing{
        gap: 5px;
     }
     .size-selection{
        padding: 15px 10px;
     }
     .size-card-box{
        padding: 5px;
     }
     .contact-modal-content {
         padding: 1.5rem;
     }
 }

  

 /* Snow effect */
 .snow {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: 1;
 }

 .snowflake {
     position: absolute;
     top: -10px;
     color: rgba(220, 20, 60, 0.5) !important;
     font-size: 1em;
     animation: fall linear infinite;
 }

 @keyframes fall {
     from {
         transform: translateY(0);
     }

     to {
         transform: translateY(100vh);
     }
 }

 .exclusive-collection {
     background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 245, 245, 1) 100%);
     position: relative;
     overflow: hidden;
 }

 .exclusive-collection::before {
     content: '';
     position: absolute;
     top: -50px;
     right: -50px;
     width: 200px;
     height: 200px;
     background-color: rgba(212, 175, 55, 0.1);
     border-radius: 50%;
     z-index: -1;
 }

 .exclusive-collection::after {
     content: '';
     position: absolute;
     bottom: -50px;
     left: -50px;
     width: 200px;
     height: 200px;
     background-color: rgba(220, 20, 60, 0.1);
     border-radius: 50%;
     z-index: -1;
 }

 .section-header .main-title {
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }

 .title-decoration {
     position: absolute;
     bottom: -10px;
     left: 0;
     width: 100px;
     height: 4px;
     background: linear-gradient(90deg, var(--red), var(--gold));
     border-radius: 2px;
 }

 .collection-highlights {
     margin-top: 2rem;
 }

 .highlight-item {
     display: flex;
     align-items: flex-start;
     gap: 1rem;
     padding: 1rem;
     border-radius: 10px;
     transition: all 0.3s ease;
 }

 .highlight-item:hover {
     background-color: rgba(220, 20, 60, 0.05);
     transform: translateX(5px);
 }

 .highlight-item:hover i {
     color: #ffffff;
 }

 .highlight-icon {
     width: 50px;
     height: 50px;
     min-width: 50px;
     background-color: rgba(212, 175, 55, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     color: var(--gold);
     transition: all 0.3s ease;
 }

 .highlight-item:hover .highlight-icon {
     background-color: var(--gold);
     color: var(--white);
 }

 .highlight-content h4 {
     font-size: 1.2rem;
     margin-bottom: 0.5rem;
     color: var(--black);
 }

 .highlight-content p {
     margin-bottom: 0;
     color: var(--gray);
 }

 .size-specs {
     margin-top: 2rem;
 }

 .specs-title {
     font-size: 1.3rem;
     margin-bottom: 1rem;
     color: var(--black);
     position: relative;
     display: inline-block;
 }

 .specs-title::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 50px;
     height: 2px;
     background-color: var(--gold);
 }

 .specs-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1rem;
 }

 .spec-card {
     background-color: var(--white);
     border-radius: 10px;
     padding: 1rem;
     text-align: center;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
     border: 1px solid rgba(212, 175, 55, 0.2);
 }

 .spec-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 5px 15px rgba(220, 20, 60, 0.1);
     border-color: var(--gold);
 }

 .spec-size {
     font-size: 1.2rem;
     font-weight: 700;
     color: var(--red);
     margin-bottom: 0.5rem;
 }

 .spec-leds {
     font-size: 0.9rem;
     color: var(--gray);
 }

 .image-container {
     position: relative;
     overflow: hidden;
     border-radius: 15px;
 }

 .image-container img {
     transition: transform 0.5s ease;
 }

 .image-container:hover img {
     transform: scale(1.05);
 }

 .image-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
     display: flex;
     align-items: flex-end;
     padding: 2rem;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .image-container:hover .image-overlay {
     opacity: 1;
 }

 .overlay-content {
     color: var(--white);
     transform: translateY(20px);
     transition: transform 0.3s ease;
 }

 .image-container:hover .overlay-content {
     transform: translateY(0);
 }

 .overlay-content h3 {
     font-size: 1.5rem;
     margin-bottom: 0.5rem;
 }

 .overlay-content p {
     margin-bottom: 1rem;
 }

 .btn-outline-light {
     border-color: var(--white);
     color: var(--white);
     padding: 0.5rem 1.5rem;
     border-radius: 30px;
     transition: all 0.3s ease;
 }

 .btn-outline-light:hover {
     background-color: var(--white);
     color: var(--red);
 }

 @media (max-width: 768px) {
     .specs-grid {
         grid-template-columns: 1fr;
     }

     .section-header .main-title {
         font-size: 2rem;
     }
 }
 /* index */
 .homebanner{
    margin-top:80px;
    position: relative;
 }
 .homebanner .container {
    position: absolute;
    top:10%;
    left: 50%;
    transform: translate(-50%,-10%); 
    color: #2a2a2a;
    max-width: 600px;
    text-align: center;
 }
 .homebanner .container h2 span{
    color: var(--red);
 }
 .homebanner img{
    height: 400px;
    width: 100%;
    object-fit: cover;
     /* object-position: right center; */
 }
 /* Product List Section */
.product-list-section {
    background-color: var(--lighter-gray);
    position: relative;
    overflow: hidden;
}

.product-list-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.product-list-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(220, 20, 60, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.product-item {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(220, 20, 60, 0.15);
}

.product-item .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item:hover .card-img-top {
    transform: scale(1.05);
}

.product-item .card-body {
    padding: 1.5rem;
    position: relative;
}

.product-item .card-title {
    font-family: "Righteous", sans-serif;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-item .card-text {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-item .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
}

.product-item .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 30px;
}

.product-item .tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--red);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(220, 20, 60, 0.3);
}

.product-item .badge-new {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--gold);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.product-item .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-item .overlay-content {
    color: var(--white);
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-item:hover .overlay-content {
    transform: translateY(0);
}

.product-item .overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-item .overlay-content p {
    margin-bottom: 1rem;
}

.product-item .btn-outline-light {
    border-color: var(--white);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.product-item .btn-outline-light:hover {
    background-color: var(--white);
    color: var(--red);
}

.product-item .product-rating {
    margin-bottom: 1rem;
    color: var(--gold);
}

.product-item .product-rating i {
    font-size: 0.9rem;
}

.product-item .product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--lighter-gray);
}

.product-item .product-meta .product-size {
    font-size: 0.9rem;
    color: var(--gray);
}

.product-item .product-meta .product-leds {
    font-size: 0.9rem;
    color: var(--gray);
}

.product-item .product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.product-item .product-actions .btn {
    flex: 1;
}

.product-item .product-actions .btn-secondary {
    background-color: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-item .product-actions .btn-secondary:hover {
    background-color: var(--black);
    color: var(--white);
}

.product-item .product-actions .btn-primary {
    background-color: var(--red);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-item .product-actions .btn-primary:hover {
    background-color: var(--dark-red);
}

.product-item .product-discount {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--green);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(1, 170, 167, 0.3);
}

.product-item .product-original-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.product-item .product-price {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.product-item .product-installments {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .product-item .card-img-top {
        height: 200px;
    }
    
    .product-item .card-title {
        font-size: 1rem;
    }
    
    .product-item .price {
        font-size: 1.2rem;
    }
    
    
}
/* Checkout Section Styles */
.checkout-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.checkout-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text y="50" font-size="50" fill="rgba(220, 20, 60, 0.03)">❄</text></svg>');
    background-size: 100px 100px;
    z-index: 0;
}

.checkout-section .container {
    position: relative;
    z-index: 1;
} 
.section-header .sub-title {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color:#aac67c;
    color: #ffffff;
    padding: 0.3rem 0.6rem;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid rgba(1, 170, 167, 0.2);
}

/* Breadcrumb Timeline */
.breadcrumb-timeline-container {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.breadcrumb-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-timeline li {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
}

.breadcrumb-timeline-line {
    flex: 1;
    height: 2px;
    background-color: #e9ecef;
    position: relative;
    top: -15px;
    z-index: 1;
}

.breadcrumb-timeline-item {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.breadcrumb-timeline-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.breadcrumb-timeline-item-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.breadcrumb-timeline-item.current .breadcrumb-timeline-item-icon {
    background-color: var(--red);
    color: white;
    box-shadow: 0 0 0 5px rgba(220, 20, 60, 0.1);
}

.breadcrumb-timeline-item.current .breadcrumb-timeline-item-text {
    color: var(--red);
    font-weight: 600;
}

.breadcrumb-timeline-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.breadcrumb-timeline-item.disabled .breadcrumb-timeline-item-icon {
    background-color: #e9ecef;
    color: var(--gray);
}

.breadcrumb-timeline-item.disabled .breadcrumb-timeline-item-text {
    color: var(--gray);
}

/* Order Summary */
.order-summary {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}
 

.order-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f1f1;
}

.order-image img {
    border-radius: 10px;
    object-fit: cover;
    height: 80px;
    width: 80px;
}

.order-item-info h5 {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.order-item-info p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0;
}

.order-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green);
    display: flex;
    align-items: center;
}

.order-total {
    font-weight: 700;
}

.order-total h4 {
    color: var(--dark-gray);
}

/* Checkout Form */
#step1, #step2 {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#step2 {
    display: none; /* Initially hidden, will be shown with JavaScript */
}


.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
    outline: none;
}

/* Shipping Method */
.shipping-method-item {
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.shipping-method-item:hover {
    border-color: var(--red);
    box-shadow: 0 3px 10px rgba(220, 20, 60, 0.1);
}

.shipping-method-item-name {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 0.3rem;
}

.shipping-method-item-desc {
    font-size: 0.9rem;
    color: var(--gray);
}

.shipping-method-item-price {
    font-size: 1.2rem;
    color: var(--green); 
}

.price-striked {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
    font-weight: 400;
}

 

/* Checkbox Styling */
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    accent-color: var(--red);
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-section {
        padding: 2rem 0;
    }
    
    .section-header .main-title {
        font-size: 2rem;
    }
    
 
     
    .order-summary {
        position: static; 
    }
    
    #step1, #step2 {
        padding: 1.5rem;
    }
}