﻿body {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    height: auto;
    width: 100%;
    margin: 0;
}

.addToCart {
    background-color: #FF8806;
    color: white;
    border-radius: 5px;
    width: 100%;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 13px;
    border: 1px solid #ffffff;
    box-shadow: 0 0 0 1px #FF8806;
}

.gridSection {
    background-color: #FFFFFF;
    border-radius: 10px 10px 10px 10px;
    padding: 15px;
    /*    border-bottom: 1px solid #dee2e6;*/
    font-size: 1rem;
}

.pageSection {
    /*    background-color: #EFEFEF;*/
    min-height: 100vh;
    height: auto;
    font-family: 'Poppins', sans-serif;
    padding: 5rem;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

@media (max-width:750px) {
    .pageSection {
        padding: 1rem !important;
    }
}

@media(max-width:400px) {
    .yf-text {
        font-size: 10px;
    }
}

.login-btn {
    background-color: #0051B7;
    color: white;
    border-radius: 5px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 13px;
    border: 1px solid #ffffff;
    box-shadow: 0 0 0 1px #0051B7;
}

.address-btn {
    background-color: #0051B7;
    color: white;
    border-radius: 5px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 13px;
    border: 1px solid #ffffff;
    box-shadow: 0 0 0 1px #0051B7;
}

.otp-input {
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.orders-grid {
    column-count: 4;
    column-gap: 15px;
}

.order-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.search-wrapper {
    position: relative;
    background: #ff8c00; /* orange background */
    padding: 6px;
    border-radius: 30px;
    width: 380px; /* adjust width */
}

.search-input {
    width: 100%;
    height: 42px;
    border-radius: 25px;
    border: none;
    padding: 0 45px 0 20px;
    font-size: 15px;
    outline: none;
}

    .search-input::placeholder {
        color: #999;
    }

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    cursor: pointer;
    font-size: 18px;
}

.category-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-cancel {
    background-color: #FF8806;
    color: white;
    border-radius: 5px;
    /*    width: 150px;*/
    max-height: max-content;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 13px;
    border: 1px solid #ffffff;
    box-shadow: 0 0 0 1px #FF8806;
}

.btn-update {
    background-color: #0051B7;
    color: white;
    border-radius: 5px;
    /*    width: 150px;*/
    max-height: max-content;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 13px;
    border: 1px solid #ffffff;
    box-shadow: 0 0 0 1px #0051B7;
}

.category-item {
    flex: 0 0 auto;
    width: 170px;
}

.order-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
    gap: 16px;
}

@media (max-width: 768px) {
    .order-masonry {
        grid-template-columns: 1fr;
    }
}

.productSoldOutCard {
    /*    filter:opacity(0.5);*/
}

.productSoldOut {
    pointer-events: none;
}
/*FAQs*/
.faq-container {
    max-width: 1000px;
    margin: 30px auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

    .faq-question h4 {
        margin: 0;
        font-size: 16px;
        font-weight: normal;
    }

.faq-toggle {
    font-size: 22px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 28px;
    border: 1px solid #333;
    border-radius: 50%;
    user-select: none;
    color: red;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: #555;
    line-height: 1.6;
    white-space: pre-line;
    font-size: 14px;
}

.faq-item.active .faq-answer {
    display: block;
}

.nav-btn {
    border: none;
    background: #f2f2f2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

    .nav-btn:hover {
        background: #ddd;
    }


@media (max-width:1200px) {
    .orders-grid {
        column-count: 2;
    }
}

@media (max-width:768px) {
    .orders-grid {
        column-count: 1;
    }
}

.mobile-category-menu {
    gap: 10px;
    padding: 5px 10px;
}

.mobile-cat-btn {
    flex: 0 0 auto;
    padding: 8px 15px;
    background: #fff3e6;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border: 1px solid #ff7a00;
    transition: all 0.2s ease;
    white-space: nowrap;
}

    .mobile-cat-btn:hover {
        background: #ff7a00;
        color: #fff;
    }

.active-mobile-cat {
    background: #ff7a00;
    color: #fff;
    font-weight: 600;
}

.policy-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-content {
    color: #fff;
}

.policy-breadcrumb {
    font-size: 14px;
    margin-bottom: 6px;
    opacity: 0.85;
}

.policy-title {
    font-size: 36px;
    font-weight: 700;
}

.fp-offer-banner {
    background: linear-gradient(90deg, rgba(255, 136, 6, 0.14) 0%, rgba(250, 232, 212, 0.14) 51.92%, rgba(255, 136, 6, 0.14) 100%);
    border-radius: 12px;
    padding: 24px;
}

.fp-content-wrapper,
.fp-offer-wrapper {
    padding-left: 24px;
    padding-right: 24px;
}

.fp-offer-badge {
    display: inline-block;
    color: #ff7a00;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background-color: #FF880640;
}

.fp-offer-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.fp-offer-text {
    font-size: 14px;
    color: #555555;
}

.fp-offer-code {
    color: #ff7a00;
    font-weight: 700;
}

.fp-order-btn {
    background-color: #ff7a00;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
}

.fp-breadcrumb {
    font-size: 14px;
    color: #666666;
}

.fp-breadcrumb-home {
    margin-left: 6px;
}

.fp-breadcrumb-separator {
    margin: 0 6px;
}

.fp-breadcrumb-active {
    color: #ff7a00;
    font-weight: 600;
}

.fp-page-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.fp-product-count {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
}

.fp-sort-label {
    font-size: 14px;
    color: #333333;
}

.fp-sort-select {
    width: 140px;
    font-size: 14px;
}

.fp-qty-btn:disabled {
    opacity: 1.5;
    cursor: not-allowed;
}

.fp-filter-btn {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    padding: 6px 14px;
    border-radius: 8px;
}

.fp-prod-card {
    border-radius: 16px;
    border: 1px solid #eeeeee;
    overflow: hidden;
}

.fp-prod-img-wrapper img {
    height: 220px;
    object-fit: contain;
}

.fp-prod-type {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.fp-type-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

.fp-veg .fp-type-dot {
    background: #1dbf73;
}

.fp-nonveg .fp-type-dot {
    background: #ff4d4d;
}

/* TITLE */
.fp-prod-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* PRICE */
.fp-prod-price {
    font-size: 16px;
    font-weight: 500;
}

.fp-prod-size {
    border: 1px solid #ff7a00;
}

.fp-old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-left: 6px;
}

/* QTY */
.fp-qty-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 20px;
    width: fit-content;
    padding: 2px 8px;
}

.fp-qty-btn {
    border: none;
    background: transparent;
    font-size: 16px;
    width: 24px;
}

.fp-qty-count {
    font-size: 14px;
    font-weight: 600;
    margin: 0 8px;
}

/* BUTTONS */
.fp-add-btn {
    background: #ff7a00;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
}

.btn.fp-OOS-btn {
    border: 3px solid #FF0000;
    font-weight: 600;
    border-radius: 10px;
    background-color: transparent;
    color: #FF0000;
}

.btn.fp-cancel-btn {
    border: 3px solid #ff7a00;
    font-weight: 600;
    border-radius: 10px;
    background-color: transparent;
    color: #ff7a00;
}

    .btn.fp-cancel-btn:hover {
        background-color: #ff7a00;
        color: #FFFFFF;
    }

.btn.fp-OOS-btn:hover {
    background-color: #FF0000;
    color: #FFFFFF;
}

.fp-add-btn:hover {
    color: white;
    background-color: #0051B7
}

.fp-added-btn {
    background: #fff;
    border: 1px solid #ff7a00;
    color: #ff7a00;
    font-weight: 600;
    border-radius: 10px;
}

/* <------ Contact Us Page -------> */
.fp-contact-hero {
    background: url('../Images/contact banner.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
}

.fp-contact-breadcrumb {
    font-size: 14px;
    opacity: 0.9;
}

.fp-contact-title {
    font-size: 42px;
    font-weight: 700;
    margin-top: 10px;
}

/* ===== Section Headings ===== */
.fp-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.fp-section-subtitle {
    font-size: 15px;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Info Cards ===== */
.fp-info-card {
    background-color: #fff3e6;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    height: 100%;
}

    .fp-info-card h6 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .fp-info-card p {
        font-size: 14px;
        margin-bottom: 0;
        color: #555;
    }

/* ===== Contact Area ===== */
/* Outer white container */
.fp-contact-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 24px;
}

/* Map */
.fp-map-box {
    display: flex;
}

    .fp-map-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

/* Form */
.fp-contact-form {
    padding-left: 24px;
}

    .fp-contact-form .form-control {
        height: 46px;
        font-size: 14px;
        border-radius: 6px;
    }

    .fp-contact-form textarea.form-control {
        height: auto;
    }

/* Button */
.fp-submit-btn {
    background-color: #ff8c1a;
    color: #ffffff;
    border: none;
    padding: 10px 28px;
    border-radius: 22px;
    font-size: 14px;
    align-self: flex-start;
}


.fp-page-padding {
    padding-left: 24px;
    padding-right: 24px;
}

.fp-info-icon {
    font-size: 24px;
    color: #ff8c1a;
    margin-bottom: 12px;
    display: inline-block;
}

/* <------- Cart Screen ------> */
.fp-cart-top {
    background: #ffffff;
    border-bottom: none;
    margin-bottom: 12px;
}

.fp-cart-bottom {
    background: #ffffff;
    padding: 14px 0;
    border-radius: 8px;
    margin: 0 0px 16px 0px;
}

.fp-cart-bottom-section .fp-page-padding {
    background: #ffffff;
    border-radius: 8px;
    padding: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.fp-order-card,
.fp-bill-card {
    border: none;
    background: transparent;
}

.fp-cart-breadcrumb {
    font-size: 14px;
    color: #444;
    padding: 10px 0;
}

.fp-cart-modes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.fp-cart-mode-btn {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 6px;
    color: #333;
}

    .fp-cart-mode-btn.active {
        background: #0057d9;
        color: #ffffff;
        border-color: #0057d9;
    }

.fp-cart-location {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    justify-content: flex-end;
}

    .fp-cart-location i {
        color: #0057d9;
        font-size: 16px;
        margin-top: 2px;
        padding: 10px;
    }

.fp-location-title {
    font-size: 13px;
    font-weight: 600;
}

.fp-location-text {
    font-size: 12px;
    color: #666;
}

.fp-order-title,
.fp-bill-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.fp-order-header {
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 8px;
}

.fp-order-item {
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
}

.fp-item-name {
    font-weight: 600;
}

.fp-item-desc {
    font-size: 12px;
    color: #777;
}

.fp-trash-icon {
    color: #ff7a00;
    margin-left: 8px;
    cursor: pointer;
}

.fp-coupon-header {
    background: #7ed957;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.fp-bill-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
}

.fp-discount span:last-child {
    color: red;
}

.fp-bill-total {
    font-weight: 600;
    border-top: 1px solid #e6e6e6;
    padding-top: 8px;
    margin-top: 8px;
}

.fp-pay-btn {
    margin-top: 12px;
    background: #0057d9;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 22px;
    font-size: 14px;
}

.yf-page-bg {
    background-color: #f8f8f8;
}

.yf-breadcrumb {
    font-size: 14px;
    color: #555;
    background-color: #ffffff;
    padding: 12px 0;
}

    .yf-breadcrumb span {
        margin: 0 6px;
    }

.yf-sidebar {
    background: #fff;
    border-radius: 6px;
    border: 1px solid #eee;
}

.yf-menu-item {
    padding: 10px 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border-radius: 6px;
}

    .yf-menu-item.active {
        background-color: #f1f1f1;
        font-weight: 600;
    }

.yf-logout {
    color: #ff3b30;
}

.yf-account-card {
    background: #fff;
    border-radius: 6px;
    border: 1px solid #eee;
}

.yf-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #999;
}

.yf-name {
    font-weight: 600;
    color: #404040;
}

.yf-text {
    font-size: 14px;
    color: #404040;
}

.yf-edit-btn {
    background: #ededed;
    font-size: 14px;
}

.yf-action-card {
    background: #fff;
    border-radius: 6px;
    border: 1px solid #eee;
}

.yf-action-icon {
    font-size: 26px;
    color: #0152B7;
}

.yf-action-title {
    font-weight: 600;
}

.yf-action-sub {
    font-size: 14px;
    color: #404040;
}
