*{
    margin: 0;
    padding: 0;
}

/* #Onecard-txt{
    color: #558b71;
}

.logo{
    height: 50px;
    width: 60px;
}

.logo-text{
    height: 35px;
    width: 150px;
}
.navbar-brand{
    font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight:700;
  font-style: normal;
  font-size: 30px;
  padding-left: 5px;
} */

/* Enable hover dropdown for navbar */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* Aligns the menu nicely */
}

/* Optional: Prevent Bootstrap click toggle */
.navbar .dropdown-toggle::after {
  display: none;
}


.btn-1 {
    height: 40px;
    width: 50px;
  position: relative;
  /* padding: 1rem ; */
  /* padding:10px; */
  font-size: 1rem;
  font-weight: 400;
  color: black;
  background: none;
  border: 2px solid #558b71;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.liquid-1 {
  background: linear-gradient(#558b71 0 0) no-repeat calc(200% - var(--p, 0%))
    100% / 200% var(--p, 0.2em);
  transition: 0.3s var(--t, 0s),
    background-position 0.3s calc(0.3s - var(--t, 0s));
}

.liquid-1:hover {
  --p: 100%;
  --t: 0.3s;
  color: #fff;
}

#drop-txt{
    color: #558b71;
}

.carousel-item video {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

.week-txt{
   font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 70px;
}  

/* .custom-tab {
  background: white;
  border: 2px solid #0d6efd;
  color: #0d6efd;
  font-weight: bold;
  padding: 10px 0;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.custom-tab:hover {
  background: #0d6efd;
  color: white;
  transform: scale(1.05);
}

.custom-tab.active {
  color: #0d6efd;
  border-bottom: 3px solid #0d6efd;
  background: #e9f2ff;
} */

.btn-border-reveal {
  height: 60px;
  background-color: transparent;
  color: black;
  border: 2px solid black;
  position: relative;
}

.btn-border-reveal::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: black;
  transition: width 0.6s ease;
  z-index: -1;
}

.btn-border-reveal:hover::after {
  width: 100%;
}

.btn-border-reveal:hover {
  color: white;
}
.btn-border-reveal.active-tab {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.product-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.product-card:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
}

.product-info {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  width: 100%;
  padding: 10px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  text-align: center;
}

.product-card:hover .product-info {
  transform: translateY(0%);
}

.custom-border {
  border-right: 1px solid rgba(0, 0, 0, 0.2); 
}

.btn-text {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500px;
  font-style: normal;
  font-size: 20px;
  font: optional;
}

 .buy-now-btn {
  height: 50px;
  width: 150px;
            position: relative;
            /* padding: 16px 36px; */
            background: black;
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        
        /* Hover Effect */
        .buy-now-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            color: #3498db;
        }
        
        /* Active/Pressed Effect */
        .buy-now-btn:active {
            transform: translateY(1px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        /* Shine Animation */
        .buy-now-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent
            );
            transition: 0.5s;
        }
        
        .buy-now-btn:hover::after {
            left: 100%;
        }
        
        /* Icon Animation */
        .buy-now-btn i {
            color: #3498db;
            transition: all 0.4s ease;
        }
        
        .buy-now-btn:hover i {
            transform: translateX(5px) scale(1.1);
            color: #2980b9;
        }
        
        /* Floating Animation */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }
        
        .buy-now-btn {
            animation: float 3s ease-in-out infinite;
        }
        
        /* Pulse Animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
            }
            70% {
                box-shadow: 0 0 0 12px rgba(52, 152, 219, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
            }
        }
        
        .buy-now-btn:hover {
            animation: float 3s ease-in-out infinite, pulse 2s infinite;
        }

 .product-title {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: 600;
            font-size: 1.4rem;
            color: white;
            line-height: 1.3;
            margin: 0 0 0.5rem 0;
            letter-spacing: -0.01em;
        }       
 .product-price {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 1.2rem;
            color: white;
            margin-top: 0.25rem;
        }

          .color-dot {
      width: 25px;
      height: 25px;
      border-radius: 50%;
      display: inline-block;
      margin: 0 5px;
      border: 2px solid #ccc;
      cursor: pointer;
    }
    .color-dot.selected {
      border: 2px solid black;
    }
    .storage-btn {
      border-radius: 25px;
      padding: 5px 15px;
      border: 1px solid #ccc;
      background-color: white;
      margin: 0 5px;
      cursor: pointer;
    }
    .storage-btn.selected {
      background-color: black;
      color: white;
    }


    



.card {
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}


.color-dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.color-dot:hover {
    transform: scale(1.2);
}

.color-dot.selected {
    border-color: #000;
    box-shadow: 0 0 0 2px white, 0 0 0 4px #000;
}

.color-dot.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.storage-btn {
    background: #f1f1f1;
    border: none;
    padding: 5px 10px;
    margin: 0 3px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.storage-btn:hover {
    background: #e0e0e0;
}

.storage-btn.selected {
    background: #000;
    color: white;
    font-weight: bold;
}


.btn-buy-now {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}

.btn-buy-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-buy-now:hover::before {
    left: 100%;
}


.card-img-top {
    transition: transform 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05) rotate(1deg);
}


h6.fw-bold {
    transition: all 0.3s ease;
}

.card:hover h6.fw-bold {
    color: #0d6efd;
    transform: scale(1.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.col {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.col:nth-child(1) { animation-delay: 0.1s; }
.col:nth-child(2) { animation-delay: 0.2s; }
.col:nth-child(3) { animation-delay: 0.3s; }
.col:nth-child(4) { animation-delay: 0.4s; }

.active-btn {
    background-color: black;
    color: white;
}

 .cart-card {
            transition: all 0.3s ease;
            border: none;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        .cart-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .cart-img {
            transition: all 0.5s ease;
            height: 180px;
            object-fit: contain;
            padding: 15px;
            background: #f8f9fa;
        }
        @media (min-width: 768px) {
            .cart-img {
                height: 200px;
                padding: 20px;
            }
        }
        .cart-card:hover .cart-img {
            transform: scale(1.05);
        }
        .btn-buy {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            background-color: #000;
            border-color: #000;
        }
        .btn-buy:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            background-color: #333;
            border-color: #333;
        }
        .btn-buy:active {
            transform: translateY(0);
        }
        .btn-buy::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }
        .btn-buy:focus:not(:active)::after {
            animation: ripple 1s ease-out;
        }
        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 0.5;
            }
            100% {
                transform: scale(20, 20);
                opacity: 0;
            }
        }
        .price-tag {
            font-size: 1.3rem;
            font-weight: bold;
            color: #0d6efd;
            transition: all 0.3s ease;
        }
        @media (min-width: 768px) {
            .price-tag {
                font-size: 1.5rem;
            }
        }
        .cart-card:hover .price-tag {
            transform: scale(1.1);
            color: #0b5ed7;
        }
        .rupee-symbol {
            font-family: Arial, sans-serif;
        }

   .badge {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.35rem 0.6rem;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.section-divider {
    margin: 3rem 0;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(40, 167, 69, 0.75), rgba(0, 0, 0, 0));
}

#icon:hover {
    scale: 1.2;
}

.modal-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
    border: none !important;
    animation: fadeIn 0.5s ease-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
 .modal-header {
    background-color:  #98fbcb;
    color: black;
  }
  
  .modal-title {
    color: black !important;
    font-size: 1.5rem;
  }
  
  .btn-close {
    filter: invert(1);
  }
  
  #google-login-btn {
    transition: all 0.3s;
    border: 2px solid #4285F4;
    color: #4285F4;
    font-weight: 600;
  }
  
  #google-login-btn:hover {
    background: #4285F4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.3);
  }
  
  .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(142, 124, 195, 0.25);
    border-color: #8f94fb;
  }
  
  .btn-primary {
    background: linear-gradient(to right, #4e54c8, #8f94fb);
    border: none;
    transition: all 0.3s;
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 84, 200, 0.4);
  }
  
  .product-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s;
    cursor: pointer;
  }
  
  .product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% { transform: scale(0.95); }
    50% { transform: scale(1.05); }
    100% { transform: scale(0.95); }
  }
  
  .floating {
    animation: floating 3s ease-in-out infinite;
  }
  
  @keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }
  
  .divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #6c757d;
    margin: 1rem 0;
  }
  
  .divider::before, .divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dee2e6;
  }
  
  .divider::before {
    margin-right: .5em;
  }
  
  .divider::after {
    margin-left: .5em;
  }
  
  .login-btn {
    animation: pulse 2s infinite;
    transition: all 0.3s;
  }
  
  .login-btn:hover {
    animation: none;
    transform: scale(1.05);
  }
  
  .social-icon {
    transition: all 0.3s;
  }
  
  .social-icon:hover {
    transform: translateY(-3px);
    color: #4e54c8 !important;
  }
  
  .feature-item {
    transition: all 0.3s;
  }
  
  .feature-item:hover {
    transform: translateX(5px);
  }     