/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */

body {
    background: #FFFDF9;
    font-family: 'Figtree', sans-serif;
    color: #333;
}


/* HEADER */

.header {

    width: 100%;
    background: #FFFDF9;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 30px 0;
}

.logo {
    height: 120px;
}


/* HERO */

.hero {

    position: relative;
    width: 100%;
    height: 640px;

    display: flex;
    align-items: flex-end;
    /* pushes content down */

    justify-content: center;

    padding-bottom: 90px;
    /* distance from bottom */

    text-align: center;

    overflow: hidden;

}

/* VIDEO */

.hero-video {

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;

}


/* GRADIENT OVERLAY */

.hero-gradient {

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.2) 31%,
            rgba(0, 0, 0, 0) 60%);

    z-index: 2;

}


/* CONTENT */

.hero-content {

    position: relative;
    z-index: 3;

    max-width: 520px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;

}


/* TEXT */

.hero-text {

    font-family: 'Figtree', sans-serif;

    font-weight: 600;
    font-size: 24px;
    line-height: 34px;

    color: #ffffff;

}


/* BUTTON */

.hero-btn {

    background: #EE7EA5;
    color: white;

    border: none;

    padding: 14px 28px;

    border-radius: 30px;

    font-family: 'Figtree';
    font-weight: 600;
    font-size: 14px;

    letter-spacing: 0.5px;

    cursor: pointer;

    transition: 0.2s;

}

.hero-btn:hover {

    transform: translateY(-2px);

}


/* PRODUCTS SECTION */

.products {

    padding: 100px 70px;
    background: #FFFDF9;

}


/* GRID */

.products-grid {

    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;

}


/* CARD */

.product-card {

    display: flex;
    flex-direction: column;

}


/* CHAPTER */

.chapter {

    font-family: 'Figtree';
    font-size: 14px;
    color: #EE7EA5;

    text-align: center;
    margin-bottom: 8px;

}


/* TITLE */

.title {

    font-family: 'Libre Caslon Text', serif;
    font-size: 28px;

    text-align: center;

    margin-bottom: 25px;

}


/* IMAGE */

.image-box {

    position: relative;

}

.image-box img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;

    height: 316px;

    object-fit: cover;

    border-radius: 28px;

}

.product-card:hover .image-box img {
    transform: scale(1.06);
}


/* PRICE BADGE */

.price {

    position: absolute;

    right: 20px;
    bottom: 20px;

    background: #78C9C4;

    color: white;

    padding: 10px 20px;

    border-radius: 25px;

    font-size: 14px;
    font-family: 'Figtree';

}


/* QUOTE */

.quote {

    font-family: 'Figtree';
    font-weight: 500;

    font-size: 18px;

    text-align: center;

    margin: 25px 0;

    color: #444;

}


/* DETAIL BLOCK */

.detail {

    margin-bottom: 30px;

}


/* PARAGRAPH */

.detail-text {

    border-left: 3px solid #EE7EA5;

    padding-left: 15px;

    font-family: 'Figtree';

    font-size: 14px;

    line-height: 1.8;

    font-style: italic;

    color: #666;

}

.detail-text p {

    margin-bottom: 12px;

}


/* TAGS */

.tags {

    display: flex;
    gap: 30px;

    margin-top: 15px;

    font-size: 13px;

    font-family: 'Figtree';

    font-weight: 600;

    color: #555;

}


/* BUTTON */

.btn {

    margin-top: auto;

    width: 100%;

    background: #78C9C4;

    color: white;

    border: none;

    padding: 18px;

    border-radius: 40px;

    font-family: 'Figtree';

    font-weight: 600;

    letter-spacing: 1px;

    cursor: pointer;

    box-shadow: 0 9px 8px rgba(0, 0, 0, 0.05);

}

.btn:hover {

    opacity: 0.9;

}

/* CONNECT SECTION */

.connect-section {

    background: #555555;

    padding: 70px 20px;

    text-align: center;

    color: white;

}


/* TITLE */

.connect-section h3 {

    font-family: 'Libre Caslon Text', serif;

    font-size: 22px;

    margin-bottom: 30px;

}


/* BUTTON ROW */

.connect-buttons {

    display: flex;

    justify-content: center;

    gap: 25px;

    flex-wrap: wrap;

}


/* BUTTON */

.connect-btn {

    display: flex;

    align-items: center;

    gap: 10px;

    background: #F4F1EC;

    color: #333;

    padding: 14px 30px;

    border-radius: 30px;

    text-decoration: none;

    font-family: 'Figtree';

    font-size: 14px;

    font-weight: 500;

    transition: 0.2s;

}


/* HOVER */

.connect-btn:hover {

    transform: translateY(-2px);

}


/* COPYRIGHT */

.copyright {

    background: #F4F1EC;

    text-align: center;

    padding: 30px 20px;

    font-family: 'Figtree';

    font-size: 13px;

    color: #777;

}

.copyright p {

    margin: 5px 0;

}

/* DRAWER OVERLAY */

.drawer-overlay {

    position: fixed;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.4);

    display: flex;
    justify-content: center;
    align-items: flex-end;

    opacity: 0;
    pointer-events: none;

    transition: 0.3s;

    z-index: 1000;

}

/* ACTIVE */

.drawer-overlay.active {

    opacity: 1;
    pointer-events: auto;

}


/* DRAWER */

.drawer {

    background: #FFFDF9;

    width: 100%;
    max-width: 520px;

    border-radius: 28px 28px 0 0;

    padding: 28px;

    transform: translateY(100%);
    transition: 0.3s;

}

/* OPEN */

.drawer-overlay.active .drawer {

    transform: translateY(0);

}


/* HEADER */

.drawer-header {

    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 20px;

}

.drawer-header h3 {

    font-family: 'Figtree';
    font-weight: 600;
    font-size: 22px;

    color: #78C9C4;

}

.close-drawer {

    cursor: pointer;
    font-size: 22px;

}


/* SECTION TITLE */

.drawer-section-title {

    font-family: 'Figtree';
    font-weight: 600;

    font-size: 16px;

    color: #EE7EA5;

    margin-top: 15px;
    margin-bottom: 10px;

}


/* FLAVOR BUTTONS */

.flavor-options {

    display: flex;
    gap: 12px;

    margin-bottom: 20px;

}

.flavor-btn {

    padding: 10px 18px;

    border-radius: 8px;

    border: 2px solid #78C9C4;

    background: transparent;

    color: #78C9C4;

    cursor: pointer;

    font-family: 'Figtree';

}

.flavor-btn.active {

    background: #78C9C4;
    color: white;

}


/* QUANTITY */

.qty-row {

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;

}

.qty-control {

    display: flex;
    align-items: center;
    gap: 12px;

}

.qty-control button {

    width: 36px;
    height: 36px;

    border: 2px solid #78C9C4;

    background: transparent;

    border-radius: 6px;

    color: #78C9C4;

    cursor: pointer;

}

.drawer-price {

    font-weight: 600;

}


/* REVIEW BUTTON */

.review-btn {

    width: 100%;

    background: #78C9C4;

    border: none;

    padding: 18px;

    border-radius: 40px;

    color: white;

    font-size: 18px;

    font-weight: 600;

    cursor: pointer;

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

}

.remove-icon {
    display: none;
    margin-left: 8px;
    font-size: 12px;
}

.flavor-btn.active .remove-icon {
    display: inline;
}

.flavor-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.floating-pay-btn {

    position: fixed;

    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);

    width: calc(100% - 40px);
    max-width: 380px;

    padding: 18px;

    background: linear-gradient(135deg, #78C9C4, #5aa9a4);
    color: white;

    font-size: 18px;
    font-weight: 600;

    border: none;
    border-radius: 40px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);

    z-index: 2000;

    cursor: pointer;

}



.checkout-overlay {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.5);

    display: none;

    justify-content: center;
    align-items: flex-end;

    z-index: 999;

}

.checkout-overlay.active {
    display: flex;
}

.checkout-drawer {

    width: 420px;
    max-height: 90vh;

    background: #F4F1EC;

    border-radius: 30px 30px 0 0;

    padding: 25px;
    padding-bottom: 100px;

    overflow: auto;

    font-family: 'Figtree';

}

.checkout-header {

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-weight: 600;
    color: #78C9C4;

}

.welcome {

    color: #EE7EA5;
    margin-bottom: 20px;

}

.form-section {

    margin-top: 25px;

}

.form-section h4 {

    font-size: 14px;
    margin-bottom: 10px;

}

.form-section input {

    width: 100%;

    padding: 14px;

    border-radius: 10px;

    border: 1px solid #78C9C4;

    margin-bottom: 10px;

}

.payment-box {

    padding: 20px;

    border: 1px solid #78C9C4;

    border-radius: 12px;

}

.pay-btn {

    margin-top: 20px;

    width: 100%;

    padding: 18px;

    border: none;

    background: #78C9C4;

    color: white;

    border-radius: 30px;

    font-size: 16px;

    cursor: pointer;

}

.qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-size {
    color: #F48FB1;
    font-size: 14px;
    margin-top: 4px;
    font-weight: 500;
}

.image-box {
    position: relative;
}

.veg-badge {
    position: absolute;
    top: 12px;
    right: 12px;

    background: #ffffff40;
    padding: 4px;

    border-radius: 8px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    display: flex;
    align-items: center;
    justify-content: center;
}

.veg-badge svg {
    width: 18px;
    height: 18px;
}

.success-box {
    text-align: center;
    padding: 20px;
}

.success-badge {
    background: #0f8f83;
    color: white;
    padding: 6px 16px;
    border-radius: 25px;
    display: inline-block;
    font-size: 13px;
    margin-bottom: 15px;
}

.success-image {
    width: 100%;
    border-radius: 18px;
    margin: 20px 0;
}

.delivery-card {
    background: #DFF1EF;
    padding: 20px;
    border-radius: 18px;
    margin-top: 15px;
}

.free-text {
    color: #6FB7B2;
    font-size: 13px;
    margin-top: 8px;

}
.success-summary{
    margin-top: 24px;
}
#successTotal{
    margin-top: 8px;
}


#toastContainer{
    position:fixed;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    flex-direction:column;
    gap:10px;
    z-index:5000;
    }
    
    .toast{
    background:#333;
    color:white;
    padding:12px 18px;
    border-radius:25px;
    font-size:14px;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    animation:toastSlide 0.3s ease;
    }
    
    .toast.success{
    background:#0f8f83;
    }
    
    .toast.error{
    background:#e54848;
    }
    
    @keyframes toastSlide{
    from{
    opacity:0;
    transform:translateY(20px);
    }
    to{
    opacity:1;
    transform:translateY(0);
    }
    }
    /* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */

body {
    background: #FFFDF9;
    font-family: 'Figtree', sans-serif;
    color: #333;
}


/* HEADER */

.header {

    width: 100%;
    background: #FFFDF9;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 30px 0;
}

.logo {
    height: 120px;
}


/* HERO */

.hero {

    position: relative;
    width: 100%;
    height: 640px;

    display: flex;
    align-items: flex-end;
    /* pushes content down */

    justify-content: center;

    padding-bottom: 90px;
    /* distance from bottom */

    text-align: center;

    overflow: hidden;

}

/* VIDEO */

.hero-video {

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;

}


/* GRADIENT OVERLAY */

.hero-gradient {

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.2) 31%,
            rgba(0, 0, 0, 0) 60%);

    z-index: 2;

}


/* CONTENT */

.hero-content {

    position: relative;
    z-index: 3;

    max-width: 520px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;

}


/* TEXT */

.hero-text {

    font-family: 'Figtree', sans-serif;

    font-weight: 600;
    font-size: 24px;
    line-height: 34px;

    color: #ffffff;

}


/* BUTTON */

.hero-btn {

    background: #EE7EA5;
    color: white;

    border: none;

    padding: 14px 28px;

    border-radius: 30px;

    font-family: 'Figtree';
    font-weight: 600;
    font-size: 14px;

    letter-spacing: 0.5px;

    cursor: pointer;

    transition: 0.2s;

}

.hero-btn:hover {

    transform: translateY(-2px);

}


/* PRODUCTS SECTION */

.products {

    padding: 100px 70px;
    background: #FFFDF9;

}


/* GRID */

.products-grid {

    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;

}


/* CARD */

.product-card {

    display: flex;
    flex-direction: column;

}


/* CHAPTER */

.chapter {

    font-family: 'Figtree';
    font-size: 14px;
    color: #EE7EA5;

    text-align: center;
    margin-bottom: 8px;

}


/* TITLE */

.title {

    font-family: 'Libre Caslon Text', serif;
    font-size: 28px;

    text-align: center;

    margin-bottom: 25px;

}


/* IMAGE */

.image-box {

    position: relative;

}

.image-box img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;

    height: 316px;

    object-fit: cover;

    border-radius: 28px;

}

.product-card:hover .image-box img {
    transform: scale(1.06);
}


/* PRICE BADGE */

.price {

    position: absolute;

    right: 20px;
    bottom: 20px;

    background: #EE7EA5;

    color: white;

    padding: 10px 20px;

    border-radius: 25px;

    font-size: 18px;
    font-family: 'Figtree';

}


/* QUOTE */

.quote {

    font-family: 'Figtree';
    font-weight: 500;

    font-size: 18px;

    text-align: center;

    margin: 25px 0;

    color: #444;

}


/* DETAIL BLOCK */

.detail {

    margin-bottom: 30px;

}


/* PARAGRAPH */

.detail-text {

    border-left: 3px solid #EE7EA5;

    padding-left: 15px;

    font-family: 'Figtree';

    font-size: 14px;

    line-height: 1.8;

    font-style: italic;

    color: #666;

}

.detail-text p {

    margin-bottom: 12px;

}


/* TAGS */

.tags {

    display: flex;
    gap: 30px;

    margin-top: 15px;

    font-size: 13px;

    font-family: 'Figtree';

    font-weight: 600;

    color: #555;

}


/* BUTTON */

.btn {

    margin-top: auto;

    width: 100%;

    background: #78C9C4;

    color: white;

    border: none;

    padding: 18px;

    border-radius: 40px;

    font-family: 'Figtree';

    font-weight: 600;

    letter-spacing: 1px;

    cursor: pointer;

    box-shadow: 0 9px 8px rgba(0, 0, 0, 0.05);

}

.btn:hover {

    opacity: 0.9;

}

/* CONNECT SECTION */

.connect-section {

    background: #555555;

    padding: 70px 20px;

    text-align: center;

    color: white;

}


/* TITLE */

.connect-section h3 {

    font-family: 'Libre Caslon Text', serif;

    font-size: 22px;

    margin-bottom: 30px;

}


/* BUTTON ROW */

.connect-buttons {

    display: flex;

    justify-content: center;

    gap: 25px;

    flex-wrap: wrap;

}


/* BUTTON */

.connect-btn {

    display: flex;

    align-items: center;

    gap: 10px;

    background: #F4F1EC;

    color: #333;

    padding: 14px 30px;

    border-radius: 30px;

    text-decoration: none;

    font-family: 'Figtree';

    font-size: 14px;

    font-weight: 500;

    transition: 0.2s;

}


/* HOVER */

.connect-btn:hover {

    transform: translateY(-2px);

}


/* COPYRIGHT */

.copyright {

    background: #F4F1EC;

    text-align: center;

    padding: 30px 20px;

    font-family: 'Figtree';

    font-size: 13px;

    color: #777;

}

.copyright p {

    margin: 5px 0;

}

/* DRAWER OVERLAY */

.drawer-overlay {

    position: fixed;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.4);

    display: flex;
    justify-content: center;
    align-items: flex-end;

    opacity: 0;
    pointer-events: none;

    transition: 0.3s;

    z-index: 1000;

}

/* ACTIVE */

.drawer-overlay.active {

    opacity: 1;
    pointer-events: auto;

}


/* DRAWER */

.drawer {

    background: #FFFDF9;

    width: 100%;
    max-width: 520px;

    border-radius: 28px 28px 0 0;

    padding: 28px;

    transform: translateY(100%);
    transition: 0.3s;

}

/* OPEN */

.drawer-overlay.active .drawer {

    transform: translateY(0);

}


/* HEADER */

.drawer-header {

    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 20px;

}

.drawer-header h3 {

    font-family: 'Figtree';
    font-weight: 600;
    font-size: 22px;

    color: #78C9C4;

}

.close-drawer {

    cursor: pointer;
    font-size: 22px;

}


/* SECTION TITLE */

.drawer-section-title {

    font-family: 'Figtree';
    font-weight: 600;

    font-size: 16px;

    color: #EE7EA5;

    margin-top: 15px;
    margin-bottom: 10px;

}


/* FLAVOR BUTTONS */

.flavor-options {

    display: flex;
    gap: 12px;

    margin-bottom: 20px;

}

.flavor-btn {

    padding: 10px 18px;

    border-radius: 8px;

    border: 2px solid #78C9C4;

    background: transparent;

    color: #78C9C4;

    cursor: pointer;

    font-family: 'Figtree';

}

.flavor-btn.active {

    background: #78C9C4;
    color: white;

}


/* QUANTITY */

.qty-row {

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;

}

.qty-control {

    display: flex;
    align-items: center;
    gap: 12px;

}

.qty-control button {

    width: 36px;
    height: 36px;

    border: 2px solid #78C9C4;

    background: transparent;

    border-radius: 6px;

    color: #78C9C4;

    cursor: pointer;

}

.drawer-price {

    font-weight: 600;

}


/* REVIEW BUTTON */

.review-btn {

    width: 100%;

    background: #78C9C4;

    border: none;

    padding: 18px;

    border-radius: 40px;

    color: white;

    font-size: 18px;

    font-weight: 600;

    cursor: pointer;

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

}

.remove-icon {
    display: none;
    margin-left: 8px;
    font-size: 12px;
}

.flavor-btn.active .remove-icon {
    display: inline;
}

.flavor-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.floating-pay-btn {

    position: fixed;

    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);

    width: calc(100% - 40px);
    max-width: 380px;

    padding: 18px;

    background: linear-gradient(135deg, #78C9C4, #5aa9a4);
    color: white;

    font-size: 18px;
    font-weight: 600;

    border: none;
    border-radius: 40px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);

    z-index: 2000;

    cursor: pointer;

}



.checkout-overlay {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.5);

    display: none;

    justify-content: center;
    align-items: flex-end;

    z-index: 999;

}

.checkout-overlay.active {
    display: flex;
}

.checkout-drawer {


    width: 100%;
    max-width: 420px;
    max-height: 90vh;

    background: #F4F1EC;

    border-radius: 30px 30px 0 0;

    padding: 25px;
    padding-bottom: 100px;

    overflow: auto;

    font-family: 'Figtree';

}

.checkout-header {

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-weight: 600;
    color: #78C9C4;

}

.welcome {

    color: #EE7EA5;
    margin-bottom: 20px;

}

.form-section {

    margin-top: 25px;

}

.form-section h4 {

    font-size: 14px;
    margin-bottom: 10px;

}

.form-section input {

    width: 100%;

    padding: 14px;

    border-radius: 10px;

    border: 1px solid #78C9C4;

    margin-bottom: 10px;

}

.payment-box {

    padding: 20px;

    border: 1px solid #78C9C4;

    border-radius: 12px;

}

.pay-btn {

    margin-top: 20px;

    width: 100%;

    padding: 18px;

    border: none;

    background: #78C9C4;

    color: white;

    border-radius: 30px;

    font-size: 16px;

    cursor: pointer;

}

.qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-size {
    color: #F48FB1;
    font-size: 14px;
    margin-top: 4px;
    font-weight: 500;
}

.image-box {
    position: relative;
}

.veg-badge {
    position: absolute;
    top: 12px;
    right: 12px;

    background: #ffffff40;
    padding: 4px;

    border-radius: 8px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    display: flex;
    align-items: center;
    justify-content: center;
}

.veg-badge svg {
    width: 18px;
    height: 18px;
}

.success-box {
    text-align: center;
    padding: 20px;
}

.success-badge {
    background: #0f8f83;
    color: white;
    padding: 6px 16px;
    border-radius: 25px;
    display: inline-block;
    font-size: 13px;
    margin-bottom: 15px;
}

.success-image {
    width: 100%;
    border-radius: 18px;
    margin: 20px 0;
}

.delivery-card {
    background: #DFF1EF;
    padding: 20px;
    border-radius: 18px;
    margin-top: 15px;
}

.free-text {
    color: #6FB7B2;
    font-size: 13px;
    margin-top: 8px;

}
.success-summary{
    margin-top: 24px;
}
#successTotal{
    margin-top: 8px;
}


#toastContainer{
    position:fixed;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    flex-direction:column;
    gap:10px;
    z-index:5000;
    }
    
    .toast{
    background:#333;
    color:white;
    padding:12px 18px;
    border-radius:25px;
    font-size:14px;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    animation:toastSlide 0.3s ease;
    }
    
    .toast.success{
    background:#0f8f83;
    }
    
    .toast.error{
    background:#e54848;
    }
    
    @keyframes toastSlide{
    from{
    opacity:0;
    transform:translateY(20px);
    }
    to{
    opacity:1;
    transform:translateY(0);
    }
    }
    .pincode-popup-overlay{

        position:fixed;
top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.45);

display:none;

justify-content:center;
align-items:flex-start;

padding-top:120px;

z-index:3000;
        
        }
        
        .pincode-popup{

            background:#F4F1EC;
            
            padding:28px;
            
            border-radius:20px;
            
            width:90%;
            max-width:420px;
            
            text-align:center;
            
            font-family:'Figtree';
            
            max-height:80vh;
            overflow:auto;
            
            }
        
        .pincode-popup h3{
        
        color:#6FB7B2;
        margin-bottom:10px;
        
        }
        
        .pincode-list{
        
        margin:15px 0;
        line-height:1.6;
        font-weight:500;
        
        }
        
        .popup-btn{
        
        background:#6FB7B2;
        color:white;
        border:none;
        
        padding:12px 25px;
        border-radius:30px;
        
        cursor:pointer;
        font-weight:600;
        
        }
     
            
            .delivery-areas h4{
            color:#6FB7B2;
            margin-top:10px;
            margin-bottom:5px;
            }
            .delivery-areas h4{

                color:#6FB7B2;
                margin-top:18px;
                margin-bottom:8px;
                font-size:16px;
                
                }
                
                .area-grid{

                    display:grid;
                    
                    grid-template-columns:1fr;
                    
                    gap:10px;
                    
                    margin-bottom:16px;
                    
                    }
                
                    .area-item{

                        display:flex;
                        
                        align-items:center;
                        
                        gap:10px;
                        
                        background:white;
                        
                        padding:10px 14px;
                        
                        border-radius:12px;
                        
                        font-size:14px;
                        
                        box-shadow:0 4px 12px rgba(0,0,0,0.05);
                        
                        }
                
                .pin{
                
                background:#6FB7B2;
                color:white;
                
                padding:4px 8px;
                
                border-radius:6px;
                
                font-size:12px;
                font-weight:600;
                
                }


.delivery-msg {
    background: #FFF3E0;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

.delivery-msg.urgent {
    background: #ffe0e0;
    color: #d32f2f;
    font-weight: 600;
}

.delivery-msg.next-day {
    background: #f0f0f0;
    color: #555;
}
.delivery-msg {
    background: #FFF3E0;
    border: 1px solid #f5d7a1;
    color: #8a5a00;

    padding: 12px 14px;
    border-radius: 12px;

    font-size: 13px;
    font-weight: 500;

    margin: 12px 0 18px 0;

    text-align: center;
}
.back-home-btn {

    width: 100%;

    margin-top: 20px;

    padding: 16px;

    border: none;

    border-radius: 30px;

    background: linear-gradient(135deg, #78C9C4, #5aa9a4);

    color: white;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

}

.back-home-btn:hover {
    opacity: 0.9;
}
.delivery-status {
    margin-top: 10px;
    margin-bottom: 12px;

    font-size: 13px;
    font-weight: 500;

    display: flex;
    align-items: center;
    gap: 6px;
}

.delivery-status.success {
    color: #16a34a;
}

.delivery-status.error {
    color: #dc2626;
}
.delivery-benefits {
    display: flex;
    justify-content: center;
    gap: 12px;

    font-size: 12px;
    color: #666;

    margin-top: 8px;
    flex-wrap: wrap;
}

.delivery-benefits span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.pincode-popup {
    position: relative;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;

    font-size: 18px;
    cursor: pointer;

    color: #666;
}

.popup-close:hover {
    color: #000;
}
/* .section-divider {
    width: 4px;
    height: 60px;
    margin: 20px auto;

    background: linear-gradient(
        to bottom,
        rgba(120, 201, 196, 0),
        rgba(120, 201, 196, 0.8),
        rgba(120, 201, 196, 0)
    );

    border-radius: 10px;
}
.section-divider {
    animation: glow 2s infinite ease-in-out;
}

@keyframes glow {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
} */
/* ============================= */
/* SMALL LAPTOP */
/* ============================= */

@media (max-width:1200px) {

    .products {
        padding: 90px 40px;
    }

    .products-grid {
        gap: 50px;
    }

    .hero-text {
        font-size: 22px;
        line-height: 32px;
    }

}



/* ============================= */
/* TABLET */
/* ============================= */

@media (max-width:1024px) {

    .logo {
        height: 70px;
    }

    .hero {
        height: 580px;
        padding-bottom: 70px;
    }

    .hero-text {
        font-size: 22px;
        line-height: 32px;
        max-width: 460px;
    }

    .products {
        padding: 80px 40px;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .title {
        font-size: 26px;
    }

    .image-box img {
        height: 280px;
    }

    .quote {
        font-size: 17px;
    }

}



/* ============================= */
/* TABLET / LARGE PHONE */
/* ============================= */
@media (min-width: 768px) {
    .section-divider {
        display: none;
    }
}

@media (max-width:768px) {

    .header {
        padding: 20px 0;
    }

    .logo {
        height: 60px;
    }

    /* HERO */

    .hero {
        height: 520px;
        padding-bottom: 60px;
    }

    .hero-text {
        font-size: 20px;
        line-height: 30px;
        max-width: 420px;
    }

    /* PRODUCTS */

    .products {
        padding: 70px 25px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .title {
        font-size: 24px;
    }

    .image-box img {
        height: 260px;
    }

    .quote {
        font-size: 16px;
    }

    /* CONNECT */

    .connect-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .connect-btn {
        width: 260px;
        justify-content: center;
    }

}



/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width:480px) {

    .logo {
        height: 80px;
    }

    /* HERO */

    .hero {
        height: 480px;
        padding-bottom: 50px;
    }

    .hero-text {
        font-size: 18px;
        line-height: 26px;
        max-width: 320px;
    }

    .hero-btn {
        padding: 12px 22px;
        font-size: 13px;
    }

    /* PRODUCTS */

    .products {
        padding: 60px 20px;
    }

    .title {
        font-size: 22px;
    }

    .image-box img {
        height: 220px;
    }

    .quote {
        font-size: 15px;
    }

    .tags {
        gap: 18px;
        flex-wrap: wrap;
    }

    /* BUTTON */

    .btn {
        padding: 16px;
        font-size: 13px;
    }

}
.floating-pay-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

/* ============================= */
/* SMALL LAPTOP */
/* ============================= */

@media (max-width:1200px) {

    .products {
        padding: 90px 40px;
    }

    .products-grid {
        gap: 50px;
    }

    .hero-text {
        font-size: 22px;
        line-height: 32px;
    }

}



/* ============================= */
/* TABLET */
/* ============================= */

@media (max-width:1024px) {

    .logo {
        height: 70px;
    }

    .hero {
        height: 580px;
        padding-bottom: 70px;
    }

    .hero-text {
        font-size: 22px;
        line-height: 32px;
        max-width: 460px;
    }

    .products {
        padding: 80px 40px;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .title {
        font-size: 26px;
    }

    .image-box img {
        height: 280px;
    }

    .quote {
        font-size: 17px;
    }

}



/* ============================= */
/* TABLET / LARGE PHONE */
/* ============================= */

@media (max-width:768px) {

    .header {
        padding: 20px 0;
    }

    .logo {
        height: 60px;
    }

    /* HERO */

    .hero {
        height: 520px;
        padding-bottom: 60px;
    }

    .hero-text {
        font-size: 20px;
        line-height: 30px;
        max-width: 420px;
    }

    /* PRODUCTS */

    .products {
        padding: 70px 25px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .title {
        font-size: 24px;
    }

    .image-box img {
        height: 260px;
    }

    .quote {
        font-size: 16px;
    }

    /* CONNECT */

    .connect-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .connect-btn {
        width: 260px;
        justify-content: center;
    }

}



/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width:480px) {

    .logo {
        height: 80px;
    }

    /* HERO */

    .hero {
        height: 480px;
        padding-bottom: 50px;
    }

    .hero-text {
        font-size: 18px;
        line-height: 26px;
        max-width: 320px;
    }

    .hero-btn {
        padding: 12px 22px;
        font-size: 13px;
    }

    /* PRODUCTS */

    .products {
        padding: 60px 20px;
    }

    .title {
        font-size: 22px;
    }

    .image-box img {
        height: 220px;
    }

    .quote {
        font-size: 15px;
    }

    .tags {
        gap: 18px;
        flex-wrap: wrap;
    }

    /* BUTTON */

    .btn {
        padding: 16px;
        font-size: 13px;
    }

}
.cart-button {
    position: fixed;
    right: 22px;
    bottom: 92px;
    z-index: 2100;
    min-width: 104px;
    padding: 13px 18px;
    border: none;
    border-radius: 28px;
    background: #333;
    color: white;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.cart-button:disabled { opacity: 0.45; cursor: not-allowed; }
.cart-button.has-items { background: #EE7EA5; }

#cartCount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    margin-left: 6px;
    border-radius: 999px;
    background: white;
    color: #333;
    font-size: 12px;
}

.cart-summary-row {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.cart-summary-image {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    background: #fff;
}

.cart-summary-copy { display: flex; min-width: 0; flex-direction: column; gap: 3px; }
.cart-summary-copy span { font-size: 13px; color: #666; }
.cart-summary-price { font-weight: 600; white-space: nowrap; }

.checkout-delivery-row {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
    padding-top: 12px;
    border-top: 1px solid rgba(120, 201, 196, 0.35);
}

@media (max-width: 480px) {
    .cart-button { right: 14px; bottom: 84px; min-width: 92px; padding: 12px 14px; }
    .cart-summary-row { grid-template-columns: 44px minmax(0, 1fr) auto; }
    .cart-summary-price { grid-column: 2 / 4; justify-self: end; }
}
.success-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
    text-align: left;
}

.success-item-row {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.success-item-row img {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    object-fit: cover;
}

.success-item-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.success-item-copy strong {
    font-size: 14px;
    line-height: 1.25;
}

.success-item-copy span,
.success-product-count {
    color: #666;
    font-size: 13px;
}

.success-item-row > span:last-child {
    font-weight: 700;
    white-space: nowrap;
}