.brand-font {
    font-family: 'Kaushan Script', cursive;
}

/* Text decoration utilities */
.line-through {
    text-decoration: line-through !important;
    text-decoration-thickness: 2px;
}

.underline {
    text-decoration: underline !important;
    text-decoration-thickness: 2px;
}

/* Click text positioning */
.click-text {
    position: absolute;
    font-size: 1.25rem; /* text-xl */
    font-weight: bold;
    font-style: italic;
    pointer-events: none;
    color: #CD853F;
    top: 45%;
    right: 9%;
    transform: translateY(-50%);
}

@media (min-width: 768px) {
    .click-text {
        font-size: 1.5rem; /* text-2xl */
        top: 42%;
        right: 15%;
    }
}

.navbar-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.5);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quality-icon {
    transition: all 0.3s ease;
}

.review-card {
    min-width: 350px;
    max-width: 350px;
    width: 350px;
    flex-shrink: 0;
    background: white;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

@media (max-width: 768px) {
    .review-card {
        min-width: 280px;
        max-width: 280px;
        width: 280px;
    }
}

.review-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-buy-card {
    transition: all 0.4s ease;
}

.why-buy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(158, 58, 194, 0.15);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.stagger-delay-1 {
    transition-delay: 0.1s;
}

.stagger-delay-2 {
    transition-delay: 0.2s;
}

.stagger-delay-3 {
    transition-delay: 0.3s;
}

.stagger-delay-4 {
    transition-delay: 0.4s;
}

.stagger-delay-5 {
    transition-delay: 0.5s;
}

.stagger-delay-6 {
    transition-delay: 0.6s;
}

.social-icon {
    transition: all 0.3s ease;
    color: #9ca3af;
}

.social-icon:hover.twitter {
    color: #1DA1F2;
}

.social-icon:hover.instagram {
    color: #E4405F;
}

.social-icon:hover.whatsapp {
    color: #25D366;
}

/* Brush stroke scaling */
.scale-brush-mobile {
    transform: scale(1.5);
    transform-origin: center center;
}

@media (min-width: 768px) {
    .scale-brush-desktop {
        transform: scale(2.2);
        transform-origin: center center;
    }
}

@media (min-width: 1024px) {
    .scale-brush-desktop {
        transform: scale(2.5);
        transform-origin: center center;
    }
}

/* Pulsing glow effect for badges */
.badge-glow {
    border: 2px solid;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 0 8px rgba(var(--glow-rgb), 0.3);
    }
    50% {
        box-shadow: 0 0 8px rgba(var(--glow-rgb), 1);
    }
}

/* Different glow colors for different badge types */
.badge-glow-green {
    --glow-rgb: 34, 197, 94;
    border-color: #22c55e;
}

.badge-glow-blue {
    --glow-rgb: 59, 130, 246;
    border-color: #3b82f6;
}

.badge-glow-amber {
    --glow-rgb: 245, 158, 11;
    border-color: #f59e0b;
}

.badge-glow-purple {
    --glow-rgb: 168, 85, 247;
    border-color: #a855f7;
}

/* Background overlay for purple cards with 50% opacity */
.bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/card-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    border-radius: 1rem;
    z-index: 0;
    pointer-events: none;
}

.bg-overlay > * {
    position: relative;
    z-index: 1;
}

/* effect-shine */
.effect-shine {
  -webkit-mask-image: linear-gradient(-75deg, #e9d5ff 30%, rgba(158, 58, 194, 0.6) 50%, #e9d5ff 70%);
  mask-image: linear-gradient(-75deg, #e9d5ff 30%, rgba(158, 58, 194, 0.6) 50%, #e9d5ff 70%);
  -webkit-mask-size: 200%;
  mask-size: 200%;
  animation: shine 2s infinite;
}

@-webkit-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  
  to {
    -webkit-mask-position: -50%;
  }
}

@keyframes shine {
  from {
    -webkit-mask-position: 150%;
    mask-position: 150%;
  }
  
  to {
    -webkit-mask-position: -50%;
    mask-position: -50%;
  }
}

/* Marquee scroll animation for reviews */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-content {
    animation: marqueeScroll 30s linear infinite;
    animation-play-state: running;
    will-change: transform;
}

.marquee-content.paused {
    animation-play-state: paused;
}

.hide-scrollbar-mobile::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar-mobile {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
