.cart-count {
    top: -8px;
    right: -8px;
    font-size: 0.75rem;
    line-height: 1;
    padding: 0;
}

button:not(#cart-btn),
a.shop-now, /* or a.btn if that’s the class */
a.shop-now:hover {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

button:not(#cart-btn):hover,
a.shop-now:hover {
  transform: scale(1.05);
}

#checkout-btn {
  background-color: white !important;
  color: black !important;
}

#checkout-btn:hover {
  background-color: var(--accent-color); /* pink or your preferred hover color */
}

#submit {
  background-color: white !important;
  color: black !important;
}

#submit:hover {
  background-color: var(--accent-color); /* pink or your preferred hover color */
}



@font-face {
  font-family: 'MyCustom';
  src: url('font/Urbanist-SemiBold.woff2') format('woff2'),
       url('font/Urbanist-SemiBold.woff') format('woff');
  font-weight: 400; /* or adjust if you have multiple weights */
  font-style: normal;
  font-display: swap; /* improves rendering performance */
}

        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: #ff6b6b;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }

.bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 100, 140, 0.4));
    filter: blur(2px);
    animation: float 8s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    25% { transform: translateY(-20px) translateX(10px) scale(1.1); }
    50% { transform: translateY(-40px) translateX(-10px) scale(0.9); }
    75% { transform: translateY(-20px) translateX(-20px) scale(1.05); }
}

