/*
Theme Name: FoodMart
Theme URI: https://templatesjungle.com/
Author: TemplatesJungle
Author URI: https://templatesjungle.com/
Description: FoodMart is specially designed product packaged for eCommerce store websites.
Version: 1.1
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:

1. VARIABLES

2. GENERAL TYPOGRAPHY
  2.1 General Styles
  2.2 Floating & Alignment
  2.3 Forms
  2.4 Lists
  2.5 Code
  2.6 Tables
  2.7 Spacing
  2.8 Utilities
  2.9 Misc
    - Row Border
    - Zoom Effect
  2.10 Buttons
    - Button Sizes
    - Button Shapes
    - Button Color Scheme
    - Button Aligns
  2.11 Section
    - Hero Section
    - Section Title
    - Section Paddings
    - Section Margins
    - Section Bg Colors
    - Content Colors
    - Content Borders

3. EXTENDED TYPOGRAPHY
  3.1 Blockquote / Pullquote
  3.2 Text Highlights

4. CONTENT ELEMENTS
  4.1 Tabs
  4.2 Accordions
  4.3 Brand Carousel
  4.4 Category Carousel

5. BLOG STYLES
  5.1 Blog Single Post
  5.2 About Author
  5.3 Comments List
  5.4 Comments Form3

6. SITE STRUCTURE
  6.1 Header
    - Header Menu
    - Nav Sidebar
  6.2 Billboard
  6.3 About Us Section
  6.4 Video Section
  6.5 Selling Products Section
  6.6 Quotation Section
  6.7 Latest Blogs Section
  6.8 Newsletter Section
  6.9 Instagram Section
  6.10 Footer
    - Footer Top
    - Footer Bottom

7. OTHER PAGES
  7.1 Product detail
  7.2 Shop page


/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
    /* widths for rows and containers
     */
    --header-height: 160px;
    --header-height-min: 80px;
}

/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
    :root {
        --header-height: 100px;
        --header-height-min: 80px;
    }
}

/* Theme Colors */
:root {
    --accent-color: #90c74b;
    --dark-color: #222222;
    --light-dark-color: #727272;
    --light-color: #fff;
    --grey-color: #dbdbdb;
    --light-grey-color: #f8f9fa;
    --primary-color: #90c74b;
    --light-primary-color: #f0f7e9;
    --section-bg: #f8f9fa;
    --card-bg: #ffffff;
    --border-color: #e9ecef;
}

/* Fonts */
:root {
    --body-font: "Open Sans", sans-serif;
    --heading-font: "Nunito", sans-serif;
}

body {
    --bs-link-color: #333;
    --bs-link-hover-color: #333;

    --bs-link-color-rgb: 40, 40, 40;
    --bs-link-hover-color-rgb: 0, 0, 0;

    --bs-light-rgb: 248, 249, 250;

    --bs-font-sans-serif: "Open Sans", sans-serif;
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 2;
    --bs-body-color: #747474;

    --bs-primary: #90c74b;
    --bs-primary-rgb: 144, 199, 75;

    --bs-success: #90c74b;
    --bs-success-rgb: 144, 199, 75;

    --bs-primary-bg-subtle: #f0f7e9;
    --bs-success-bg-subtle: #f0f7e9;

    --bs-border-color: #e9ecef;

    --bs-secondary-rgb: 230, 243, 251;
    --bs-danger-rgb: 249, 235, 231;
    --bs-warning-rgb: 255, 249, 235;
    --bs-info-rgb: 230, 243, 250;

    background-color: var(--light-grey-color);
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #90c74b;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #7ab436;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-focus-shadow-rgb: 114, 166, 59;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #90c74b;
    --bs-btn-active-border-color: transparent;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #d3d7dd;
    --bs-btn-disabled-border-color: transparent;
}

.btn-outline-primary {
    --bs-btn-color: #90c74b;
    --bs-btn-border-color: #90c74b;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #7ab436;
    --bs-btn-hover-border-color: #7ab436;
    --bs-btn-focus-shadow-rgb: 114, 166, 59;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #7ab436;
    --bs-btn-active-border-color: #7ab436;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #90c74b;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #90c74b;
    --bs-gradient: none;
}

.btn-outline-light {
    --bs-btn-color: #747474;
    --bs-btn-border-color: #e9ecef;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #e9ecef;
    --bs-btn-hover-border-color: #e9ecef;
    --bs-btn-focus-shadow-rgb: 248, 249, 250;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #e9ecef;
    --bs-btn-active-border-color: #e9ecef;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #e9ecef;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #e9ecef;
    --bs-gradient: none;
}

.btn-warning {
    --bs-btn-color: #747474;
    --bs-btn-bg: #f0f7e9;
    --bs-btn-border-color: #f0f7e9;
    --bs-btn-hover-color: #747474;
    --bs-btn-hover-bg: #d8e9c4;
    --bs-btn-hover-border-color: #d8e9c4;
    --bs-btn-focus-shadow-rgb: 114, 166, 59;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #d8e9c4;
    --bs-btn-active-border-color: #d8e9c4;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #f0f7e9;
    --bs-btn-disabled-border-color: #f0f7e9;
}

.btn-success {
    --bs-btn-color: #222;
    --bs-btn-bg: #f0f7e9;
    --bs-btn-border-color: #f0f7e9;
    --bs-btn-hover-color: #222;
    --bs-btn-hover-bg: #d8e9c4;
    --bs-btn-hover-border-color: #d8e9c4;
    --bs-btn-focus-shadow-rgb: 114, 166, 59;
    --bs-btn-active-color: #222;
    --bs-btn-active-bg: #d8e9c4;
    --bs-btn-active-border-color: #d8e9c4;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #222;
    --bs-btn-disabled-bg: #f0f7e9;
    --bs-btn-disabled-border-color: #f0f7e9;
}

.btn-danger {
    --bs-btn-color: #222;
    --bs-btn-bg: #FFEADA;
    --bs-btn-border-color: #FFEADA;
    --bs-btn-hover-color: #222;
    --bs-btn-hover-bg: #ecc9af;
    --bs-btn-hover-border-color: #ecc9af;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #222;
    --bs-btn-active-bg: #ecc9af;
    --bs-btn-active-border-color: #ecc9af;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #222;
    --bs-btn-disabled-bg: #FFEADA;
    --bs-btn-disabled-border-color: #FFEADA;
}

body {
    letter-spacing: 0.03em;
    background-color: var(--light-grey-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--dark-color);
    font-weight: 700;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-weight: 700;
}

.breadcrumb.text-white {
    --bs-breadcrumb-divider-color: #fff;
    --bs-breadcrumb-item-active-color: var(--bs-primary);
}

.dropdown-menu {
    --bs-dropdown-link-active-bg: var(--bs-primary);
}

.nav-pills .nav-link {
    --bs-nav-pills-link-active-color: #111;
    --bs-nav-pills-link-active-bg: #f1f1f1;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 3rem;
}

/*----------------------------------------------*/
/* 6. SITE STRUCTURE */
/*----------------------------------------------*/
/* 6.1 Header
--------------------------------------------------------------*/
/* Preloader */
.preloader-wrapper {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 111;
    background: #fff;
}

.preloader-wrapper .preloader {
    margin: 20% auto 0;
    transform: translateZ(0);
}

.preloader:before,
.preloader:after {
    content: '';
    position: absolute;
    top: 0;
}

.preloader:before,
.preloader:after,
.preloader {
    border-radius: 50%;
    width: 2em;
    height: 2em;
    animation: animation 1.2s infinite ease-in-out;
}

.preloader {
    animation-delay: -0.16s;
}

.preloader:before {
    left: -3.5em;
    animation-delay: -0.32s;
}

.preloader:after {
    left: 3.5em;
}

@keyframes animation {

    0%,
    80%,
    100% {
        box-shadow: 0 2em 0 -1em var(--accent-color);
    }

    40% {
        box-shadow: 0 2em 0 0 var(--accent-color);
    }
}

/* *** Start editing below this line *** */
.container-fluid {
    max-width: 1600px;
}

/* Header Improvements */
header {
    background: var(--card-bg);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border-color);
}

.search-bar {
    background: var(--light-grey-color) !important;
    border: 1px solid var(--border-color);
}

/* Banner Section */
.banner-section {
    background: linear-gradient(135deg, var(--light-primary-color) 0%, var(--card-bg) 100%);
    border-radius: 20px;
    margin: 20px;
    padding: 60px 40px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.banner-blocks {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 2rem;
}

.block-1 {
    grid-area: 1 / 1 / 3 / 8;
}

.block-2 {
    grid-area: 1 / 8 / 2 / 13;
}

.block-3 {
    grid-area: 2 / 8 / 3 / 13;
}

@media screen and (max-width:1140px) {
    .banner-blocks {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }

    .block-1 {
        grid-area: 1 / 1 / 3 / 2;
    }

    .block-2 {
        grid-area: 3 / 1 / 4 / 2;
    }

    .block-3 {
        grid-area: 4 / 1 / 5 / 2;
    }
}

/* banner ad */
.banner-ad {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--card-bg);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.banner-ad.blue {
    background: #e6f3fb;
}

.banner-ad .swiper-pagination {
    bottom: 40px;
    left: 0;
    right: 0;
}

.banner-ad .swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    margin: 4px;
    background: #FFF;
    opacity: 1;
    transition: background 0.3s ease-out;
}

.banner-ad .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #90c74b;
}

.banner-ad .swiper-slide {
    min-height: 630px;
    display: flex;
}

.banner-ad .banner-content .categories {
    font-family: 'Garamond';
    font-size: 37px;
    text-transform: capitalize;
    color: var(--dark-color);
}

.banner-ad .banner-content .sale {
    position: relative;
    display: inline-block;
}

.banner-ad .banner-content .sale:before {
    content: '';
    width: 80px;
    border-bottom: 1px solid #111;
    position: absolute;
    bottom: 6px;
}

.banner-ad .banner-content .sale:after {
    content: 'SALE';
    font-family: var(--body-font);
    position: absolute;
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #252525;
    bottom: 0;
    right: 0;
}

.banner-ad .banner-content .banner-title {
    letter-spacing: 0.02em;
    font-size: 33px;
}

.banner-ad.large .banner-content .categories {
    color: var(--accent-color);
}

.banner-ad.large .banner-content .banner-title {
    font-size: 54px;
}

/* Swiper carousel */
.swiper-prev,
.swiper-next {
    width: 44px;
    height: 44px;
    line-height: 44px;
    background: var(--card-bg);
    color: #222222;
    padding: 0;
    text-align: center;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-prev:hover,
.swiper-next:hover {
    background: #90c74b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(144, 199, 75, 0.3);
}

.btn-link {
    margin-right: 30px;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-align: right;
    text-transform: capitalize;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #7ab436;
}

/* Section Headers */
.section-header {
    padding: 20px 0;
}

.section-title {
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* category carousel */
.category-carousel .category-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    text-align: center;
    padding: 40px 20px;
    margin: 20px 0;
    transition: all 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.category-carousel .category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #7ab436);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-carousel .category-item:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.12);
}

.category-carousel .category-item:hover::before {
    transform: scaleX(1);
}

.category-carousel .category-item .category-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #222222;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.category-carousel .category-item:hover .category-title {
    color: var(--accent-color);
}

/* brand carousel */
.brand-carousel .brand-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.brand-carousel .brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.12);
}

.brand-carousel .brand-item img {
    width: 100%;
    border-radius: 12px;
}

.brand-carousel .brand-item .brand-details {
    margin-left: 15px;
}

.brand-carousel .brand-item .brand-title {
    margin: 0;
}

/* product tabs */
.product-tabs {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    margin: 20px 0;
}

.tabs-header {
    border-bottom: 2px solid var(--border-color) !important;
    padding-bottom: 20px;
}

.product-tabs .nav-tabs {
    justify-content: flex-end;
    border: none;
    gap: 10px;

    --bs-nav-link-hover-color: var(--accent-color);
    --bs-nav-link-color: #555;
    --bs-nav-tabs-link-border-color: transparent;
    --bs-nav-tabs-link-hover-border-color: transparent;
    --bs-nav-tabs-link-active-border-color: transparent;
}

.product-tabs .nav-tabs .nav-link {
    border-radius: 10px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.product-tabs .nav-tabs .nav-link:hover {
    background: var(--light-primary-color);
    border-color: var(--accent-color);
}

.product-tabs .nav-tabs .nav-link.active,
.product-tabs .nav-tabs .nav-item.show .nav-link {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(144, 199, 75, 0.3);
}

/* product-grid */
.product-item {
    position: relative;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    margin-bottom: 30px;
    transition: all 0.3s ease-out;
    overflow: hidden;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #7ab436);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
}

.product-item:hover::before {
    transform: scaleX(1);
}

.product-item h3 {
    display: block;
    width: 100%;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    text-transform: capitalize;
    color: #333333;
    margin: 0;
    transition: color 0.3s ease;
}

.product-item:hover h3 {
    color: var(--accent-color);
}

.product-item figure {
    background: var(--light-grey-color);
    border-radius: 12px;
    text-align: center;
    overflow: hidden;
}

.product-item figure img {
    max-height: 210px;
    height: auto;
    transition: transform 0.3s ease;
}

.product-item:hover figure img {
    transform: scale(1.05);
}

.product-item .btn-wishlist {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.product-item .btn-wishlist:hover {
    background: rgb(240, 56, 56);
    color: #fff;
    transform: scale(1.1);
}

.product-item .qty {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #6c757d;
}

.product-item .rating {
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    text-transform: capitalize;
    color: #222222;
}

.product-item .rating iconify-icon {
    color: #90c74b;
}

.product-item .price {
    display: block;
    width: 100%;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    text-transform: capitalize;
    color: var(--accent-color);
}

.product-item .product-qty {
    width: 85px;
}

.product-item .btn-link {
    text-decoration: none;
}

.product-item #quantity {
    height: auto;
    width: 28px;
    text-align: center;
    border: none;
    margin: 0;
    padding: 0;
}

.product-item .btn-number {
    width: 26px;
    height: 26px;
    line-height: 1;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #E2E2E2;
    border-radius: 6px;
    color: #222;
    padding: 0;
}

/* Rating Block */
.rating-block {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 12px 0;
    padding: 8px 12px;
    background: var(--light-primary-color);
    border-radius: 20px;
    width: fit-content;
}

.rating-text {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
}

/* Location */
.location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
}

/* Footer Improvements */
footer {
    background: var(--dark-color);
    color: white;
    margin-top: 60px;
}

.footer-menu h5.widget-title {
    color: var(--accent-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-menu h5.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-menu .nav-link {
    color: #b0b0b0;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-menu .nav-link:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

#footer-bottom {
    background: #1a1a1a;
    padding: 20px 0;
    border-top: 1px solid #333;
}

/* Badge Improvements */
.badge {
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    z-index: 3;
}

.badge.bg-success {
    background: linear-gradient(135deg, var(--accent-color), #7ab436) !important;
}

.badge.bg-danger {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #ffd93d, #ffcd3c) !important;
    color: #222 !important;
}

/* cart */
.cart .product-qty {
    min-width: 130px;
}

/* floating image */
.image-float {
    margin-top: -140px;
    margin-bottom: -140px;
}

@media screen and (max-width:991px) {
    .image-float {
        margin: 0;
    }
}

/* post item */
.post-item .post-meta {
    font-size: 0.8rem;
    line-height: 1;
}

.post-item .post-meta svg {
    margin-right: 5px;
}

@media screen and (max-width: 991px) {

    /* offcanvas menu */
    .offcanvas-body .nav-item {
        font-weight: 700;
        border-bottom: 1px solid var(--border-color);
    }

    .offcanvas-body .filter-categories {
        width: 100%;
        margin-bottom: 20px !important;
        border: 1px solid var(--border-color) !important;
        padding: 14px;
        border-radius: 8px;
        background: var(--light-grey-color);
    }

    /* dropdown-menu */
    .dropdown-menu {
        padding: 0;
        border: none;
        line-height: 1.4;
        font-size: 0.9em;
        background: var(--card-bg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--border-color);
    }

    .dropdown-menu a {
        padding-left: 0;
    }

    .dropdown-toggle::after {
        position: absolute;
        right: 0;
        top: 21px;
    }
}

/* single product */
/* product-thumbnail-slider */
.product-thumbnail-slider {
    height: 740px;
}

@media screen and (max-width:992px) {
    .product-thumbnail-slider {
        margin-top: 20px;
        height: auto;
    }
}

@media screen and (min-width:992px) {
    .product-thumbnail-slider {
        height: 520px;
    }
}

@media screen and (min-width:1200px) {
    .product-thumbnail-slider {
        height: 740px;
    }
}

/* Product Item Layout Improvements */
.product-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-item figure {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item h3 {
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-item .qty {
    min-height: 20px;
}

.product-item .price {
    margin-bottom: 12px;
}

/* Additional Visual Enhancements */
.tab-content {
    padding-top: 30px;
}

.nav-link {
    transition: all 0.3s ease;
}

.btn {
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Gradient Background Sections */
.py-5 {
    background: linear-gradient(135deg, var(--light-grey-color) 0%, var(--card-bg) 100%);
}