.shop-card img {
    max-width: 100% !important;
}

.pagination-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-shop {
    width: max-content;
    margin: 0px auto;
}

.icon {
    cursor: pointer;
    font-size: 20px;
}

.search-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

/* Popup box */
.search-popup-content {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Close button */
.close-btn {
    position: absolute;
    top: -5px !important;
    right: 12px !important;
    font-size: 26px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #000;
}

/* Make form inline */
.search-popup-content form {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 8px 12px;
    background: #f9f9f9;
}

/* Input field */
.search-popup-content input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
}

/* Button */
.search-popup-content button {
    background: var(--primary-color);
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-popup-content button:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background: transparent;
}

.product-grid p {
    text-align: center;
    font-size: 34px;
}

.shop-card .title-product {
    font-size: 16px !important;
}

/* General Layout */
.single-product-page {
    color: #222;
}

.single-product-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.single-product-wrapper .carousel-inner img {
    border-radius: 12px;
    height: 460px !important;
    object-fit: contain;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* --- Product Title & Price --- */
.product_title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #e63946;
    /* Accent color for price */
    margin-bottom: 20px;
}

/* --- Add to Cart Section --- */
form.cart {
    margin-bottom: 20px;
}

.variations_form tr {
    display: inline-block;
    margin: 10px 0;
}

.variations_form select {
    word-wrap: normal;
    padding: 10px 4px;
    margin-left: 9px;
}

.quantity {
    margin: 1rem 0;
}




form.cart .quantity input {
    width: 70px;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    text-align: center;
}

.single_add_to_cart_button {
    background: #222;
    color: #fff;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
}

.single_add_to_cart_button:hover {
    background: #e63946;
}

/* --- Product Meta --- */
.product_meta {
    font-size: 0.9rem;
    color: #555;
    margin-top: 15px;
}

.product_meta a {
    color: #222;
    text-decoration: none;
}

.product_meta a:hover {
    color: #e63946;
}

/* --- Tabs --- */
#productTab {
    border-bottom: 2px solid #eee;
}

#productTab .nav-link {
    border: none;
    color: #444;
    font-weight: 500;
    padding: 12px 20px;
}

#productTab .nav-link.active {
    border-bottom: 3px solid #e63946;
    color: #e63946;
}

.tab-content {
    padding: 20px 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Reviews --- */
.woocommerce-Reviews-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.woocommerce-noreviews {
    font-style: italic;
    color: #777;
}

/* --- Related Products --- */
.related-products h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.shop-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.shop-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.shop-card img {
    border-bottom: 1px solid #eee;
    transition: transform 0.3s ease;
}

.shop-card:hover img {
    transform: scale(1.05);
}

.shop-card .title-product {
    font-size: 1rem;
    font-weight: 500;
    margin: 12px 0 8px;
}

.shop-card .title-product a {
    color: #222;
    text-decoration: none;
}

.shop-card .title-product a:hover {
    color: #a01c42;
}

.price-product {
    font-size: 1.1rem;
    font-weight: 600;
    color: #a01c42;
    margin-bottom: 15px;
}

.card-footer {
    text-align: center;
}

.card-footer a {
    display: inline-flex;
    width: fit-content !important;
    margin: 0 auto;
}

.product-category-archive .card-body {
    text-align: center !important;
}

.product-category-archive img {
    object-fit: contain;
}

.product-category-archive .card-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

/* Single product page end */

/* ===============================
   RECIPE SINGLE PAGE DESIGN
   =============================== */
.recipes-single-page {
    background: #faf9f9;
    padding: 60px 0;
    color: #333;
}

/* Featured Image */
.recipes-single-page img {
    max-height: 480px;
    object-fit: contain;
    margin-bottom: 30px;
}

/* Title */
.recipes-single-page h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #a01c42;
    /* your primary color */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Excerpt (subtitle) */
.recipes-single-page p.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

/* Content Styling */
.recipes-single-page .mt-5 {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.recipes-single-page .mt-5 h2,
.recipes-single-page .mt-5 h3,
.recipes-single-page .mt-5 h4 {
    margin-top: 25px;
    font-weight: 600;
    color: #a01c42;
}

.recipes-single-page .mt-5 p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

/* Lists (ingredients, steps) */
.recipes-single-page .mt-5 ul,
.recipes-single-page .mt-5 ol {
    margin: 20px 0 20px 20px;
    padding: 0;
}

.recipes-single-page .mt-5 ul li,
.recipes-single-page .mt-5 ol li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
}

/* Blockquote (chef’s notes / tips) */
.recipes-single-page blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background: #fff4f7;
    border-left: 5px solid #a01c42;
    border-radius: 10px;
    font-style: italic;
    color: #555;
}

/* Buttons inside content (like Print / Share Recipe) */
.recipes-single-page a.button,
.recipes-single-page .btn {
    display: inline-block;
    background: #a01c42;
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.recipes-single-page a.button:hover,
.recipes-single-page .btn:hover {
    background: #881736;
}











@media(min-width:992px) {
    .navbar-expand-lg .navbar-nav {
        flex: 1;
        justify-content: space-around;
    }
}

@media(max-width:1200px) {
    .navbar-custom .navbar-nav .nav-link {
        padding: 7px;
        margin: 0px;
    }
}


@media(max-width:991px) {
    ul#menu-header-menu {
        align-items: flex-start;
    }

    .navbar-collapse {
        margin-top: 10px;
        background: #ffffff;
        padding: .5rem .7rem;
    }

    .product-grid {
        padding: 0px;
    }

    .shop-card .content-area p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
        font-size: 16px;

    }

    .navbar-custom .navbar-nav .nav-link:hover,
    .navbar-custom .navbar-nav .nav-link {
        font-size: 12px;
    }

    .faq-sec .col-lg-5 {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .faq-sec .subscribe-box {
        max-width: 600px;
        margin-top: 30px;
    }

    .comments_wrapper {
        padding: 2rem 1rem;
    }

    .comments_wrapper p {
        font-size: 30px;
    }

    .about-wrapper .image-wrapper,
    .founder-sec .image-wrapper {
        margin-bottom: 30px;
    }

    .mission-wrapper .image-wrapper {
        margin-top: 28px;
    }

    .certificate-wrapper {
        display: flex;
        flex-direction: column;
    }

    .garlic-storage .row {
        gap: 20px;
    }

    .card-wrapper img {
        border-radius: 40px;
        width: 100%;
    }

}

@media(max-width:767px) {
    .recipes-single-page h1 {
        font-size: 1.8rem;
    }

    .recipes-single-page p.lead {
        font-size: 1rem;
    }

    .recipes-single-page .mt-5 {
        padding: 20px;
    }
}

@media(max-width:600px) {}

@media(max-width:480px) {
    .navbar-custom {
        padding: 0;
    }

    .navbar-custom .container {
        padding: 0 10px;
    }

    img.logo-head {
        width: 65px;
    }

    .subscribe-heading {
        font-size: 32px;
    }

    .faq-sec .subscribe-box {
        padding: 30px 15px;
    }

    .comments_wrapper p {
        font-size: 24px;
    }

    .title-wrapper h2 {
        font-size: 32px;
    }

    .storage-table th,
    .storage-table td {
        font-size: clamp(12px, 2vw, 16px);
    }

    .storage-table-wrapper {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    section.Breathe-sec .row {
        gap: 20px;
    }


}

@media(max-width:350px) {}