/* BODY */
body {
    font-family: Arial;
}

/* NAVBAR */
.custom-navbar {
    background: linear-gradient(248deg, rgba(2, 38, 89, 1) 0%, rgba(71, 1, 148, 1) 50%);
    padding: 15px 0;
    transition: 0.3s;
    position: sticky;
    z-index: 1000;
}


/* LOGO POSITION */
.logo-wrapper {
    position: absolute;
    left: 150px;   /* left side spacing */
    bottom: -80px; /* navbar च्या खाली आणतो */
}

/* WHITE CIRCLE */
.logo-circle {
    height: 145px;
    width: 200px;
    border-radius: 50%;
    background: white;
    padding: 10px;
    object-fit: contain;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* IMAGE INSIDE */
.logo-circle img {
    height: 120px;
    margin-left: 2px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-wrapper {
        left: 50%;
        transform: translateX(-50%);
        bottom: -35px;
    }

    .logo-circle {
        height: 90px;
        width: 130px;
    }

    .logo-circle img {
        height: 72px;
    }
}

/* NAV LINKS */
.nav-link {
    color: white !important;
    margin: 0 10px;
    position: relative;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #D4AF37;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* BUTTON */
.btn-gold {
    background-color: #D4AF37;
    color: black;
    border-radius: 20px;
    padding: 6px 15px;
    font-weight: bold;

    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Shine effect */
.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.4);
    transform: skewX(-25deg);
    transition: 0.5s;
}

/* Hover shine move */
.btn-gold:hover::after {
    left: 120%;
}

/* Hover main effect */
.btn-gold:hover {
    background-color: #c59c2d;
    color: white;

    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(89, 0, 255, 0.5);
}


.section-title {
    font-size: 32px;
    position: relative;
    display: inline-block;
}

/* underline effect */
.section-title::after {
    content: '';
    width: 70%;
    height: 4px;
    background: #D4AF37;
    position: absolute;
    right: 28%;
    bottom: -1px;
}

/* GRADIENT TEXT */
.gradient-text {
    background: linear-gradient(135deg, #02006e, #54009d);
   -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    display: inline-block;   /* important */
    line-height: 1.5;        /* text cut fix */
    padding-bottom: 5px;     /* bottom cut avoid */
}

/* HERO */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #4b006e, #8e2de2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    }

    


    /* SLIDER CONTENT */
.slider-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    z-index:10;
    color:white;
    text-align:left;
}

.slider-content h1{
    font-size:60px;
    font-weight:bold;
    margin-bottom:15px;
    text-shadow:0 5px 15px rgba(0,0,0,0.5);
}

.slider-content p{
    font-size:20px;
    margin-bottom:25px;
    text-shadow:0 5px 15px rgba(0,0,0,0.5);
}

/* BUTTON */
.slider-btn{
    display:inline-block;
    padding:14px 35px;
    background:#ffd549;
    color:#000;
    font-weight:bold;
    border-radius:50px;
    text-decoration:none;
    transition:0.3s ease;
    animation:zoomBtn 2s infinite ease-in-out;
}

/* HOVER */
.slider-btn:hover{
    background:#fff;
    color:#000;
}

/* CONTINUOUS ZOOM IN OUT */
@keyframes zoomBtn{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }

}

/* MOBILE */
@media(max-width:768px){

    .slider-content{
        left:5%;
        right:5%;
    }

    .slider-content h1{
        font-size:28px;
    }

    .slider-content p{
        font-size:14px;
    }

    .slider-btn{
        padding:10px 25px;
        font-size:14px;
    }

}



.carousel-item{
    position:relative;
}

.carousel-item::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
    z-index:1;
}


/* PRODUCT CARD */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    border:2px solid #8e2de2;
}

/* IMAGE */
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: fill;
    transition: 0.4s;
}

/* HOVER ZOOM */
.product-card:hover img {
    transform: scale(1.1);
}

/* OVERLAY */
.product-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(75, 0, 110, 0.7); /* purple overlay */
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transition: 0.4s;
}

/* SHOW ON HOVER */
.product-card:hover .overlay {
    opacity: 1;
}

/* TEXT */
.product-card h5 {
    margin-bottom: 10px;
    font-weight: bold;
}


/* PRODUCTS */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.card:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #2d004d;
        padding: 15px;
        border-radius: 10px;
    }

    .nav-link {
        margin: 10px 0;
    }
}

.modal-content {
    border-radius: 15px;
    overflow: hidden;
}

.modal-body img {
    max-height: 400px;
    object-fit: cover;
}


/* FULL SECTION BACKGROUND */
.about-section {
    background: linear-gradient(-48deg, rgba(2, 38, 89, 1) 0%, rgba(71, 1, 148, 1) 50%);
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

/* WHITE BOX */
.about-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    overflow: visible;   /* 🔥 IMPORTANT */
}

/* IMAGE */
.about-box img {
    border-radius: 10px;
}

/* IMAGE CONTAINER (important) */
.about-box img {
    border-radius: 10px;
}

.about-video {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.about-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video {
    position: relative;
}

.about-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
}

.mobile-frame {
    width: 260px;
    height: 500px;
    border: 10px solid #111;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background: black;
}

/* NOTCH (top design) */
.mobile-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background: #111;
    border-radius: 10px;
    z-index: 2;
}

/* VIDEO FIT */
.mobile-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* HOVER EFFECT 🔥 */
.mobile-frame:hover {
    transform: scale(1.05) rotate(1deg);
    transition: 0.4s;
}

.mobile-frame {
    box-shadow: 0 0 25px rgba(142,45,226,0.6);
}

.mobile-frame {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}


.mobile-frame {
    width: 260px;
    height: 500px;
    border: 10px solid #111;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    background: black;
}

.mobile-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTROLS BAR */
.video-controls {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* BUTTON STYLE */
.video-controls button {
    background: rgba(0,0,0,0.6);
    border: none;
    color: white;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

/* HOVER */
.video-controls button:hover {
    background: #8e2de2;
    transform: scale(1.1);
}
/* TEXT */
.about-box h2 {
    color: #4b006e;
}

@media (max-width: 768px) {
    .about-box {
        padding: 20px;
    }
}

/* HORIZONTAL TIMELINE */
/* CONTAINER */
.horizontal-timeline {
    overflow: hidden;
    position: relative;
    padding-top: 80px;   /* 🔥 वर space */
}
/* TRACK (moving part) */
.timeline-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollTimeline 20s linear infinite;
}

.horizontal-timeline:hover .timeline-track {
    animation-play-state: paused;
}

/* ANIMATION */
@keyframes scrollTimeline {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* LINE */
.horizontal-timeline::before {
    content: '';
    margin-top: 150px;
    position: absolute;
    height: 3px;
    background: #D4AF37;
    width: 100%;
    top: 25px;
    left: 0;
}

/* ITEM */
.horizontal-timeline .timeline-item {
    min-width: 150px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* DOT */
.horizontal-timeline .timeline-item::before {
    content: '';
    width: 15px;
    height: 15px;
    margin-top: 70px;
    background: rgb(94, 0, 195);
    border: 3px solid #D4AF37;
    border-radius: 50%;
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
}

/* YEAR */
.horizontal-timeline h5 {
    margin-top: 105px;
    font-weight: bold;
    color: rgb(94, 0, 195);
}

/* TEXT */
.horizontal-timeline p {
    font-size: 13px;
}

/* TOOLTIP BOX */
.tooltip-box {
    position: absolute;
    bottom: 100px;  /* 🔥 वर push */
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 160px;
    height: 120px;
    background: linear-gradient(180deg, rgba(2, 38, 89, 1) 0%, rgb(94, 0, 195) 50%);
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
    z-index: 999;  /* 🔥 top layer */
}

/* IMAGE */
.tooltip-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;   /* ✅ FIX */
}

/* ARROW */
.tooltip-box::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #4b006e transparent transparent transparent;
}

/* SHOW ON HOVER */
.timeline-item:hover .tooltip-box {
    transform: translateX(-50%) scale(1);
}

/* POSITION FIX */
.timeline-item {
    position: relative;
}

.timeline-item {
    transition: 0.3s;
}

.timeline-item:hover {
    transform: translateY(-5px);
}



/* SECTION BG */
.why-section {
    background: #f8f8f8;
}

/* CARD */
.why-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

/* ICON */
.why-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(89, 0, 255, 0.3);
}

/* GRADIENT BORDER EFFECT */
.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, #4b006e, #8e2de2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

/* SHOW BORDER ON HOVER */
.why-card:hover::before {
    opacity: 1;
}
/* ICON STYLE */
.why-card .icon i {
    font-size: 40px;
    color: #4b006e;
    transition: 0.3s;
}

/* HOVER ला color change */
.why-card:hover .icon i {
    color: #8e2de2;
    transform: scale(1.2);
}
.why-title {
    font-weight: 600;
    margin-top: 10px;
    color: #4b006e;
}

/* paragraph */
.why-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* SECTION BACKGROUND */
.festival-section {
    background: linear-gradient(135deg, #f8f8f8, #fff);
}

/* MAIN BOX */
.festival-box {
    background: linear-gradient(135deg, #8e2de2, #4b006e, rgb(89, 0, 255));
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: 0.4s;
}

/* GLOW EFFECT */
.festival-box::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 70%);
    top: -50%;
    left: -50%;
    animation: glowMove 6s linear infinite;
}

@keyframes glowMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* TEXT HIGHLIGHT */
.highlight {
    color: #FFD700;
    font-weight: bold;
    font-size: 20px;
}

/* HOVER EFFECT ON BOX */
.festival-box:hover {
    transform: translateY(-8px) scale(1.02);
}





/* WRAPPER */
.testimonial-wrapper {
    overflow: hidden;
    position: relative;
}

/* TRACK */
.testimonial-track {
    display: flex;
    gap: 20px;
    width: max-content;

    animation: scrollTestimonial 25s linear infinite;
}

/* PAUSE ON HOVER */
.testimonial-wrapper:hover .testimonial-track {
    animation-play-state: paused;
}

/* SMOOTH LOOP */
@keyframes scrollTestimonial {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* CARD */
.testimonial-card {
    min-width: 260px;
    max-width: 260px;
    padding: 25px;
    border-radius: 15px;
    background: linear-gradient(45deg, rgba(2, 38, 89, 1) 0%, rgb(94, 0, 195) 50%);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: 0.4s;
}

/* GLOW EFFECT */
.testimonial-card::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 70%);
    top: -50%;
    left: -50%;
    animation: glowMove 6s linear infinite;
}

/* HOVER */
.testimonial-card:hover {
    transform: translateY(-10px) scale(1.05);
}

/* QUOTE ICON */
.quote-icon {
    font-size: 40px;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 15px;
}

/* USER IMAGE */
.user-img {
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FFD700;
}

.user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT */
.testimonial-card p {
    font-size: 14px;
    margin: 10px 0;
}

/* STARS ANIMATION */
.stars {
    color: #FFD700;
    font-size: 18px;
    animation: starGlow 1.5s infinite alternate;
}

@keyframes starGlow {
    from { text-shadow: 0 0 5px #FFD700; }
    to { text-shadow: 0 0 15px #FFD700; }
}

/* NAME */
.testimonial-card h6 {
    margin-top: 10px;
    font-weight: bold;
    opacity: 0.9;
}


/* ORDER SECTION */
.order-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #8e2de2, #4b006e, rgb(89, 0, 255));
    position: relative;
    overflow: hidden;
}

/* GLOW EFFECT */
.order-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
    top: -50%;
    left: -50%;
    animation: glowMove 6s linear infinite;
}

/* BUTTON */
.order-btn {
    font-size: 18px;
    padding: 10px 25px;
    transition: 0.4s;
}

.order-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* FOOTER */
.footer-section {
    background: #2d004d;
}

.footer-logo img {
    width: 90px;
    height: auto;
    object-fit: contain;
    border-radius: 50%;
    /* background: white;
    padding: 8px; */
    box-shadow: 0 5px 15px rgba(56, 56, 56, 0.3);

    transition: 0.4s;
}

/* HOVER EFFECT 🔥 */
.footer-logo img:hover {
    transform: scale(1.1) rotate(2deg);
}

/* TITLES */
.footer-title {
    margin-bottom: 15px;
    color: #FFD700;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #FFD700;
    padding-left: 5px;
}

.map-box iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.4s;
}

/* HOVER EFFECT 🔥 */
.map-box iframe:hover {
    transform: scale(1.05);
}

footer p {
    animation: fadeIn 2s ease-in-out;
}

footer p a {
    color: #FFD700;
    font-weight: 500;
    text-decoration: none;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}


.about-video-hero{
    position: relative;
    height: 300px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .about-video-hero{
    position: relative;
    height: 200px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}
}

/* VIDEO */
.hero-video{
    position: absolute;
    top: 50%;
    left: 50%;

    min-width: 100%;
    min-height: 100%;

    transform: translate(-50%,-50%);
    object-fit: cover;
}

/* DARK OVERLAY */
.hero-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

/* TEXT */
.hero-content{
    position: relative;
    color: white;
}

.hero-content h1{
    font-size: 42px;
}

.hero-content p{
    font-size: 18px;
}

.about-story{
background:#ffffff;
}

.story-img{
box-shadow:0 15px 40px rgba(0,0,0,0.25);
transition:0.4s;
}

.story-img:hover{
transform:scale(1.05);
}

.story-text{
line-height:1.8;
text-align: justify;
font-size:16px;
color:#444;
}




.stats-section{
background:#f8f8f8;
}

.stat-box{
    padding:20px;
}

.stat-icon{
    font-size:40px;
    margin-bottom:10px;
    color:#FFD700;
}

.stat-box h2{
    font-size:40px;
    font-weight:bold;
    color:white;
}

.stat-box p{
    color:white;
    font-size:16px;
}


.contact-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
transition:0.3s;
}

.contact-card:hover{
transform:translateY(-5px);
}

.contact-card i{
font-size:35px;
color:#4b006e;
margin-bottom:10px;
}
.product-filter{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.filter-btn,
.weight-btn{
border:none;
padding:10px 20px;
border-radius:30px;
background:#eee;
transition:.3s;
}

/* MOBILE VIEW */
@media (max-width: 768px){

.filter-btn,
.weight-btn{
padding:6px 10px;   /* कमी padding */
font-size:12px;     /* text छोटा */
border-radius:20px; /* थोडं कमी round */
}

.product-filter{
display:flex;
justify-content:center;
gap:5px;
flex-wrap:wrap;
}

}


.filter-btn:hover,
.filter-btn.active{
background: linear-gradient(248deg, rgba(2, 38, 89, 1) 0%, rgba(71, 1, 148, 1) 50%);
color:#fff;
}

.weight-btn:hover,
.weight-btn.active{
background: linear-gradient(248deg, rgba(2, 38, 89, 1) 0%, rgba(71, 1, 148, 1) 50%);
color:#fff;
}




.gallery-card{
height:200px;
overflow:hidden;
border-radius:10px;
cursor:pointer;
box-shadow:0 6px 20px rgba(0,0,0,0.25);
transition:.4s;
}

.gallery-card img{
width:100%;
height:100%;
object-fit:fill;
transition:.4s;
}

.gallery-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.gallery-card:hover img{
transform:scale(1.1);
}


.cart-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.cart-table table {
    min-width: 700px; /* columns properly show होतील */
}

.qty-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.qty-btn {
    padding: 4px 10px;
    border: 1px solid #ccc;
    text-decoration: none;
    border-radius: 5px;
    color: #000;
}

.qty-number {
    min-width: 20px;
    display: inline-block;
}

/* Basket Design for product add  */

.floating-cart{
    position:fixed;
    right:25px;
    bottom:30px;
    width:80px;
    height:80px;
    background:#5900ff;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    box-shadow:0 10px 25px rgba(0,0,0,.4);
    cursor:pointer;
    z-index:9999;
    transition:.3s;

    opacity:0;          /* 🔥 hidden */
    visibility:hidden;  /* 🔥 hidden */
}

.floating-cart:hover{
transform:scale(1.1);
}

.floating-cart {
    animation: pulseCart 1.5s infinite;
    box-shadow: 0 0 20px rgba(142,45,226,0.8);
}

/* 🔥 FLOATING CART ANIMATION */
.floating-cart {
    animation: pulseCart 1.5s infinite;
}

/* KEYFRAMES */
@keyframes pulseCart {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

#cartCount{
position:absolute;
top:-5px;
right:-5px;
background:#FFD700;
color:black;
font-size:14px;
font-weight:bold;
width:28px;
height:28px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}


/* FLY IMAGE */
.fly-img{
    position:fixed;
    z-index:99999;
    width:80px;
    height:80px;
    border-radius:10px;
    pointer-events:none;
    transition: all 0.8s cubic-bezier(.4,-0.3,1,.68);
}


/* QUANTITY BOX */
.qty-box{
display:flex;
justify-content:center;
align-items:center;
gap:10px;
}

.qty-btn{
width:28px;
height:28px;
display:flex;
align-items:center;
justify-content:center;
background:#4b006e;
color:white;
border-radius:50%;
text-decoration:none;
font-weight:bold;
transition:0.2s;
}

.qty-btn:hover{
background:#8e2de2;
transform:scale(1.1);
}

.qty-number{
min-width:20px;
font-weight:bold;
}

/* SUMMARY CARD STICKY */
.cart-summary{
position:sticky;
top:100px;
border-radius:12px;
}

/* TABLE CLEAN LOOK */
table td, table th{
vertical-align:middle;
}