﻿body {
    box-sizing: border-box;
}

.hero-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card-hover:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

.smooth-scroll {
    scroll-behavior: smooth;
}

.page {
    display: none;
}

    .page.active {
        display: block;
        animation: fadeIn 0.5s ease-in-out;
    }

/*.nav-link.active {
    color: #f59e0b;
    font-weight: 600;
}*/
/* Base link color */
.nav-link {
    color: #991b1b; /* dark red */
    transition: all 0.3s ease;
}

    /* Hover color */
    .nav-link:hover {
        color: #dc2626; /* bright red */
    }

    /* Active link with red-purple gradient text */
    .nav-link.active {
        background: linear-gradient(90deg, #ef4444, #a21caf); /* red → purple */
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
    }
.primary-btn {
    background: linear-gradient(90deg, #ef4444, #a21caf); /* red → purple */
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
}

    .primary-btn:hover {
        background: linear-gradient(90deg, #f43f5e, #8b5cf6); /* brighter red → purple */
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(168, 85, 247, 0.5);
    }
.product-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
}

.price-tag {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Banner Slider Styles */
.banner-slider {
    position: relative;
    height: 44rem;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slide.active {
        opacity: 1;
    }

.slide-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

    .slider-dot.active {
        background: white;
    }

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 5px;
}

    .slider-arrow:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .slider-arrow.prev {
        left: 30px;
    }

    .slider-arrow.next {
        right: 30px;
    }

/* Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.animate-slide-in-up {
    animation: slideInUp 0.8s ease-out;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hover-lift:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.hover-glow {
    transition: box-shadow 0.3s ease;
}

    .hover-glow:hover {
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
    }
.my-element {
    /* Gradient text */
    background: linear-gradient(90deg, #ff1515, #ff4e4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    transition: background 0.4s ease;
}

    .my-element:hover {
        background: linear-gradient(90deg, #ff4e4e, #ff1515);
    }

/* Gradient Text */
.gradient-text {
    /*  background: linear-gradient(135deg, #f59e0b, #d97706, #92400e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;*/
    background: linear-gradient(90deg, #ef4444, #a21caf); /* red → purple */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700; /* optional: makes it stand out */
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Stagger Animation */
.stagger-animation > * {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.6s ease-out forwards;
}

    .stagger-animation > *:nth-child(1) {
        animation-delay: 0.1s;
    }

    .stagger-animation > *:nth-child(2) {
        animation-delay: 0.2s;
    }

    .stagger-animation > *:nth-child(3) {
        animation-delay: 0.3s;
    }

    .stagger-animation > *:nth-child(4) {
        animation-delay: 0.4s;
    }

    .stagger-animation > *:nth-child(5) {
        animation-delay: 0.5s;
    }

    .stagger-animation > *:nth-child(6) {
        animation-delay: 0.6s;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-slider {
        height: 33rem;
    }

    .slider-arrow {
        padding: 10px 15px;
        font-size: 18px;
    }

        .slider-arrow.prev {
            left: 15px;
        }

        .slider-arrow.next {
            right: 15px;
        }
}

/*marquee style*/
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.animate-marquee {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.wghtBtn {
    border: 1px solid #bababa;
    padding: 5px 10px;
    border-radius: 10px;

}
.selectedWghtBtn {
    border: 2px solid #2d860f;
    padding: 5px 10px;
    border-radius: 10px;
    background-color: #00b71f;
    color: white;
    font-weight: bold;
}
.addedToCartBtn {
    background-color: gray !important;
    cursor: not-allowed;
}