﻿
/* Set widths on the form inputs since otherwise they're 100% wide */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.hero-section .row {
    flex-shrink: 0;
    max-width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    margin-top: var(--bs-gutter-y);
    --bs-gutter-x: 0;
}
h1, h2, h3, h4, h5, h6 {
    /*    color: #212529;*/
    color: #fff;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
}

img {
    width: 100%;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #111;
}

a {
    text-decoration: none;
}


/*intro animation*/
#videoContainer {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease;
    display: none;
}

    #videoContainer.fade-out {
        opacity: 0;
    }

#introVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*Header*/
.header-sec {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    background: rgba(0, 0, 0, 0.1);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0));
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0));

}

.logo img {
    width: 8vw;
    height: auto;
}
.nav-left, .nav-right {
    display: flex;
    list-style: none;
    margin-bottom: 0;
}
    .nav-left .item, .nav-right .item {
        padding: 10px 15px 15px;
    }
    .nav-left .item a{ 
        color: #fff;
        font-weight: 500;
    }
        .nav-right .item i {
            font-size: 20px;
            color: #fff;
            font-weight: 900;
        } 


    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
        position: relative;
    }

/* Desktop */
@media (min-width:768px) {
    .mobile-menu {
        display: none;
    }
    .nav-left.nav-mobile {
        display: none;
    }
}
@media(max-width:768px){
    .mobile-menu {
        display: block;
        font-size: 24px;
        color: #fff;
        cursor: pointer;
        z-index: 1001;
    }
    .nav-left {
        display: none;
    }

    .logo img {
        width: 80px;
    }

    .nav-mobile {
        position: fixed;
        top: 0;
        left: -100%;
        width: 260px;
        height: 100vh;
        background: #111;
        display: flex;
        flex-direction: column;
        padding: 30px 25px;
        transition: .35s ease;
        z-index: 9999;
    }

        .nav-mobile.active {
            left: 0;
        }

        .nav-mobile li {
            list-style: none;
        }

       .nav-left.nav-mobile a {
            color: #fff;
            text-decoration: none;
            font-size: 2rem;
            font-family: 'poppins', sans-serif;
            font-weight: 600;
        }
    .close-menu {
        list-style: none;
        display: flex;
        justify-content: flex-end;
        padding: 20px;
        cursor: pointer;
    }

        .close-menu .markx {
            color: #fff; 
            font-size:1.5rem;
        }


    .nav-right {
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
    }

        .nav-right .item {
            list-style: none;
        }

        .nav-right a {
            color: #fff;
            font-size: 14px;
        }

    .profile-link p {
        display: none;
    }

    .cart-count {
        top: -6px;
        right: -8px;
    }

    .header-sec {
        position: sticky;
    }

    .nav-mobile .item, .nav-right .item {
        padding: 0px 10px 0px;
    }

    .nav-mobile .item, .nav-right .profile {
        padding-right: 0px;
    }
}

/*Hero section*/
    .hero-section {
        width: 100%;
        height: 100%;
    }

    .herorow {
        height: 100vh;
        width: 100%;
    }

    .header-right, .header-left {
        height: 100%;
    }

        .header-right .row {
            height: 50%;
        }

    .topimg1, .topimg2, .bottomimg {
        height: 100%;
    }

    .header-left img {
        height: 100%;
        width:100%;
        object-fit:cover;
    }

    .header-right .row .topimg1 img, .header-right .row .topimg2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-right .row .bottomimg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
  

 /* Mobile View */
@media(max-width:768px){

    .herorow {
        height: 40vh;
        width: 100%;
    }
}



/*Flavour Section*/
.flavour-section {
    padding: 60px 0px 50px;
}

        .flavour-section h2 {
            text-align: center;
            font-weight: 500;
            margin-bottom: 3rem;
            font-family: 'poppins', sans-serif;
            font-size: 2.5rem;
        }

    .flavour-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

        .flavour-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
        }

    .flavour-item {
        position: relative;
        overflow: hidden;
    }

        .flavour-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
            transition: 0.3s;
        }
    /* hover image */
    .img-hover {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
    }
    /* ON HOVER */
    .flavour-item:hover .img-hover {
        opacity: 1;
    }

    .flavour-item:hover .img-default {
        opacity: 0;
    }

    .flavour-item {
        position: relative;
        overflow: hidden;
    }
        /* Premium light sweep */
        .flavour-item::after {
            content: "";
            position: absolute;
            top: 0;
            left: -150%;
            width: 50%;
            height: 100%;
            background: linear-gradient( 120deg, transparent, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08), transparent );
            transform: skewX(-25deg);
            transition: 0.8s ease;
        }
        /* Hover animation */
        .flavour-item:hover::after {
            left: 150%;
        }
    /* THIS is the animation */
    .wave-group {
        display: flex;
        width: 200%;
        animation: waveMove 6s linear infinite;
    }

        .wave-group path {
            flex: 0 0 50%;
            fill: #0a0a0a;
        }
    /* Keyframes */
    @keyframes waveMove {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .wave-bottom {
        position: relative;
        width: 100%;
        line-height: 0;
    }

        .wave-bottom svg {
            width: 100%;
            display: block;
            margin-bottom: -1px;
        }

        .wave-bottom path {
            width: 100%;
            display: block;
        }

        @media(max-width: 768px) {
            .flavour-section {
                padding: 10px 0px 50px;
            }
                .flavour-section h2 {
                    text-align: center;
                    font-weight: 500;
                    margin-bottom: 3rem;
                    font-family: 'poppins', sans-serif;
                    font-size: 2rem;
                }
            .flavour-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 30px;
            }

        }



    /*Taste-flav Section*/
.flavour-slider {
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
    background: #283618;
    color: #fff;
    padding: 80px 20px 50px;
    box-sizing: border-box;
}

        .flavour-slider h2 {
            font-size: 2.5rem;
        }

  
    /* LEFT */

        .left h3 {
            font-size: 7rem;
            color: #f7f0c6;
            letter-spacing: -1px;
        }

        .left #tag {
          
            margin: 10px 0;
            font-weight: 600;
            font-size: 2rem;
            background: linear-gradient(135deg, #0f2f1f, #1f7a4c);
            max-width: fit-content;
            padding: 5px 10px;
            border-radius: 15px;
        }

        .left #desc {
            opacity: 1;
            font-size: 1.5rem;  
        }
    /* BUTTONS */
    .controls button {
        margin-top: 20px;
        margin-right: 10px;
        padding: 10px 15px;
        background: #111;
        border: none;
        color: #fff;
        cursor: pointer;
    }

        .controls button:hover {
            background: #222;
        }

.right img:nth-child(1) {
    width: auto;
    height: 80vh;
    transform: rotate(21deg);
    filter: drop-shadow(24px 26px 25px rgba(0,0,0,0.5));
}
.right {
    text-align: right;
    display:flex;
    gap:10px;
}
    .right img:nth-child(2) {
        width: auto;
        height: 35vh;
        transform: rotate(21deg);
        filter: drop-shadow(24px 26px 25px rgba(0,0,0,0.7));
        animation: float 6s ease-in-out infinite;
    }

@keyframes float {
    0% {
        transform: translateY(0px) rotate(21deg);
    }

    50% {
        transform: translateY(-20px) rotate(45deg);
    }

    100% {
        transform: translateY(0px) rotate(21deg);
    }
}
.pud {
    color: #ffffff !important;
    background: linear-gradient(135deg, #0f2f1f, #1f7a4c) !important;
}

.peri {
    color: #ffffff !important;
    background: linear-gradient(135deg, #2b0f0f, #b71c1c) !important;
}

.pep {
    color: #ffffff !important;
    background: linear-gradient(135deg, #0f2a2a, #00897b) !important;
}

.tang {
    color: #ffffff !important;
    background: linear-gradient(135deg, #2a1a0f, #b75002) !important;
}
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

    .fade-up.show {
        opacity: 1;
        transform: translateY(0);
    }
.flavour-wrapper {
    height: 400vh; /* slides count × 100vh */
}
@media(max-width:768px){
    .flavour-slider h2 {
        font-size: 2rem;
    }
    .flavours {
        display: flex;
        flex-direction: column;
    }
    .left #desc {
        opacity: 1;
        font-size: 1.2rem;
        margin-bottom:0px;
    }
    .flavour-slider {
        height: 100vh;
        padding: 50px 5px 40px;
        box-sizing: border-box;
    }

    .left #tag {
        font-size: 1.5rem;
        padding: 5px 10px;
        border-radius: 15px;
    }
    .left h3 {
        font-size: 4rem;
        color: #f7f0c6;
        letter-spacing: -1px;
    }
    .right img:nth-child(1) {
        width: auto;
        height: 40vh;
    }
    .right img:nth-child(2) {
        width: auto;
        height: 20vh;
    }
}


/*video section*/

.video-section {
    width: 100%;
    overflow: hidden;
    background: #8f15a7;
    padding: 80px 0px;
}

.videoflex {
    display: flex;
    width: max-content; /* critical */
    animation: videoscroll 18s linear infinite;
}

    .videoflex:hover {
        animation-play-state: paused;
    }

@keyframes videoscroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.videoflex video {
    width: clamp(180px, 17vw, 300px);
    flex-shrink: 0;
    border-radius: 12px;
    margin-right: 1rem;
}


/*Brand-swipe section*/
.brand-sec {
    width: 100%;
    overflow: hidden;
    padding: 100px 0px 150px;
    position: relative;
}
.brand-wrapper1 {
    background: #661793;
    padding: 20px 0px;
    transform: rotateZ(7deg);
    width: 150%;
    margin-left: -25%;
}
.brand-wrapper2 {
    background: #931773;
    padding: 20px 0px;
    transform: rotateZ(-8deg);
    width: 150%;
    margin-left: -25%;
}
.brand-text {
    display: flex;
    align-items: center;
    width: max-content;
    animation: brandscroll 10s linear infinite;
}
.brand-text h3{
 font-size:5rem;
 padding-left: 2rem;
}
.brand-images {
    display: flex;
    align-items: center;
    width: max-content; 
    animation: brandscroll 15s linear infinite;
}
.brand-images img {
   width: clamp(150px, 18vw, 280px);  
   margin-right: 5rem;
}
.brand-images:hover {
    animation-play-state: paused;
}

@keyframes brandscroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
@media(max-width:768px){
    .brand-images img {
        width: clamp(100px, 18vw, 280px);
        margin-right: 3rem;
    }
    .brand-sec {
        width: 100%;
        overflow: hidden;
        padding: 50px 0px 100px;
        position: relative;
    }
    .brand-text h3 {
        font-size: 2rem;
        padding-left: 2rem;
    }
}

/*features section*/
.features-sec{
    padding:0px 0px 80PX;
}
.features {
    display: flex;
    align-items: center;
}
.middle-feature {
    flex: 0 0 clamp(250px, 27vw, 500px);
    z-index: 2;
    transition: transform 0.5s ease;
}

.left-features .feature {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.left-features .content {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: white;
    background: #ffffff2b;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddddddb0;
}
.left-features .content:hover {
    background: transparent;

}
.right-features .content:hover {
    background: transparent;

}

.left-features .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}
.right-features .feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.right-features .content {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: white;
    background: #ffffff2b;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddddddb0;
}

.right-features .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}
.left-features,
.right-features {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 400px; 
}
.left-features {
    flex: 1;
    margin-top: -90px;
}
.right-features {
    flex: 1;
}

    .middle-feature:hover {
        transform: scale(1.02);
    }

    .middle-feature img {
        width: 100%;
        height: auto;
    }

/* Feature Containers */
.left-features, .right-features {
    display: flex;
    flex-direction: column;
    gap: 60px;
    flex: 1;
}

.feature {
    display: flex;
    align-items: center;
    position: relative;
    transition: 0.3s ease;
}


.feature:hover .content {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* This tilts the features to point inward toward the pouch center */
.left-features .feature:nth-child(1) {
    transform: translateY(20px) rotate(6deg);
}

.left-features .feature:nth-child(3) {
    transform: translateY(-20px) rotate(-6deg);
}

.right-features .feature:nth-child(1) {
    transform: translateY(20px) rotate(-6deg);
}

.right-features .feature:nth-child(3) {
    transform: translateY(-20px) rotate(6deg);
}

/* Icons */
.content i {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
    opacity: 0.8;
}

/* 2. THE BOX GLOW (Glassmorphism) */
.left-features .content, .right-features .content {
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(15px); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.05); 
    transition: all 0.4s ease;
}
.feather {
    width: 27px;
    height: 27px;
    stroke: #fff;
    stroke-width: 1.5;
}

/* Mobile View */
@media (max-width:767px) {

    .features-sec {
        padding: 50px 0;
    }

    .features {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .left-features,
    .right-features {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .middle-feature {
        text-align: center;
    }

        .middle-feature img {
            width: 75%;
            max-width: 260px;
            height: auto;
        }

    .feature {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

        .feature .line {
            display: none;
        }

        .feature .content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 16px;
            text-align: center;
        }

            .feature .content i,
            .feature .content svg {
                width: 22px;
                height: 22px;
                flex-shrink: 0;
            }
}
   
/*ctc section*/
.product-sec {
    padding: 60px 0px;
    background: #000;
   
}
.product-sec h2{
    text-align: center;
    font-weight: 500;
    margin-bottom: 4rem;
    font-family: 'poppins', sans-serif;
    font-size: 2.5rem;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.product {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #111111;
    border-radius: 15px;
    
}
.product img {
    margin-bottom: 10px;
    border: 1px solid #504f4f;
    border-radius: 5px;
    margin-bottom:10px;
    padding:0px 20px;
}
.product-text {
    text-align: start;
    line-height: 1.6;
    padding: 15px;
}
.product-text p{
    color:darkorange;
    font-size:1.3rem;
    padding:3px;
    margin-top: 5px;
}
.product-text .text-secondary{ 
    font-size:0.9rem;
}
.product-text h6{
    display:inline-block;
    color:#fff;
    padding:4px 7px;
    border-radius:5px;
    font-size:0.9rem;
    margin-bottom:0;
   
}
.product-text p, .product-text h5{
    margin-bottom:0;
}
.cart {
    background: #111;
    color: #fff;
    border: 1px solid #ffffff73;
    padding: 7px 15px;
    border-radius: 5px;
    margin: 10px 0px;
}
.review {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;    
    margin: 10px 0px;
    color: #fff;
}
.product-text .weight {
    color: white;
    padding: 3px 10px;
    border-radius: 5px;
    border: 1px solid #ffffff73;
    font-size: 0.9rem;
    text-align: start;
}
.product-text .cart:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
   
}
.prize span{
    font-size:1.1rem;
}
@media(max-width:768px){
    .product-sec {
        padding: 20px 0px;
    }
    .product-sec h4 {
        text-align: center;
        font-weight: 500;
        margin-bottom: 4rem;
        font-family: 'poppins', sans-serif;
        font-size: 2rem;
    }
    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    .product img {
        margin-bottom: 10px;
        border: 1px solid #504f4f;
        border-radius: 5px;
        margin-bottom: 0px;
        padding: 0px 10px;
    }
    .product-text {
        text-align: start;
        line-height: 1;
        padding: 10px;
    }
    .product-text h4{
        font-size:1rem;
    }
}


/*Offer Section*/
.offer-sec{
    padding:60px 0px;
    
}
.offer-text {
    background: #000;
    position: relative;
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    overflow: hidden;
}
.offer-text h3{
    margin:5px 0px;
    color:#dad9d9;
    font-family: 'Open Sans', sans-serif;
}
.offer-text p{
    margin-bottom:0px;
    color:#dad9d9;
}
.offer-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 20%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgb(255 255 255 / 20%), transparent);
  transform: skewX(-25deg);
  animation: shine 4s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 150%;
    }
}
@media(max-width:768px){
    .offer-sec {
        padding: 20px 0px;
    }
    .offer-text h3 {
        margin: 5px 0px;
        color: #dad9d9;
        font-family: 'Open Sans', sans-serif;
        font-size:20px;
    }

    .offer-text p {
        margin-bottom: 0px;
        color: #dad9d9;
        font-size:15px;
    }
}


/* Testimonial Section */
.testimonial-sec {
    padding: 80px 0;
    background: #000;
    color: #fff;
    position: relative;
}

.testimonial-sec h2 {
    text-align: center;
    font-weight: 500;
    margin-bottom: 4rem;
    font-family: 'poppins', sans-serif;
    font-size: 2.5rem;
}

/* track */
.testimonials {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}
.testimonial-wrapper{
    overflow:hidden;
}
/* card */
.testimonial-item {
    flex: 0 0 calc((100% - 20px) / 2);
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    transition: 0.3s;
}

    /* hover */
    .testimonial-item:hover {
        transform: translateY(-5px);
    }

/* user */
.user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

    .user-img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display:inline-block
    }

.testimonial-item span {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0px 10px;
}

/* text */
.testimonial-item p {
    font-size: 1.3rem;
    line-height: 1.4;
    color: #ccc;
}

.nav {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #4040409e;
    color: #fff;
    border: 1px solid #726f6f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 1000;
}

/* position inside */
.prev {
    left: 3%;
}

.next {
    right: 3%;
}

/* hover */
.nav:hover {
    background: rgb(32 32 32 / 63%);
    color: #fff;
}
@media(max-width:768px){
    .testimonial-item {
        flex: 0 0 100%;
    }
    .testimonial-sec h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .testimonial-item {
        flex: 0 0 calc((100%) / 1);
        background: #111;
        border: 1px solid #222;
        border-radius: 10px;
        padding: 20px;
        box-sizing: border-box;
        transition: 0.3s;
    }
}

/*Thanks Section*/
.thanks-sec {
    padding: 40px 0 80px;
    background: #000;
    text-align: center;
}
.thanks-text span {
    display: inline-block;
    font-size: 8rem;
    font-family:open sans;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
    color: #282828;
}
@media(max-width:768px){
    .thanks-text span {
        display: inline-block;
        font-size: 5rem;
        font-family: open sans;
        font-weight: 500;
        transition: color 0.3s ease;
        cursor: pointer;
        color: #282828;
    }
}
/*Footer section*/
.footer-sec{
    padding:60px 0px 10px;
}
.footer-sec .row{
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    max-width: 100%;
    margin:auto;
}
.ourmsg {
    color: #ddd;
    font-size: 1.2rem;
    font-family: open sans;
    line-height: 1.6;
}
.list ul {
    color: #aaaaaa;
    list-style: none;
    padding-left: 0;
    line-height: 2;
    cursor:pointer;
}
.list ul li:hover {
    color: #fff;
    transition: color 0.3s ease;
}
.logo-footer img{
    width:8vw;
    height:auto;
    margin-bottom:10px;
}
.subscribe .email-input {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    width: 250px;
    margin-top:10px
}
.subscribe .sub-btn {
    padding: 10px;
    margin-top:10px;
    border: none;
    border-radius: 0px 5px 5px 0px;
    max-width: 100%;
    background: red;
    color: #fff;
}
.subscribe .sub-btn:hover {
    background: #cf0101;
    color: #fff;
    transition: all 0.3s ease;
}
hr {
    margin: 1rem 0;
    color: #ddd;
    border: 0;
    border-top: 2px solid;
    opacity: 0.25;
}
.brand-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.brand-link:hover {
    color: #fff;
}
.social-icons {
    margin-top: 20px;
}
.social-icons a {
    color: #fff;
    font-size: 25px;
    margin-right: 15px;
    transition: 0.3s;
}

.social-icons a:hover {
    opacity: 0.8;
}
@media(max-width:768px){
    .footer-sec {
        padding: 30px 0px 10px;
    }
    .logo-footer img {
        width: 120px;
        height: auto;
        margin-bottom: 16px;
    }
    .footer-sec .row {
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        max-width: 100%;
        margin: auto;
        --bs-gutter-x: 0.5rem;
    }
    .subscribe .email-input {
        padding: 10px;
        border: none;
        border-radius: 5px 0 0 5px;
        width: 200px;
        margin-top: 10px;
    }
}

/*Subscribe- sec*/
.subscribe-sec {
    padding: 90px 0;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url("/images/subimg.png") no-repeat center/cover;
  
}
.subscribe-sec h2 {
    text-align: center;
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: 'poppins', sans-serif;
    font-size: 2.5rem;
}
.subbtn{
    background:red;
    color:#fff;
    padding:10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.subbtn:hover {
     background: #cf0101;
    color: #fff;
    transition: all 0.3s ease;
}
@media(max-width:768px){
    .subscribe-sec {
        padding: 0px 0;
    }
    .subscribe-sec h2 {
        text-align: center;
        font-weight: 500;
        margin-bottom: 1rem;
        font-family: 'poppins', sans-serif;
        font-size: 1.7rem;
    }
        .subscribe-sec p {
            font-size: 0.9rem;
            max-width: 70%;
            margin: 0px auto 10px;
        }
    .subscribe-sec {
        padding: 10px 0;
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(/images/subimg.png) no-repeat center / contain;
    }
}

/*About Page*/
.dark{
    background:#000;
}
.bread {
    padding: 9rem 0px;
    background: #000;
    border: 1px solid #00ff45;
    border-radius: 80px;
}
.bread .content h2 {
    text-align: center;
    width: 100%;
    font-size: 6rem;
    font-weight: 500;
    text-transform: uppercase;
}
.about {
    display: flex;
    align-items: center;
}
.about h2 {
    font-size:2.5rem;
    font-weight:600
}
.about p{
    color: #fff;
    font-size: 1.2rem;
    font-family: open sans;
    line-height: 1.6;
    font-weight: 600;
}
@media(max-width:768px){
    .bread .content h2 {
        text-align: center;
        width: 100%;
        font-size: 4.5rem;
        font-weight: 500;
        text-transform: uppercase;
    }
}

/*Shop Page*/
.shop-sec{
    padding:60px 0px;
}

/*Product Page*/
.product-section{
    padding: 7rem 0;
}
.product-left img {
    border: 1px solid #504f4f;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 0px;
    height: 100vh;
    width: 100%;
    object-fit: cover;
    position: sticky;
    top: 0;
}
.product-right {
    padding: 20px 30px;
}

.product-right h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-right .review h6 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.product-right .review span {
    font-size: 0.9rem;
}

.product-right .price {
    font-size: 1.2rem;
}

.product-right .price strong {
    font-size: 1.9rem;
    font-weight: 600;
    color: darkorange;
}

.product-right .price del {
    font-size: 1.1rem;
}
.product-right .weight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color:#fff;
}
.weight {
    display: flex;
    align-items: center;
    gap: 15px;
}

.weight p {
    color: #ccc;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.custom-select {
    position: relative;
    max-width: 240px;
}

.selected-option {
    border: 1px solid #555;
    border-radius: 30px;
    padding: 10px 18px;
    color: #fff;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: transparent;
}

.dropdown-options {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;

    background: #111;
    border: 1px solid #333;
    border-radius: 18px;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: 0.3s ease;

    z-index: 999;
}

.dropdown-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-options div {
    padding: 12px 18px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.dropdown-options div:hover {
    background: #1f1f1f;
}

.dropdown-icon {
    width: 18px;
    height: 18px;
    color: #aaa;
}

.product-right .description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

.product-right p {
    font-size: 1rem;
    font-weight: 500;
    color:#ccc;
    margin-bottom: 0px;
}

.product-right ul {
    padding-left: 18px;
    margin: 0;
}

.product-right ul li {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #444;
}

.product-right .actions {
    display:flex;
    gap:20px;

}
.actions button, .actions .cart {
    flex: 1;
}

.product-right .buynow {
    background: #bc0000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    margin: 10px 0px;
    font-size: 1.2rem;
    border: none;
}

.product-right .cart {
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 10px;
}

.nutrition-section {
  background: #000;
  padding: 40px 20px 0px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.nutrition-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* table */
.nutrition-table {
  width: 100%;
  max-width: 800px;
  margin: auto;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
}

/* header */

.nutrition-table th {
  padding: 10px;
  text-align: left;
  font-weight: 500;
  color: #ff4d4d;
    border-bottom: 1px solid #4d4d4d;
}

/* body */
.nutrition-table td {
  padding: 10px;
  border-bottom: 1px solid #4d4d4d;
  color: #ccc;
}

/* responsive */
@media (max-width: 768px) {
  .nutrition-table th,
  .nutrition-table td {
    font-size: 14px;
    padding: 10px;
  }
    .product-section {
        padding: 2rem 0;
    }
    .product-left img {
        border: 1px solid #504f4f;
        border-radius: 5px;
        margin-bottom: 10px;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .product-right {
        padding: 15px 20px;
    }
    .nutrition-section {
        background: #000;
        padding: 30px 0px 0px;
        color: #fff;
        font-family: 'Poppins', sans-serif;
    }
}

.highlights {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.highlight svg {
  width: 40px;
  height: 40px;
  color: #fff;
  margin-bottom: 8px;
  border:1px solid #fff;
  border-radius:30px;
  padding:7px;
}

.highlight p {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.qty {
  display: flex;
  align-items: center;
  gap: 20px;
  margin:10px 0px;
 
}

.qty button {
    width: 30px;
    height: 30px;

    border: 1px solid #fff;
    border-radius: 50%;
    background: transparent;
    color: #fff;

    padding-bottom: 5px;
    font-size: 1.3rem;
    line-height: 0;
}

.qty span {
  font-weight: bold;
  color:#fff;
}

/*Cart Page*/
.cart-drawer {
    position: fixed;
    top: 0;
    right: -42%; /* hidden */
    width: 40%;
    height: 100dvh;
    background: #000;
    color: #fff;
    z-index: 9999;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .cart-drawer.active {
        right: 0;
    }

/* Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9998;
}

    .cart-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.cart-header {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #222;
}

.close-cart {
    cursor: pointer;
}

#updCartBody {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height:0;
}

    #updCartBody > div {
        display: flex;
        flex-direction: column;
        
    }

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding:0px 15px;
}

.cart-footer {
    padding: 0px 15px 10px;
    border-top: 1px solid #222;  
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: #e60023;
    border: none;
    color: #fff;
    cursor: pointer;
	border-radius:5px;
}
.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding: 15px 0px;
}

.cart-img img {
    width: 70px;
    border-radius: 8px;
}

.cart-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cart-details h4 {
    font-size: 15px;
    margin-bottom: 5px;
}

.cart-prices {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.new-price {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.old-price {
    color: #777;
    text-decoration: line-through;
    font-size: 0.9rem;
}
.cart-weight {
    color: #929292;
    margin-bottom: 3px;
}

.cart-qty {
    color: #888;
    font-size: 14px;
}
.cart-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.cart-controls a {
    text-decoration: none;
    color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: 0.3s;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.delete-item {
    color: #ff4d4d !important;
    border: none !important;
    /*    margin: auto 2% auto auto;*/
    font-size: 1rem;
    transition: 0.3s ease;
}

    .delete-item:hover {
        color: #ff3b3b;
    }

.carttotal {
    padding: 18px 10px;
}

.carttotal .old-total {
    color: #777;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.carttotal.new-total {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.cartrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .cartrow span {
        color: #aaa;
        font-size: 1.2rem;
        font-weight:600;
    }

#lblCartTotal {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}


#lblEmptyCart {
    text-align: center;
    display: block;
    color: #6b6b6b;
    font-size: 1.3rem;
    margin:auto;
}
.item a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* CART NUMBER */

#lblCartCount {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 18px;
    height: 18px;
    background: red;
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media(max-width:768px){
    .cart-drawer {
        width: 100%;
        right: -102%;
    }
}


/*Login Modal*/

.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 99999;
}

    /* ACTIVE */

    .login-modal.active {
        opacity: 1;
        visibility: visible;
    }

/* BOX */

.login-box {
    width: 420px;
    background: #fff;
    border-radius: 10px;
    padding: 30px 30px;
    position: relative;
    text-align: center;
}
.login-box h4 {
        color: #222;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* CLOSE */

.close-login {
    position: absolute;
    top: 18px;
    right: 20px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #000;
}

.back-login {
    position: absolute;
    top: 18px;
    left: 20px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    border:none;
    background:transparent;
}

.back-login:hover {
    color: #333;
}

/* LOGO */

.login-logo {
    margin-bottom: 20px;
}

    .login-logo img {
        width: 100px;
    }

/* INPUT */

.login-input {
    width: 100%;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0 18px;
    outline: none;
    font-size: 1rem;
    margin-bottom: 18px;
}
.iti {
    width: 100%;
    margin-top: 10px;
}


/* BUTTON */

.login-btn {
    width: 100%;
    height: 50px;
    border: none;
    background: #000;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s ease;
}

    .login-btn:hover {
        opacity: 0.9;
    }

/* TEXT */

.login-text {
    margin-top: 18px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* OTP */

.otp-input,
.verify-btn {
    display: none;
}

/* MESSAGE */

#otpMessage {
    margin-top: 15px;
    color: green;
    font-size: 0.95rem;
}

#lblLoginMessage {
    margin-top: 5px;
    display: block;
}

/*Otp loader*/
.spinner {
    width: 15px;
    height: 15px;
    border: 3px solid #333;
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

#loader {
    text-align: center;
    color: white;
    margin-top: 5px;
}
#loader p {
    color: #333;
}

/*Terms Modal */

.terms-text {
    margin-top: 10px;
    font-size: 0.7rem;
    color: #777;
    line-height: 1.5;
}

    .terms-text span {
        color: #222;
        font-weight: 500;
        cursor: pointer;
        text-decoration: underline;
    }

/* MODAL */

.terms-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999999;
}

    /* ACTIVE */

    .terms-modal.active {
        opacity: 1;
        visibility: visible;
    }

/* BOX */

.terms-box {
    width: 520px;
    background: #fff;
    border-radius: 15px;
    position: relative;
    overflow:hidden;
}

.terms-scroll {
    max-height: 80vh;
    overflow-y: auto;
    padding: 35px;
}

/* CLOSE */

.close-terms {
    position: absolute;
    top: 20px;
    right: 25px;
    cursor: pointer;
    font-size: 1.2rem;
}

/* TITLE */

.terms-box h2 {
    margin-bottom: 25px;
    color:#222;
}

/* CONTENT */

.terms-content p {
    color: #444;
    line-height: 1.9;
    margin-bottom: 18px;
}

/*Profile section*/
.profile-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

    .profile-link p {
        margin: 0;
        display: flex;
        flex-direction: column;
        color: #fff;
        line-height: 1.1;
    }


.hey-text {
    font-size: 11px;
}

#<%= lblUserName.ClientID % > {
    font-size: 14px;
    font-weight: 600;
}
.nav-right .item .pro {
    font-size: 24px;
}

/*Profile Section*/

body {
    background: #0f1115;
    font-family: 'Segoe UI',sans-serif;
}

.profile-page {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Headings */

.section-heading {
    color: #fff;
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 600;
}

/* Profile Card */

.profile-card {
    background: #1d1e1f;
    border: 1px solid #2a303c;
    border-radius: 18px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.user-section {
    display: flex;
    align-items: center;
    gap: 18px;
}

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .avatar i {
        color: #0f1115;
        font-size: 28px;
    }

.user-info h3 {
    color: #fff;
    margin-bottom: 5px;
}

.user-info p {
    color: #a7b0c0;
    margin:0;
}

.points-section {
    text-align: right;
    line-height:1.2;
}
.pointh {
    color: #fff;
    margin-bottom: 0px;
}

.points {
    color: #fff;
    font-size: 3rem;
    font-weight: 600;
    margin: 0;
    font-family: inter;
}

.member {
    color: #a7b0c0;
}

/* Order Card */

.order-card {
    background: #1d1e1f;
    border: 1px solid #2a303c;
    border-radius: 18px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    margin-bottom: 35px;
    transition: .3s;
}

    .order-card:hover {
        background: #151515;
    }

.order-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: #232833;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .order-icon i {
        color: #fff;
        font-size: 18px;
    }

.order-content h4 {
    color: #fff;
    margin-bottom: 4px;
}

.order-content p {
    color: #a7b0c0;
    font-size: 14px;
}

.order-arrow {
    color: #a7b0c0;
}
.order-content{
    margin-right:auto;
}

/* Address Section */
.address-card {
    background: #1d1e1f;
    border: 1px solid #2a303c;
    border-radius: 18px;
    padding: 25px;
}

.address-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #2a303c;
}

.address-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #232833;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .address-icon i {
        color: #fff;
    }

.address-content {
    flex: 1;
}

    .address-content h4 {
        color: #fff;
        margin-bottom: 5px;
    }

    .address-content p {
        color: #a7b0c0;
        line-height: 1.5;
    }

.edit-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
}

    .edit-btn:hover {
        background: #fff;
        color: #000;
    }

.add-address-btn {
    margin-top: 20px;
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

/* Logout */

.logout-section {
    text-align: center;
    margin-top: 35px;
}

.logout-btn {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

    .logout-btn i {
        margin-right: 8px;
    }

/* Responsive */

@media(max-width:768px) {

    .profile-card {
        flex-direction: column;
        gap: 20px;
    }

    .points-section {
        text-align: center;
    }

    .address-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .edit-btn {
        width: 100%;
    }
}

/* ==========================================
   CHECKOUT
========================================== */

.checkout-wrapper {
    width: 100%;
    max-width: 1450px;
    margin: 90px auto 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.checkout-left {
    width: 100%;
    max-width: 760px;
}

.checkout-card {
    background: #171717;
    border: 1px solid #2f2f2f;
    border-radius: 18px;
    padding: 15px;
    margin-bottom: 15px;
}

    .checkout-card h2 {
        margin: 0;
        font-size: 20px;
        color: #fff;
        font-weight: 600;
    }

/* ==========================================
   HEADER
========================================== */

.checkout-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .checkout-title a {
        color: #AEB78A;
        text-decoration: none;
        font-size: 12px;
    }

        .checkout-title a:hover {
            color: white;
        }

/* ==========================================
   FORM
========================================== */

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}

    .form-group label {
        color: #bdbdbd;
        margin: 5px 0px;
        font-size: 14px;
    }

.iti .iti__selected-dial-code {
    margin-left: 4px;
    color: #fff;
}

.checkout-input {
    width: 100%;
    height: 45px;
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    color: #fff;
    padding: 0 18px;
    font-size: 15px;
    transition: .25s;
    box-sizing: border-box;
    margin: 10px 0px 0px;
}

    .checkout-input:focus {
        outline: none;
        border-color: #AEB78A;
        box-shadow: 0 0 0 3px rgba(174,183,138,.18);
    }

/* TextArea */

textarea.checkout-input {
    min-height: 120px;
    padding-top: 15px;
    resize: none;
}

/* Dropdown */

select.checkout-input {
    appearance: none;
}

/* ==========================================
   GRID
========================================== */


.half {
    width: 50%;
}

.third {
    width: 33.333%;
}

/* ==========================================
   CHECKBOX
========================================== */

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

    .checkbox-group span {
        color: #d0d0d0;
        font-size: 14px;
    }

    .checkbox-group input {
        width: 14px;
        height: 14px;
        accent-color: #AEB78A;
    }

/* ==========================================
   ADDRESS CARD
========================================== */

.saved-address {
    border: 1px solid #323232;
    border-radius: 15px;
    padding: 22px;
    background: #111;
    margin-bottom: 18px;
    transition: .25s;
}

    .saved-address:hover {
        border-color: #AEB78A;
    }

.saved-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

    .saved-top strong {
        color: white;
        font-size: 17px;
    }

.saved-address p {
    color: #bdbdbd;
    margin: 5px 0;
    line-height: 1.6;
}

.saved-address a {
    color: #d6d6d6;
    text-decoration: none;
    margin-left: 10px;
}

    .saved-address a:hover {
        color: #AEB78A;
    }

.address-type {
    display: flex;
    gap: 12px;
    margin:5px;
}

    .address-type input[type="radio"] {
        display: none;
    }

    .address-type label {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 18px;
        border: 1px solid #2c2c2c;
        border-radius: 12px;
        cursor: pointer;
        background: #121212;
        color: #fff;
        transition: .2s;
        width:100%;
    }

        .address-type label i {
            font-size:18px;
        }

    .address-type input[type="radio"]:checked + label {
        background: #fff;
        color: #111;
        border-color: #fff;
    }

/* ==========================================
   DEFAULT BADGE
========================================== */

.default-badge {
    background: #AEB78A;
    color: #111;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 30px;
    margin-left: 10px;
    font-weight: 600;
}

/* ==========================================
   BUTTON
========================================== */

.btn-outline {
    background: transparent;
    border: 1px solid #AEB78A;
    color: #AEB78A;
    padding: 11px 22px;
    border-radius: 10px;
    cursor: pointer;
    transition: .25s;
    font-size: 15px;
}

    .btn-outline:hover {
        background: #AEB78A;
        color: #111;
    }

/* ==========================================
   RADIO BUTTON
========================================== */

.saved-address input[type=radio] {
    accent-color: #AEB78A;
    margin-right: 10px;
}

/* ==========================================
   PLACE ORDER
========================================== */

.btn-place-order {
    width: 100%;
    height: 60px;
    background: #AEB78A;
    border: none;
    border-radius: 14px;
    color: #111;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

    .btn-place-order:hover {
        transform: translateY(-2px);
        background: #BCC598;
    }

/*=============================
    RIGHT SECTION
==============================*/

.checkout-right {
    width: 420px;
    position: sticky;
    top: 90px;
}

.checkout-summary {
    background: #181818;
    border: 1px solid #2d2d2d;
    border-radius: 18px;
    padding: 25px;
}

    .checkout-summary h2 {
        margin: 0 0 25px;
        color: #fff;
        font-size: 28px;
        font-weight: 600;
    }


/*=============================
    PRODUCT
==============================*/

.summary-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.product-image {
    position: relative;
    width: 75px;
    flex-shrink: 0;
}

    .product-image img {
        width: 75px;
        height: 75px;
        object-fit: contain;
        border-radius: 12px;
        border: 1px solid #333;
        background: #111;
        padding: 6px;
    }

.product-qty {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #AEB78A;
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid #181818;
}

.product-info {
    flex: 1;
}

    .product-info h4 {
        margin: 0;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
    }

    .product-info p {
        margin: 5px 0;
        color: #9f9f9f;
        font-size: 14px;
    }

.product-price {
    text-align: right;
}

    .product-price del {
        display: block;
        color: #9c9999;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .product-price strong {
        color: #fff;
        font-size: 18px;
    }


/*=============================
    COUPON
==============================*/

.coupon-area {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

    .coupon-area .checkout-input {
        flex: 1;
        height: 50px;
        background: #111;
        border: 1px solid #333;
        border-radius: 10px;
        padding: 0 15px;
        color: #fff;
        font-size: 15px;
        margin-top:0;
    }

        .coupon-area .checkout-input:focus {
            outline: none;
            border-color: #AEB78A;
        }

.btn-coupon {
    width: 90px;
    border: none;
    border-radius: 10px;
    background: #AEB78A;
    color: #111;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
}

    .btn-coupon:hover {
        background: #c2cc9b;
    }


/*=============================
    PRICE DETAILS
==============================*/

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    color: #d8d8d8;
    font-size: 15px;
}

    .price-row span:last-child,
    .price-row label {
        font-weight: 600;
    }


/*=============================
    TOTAL
==============================*/

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

    .total-row span {
        font-size: 22px;
        font-weight: 700;
        color: #fff;
    }

    .total-row label {
        font-size: 26px;
        font-weight: 700;
        color: #AEB78A;
    }


/*=============================
    PLACE ORDER
==============================*/

.btn-place-order {
    width: 100%;
    height: 56px;
    margin-top: 30px;
    border: none;
    border-radius: 12px;
    background: #AEB78A;
    color: #111;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

    .btn-place-order:hover {
        background: #bcc598;
    }

/* Payment */

.payment-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 10px;
    background: #121212;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    cursor: pointer;
    transition: .25s;
}

    .payment-item:hover {
        border-color: #B8C18C;
    }

    .payment-item input[type="radio"] {
        accent-color: #B8C18C;
        width: 18px;
        height: 18px;
        margin: 0;
    }

.payment-info {
    display: flex;
    flex-direction: column;
}

.payment-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.payment-subtitle {
    margin-top: 4px;
    color: #8e8e8e;
    font-size: 13px;
}

.payment-note {
    margin-top: 4px;
    color: #B8C18C;
    font-size: 12px;
    font-weight: 500;
}
.payment-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

    .payment-icons img {
        height: 35px;
        width: 50px;
        padding: 0px 5px;
        border-radius: 6px;
    }
    .payment-icons .netbank {
        width: 45px;
        height: 23px;
    }
/*=============================
    MOBILE
==============================*/
@media(max-width:991px) {

    .checkout-right {
        width: 100%;
        position: static;
        margin-top: 30px;
    }

    .checkout-summary {
        padding: 22px;
    }

    .summary-item {
        gap: 12px;
    }

    .product-image {
        width: 65px;
    }

        .product-image img {
            width: 65px;
            height: 65px;
        }
}


@media(max-width:992px) {

    .checkout-wrapper {
        width: 100%;
        max-width: 1450px;
        margin: 30px auto 20px;
        display: flex;
        gap: 30px;
        align-items: flex-start;
        flex-direction:column
    }

    .checkout-left {
        max-width: 100%;
    }
    .address-type label {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 13px;
        border: 1px solid #2c2c2c;
        border-radius: 12px;
        cursor: pointer;
        background: #121212;
        color: #fff;
        transition: .2s;
    }
}

@media(max-width:768px) {

    .half,
    .third {
        width: 100%;
    }

    .checkout-card {
        padding: 12px;
    }

    .checkout-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .saved-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .payment-icons {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-top: 5px;
    }
    .payment-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 10px;
        background: #121212;
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 14px;
        cursor: pointer;
        transition: .25s;
    }
}

/*Success Page*/
.success-page {
    min-height: 100vh;
    background: #0f0f0f;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-family: 'Poppins',sans-serif;
}

.success-card {
    width: 100%;
    max-width: 500px;
    background: #181818;
    border: 1px solid #2b2b2b;
    border-radius: 18px;
    padding: 45px 35px;
    text-align: center;
}

.success-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #1B473A;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: #fff;
}

.success-card h1 {
    color: #fff;
    margin: 25px 0 12px;
    font-size: 30px;
}

.success-card p {
    color: #bdbdbd;
    line-height: 1.8;
    margin-bottom: 30px;
}

.order-box {
    background: #111;
    border: 1px solid #2b2b2b;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    margin-bottom: 30px;
}

    .order-box div {
        display: flex;
        justify-content: space-between;
        margin-bottom: 14px;
    }

        .order-box div:last-child {
            margin-bottom: 0;
        }

    .order-box span {
        color: #999;
    }

    .order-box strong {
        color: #fff;
    }

.btn-shop {
    display: inline-block;
    background: #1B473A;
    color: #fff;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

    .btn-shop:hover {
        background: #245847;
    }

    /*Failed page*/
.payment-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    background: #f8f9fa;
    padding: 30px;
}

.payment-card {
    background: white;
    width: 520px;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.failed-icon {
    width: 90px;
    height: 90px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    margin: auto;
    font-size: 45px;
    line-height: 90px;
    margin-bottom: 20px;
}

.payment-card h2 {
    color: #dc3545;
    margin-bottom: 15px;
}

.message {
    color: #666;
    margin-bottom: 20px;
}

.order-text {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary {
    background: #dc3545;
    color: white;
}

    .btn-primary:hover {
        background: #c82333;
    }

.btn-secondary {
    background: #f1f1f1;
    color: #333;
}

    .btn-secondary:hover {
        background: #ddd;
    }