/* Custom Styles for Tatgut */

/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px !important;
}

/* CSS Color Variables */
:root {
    /* Primary Colors */
    --color-primary: #28a745;
    --color-primary-dark: #218838;
    --color-primary-darker: #1e7e34;
    --color-primary-light: rgba(40, 167, 69, 0.25);

    /* Neutral Colors */
    --color-black: #000;
    --color-white: #ffffff;
    --color-gray-light: #dee2e6;
    --color-gray-secondary: #6c757d;

    /* Text Colors */
    --color-text-primary: #000;
    --color-text-dark: #000;

    /* Border Colors */
    --color-border-light: #dee2e6;
    --color-border-primary: #28a745;

    /* Hero Section Colors */
    --color-hero-bg-light: #f8f8f8;
    --color-hero-bg-dark: #333333;
    --color-dot-inactive: #cccccc;
    --color-text-light: #ffffff;
}

a {
    text-decoration: none;
}

a:hover {
    color: var(--color-primary);
}

.bg-secondary {
    background-color: var(--color-gray-light) !important;
    color: var(--color-text-primary) !important;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    font-size: 14px;
}

.dropdown-menu li a {
    text-transform: capitalize;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #28a745;
}

/* NavbarMenu Inner Dropdown Max Height */
.NavbarMenu .dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
}

.NavbarMenu .dropdown-menu::-webkit-scrollbar {
    width: 5px;
}

.NavbarMenu .dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.NavbarMenu .dropdown-menu::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

/* Navbar Inner Dropdown Menu Length Limit */
.menu-drop {
    max-height: 300px;
    overflow-y: auto;
}

.menu-drop::-webkit-scrollbar {
    width: 5px;
}

.menu-drop::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.menu-drop::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.menu-drop::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.container {
    max-width: 1170px;
}

/* Top Bar */
.top-bar {
    font-size: 0.875rem;
    position: relative;
    z-index: 1001;
}

.language-selector select {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    padding-right: 2rem;
}

.language-selector {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.language-selector a {
    margin-right: 1rem;
    list-style: none;
    margin: 0;
    border-right: 1px solid var(--color-border-light);
    padding-right: 1rem;
    color: var(--color-text-primary);
    font-size: 14px;
}

.language-selector a:last-child {
    border-right: none;
}

.language-selector .dropdown-toggle {
    text-decoration: unset;
    padding: 10px 0px;
}

.language-selector .dropdown-menu ul li a {
    padding: 0.5rem 1rem;
}

.social-icons a {
    font-size: 1rem;
    transition: color 0.3s;
    text-align: right;
}

.social-icons a:hover {
    color: var(--color-primary) !important;
}

/* Logo */
.logo {
    font-size: 2.5rem;
    font-weight: 400;
}

.logo-image {
    max-height: 50px;
    width: auto;
}

/* Search Bar */
.search-container {
    position: relative;
}

.search-container .search-suggestions {
    position: absolute;
    top: 100%;
    left: 22px;
    width: 92%;
    background-color: var(--color-white);
    /* border: 1px solid var(--color-border-light); */
    padding: 0.6rem 1rem;
    z-index: 1000;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-primary);
    font-family: 'Poppins', sans-serif;
    display: none;
}

.search-container .search-suggestions.show {
    display: block;
}

.search-container .search-suggestions li {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--color-border-light);
    cursor: pointer;
}

.search-container .search-suggestions li:hover {
    background-color: var(--color-primary-light);
    color: var(--color-white);
}

.search-container input {
    border: 1px solid var(--color-border-light);
    padding: 0.6rem 1rem;
}

.search-container input:focus {
    border-color: var(--color-border-primary);
    box-shadow: 0 0 0 0.2rem var(--color-primary-light);
}

.search-container .btn-success {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    padding: 0.5rem 1rem;
}

.search-container .btn-success:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-darker);
}

/* User Actions */
.favorite-card:hover span.bg-secondary,
.cart-card:hover span.bg-secondary {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}

.user-actions {
    font-size: 0.875rem;
}

.user-actions a {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.user-actions .position-relative {
    cursor: pointer;
}

.user-actions i {
    transition: color 0.3s;
}

.user-actions .position-relative:hover i {
    color: var(--color-primary) !important;
}

/* Cart Dropdown */
.cart-dropdown-menu {
    padding: 0;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 1rem;
    overflow: hidden;
}

.cart-dropdown-header {
    background-color: var(--color-white);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-dropdown-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
}

.cart-dropdown-count {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #666;
}

.cart-dropdown-items {
    max-height: 350px;
    overflow-y: auto;
    background-color: var(--color-white);
}

.cart-dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.cart-dropdown-item:hover {
    background-color: #f8f9fa;
}

.cart-dropdown-item:last-child {
    border-bottom: none;
}

.cart-dropdown-item-image {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-dropdown-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-dropdown-item-details {
    flex: 1;
    min-width: 0;
}

.cart-dropdown-item-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-dropdown-item-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
}

.cart-dropdown-item-qty {
    color: #666;
}

.cart-dropdown-item-price {
    color: var(--color-primary);
    font-weight: 600;
}

.cart-dropdown-item-remove {
    background: none;
    border: none;
    color: #999;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-dropdown-item-remove:hover {
    background-color: #fee;
    color: #dc3545;
}

.cart-dropdown-footer {
    background-color: #f8f9fa;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--color-gray-light);
}

.cart-dropdown-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-gray-light);
}

.cart-dropdown-total-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.cart-dropdown-total-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.cart-dropdown-actions {
    display: flex;
    gap: 0.75rem;
}

.cart-dropdown-view-btn,
.cart-dropdown-checkout-btn {
    flex: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.65rem 1rem;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cart-dropdown-view-btn {
    background-color: transparent;
    border: 1px solid var(--color-gray-light);
    color: var(--color-text-primary);
}

.cart-dropdown-view-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
}

.cart-dropdown-checkout-btn {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-white);
}

.cart-dropdown-checkout-btn:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
}

/* Cart Dropdown Scrollbar */
.cart-dropdown-items::-webkit-scrollbar {
    width: 6px;
}

.cart-dropdown-items::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.cart-dropdown-items::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.cart-dropdown-items::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Favorites Dropdown */
.favorites-dropdown-menu {
    padding: 0;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 1rem;
    overflow: hidden;
}

.favorites-dropdown-header {
    background-color: var(--color-white);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.favorites-dropdown-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
}

.favorites-dropdown-count {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #666;
}

.favorites-dropdown-items {
    max-height: 350px;
    overflow-y: auto;
    background-color: var(--color-white);
}

.favorites-dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.favorites-dropdown-item:hover {
    background-color: #f8f9fa;
}

.favorites-dropdown-item:last-child {
    border-bottom: none;
}

.favorites-dropdown-item-image {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorites-dropdown-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.favorites-dropdown-item-details {
    flex: 1;
    min-width: 0;
}

.favorites-dropdown-item-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.favorites-dropdown-item-meta {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
}

.favorites-dropdown-item-price {
    color: var(--color-primary);
    font-weight: 600;
}

.favorites-dropdown-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.favorites-dropdown-view-btn {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.favorites-dropdown-view-btn:hover {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--color-primary-dark);
}

.favorites-dropdown-item-remove {
    background: none;
    border: none;
    color: #999;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorites-dropdown-item-remove:hover {
    background-color: #fee;
    color: #dc3545;
}

.favorites-dropdown-footer {
    background-color: #f8f9fa;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--color-gray-light);
}

.favorites-dropdown-actions {
    display: flex;
    gap: 0.75rem;
}

.favorites-dropdown-view-all-btn {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.65rem 1rem;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-white);
}

.favorites-dropdown-view-all-btn:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
}

/* Favorites Dropdown Scrollbar */
.favorites-dropdown-items::-webkit-scrollbar {
    width: 6px;
}

.favorites-dropdown-items::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.favorites-dropdown-items::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.favorites-dropdown-items::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Favorites Dropdown Responsive */
@media (max-width: 575.98px) {
    .favorites-dropdown-menu {
        min-width: 300px;
        max-width: 90vw;
    }

    .favorites-dropdown-header {
        padding: 1rem 1.25rem;
    }

    .favorites-dropdown-item {
        padding: 0.875rem 1.25rem;
    }

    .favorites-dropdown-item-image {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .favorites-dropdown-item-name {
        font-size: 0.85rem;
    }

    .favorites-dropdown-footer {
        padding: 1rem 1.25rem;
    }
}

/* Cart Dropdown Responsive */
@media (max-width: 575.98px) {
    .cart-dropdown-menu {
        min-width: 300px;
        max-width: 90vw;
    }

    .cart-dropdown-header {
        padding: 1rem 1.25rem;
    }

    .cart-dropdown-item {
        padding: 0.875rem 1.25rem;
    }

    .cart-dropdown-item-image {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .cart-dropdown-item-name {
        font-size: 0.85rem;
    }

    .cart-dropdown-footer {
        padding: 1rem 1.25rem;
    }

    .cart-dropdown-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cart-dropdown-view-btn,
    .cart-dropdown-checkout-btn {
        width: 100%;
    }
}

/* Badge positioning */
.badge {
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25em 0.4em;
}

/* Navigation */
.navbar-menu {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.navbar-menu.navbar-sticky {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0rem 0;
}

.navbar {
    padding: 0.5rem 0;
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    color: var(--color-text-primary) !important;
    font-size: 14px;
    padding: 0.7rem 1rem !important;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--color-primary) !important;
}

.nav-link.active {
    color: var(--color-primary) !important;
    font-weight: 500;
}


/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#heroCarousel {
    position: relative;
    width: 100%;
}

#heroCarousel .carousel-inner {
    overflow: visible;
    width: 100%;
}

#heroCarousel .carousel-item {
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    width: 100%;
}

#heroCarousel.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

#heroCarousel.carousel-fade .carousel-item.active,
#heroCarousel.carousel-fade .carousel-item-next.carousel-item-start,
#heroCarousel.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

#heroCarousel.carousel-fade .active.carousel-item-start,
#heroCarousel.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    display: none;
}

.hero-main {
    background-color: var(--color-hero-bg-light);
    height: 450px;
    display: flex;
    align-items: center;
    padding: 1rem 0;
}

.hero-content {
    padding: 1rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.5;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.hero-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-bottom {
    background-color: var(--color-hero-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    position: relative;
    margin-top: 0;
}

.hero-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    z-index: 15;
    padding: 0;
    list-style: none;
}

.hero-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    border: none;
    background-color: var(--color-dot-inactive);
    padding: 0;
    margin: 0;
    cursor: pointer;
    opacity: 1;
    transition: background-color 0.3s ease;
}

.hero-dots .dot.active,
.hero-dots .dot.dot-active {
    background-color: var(--color-primary);
}

.hero-dots .dot:hover {
    background-color: var(--color-primary);
    opacity: 0.8;
}

.hero-bottom-text {
    color: var(--color-text-light);
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    margin: 0;
    padding-top: .5rem;
    line-height: 1.5;
}

/* Month Selection Section */
.month-section {
    background-color: var(--color-white);
   
    width: 100%;
}
.month-section__container{
    border-top: 1px solid var(--color-gray-light);
    border-bottom: 1px solid var(--color-gray-light);
    padding: 1.25rem 0;
}
.month-section  .nav-item.active .month-button{
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    box-shadow: 0px 0px 10px var(--color-border-light);
}
.month_product_list{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    padding: 0;
    margin: 0;
}
.month-section__image img{
    position: sticky;
    top: 110px;
}
.btn-outline-month-product{
    background-color: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-gray-secondary);
    border-radius: 50px;
    padding: 6px 12px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
    text-transform: none;
    letter-spacing: 0;
    text-align: center;
    border-radius: 50px;
}
.btn-outline-month-product:hover{
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
    box-shadow: 0px 0px 10px var(--color-border-light);
}

/* Month product hover tooltip (image + price) */
.month-product-wrap {
    position: relative;
    display: inline-block;
}
.month-product-tooltip {
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%) translateY(-10px) scale(0.96);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
    padding: 10px;
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.month-product-tooltip::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--color-white);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.month-product-wrap:hover .month-product-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-8px) scale(1);
}
.month-product-tooltip img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
.month-product-tooltip__price {
    margin-top: 8px;
    padding: 4px 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-primary);
    border-radius: 20px;
    line-height: 1.2;
}
.month-product-tooltip__price:empty {
    display: none;
}
.month-buttons-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
    padding: 0;
    margin: 0;
}

.month-button {
    background-color: transparent;
    color: var(--color-text-primary);
    border: none;
    padding: 6px 12px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
    text-transform: none;
    letter-spacing: 0;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 50px;
}

.month-button:hover {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    box-shadow: 0px 0px 10px var(--color-border-light);
}

.month-button:focus {
    outline: none;
}

/* Product Categories Section */
.categories-section {
    padding: 2.5rem 0;
    background-color: var(--color-white);
    width: 100%;
}

/* Grid: consistent gap (fallback if Bootstrap gutter classes not used) */
.categories-section__grid.row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}


.category-card {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background-color: var(--color-text-primary);
}

.category-card--large {
    height: 280px;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.35s ease;
}

.category-card:hover .category-image {
    transform: scale(1.04);
}

/* Single gradient overlay for readability */
.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.25) 45%,
            rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
    text-align: center;
    min-height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.category-content-vegetables {
    min-height: 72px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.category-content-vegetables .category-title {
    margin-bottom: 0;
}

.category-title {
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.category-card--large .category-title {
    font-size: 1.35rem;
}

.category-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    align-self: center;
}

.category-content-vegetables .category-btn {
    align-self: center;
}

.category-btn:hover {
    background-color: var(--color-primary-dark);
    transform: scale(1.02);
}

.category-btn:focus {
    outline: none;
}

/* Responsive adjustments */

/* Extra small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    .logo {
        font-size: 1.75rem;
    }

    .logo-image {
        max-height: 45px;
    }

    .user-actions {
        gap: 1.5rem;
        font-size: 0.8rem;
    }

    .user-actions i {
        font-size: 1.25rem !important;
    }

    .search-container input {
        font-size: 0.9rem;
    }

    .top-bar {
        font-size: 0.8rem;
    }

    .social-icons a {
        font-size: 0.9rem;
        margin-right: 0.75rem !important;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem !important;
    }

    .navbar {
        padding: 0.5rem 0;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .logo {
        font-size: 2rem;
    }

    .user-actions {
        gap: 2rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .logo {
        font-size: 2.25rem;
    }

    .user-actions {
        gap: 2.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem !important;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .logo {
        font-size: 2.5rem;
    }

    .logo-image {
        max-height: 60px;
    }
}


/* Ensure proper spacing on all devices */
@media (max-width: 991.98px) {
    .main-header {
        padding: 1rem 0 !important;
    }

    .user-actions a {
        font-size: 0.8rem;
    }
}

/* Navigation responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-nav {
        gap: 0.25rem;
        padding-top: 0.5rem;
        text-align: left;
    }

    .nav-link {
        text-align: left;
        padding-left: 0.75rem !important;
    }



    .navbar-collapse {
        text-align: left;
    }
}

/* Badge responsive adjustments */
@media (max-width: 575.98px) {
    .badge {
        min-width: 16px;
        height: 16px;
        font-size: 0.6rem;
        padding: 0.2em 0.3em;
    }
}

/* Hero Section Responsive */
@media (max-width: 991.98px) {
    .hero-main {
        min-height: auto;
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-bottom-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .hero-main {
        padding: 1rem 0;
        height: 100%;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-content {
        text-align: center;
        padding: 0.5rem 0;
    }

    .hero-image-wrapper {
        padding: 0.5rem 0;
    }

    .hero-bottom-text {
        font-size: 0.85rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .category-card {
        height: 220px;
    }
    .category-card--large {
        height: 260px;
    }
}

/* Month Section Responsive */
@media (max-width: 991.98px) {
    .month-section {
        padding: 1rem 0;
    }

    .month-buttons-wrapper {
        justify-content: flex-start;
        /* overflow-x: auto; */
        padding: 0;
        /* -webkit-overflow-scrolling: touch; */
        /* scrollbar-width: thin; */
        gap: 8px;
    }

    .month-buttons-wrapper::-webkit-scrollbar {
        height: 4px;
    }

    .month-buttons-wrapper::-webkit-scrollbar-track {
        background: transparent;
    }

    .month-buttons-wrapper::-webkit-scrollbar-thumb {
        background: var(--color-gray-secondary);
        border-radius: 2px;
    }

    .month-button {
        font-size: 0.85rem;
        flex-shrink: 0;
        min-width: fit-content;
        padding: 6px 12px;
    }

    .category-card {
        height: 240px;
    }
    .category-card--large {
        height: 280px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .month-button {
        font-size: 0.9rem;
    }
}

/* Categories Section Responsive */
@media (max-width: 991.98px) {
    .categories-section {
        padding: 2rem 0;
    }

    .category-content {
        padding: 1.25rem 1rem;
    }

    .category-title {
        font-size: 1.05rem;
    }

    .category-card--large .category-title {
        font-size: 1.2rem;
    }

    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 575.98px) {
    .categories-section {
        padding: 1.5rem 0;
    }

    

    .category-content {
        padding: 1rem;
    }

    .category-title {
        font-size: 1rem;
    }

    .category-card--large .category-title {
        font-size: 1.1rem;
    }

    .category-btn {
        padding: 0.45rem 0.9rem;
        font-size: 0.8125rem;
    }
}

/* New Arrivals Section */
.new-arrivals {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 2.5rem;
}

.arrivals-slider {
    position: relative;
    padding: 0rem;
}

.arrivals-slider .slick-list {
    margin: 0 -0.75rem;
}

.arrivals-slider .slick-slide {
    padding: 0 0.75rem;
}

.arrivals-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.arrivals-slider:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
}

.arrivals-slider .slick-arrow:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.arrivals-slider .slick-prev {
    left: -3rem;
}

.arrivals-slider .slick-next {
    right: -3rem;
}

.arrivals-slider .slick-arrow::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
    color: var(--color-text-primary);
    opacity: 1;
    line-height: 1;
    display: inline-block;
}

.arrivals-slider .slick-prev::before {
    content: '\f053';
    /* fa-chevron-left */
}

.arrivals-slider .slick-next::before {
    content: '\f054';
    /* fa-chevron-right */
}

.arrivals-slider .slick-arrow:hover::before {
    color: var(--color-white);
}

.arrival-card {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    position: relative;
    transition: all 0.3s ease;
    padding: 1rem 0.75rem !important;
    border-radius: 12px;
}

.arrival-card:hover {
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); */
    background-color: #f8f8f8;
    /* transform: translateY(-5px); */
}

.arrivals-slider .slick-slide {
    height: auto !important;
}

.arrival-image {
    position: relative;
    background-color: #f8f8f8;
    border-radius: 12px;
    /* padding: 1.5rem; */
    min-height: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-hover-bar {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-white);
    border-radius: 50px;
    padding: 0.5rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.arrival-card:hover .card-hover-bar {
    opacity: 1;
    visibility: visible;
}

.hover-icon {
    color: var(--color-text-primary);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    border-radius: 50%;
}

.hover-icon:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.2);
}

.hover-icon i {
    font-weight: 400;
    stroke-width: 1;
}

.arrival-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badges {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-white);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    text-transform: uppercase;
}

.badge-sale {
    background-color: var(--color-primary);
}

.badge-new {
    background-color: #14a44d;
}

.arrival-info {
    margin-top: 1rem;
}

.arrival-name {
    font-size: .9rem;
    font-weight: 600;
    margin: 0.35rem 0 0.15rem;
    color: var(--color-text-primary);
}

.arrival-category {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0 0 0.5rem;
}

.arrival-pricing {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.95rem;
    margin-top: 10px;
}

.price-current {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.05rem;
}

.price-old {
    color: #999;
    text-decoration: line-through;
}

/* New Arrivals Slider Responsive */
@media (max-width: 1199.98px) {
    .arrivals-slider {
        padding: 0 1.5rem;
    }

    .arrivals-slider .slick-prev {
        left: -0.5rem;
    }

    .arrivals-slider .slick-next {
        right: -0.5rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }

    .arrivals-slider {
        padding: 0 1rem;
    }

    .arrivals-slider .slick-arrow {
        width: 35px;
        height: 35px;
    }

    .arrivals-slider .slick-arrow::before {
        font-size: 0.9rem;
    }

    .arrivals-slider .slick-prev {
        left: -0.25rem;
    }

    .arrivals-slider .slick-next {
        right: -0.25rem;
    }

    .arrival-image {
        min-height: 180px;
        padding: 1rem;
    }
}

@media (max-width: 575.98px) {
    .new-arrivals {
        padding: 3rem 0;
    }

    .arrivals-slider {
        padding: 0 0.5rem;
    }

    .arrivals-slider .slick-arrow {
        width: 30px;
        height: 30px;
    }

    .arrivals-slider .slick-arrow::before {
        font-size: 0.8rem;
    }
}

/* Promotional Banner Section */
.promo-banner {
    padding: 4rem 0;
    background-color: #f5f5f5;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.promo-content {
    padding: 2rem 0;
}

.promo-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1rem 0;
}

.promo-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 0.5rem 0;
    line-height: 1.1;
}

.promo-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 2rem 0;
}

.promo-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.promo-btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.promo-btn:focus {
    outline: none;
}

.promo-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.promo-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Promotional Banner Responsive */
@media (max-width: 991.98px) {
    .promo-banner {
        padding: 3rem 0;
    }

    .promo-title {
        font-size: 2.5rem;
    }

    .promo-subtitle {
        font-size: 1.1rem;
    }

    .promo-content {
        text-align: center;
        padding: 1rem 0;
    }

    .promo-image-wrapper {
        padding: 1rem 0;
    }
}

@media (max-width: 767.98px) {
    .promo-banner {
        padding: 2.5rem 0;
    }

    .promo-label {
        font-size: 0.9rem;
    }

    .promo-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .promo-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .promo-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 1200px) {
    .promo-title {
        font-size: 4rem;
    }

    .promo-subtitle {
        font-size: 1.5rem;
    }
}

/* About Tatgut Section */
.about-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
    width: 100%;
}

.video-wrapper {
    padding: 1rem 0;
    height: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.about-content {
    padding: 2rem 0;
}

.about-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
    margin: 0 0 0.5rem 0;
    text-transform: none;
}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.about-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 1.7rem;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 0.25rem 0;
}

.feature-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* About Section Responsive */
@media (max-width: 991.98px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-text {
        margin-bottom: 2rem;
    }

    .about-content {
        padding: 1rem 0;
    }

    .features-grid {
        gap: 1.25rem;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 2.5rem 0;
    }

    .about-label {
        font-size: 0.85rem;
    }

    .about-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .about-text {
        margin-bottom: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.25rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-subtitle {
        font-size: 0.85rem;
    }
}

/* Natural Food & Products Section (World of Tomatoes) */
.natural-food-section {
    padding: 4rem 0;
    background-color: var(--color-white);
    width: 100%;
}

.natural-food-section .section-title {
    margin-bottom: 2rem;
}

.natural-food-section .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.natural-food-section .row > [class*="col"] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.natural-food-section .col-12.col-md-5 {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.natural-food-banner {
    position: relative;
    width: 100%;
    min-height: 320px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    -webkit-align-self: stretch;
    align-self: stretch;
}

.natural-food-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.75rem;
    z-index: 1;
}

.banner-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0;
}

.banner-btn:hover {
    color: var(--color-white);
    opacity: 0.95;
}

.btn-arrow {
    width: 20px;
    height: 20px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 0.65rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.banner-btn:hover .btn-arrow {
    background-color: var(--color-primary-dark);
}

.products-slider {
    position: relative;
    padding: 0 0.5rem;
}

/* Grid of product cards (World of Tomatoes) */
.natural-food-section .products-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.products-slider .slick-list {
    margin: 0 -0.5rem;
}

.products-slider .slick-slide {
    padding: 0 0.5rem;
}

.products-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 35px;
    height: 35px;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.products-slider:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
}

.products-slider .slick-arrow:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.products-slider .slick-prev {
    left: -1rem;
}

.products-slider .slick-next {
    right: -1rem;
}

.products-slider .slick-arrow::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--color-text-primary);
    opacity: 1;
    line-height: 1;
    display: inline-block;
}

.products-slider .slick-prev::before {
    content: '\f053';
    /* fa-chevron-left */
}

.products-slider .slick-next::before {
    content: '\f054';
    /* fa-chevron-right */
}

.products-slider .slick-arrow:hover::before {
    color: var(--color-white);
}

.natural-food-section .product-card {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 0;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 0px;
}

.natural-food-section .product-card > a {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: inherit;
}

.natural-food-section .product-card:hover {
    border-color: rgba(40, 167, 69, 0.35);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.natural-food-section .product-card-actions {
    display: none;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    padding: 0 1rem 0 0.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    position: absolute;
    bottom: 18px;
    right: 0;
}

.natural-food-section .product-card:hover .product-card-actions {
    display: flex;
    opacity: 1;
    visibility: visible;
    
}

.natural-food-section .product-card-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    font-size: 1rem;
}

.natural-food-section .product-card-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.natural-food-section .product-card-btn.product-card-favorite:hover {
    background: #e91e63;
    border-color: #e91e63;
}

.product-card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    position: relative;
    margin-bottom: 1rem;
}

.product-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
}

.natural-food-section .product-image {
    position: relative;
    width: 100px;
    min-width: 100px;
    height: 100px;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    flex-shrink: 0;
}

.natural-food-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image {
    position: relative;
    width: 120px;
    min-width: 120px;
    height: 120px;
    background-color: #f8f8f8;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0.75rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card .card-hover-bar {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-white);
    border-radius: 50px;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.product-card:hover .card-hover-bar {
    opacity: 1;
    visibility: visible;
}

.product-card .hover-icon {
    color: var(--color-text-primary);
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
}

.product-card .hover-icon:hover {
    color: var(--color-white);
    transform: scale(1.1);
}

.product-card .hover-icon i {
    font-weight: 400;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.product-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.product-category {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text-primary);
    margin: 0 0 0.5rem 0;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.product-pricing .price-current {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.product-pricing .price-old {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
}

/* Natural Food Section Responsive */
@media (max-width: 991.98px) {
    .natural-food-section {
        padding: 3rem 0;
    }

    .natural-food-banner {
        min-height: 400px;
        margin-bottom: 2rem;
    }

    .banner-title {
        font-size: 2rem;
    }

    .products-slider {
        padding: 0 1.5rem;
    }

    .products-slider .slick-prev {
        left: -0.5rem;
    }

    .products-slider .slick-next {
        right: -0.5rem;
    }

    .product-image {
        width: 100px;
        min-width: 100px;
        height: 100px;
    }

    .product-name {
        font-size: 0.95rem;
    }

    .product-category {
        font-size: 0.8rem;
    }
}

@media (max-width: 769px) {
    .natural-food-section {
        padding: 2.5rem 0;
    }

    .natural-food-banner {
        min-height: 350px;
    }

    .banner-overlay {
        padding: 2rem;
    }

    .banner-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .banner-btn {
        font-size: 0.9rem;
    }

    .products-slider {
        padding: 0 1rem;
    }

    .products-slider .slick-arrow {
        width: 30px;
        height: 30px;
    }

    .products-slider .slick-prev {
        left: -0.25rem;
    }

    .products-slider .slick-next {
        right: -0.25rem;
    }

    .products-slider .slick-arrow::before {
        font-size: 0.8rem;
    }

    .product-card {
        flex-direction: row;
        align-items: center;
    }

    .product-image {
        width: 90px;
        min-width: 90px;
        height: 90px;
    }

    .product-name {
        font-size: 0.9rem;
    }

    .product-category {
        font-size: 0.75rem;
    }

    .product-pricing .price-current {
        font-size: 0.95rem;
    }

    .product-pricing .price-old {
        font-size: 0.85rem;
    }
}

/* Footer Section */
.footer-section {
    width: 100%;
}

.footer-upper {
    background-color: #fff;
    padding: 4rem 0 3rem;
    border-top: 1px solid #e9ecef;
}

.footer-widget {
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1.25rem 0;
}

.footer-description {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.footer-contact {
    margin-top: 1.5rem;
}

.contact-item {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    margin: 0 0 0.75rem 0;
    line-height: 1.6;
}

.contact-item strong {
    color: #333;
    font-weight: 600;
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1.25rem 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.footer-links a:hover {
    color: #28a745;
}

.newsletter-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    margin: 0 0 1.25rem 0;
    line-height: 1.6;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form .input-group {
    display: flex;
}

.newsletter-form .form-control {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-light);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.newsletter-form .form-control:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.btn-subscribe {
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-subscribe:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.footer-bottom {
    background-color: #28a745;
    padding: 1.5rem 0;
}

.copyright-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-icon {
    height: 24px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--color-primary);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    z-index: 1000;
    border: 2px solid var(--color-white);
}

.scroll-to-top:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.scroll-to-top:focus {
    outline: none;
}

/* Footer Responsive */
@media (max-width: 991.98px) {
    .footer-upper {
        padding: 3rem 0 2rem;
    }

    .footer-bottom-right {
        justify-content: center;
        margin-top: 1rem;
    }

    .copyright-text {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .footer-upper {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .newsletter-form .input-group .btn-subscribe {
        width: 35%;
    }

    .btn-subscribe {
        width: 100%;
    }

    .footer-bottom {
        padding: 1.25rem 0;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 1rem;
    }

    .payment-methods {
        justify-content: center;
    }
}

/* Offcanvas Mobile Menu */
.offcanvas_menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--color-white);
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
}

.offcanvas_menu.active {
    left: 0;
}

.offcanvas_menu_wrapper {
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.canvas_close {
    text-align: right;
    margin-bottom: 1.5rem;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

.canvas_close a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.canvas_close a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.language_currency {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-gray-light);
}

.language_currency ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.language_currency>ul>li {
    margin-bottom: 0.75rem;
}

.language_currency>ul>li>a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--color-text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.language_currency>ul>li>a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown_language,
.dropdown_currency {
    list-style: none;
    padding: 0.5rem 0 0 1rem;
    margin: 0;
    display: none;
}

.dropdown_language.active,
.dropdown_currency.active {
    display: block;
}

.dropdown_language li,
.dropdown_currency li {
    margin-bottom: 0.5rem;
}

.dropdown_language a,
.dropdown_currency a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown_language a:hover,
.dropdown_currency a:hover {
    color: var(--color-primary);
}

.header_social {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-gray-light);
}

.header_social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
}

.header_social a {
    color: var(--color-text-primary);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.header_account_list ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header_account_list ul li {
    margin-bottom: 0;
}

.header_account_list ul li a {
    color: var(--color-text-primary);
}

.header_account_list ul li a:hover {
    color: var(--color-primary);
}

.header_social a:hover {
    color: var(--color-primary);
}

.call-support {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-gray-light);
}

.call-support p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--color-text-primary);
    margin: 0;
}

.call-support a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.offcanvas_main_menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offcanvas_main_menu li {
    border-bottom: 1px solid #f0f0f0;
    padding: 0.5rem 0;
}

.offcanvas_main_menu li:last-child {
    border-bottom: none;
}

.offcanvas_main_menu>li>a {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--color-text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.offcanvas_main_menu>li>a:hover {
    color: var(--color-primary);
}

.menu-expand {
    cursor: pointer;
    color: var(--color-text-primary);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.menu-item-has-children.active .menu-expand {
    transform: rotate(180deg);
}

.offcanvas_footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-light);
}

.offcanvas_footer span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #666;
}

.offcanvas_footer a {
    color: var(--color-primary);
    text-decoration: none;
}

.offcanvas_footer i {
    margin-right: 0.5rem;
}

/* Offcanvas Overlay */
.offcanvas_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.offcanvas_overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Button */
.navbar-Mobile-Menu {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: none;
}

@media (max-width: 991.98px) {
    .navbar-Mobile-Menu {
        display: block;
    }
}

/* Product Details Page Styles */

/* Breadcrumb Section */
.breadcrumb-section {
    background-color: #f8f9fa;
}

.breadcrumb {
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--color-text-primary);
    text-decoration: none;
    text-transform: lowercase;
}

.breadcrumb-item a:hover {
    color: var(--color-primary);
}

.breadcrumb-item.active {
    color: var(--color-text-primary);
    text-transform: lowercase;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    padding: 0 0.5rem;
    color: var(--color-gray-secondary);
}

/* Product Details Section */
.product-details-section {
    background-color: var(--color-white);
}

/* Product Image Gallery */
.product-image-gallery {
    position: sticky;
    top: 125px;
}

.main-product-image {
    border: 1px solid var(--color-gray-light);
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    max-height: 400px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.main-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbnails {
    flex-wrap: wrap;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-item:hover {
    border-color: var(--color-primary);
}

.thumbnail-item.active {
    border-color: var(--color-primary);
}

.thumbnail-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    cursor: pointer;
    height: 100%;
}

/* Product Info */
.product-info {
    padding: 0 1rem;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.3;
}

.product-rating .stars {
    font-size: 1rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.current-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.old-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
}

.product-description {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Product Options */
.product-options {
    padding-top: 1rem;
    border-top: 1px solid var(--color-gray-light);
}

.color-selector {
    flex-wrap: wrap;
}

.color-option {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-gray-light);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-option:hover {
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.color-option.active {
    border-color: var(--color-primary);
    border-width: 3px;
}

.color-option.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.size-selector {
    flex-wrap: wrap;
}

.size-option {
    min-width: 45px;
    height: 45px;
    border: 1px solid var(--color-gray-light);
    border-radius: 4px;
    background-color: var(--color-white);
    color: var(--color-text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
}

.size-option:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.size-option.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* Quantity Selector */
.quantity-selector .input-group {
    border: 1px solid var(--color-gray-light);
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    border: none;
    background-color: #f8f9fa;
    color: var(--color-text-primary);
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.quantity-selector input {
    border: none;
    border-left: 1px solid var(--color-gray-light);
    border-right: 1px solid var(--color-gray-light);
    font-weight: 600;
}

.quantity-selector input:focus {
    box-shadow: none;
    border-color: var(--color-gray-light);
}

.btn-add-to-cart {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    padding: 0.7rem 1.5rem;
    color: var(--color-primary);
    border-radius: 6px;
}

.btn-add-to-cart:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    color: #fff;
}

.btn-BuyNow {
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    padding: 0.7rem 1.5rem;
    color: #fff;
    border-radius: 6px;
}

.btn-BuyNow:hover {
    background-color: #1e7e34;
    border-color: #1e7e34;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
    color: #fff;
}

/* Product Actions */
.product-actions .btn {
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-actions .btn:hover {
    border-color: var(--color-primary);
    color: #fff;
}

/* Product Meta */
.product-meta {
    padding-top: 1rem;
    border-top: 1px solid var(--color-gray-light);
}

.product-meta a {
    color: var(--color-primary);
}

.social-share .social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid var(--color-gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-share .social-icon:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Product Tabs */
.product-tabs-section {
    background-color: var(--color-white);
}

.product-tabs {
    border-bottom: 2px solid var(--color-gray-light);
}

.product-tabs .nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-primary);
    border: none;
    border-bottom: 2px solid transparent;
    padding: 1rem 1.5rem;
    margin-bottom: -2px;
    transition: all 0.3s ease;
    background: none;
}

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

.product-tabs .nav-link.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    background: none;
}

.tab-content-wrapper {
    font-family: 'Poppins', sans-serif;
    color: #666;
    line-height: 1.7;
}

.tab-content-wrapper table {
    max-width: 500px;
}

.tab-content-wrapper table td {
    padding: 0.75rem 1rem;
}

.tab-content-wrapper table td:first-child {
    width: 40%;
}

/* Growing Calendar Styles */
.growing-calendar {
    padding: 1rem 0;
}

.month-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    background-color: #f0f0f0;
    color: #999;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.month-badge.active {
    background-color: #28a745;
    color: #fff;
}

/* Review Section */
.review-item {
    font-family: 'Poppins', sans-serif;
}

.review-header {
    font-size: 0.95rem;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.25rem;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input .star-label {
    cursor: pointer;
    color: #ddd;
    font-size: 1.5rem;
    transition: color 0.2s;
}

.rating-input input[type="radio"]:checked~.star-label,
.rating-input .star-label:hover,
.rating-input .star-label:hover~.star-label {
    color: #ffc107;
}

/* Related Products Section */
.related-products-section {
    background-color: #f8f9fa;
}

.related-products-slider {
    position: relative;
    padding: 0;
}

.related-products-slider .slick-list {
    margin: 0 -0.75rem;
}

.related-products-slider .slick-slide {
    padding: 0 0.75rem;
}

.related-products-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.related-products-slider .slick-arrow:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.related-products-slider .slick-prev {
    left: -3rem;
}

.related-products-slider .slick-next {
    right: -3rem;
}

.related-products-slider .slick-arrow::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
    color: var(--color-text-primary);
    opacity: 1;
    line-height: 1;
    display: inline-block;
}

.related-products-slider .slick-prev::before {
    content: '\f053';
}

.related-products-slider .slick-next::before {
    content: '\f054';
}

.related-products-slider .slick-arrow:hover::before {
    color: var(--color-white);
}

/* Product Details Responsive */
@media (max-width: 991.98px) {
    .product-image-gallery {
        position: relative;
        top: 0;
    }

    .main-product-image {
        min-height: 300px;
    }

    .product-title {
        font-size: 1.75rem;
    }

    .current-price {
        font-size: 1.5rem;
    }

    .old-price {
        font-size: 1.1rem;
    }

    .related-products-slider {
        padding: 0 1.5rem;
    }

    .related-products-slider .slick-prev {
        left: -0.5rem;
    }

    .related-products-slider .slick-next {
        right: -0.5rem;
    }
}

@media (max-width: 767.98px) {
    .product-title {
        font-size: 1.5rem;
    }

    .main-product-image {
        min-height: 250px;
    }

    .thumbnail-item {
        width: 60px;
        height: 60px;
    }

    .product-info {
        padding: 0;
        margin-top: 2rem;
    }

    .quantity-cart {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .quantity-cart .btn-add-to-cart {
        width: 100%;
    }

    .product-tabs .nav-link {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .related-products-slider {
        padding: 0 1rem;
    }

    .related-products-slider .slick-arrow {
        width: 35px;
        height: 35px;
    }

    .related-products-slider .slick-arrow::before {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .product-title {
        font-size: 1.25rem;
    }

    .current-price {
        font-size: 1.25rem;
    }

    .old-price {
        font-size: 1rem;
    }

    .thumbnail-item {
        width: 50px;
        height: 50px;
    }

    .color-option {
        width: 35px;
        height: 35px;
    }

    .size-option {
        min-width: 40px;
        height: 40px;
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
    }

    .product-tabs .nav-link {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem;
    }
}

/* Login Modal Styles */
.login-modal-dialog {
    max-width: 900px;
    margin: 1rem auto;
    display: flex;
    align-items: center;
    min-height: calc(100% - 2rem);
}

.login-modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.login-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 0;
}

.login-modal-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 1);
    transform: rotate(90deg);
}

.login-modal-close i {
    font-size: 1.2rem;
    color: #333;
}

.login-modal-row {
    min-height: 600px;
}

/* Left Section - Login Form */
.login-form-section {
    background-color: var(--color-white);
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
}

.login-form-wrapper {
    width: 100%;
    margin: 0 auto;
}

.login-logo {
    margin-bottom: 2rem;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text-primary);
    display: inline-block;
    position: relative;
}

.logo-leaf {
    font-size: 1.5rem;
    display: inline-block;
    margin-left: -0.2rem;
}

.login-welcome {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.login-welcome strong {
    font-weight: 700;
    color: var(--color-primary);
}

.login-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form .form-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.login-input {
    font-family: 'Poppins', sans-serif;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-gray-light);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.login-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem var(--color-primary-light);
    outline: none;
}

.password-input-wrapper {
    position: relative;
}

.password-toggle-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.password-toggle-btn:hover {
    color: var(--color-primary);
}

.login-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.forgot-password-link,
.new-account-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password-link:hover,
.new-account-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.login-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 8px;
    background: linear-gradient(180deg, #218838 0%, #28a745 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.login-submit-btn:hover {
    background: linear-gradient(180deg, #1e7e34 0%, #218838 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    color: var(--color-white);
}

.login-submit-btn:active {
    transform: translateY(0);
}

/* Right Section - Image with Text */
.login-image-section {
    background: linear-gradient(135deg, #1e7e34 0%, #218838 50%, #28a745 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.login-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('images/2.jpg');
    /* background-size: cover; */
    background-position: center;
    background-repeat: no-repeat;
    /* animation: leafPattern 20s ease-in-out infinite; */
}

@keyframes leafPattern {

    0%,
    100% {
        background-position: 20% 30%, 80% 70%, 50% 50%, center;
    }

    50% {
        background-position: 30% 40%, 70% 60%, 60% 60%, center;
    }
}

.login-image-wrapper::before {
    content: '';
    top: 0;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    background-color: #0000006b !important;
    position: absolute;
}

.login-image-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2.5rem;
    color: var(--color-white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.login-image-text {
    font-family: 'Poppins', sans-serif;
    font-size: .8rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.login-image-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    letter-spacing: 0.05em;
}

/* Login Modal Responsive */
@media (max-width: 991.98px) {
    .login-modal-dialog {
        max-width: 100%;
        margin: 0.5rem auto;
        min-height: calc(100% - 1rem);
    }

    .login-modal-row {
        min-height: auto;
    }

    .login-form-section {
        padding: 2.5rem 2rem;
    }

    .login-image-section {
        min-height: 400px;
    }

    .login-image-content {
        padding: 2rem 1.5rem;
    }

    .login-image-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .login-modal-dialog {
        margin: 0 auto;
        border-radius: 0;
        min-height: 100%;
    }

    .login-modal-content {
        border-radius: 0;
    }

    .login-form-section {
        padding: 2rem 1.5rem;
    }

    .login-logo {
        margin-bottom: 1.5rem;
    }

    .logo-text {
        font-size: 1.75rem;
    }

    .login-welcome {
        font-size: 1.25rem;
    }

    .login-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .login-image-section {
        min-height: 300px;
    }

    .login-image-content {
        padding: 1.5rem 1rem;
    }

    .login-image-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .login-image-title {
        font-size: 2rem;
    }

    .login-form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .login-modal-close {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 575.98px) {
    .login-form-wrapper {
        max-width: 100%;
    }

    .login-welcome {
        font-size: 1.1rem;
    }

    .login-subtitle {
        font-size: 0.85rem;
    }

    .login-input {
        font-size: 0.9rem;
        padding: 0.75rem 0.875rem;
    }
}

/* Registration Form Styles */
.register-sex-options {
    display: flex;
    gap: 1rem;
}

.register-sex-options .form-check {
    margin: 0;
}

.register-sex-options .form-check-input {
    margin-top: 0.25rem;
    cursor: pointer;
}

.register-sex-options .form-check-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--color-text-primary);
    cursor: pointer;
}

.register-terms-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

.register-terms-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.register-terms-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* Checkout Page Styles */
.checkout-section {
    background-color: #f8f9fa;
    min-height: calc(100vh - 400px);
}

.checkout-form-wrapper {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.checkout-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
}

.returning-customer {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-gray-light);
}

.returning-customer p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--color-text-primary);
    margin: 0;
}

.checkout-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.checkout-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.checkout-form .form-group {
    margin-bottom: 1.5rem;
}

.checkout-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.checkout-input {
    font-family: 'Poppins', sans-serif;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-light);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.checkout-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem var(--color-primary-light);
    outline: none;
}

.checkout-checkbox-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    line-height: 1.5;
}

.form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.checkout-form-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-light);
}

.checkout-continue-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    padding: 0.875rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    width: 100%;
}

.checkout-continue-btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    color: var(--color-white);
}

/* Order Summary Styles */
.order-summary-wrapper {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.order-summary-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
}

.order-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-gray-light);
}

.order-summary-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

/* Order Items */
.order-items {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-gray-light);
}

.order-item {
    padding: 1rem 0;
}

.order-item-image-wrapper {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 8px;
    /* overflow: hidden; */
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-badge {
    position: absolute;
    top: -8px;
    left: -8px;
    background-color: #dc3545;
    color: var(--color-white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    border: 2px solid var(--color-white);
}

.order-item-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin: 0;
}

.order-item-price {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
}

/* Order Summary Breakdown */
.order-summary-breakdown {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-gray-light);
}

.order-summary-row {
    margin-bottom: 0.75rem;
}

.order-summary-value {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

/* Voucher Section */
.order-voucher {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-gray-light);
}

/* Grand Total */
.order-grand-total {
    padding-top: 1rem;
}

.order-grand-total-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.order-grand-total-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Shipping Method Section */
.shipping-method-section {
    padding: 0;
}

.shipping-prompt {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin: 0;
}

.checkout-radio-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--color-text-primary);
    cursor: pointer;
    font-weight: 400;
}

.form-check-input[type="radio"]:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.shipping-methods-box {
    background-color: #f8f9fa;
    border: 1px solid var(--color-gray-light);
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.shipping-methods-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
}

.shipping-methods-message {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.delivery-instructions-link,
.voucher-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.delivery-instructions-link i,
.voucher-link i {
    font-size: 1.1rem;
}

/* Payment Details Section */
.payment-details-section {
    padding: 0;
}

.voucher-section {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-gray-light);
}

.voucher-form-box {
    border-radius: 8px;
}

.voucher-form {
    width: 100%;
}

.voucher-input-group {
    display: flex;
    gap: 0rem;
}

.voucher-code-input {
    flex: 1;
    font-family: 'Poppins', sans-serif;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-light);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.voucher-code-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem var(--color-primary-light);
    outline: none;
}

.voucher-apply-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.voucher-apply-btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    color: var(--color-white);
}

.voucher-apply-btn:active {
    transform: translateY(0);
}

.voucher-message {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    min-height: 20px;
}

.voucher-message.success {
    color: var(--color-primary);
    font-weight: 500;
}

.voucher-message.error {
    color: #dc3545;
    font-weight: 500;
}

.voucher-link[aria-expanded="true"] i {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.voucher-link i {
    transition: transform 0.3s ease;
}

.voucher-link.btn-link {
    text-decoration: none;
    color: var(--color-primary);
}

.voucher-link.btn-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.voucher-link.btn-link:focus {
    box-shadow: none;
    outline: none;
}

/* Ensure collapse is visible when expanded */
.collapse:not(.show) {
    display: none;
}

.collapse.show {
    display: block;
}

.payment-options {
    margin-top: 1rem;
}

.payment-option-item {
    border: 1px solid var(--color-gray-light);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
    background-color: var(--color-white);
}

.payment-option-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.1);
}

.payment-option-item .form-check-input:checked~.payment-option-label {
    color: var(--color-primary);
}

.payment-option-item .form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.payment-option-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.payment-option-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

.payment-option-logo {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.payment-logo {
    height: 30px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.checkout-confirm-btn {
    background: linear-gradient(120deg, #218838 0%, #28a745 100%);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    width: 100%;
}

.checkout-confirm-btn:hover {
    background: linear-gradient(180deg, #1e7e34 0%, #218838 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 31, 113, 0.3);
    color: var(--color-white);
}

.checkout-confirm-btn:active {
    transform: translateY(0);
}

.shipping-address-options {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1rem;
}

/* Checkout Responsive */
@media (max-width: 991.98px) {
    .checkout-section {
        padding: 2rem 0;
    }

    .checkout-form-wrapper,
    .order-summary-wrapper {
        padding: 2rem 1.5rem;
    }

    .order-summary-wrapper {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {

    .checkout-form-wrapper,
    .order-summary-wrapper {
        padding: 1.5rem 1rem;
    }

    .checkout-section-title,
    .order-summary-title {
        font-size: 1.5rem;
    }

    .order-item-image-wrapper {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .order-item-name {
        font-size: 0.9rem;
    }

    .order-item-price {
        font-size: 0.85rem;
    }

    .order-grand-total-value {
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {

    .checkout-form-wrapper,
    .order-summary-wrapper {
        padding: 1.25rem 0.75rem;
    }

    .checkout-section-title,
    .order-summary-title {
        font-size: 1.35rem;
    }

    .checkout-input {
        font-size: 0.9rem;
        padding: 0.65rem 0.875rem;
    }

    .voucher-input-group {
        flex-direction: column;
    }

    .voucher-apply-btn {
        width: 100%;
    }


}

/* Cart Page Styles */
.cart-section {
    background-color: #f8f9fa;
    min-height: calc(100vh - 400px);
}

.cart-page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
}

.cart-items-wrapper {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Cart Table Header */
.cart-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr 0.5fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 2px solid var(--color-gray-light);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-header-product {
    min-width: 210px;
}

.cart-header-price {
    min-width: 100px;
}

.cart-header-quantity {
    min-width: 160px;
}

.cart-header-subtotal {
    min-width: 160px;
}

/* Cart Item */
.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr 0.5fr;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-gray-light);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-image-wrapper {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 0.25rem 0;
}

.cart-item-category {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cart-price-current {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.cart-price-old {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}

/* Quantity Selector */
.cart-item-quantity .quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-gray-light);
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}

.cart-item-quantity .quantity-btn {
    border: none;
    background-color: #f8f9fa;
    color: var(--color-text-primary);
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cart-item-quantity .quantity-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.cart-item-quantity .quantity-input {
    border: none;
    border-left: 1px solid var(--color-gray-light);
    border-right: 1px solid var(--color-gray-light);
    width: 60px;
    text-align: center;
    font-weight: 600;
    padding: 0.5rem;
    font-size: 0.95rem;
}

.cart-item-quantity .quantity-input:focus {
    outline: none;
    box-shadow: none;
}

.cart-item-subtotal {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-remove-btn:hover {
    background-color: #f8f9fa;
    color: #dc3545;
}

/* Cart Actions */
.cart-actions {
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-light);
}

.cart-continue-shopping-btn,
.cart-update-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cart-continue-shopping-btn {
    background-color: transparent;
    border: 1px solid var(--color-gray-light);
    color: var(--color-text-primary);
}

.cart-continue-shopping-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
}

.cart-update-btn {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-white);
}

.cart-update-btn:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
}

/* Cart Summary */
.cart-summary-wrapper {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.cart-summary-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
}

.cart-summary-breakdown {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-gray-light);
}

.cart-summary-row {
    margin-bottom: 0.75rem;
}

.cart-summary-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

.cart-summary-value {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

.cart-grand-total {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-gray-light);
}

.cart-grand-total-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.cart-checkout-btn {
    background: linear-gradient(120deg, #218838 0%, #28a745 100%);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.cart-checkout-btn:hover {
    background: linear-gradient(180deg, #1e7e34 0%, #218838 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    color: var(--color-white);
}

/* Cart Coupon */
.cart-coupon {
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-light);
}

.cart-coupon-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
}

.cart-coupon-input {
    font-family: 'Poppins', sans-serif;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-light);
    border-radius: 6px 0 0 6px;
    font-size: 0.95rem;
}

.cart-coupon-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem var(--color-primary-light);
    outline: none;
}

.cart-coupon-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
    border-radius: 0 6px 6px 0;
    padding: 0.75rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cart-coupon-btn:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
}

.cart-coupon-message {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    min-height: 20px;
}

.cart-coupon-message.success {
    color: var(--color-primary);
    font-weight: 500;
}

.cart-coupon-message.error {
    color: #dc3545;
    font-weight: 500;
}

/* Cart Responsive */
@media (max-width: 991.98px) {
    .cart-section {
        padding: 2rem 0;
    }

    .cart-items-wrapper,
    .cart-summary-wrapper {
        padding: 1.5rem;
    }

    .cart-summary-wrapper {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }

    .cart-table-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .cart-item-product {
        grid-column: 1;
    }

    .cart-item-price {
        grid-column: 1;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .cart-item-quantity {
        grid-column: 1;
    }

    .cart-item-subtotal {
        grid-column: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cart-item-subtotal::before {
        content: 'Subtotal: ';
        font-weight: 500;
    }

    .cart-item-remove {
        grid-column: 1;
        justify-self: end;
    }
}

@media (max-width: 767.98px) {
    .cart-page-title {
        font-size: 1.5rem;
    }

    .cart-items-wrapper,
    .cart-summary-wrapper {
        padding: 1.25rem;
    }

    .cart-item-image-wrapper {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }

    .cart-item-name {
        font-size: 0.95rem;
    }

    .cart-item-category {
        font-size: 0.8rem;
    }

    .cart-actions .row {
        flex-direction: column;
    }

    .cart-actions .col-md-6 {
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .cart-continue-shopping-btn,
    .cart-update-btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {

    .cart-items-wrapper,
    .cart-summary-wrapper {
        padding: 1rem;
    }

    .cart-page-title {
        font-size: 1.35rem;
    }

    .cart-item-image-wrapper {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
}

/* Testimonial Carousel Styles */
#testimonialCarousel {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 60px 50px;
}

.testimonial-slide {
    padding: 30px 20px;
}

.testimonial-img {
    margin-bottom: 20px;
}

.testimonial-img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #28a745;
}

.testimonial-title {
    color: #28a745;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #666;
    font-size: 1em;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Carousel Controls */
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #28a745;
    border-radius: 50%;
    opacity: 0.8;
}

#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover {
    opacity: 1;
}

#testimonialCarousel .carousel-control-prev {
    left: 0;
}

#testimonialCarousel .carousel-control-next {
    right: 0;
}

/* Carousel Indicators */
#testimonialCarousel .carousel-indicators {
    bottom: 0;
}

#testimonialCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    margin: 0 5px;
}

#testimonialCarousel .carousel-indicators button.active {
    background-color: #28a745;
}

/* ============================================
   CART PAGE STYLES
   ============================================ */

/* Cart Section */
.cart-section {
    background-color: #f5f5f5;
    min-height: 60vh;
}

/* Page Header */
.cart-page-header {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.cart-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin-bottom: 2rem;
}

/* Top Checkout Button */
.cart-top-checkout {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

/* Checkout Button */
.btn-checkout-top {
    border-radius: 8px;
}

.btn-checkout-black {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-checkout-black:hover {
    background-color: var(--color-primary);
    opacity: 0.9;
    color: #fff;
}

/* Cart Items Container */
.cart-items-container {
    margin-bottom: 2rem;
}

/* Cart Item Card */
.cart-item-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cart-item-card:last-child {
    margin-bottom: 0;
}

/* Cart Item Image */
.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cart Item Details */
.cart-item-details {
    flex: 1;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cart-page-header .item-name,
.cart-item-card .item-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.cart-item-card .item-variant {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #888;
}

.item-unit-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #2e7d32;
    margin-top: 0.25rem;
}

/* Quantity Selector */
.cart-item-quantity {
    flex-shrink: 0;
}

.qty-selector {
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 1.25rem;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background-color: #e0e0e0;
    color: #333;
}

.qty-input {
    width: 50px;
    height: 44px;
    border: none;
    background: transparent;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input:focus {
    outline: none;
}

/* Cart Item Total */
.cart-item-total {
    min-width: 120px;
    text-align: right;
    padding: 0 1.5rem;
}

.cart-item-card .item-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #333;
}

/* Remove Button */
.cart-item-remove {
    flex-shrink: 0;
}

.btn-remove {
    width: 48px;
    height: 48px;
    border: none;
    background-color: #fce4ec;
    color: #e53935;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    background-color: #ffcdd2;
    color: #c62828;
}

.btn-remove i {
    font-size: 1.1rem;
}

/* Action Buttons */
.cart-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 3rem;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: 1px solid #333;
    background-color: #fff;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn-action:hover {
    background-color: #333;
    color: #fff;
}

/* Bottom Section */
.cart-bottom-section {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Shipping Calculator */
.shipping-calculator {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
}

.calculator-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.calculator-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.calculator-form {
    display: flex;
    flex-direction: column;
}

.calculator-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.calculator-input {
    width: 100%;
    height: 44px;
    padding: 0 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.calculator-input:focus {
    outline: none;
    border-color: #999;
}

.btn-calculate {
    width: 100%;
    padding: 12px;
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 6px;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-calculate:hover {
    background-color: #333;
    color: #fff;
}

/* Order Summary (Cart Page) */
.order-summary {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.order-summary .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e0e0e0;
}

.order-summary .summary-row:last-of-type {
    border-bottom: none;
}

.summary-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #333;
}

.summary-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.summary-shipping-note {
    background-color: #f9f9f9;
}

.summary-shipping-note .summary-label {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.order-summary .summary-total .summary-label {
    font-weight: 600;
}

.order-summary .summary-total .summary-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-checkout-bottom {
    width: 100%;
    margin-top: 0;
    border-radius: 0 0 8px 8px;
}

/* Empty Cart */
.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #fff;
    border-radius: 12px;
}

.cart-empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-empty-icon i {
    font-size: 2.5rem;
    color: #999;
}

.cart-empty-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.cart-empty-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Cart Page Responsive */
@media (max-width: 991.98px) {
    .cart-bottom-section .col-lg-6:first-child {
        margin-bottom: 2rem;
    }

    .cart-item-card {
        padding: 1.25rem 1.5rem;
    }

    .cart-item-details {
        padding: 0 1.5rem;
    }

    .cart-item-total {
        min-width: 100px;
        padding: 0 1rem;
    }
}

@media (max-width: 767.98px) {
    .cart-title {
        font-size: 1.5rem;
    }

    .cart-top-checkout {
        justify-content: center;
    }

    .cart-item-card {
        flex-wrap: wrap;
        padding: 1.25rem;
        position: relative;
    }

    .cart-item-image {
        width: 100px;
        height: 100px;
    }

    .cart-item-details {
        flex: 1;
        min-width: calc(100% - 170px);
        padding: 0 0 0 1rem;
    }

    .cart-page-header .item-name,
    .cart-item-card .item-name {
        font-size: 1.1rem;
        padding-right: 50px;
    }

    .cart-item-quantity {
        margin-top: 1rem;
        order: 4;
    }

    .cart-item-total {
        margin-top: 1rem;
        order: 5;
        min-width: auto;
        padding: 0;
        margin-left: auto;
    }

    .cart-item-card .item-price {
        font-size: 1.2rem;
    }

    .cart-item-remove {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
    }

    .btn-remove {
        width: 40px;
        height: 40px;
    }

    .cart-actions {
        justify-content: center;
    }

    .btn-action {
        width: 100%;
        justify-content: center;
    }

    .order-summary .summary-total .summary-value {
        font-size: 1.25rem;
    }

    .cart-bottom-section {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .cart-title {
        font-size: 1.25rem;
    }

    .btn-checkout-black {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .cart-item-card {
        padding: 1rem;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
    }

    .cart-item-details {
        min-width: calc(100% - 140px);
    }

    .cart-page-header .item-name,
    .cart-item-card .item-name {
        font-size: 1rem;
    }

    .item-unit-price {
        font-size: 0.9rem;
    }

    .qty-btn {
        width: 38px;
        height: 38px;
    }

    .qty-input {
        width: 40px;
        height: 38px;
        font-size: 1rem;
    }

    .cart-item-card .item-price {
        font-size: 1.1rem;
    }
}

/* ============================================
   CHECKOUT PAGE STYLES
   ============================================ */

/* Checkout Section */
.checkout-section {
    background-color: #f8f9fa;
    min-height: 80vh;
}

/* Checkout Header */
.checkout-header {
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

/* Progress Steps */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.checkout-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.checkout-steps .step.active .step-number,
.checkout-steps .step.completed .step-number {
    background-color: var(--color-primary);
    color: #fff;
}

.step-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

.checkout-steps .step.active .step-label {
    color: var(--color-primary);
}

.step-divider {
    flex: 1;
    height: 2px;
    background-color: #e0e0e0;
    margin: 0 1rem;
    margin-bottom: 1.5rem;
    max-width: 80px;
}

.checkout-steps .step.completed+.step-divider {
    background-color: var(--color-primary);
}

/* Checkout Layout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

/* Checkout Cards */
.checkout-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.checkout-card .card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}

.checkout-card .card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkout-card .card-title i {
    color: var(--color-primary);
}

.checkout-card .item-count {
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
    margin-left: auto;
}

.checkout-card .card-body {
    padding: 1.5rem;
}

/* Cart Items List (Checkout) */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-items-list .cart-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    gap: 1rem;
}

.cart-items-list .item-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #eee;
}

.cart-items-list .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-info .item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.item-info .item-variant,
.item-info .item-qty {
    font-size: 0.85rem;
    color: #888;
}

.cart-items-list .cart-item .item-price {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

/* Form Styles */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-grid-3-1 {
    grid-template-columns: 2fr 1fr;
}

.form-grid-contact {
    grid-template-columns: 1fr 1fr;
}

.checkout-card .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkout-card .form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
}

.required {
    color: #e53935;
}

.form-input,
.form-select {
    height: 48px;
    padding: 0 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: #fff;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-input::placeholder {
    color: #aaa;
}

.form-input.is-invalid,
.form-select.is-invalid {
    border-color: #e53935 !important;
}

.form-divider {
    height: 1px;
    background: #eee;
    margin: 1.5rem 0;
}

.phone-input-group {
    display: flex;
    gap: 0.5rem;
}

.phone-code {
    width: 70px;
    flex-shrink: 0;
    text-align: center;
}

.phone-number {
    flex: 1;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    cursor: pointer;
}

.payment-radio {
    display: none;
}

.payment-card {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border: 2px solid #eee;
    border-radius: 12px;
    transition: all 0.2s ease;
    gap: 1rem;
}

.payment-radio:checked+.payment-card {
    border-color: var(--color-primary);
    background: rgba(40, 167, 69, 0.05);
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #666;
}

.payment-radio:checked+.payment-card .payment-icon {
    background: var(--color-primary);
    color: #fff;
}

.payment-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.payment-name {
    font-weight: 600;
    color: #333;
}

.payment-desc {
    font-size: 0.85rem;
    color: #888;
}

.payment-check {
    font-size: 1.5rem;
    color: #ddd;
}

.payment-radio:checked+.payment-card .payment-check {
    color: var(--color-primary);
}

/* Bank Details */
.bank-details {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 12px;
}

.bank-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.bank-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.bank-row:last-child {
    border-bottom: none;
}

.bank-label {
    font-weight: 500;
    color: #666;
}

.bank-value {
    font-weight: 600;
    color: #333;
    font-family: monospace;
}

/* Checkout Notice */
.checkout-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #e8f5e9;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.checkout-notice i {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.checkout-notice p {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

/* Buttons */
.btn-primary-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 28px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary-solid:hover {
    background: var(--color-primary-dark);
    color: #fff;
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 28px;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-secondary-outline:hover {
    background: #f5f5f5;
    border-color: #ccc;
    color: #333;
}

.btn-order {
    min-width: 200px;
}

/* Order Summary Sidebar */
.order-summary-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: sticky;
    top: 2rem;
}

.summary-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}

.summary-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.summary-body {
    padding: 1.5rem;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 200px;
    overflow-y: auto;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.summary-item .item-name {
    color: #555;
}

.summary-item .qty {
    color: #888;
}

.summary-item .item-total {
    font-weight: 500;
    color: #333;
}

.summary-divider {
    height: 1px;
    background: #eee;
    margin: 1rem 0;
}

.order-summary-card .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.order-summary-card .summary-row span:first-child {
    color: #666;
}

.order-summary-card .summary-row span:last-child {
    font-weight: 500;
    color: #333;
}

.order-summary-card .summary-tax {
    font-size: 0.85rem;
    color: #888;
}

.order-summary-card .summary-total {
    padding: 1rem 0 0;
}

.order-summary-card .summary-total span:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.order-summary-card .summary-total span:last-child {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary);
}

.summary-footer {
    padding: 1rem 1.5rem;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.secure-checkout i {
    color: var(--color-primary);
}

/* Empty Checkout */
.checkout-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-icon i {
    font-size: 2.5rem;
    color: #999;
}

.checkout-empty h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.checkout-empty p {
    color: #666;
    margin-bottom: 2rem;
}

/* Hidden State */
.hidden {
    display: none !important;
}

/* Checkout Page Responsive */
@media (max-width: 991.98px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .order-summary-card {
        position: static;
    }

    .checkout-sidebar {
        order: -1;
    }

    .checkout-steps {
        max-width: 100%;
    }

    .step-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 767.98px) {
    .checkout-title {
        font-size: 1.5rem;
    }

    .checkout-steps {
        gap: 0;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .step-divider {
        max-width: 40px;
        margin: 0 0.5rem;
    }

    .step-label {
        display: none;
    }

    .form-grid,
    .form-grid-3-1,
    .form-grid-contact {
        grid-template-columns: 1fr;
    }

    .step-actions {
        flex-direction: column;
    }

    .btn-secondary-outline,
    .btn-primary-solid {
        width: 100%;
    }

    .checkout-card .card-body {
        padding: 1rem;
    }

    .cart-items-list .cart-item {
        flex-wrap: wrap;
    }

    .cart-items-list .item-image {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 575.98px) {
    .checkout-section {
        padding: 1.5rem 0;
    }

    .checkout-title {
        font-size: 1.25rem;
    }

    .checkout-card {
        border-radius: 8px;
    }

    .btn-primary-solid,
    .btn-secondary-outline {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* =====================================================
   INLINE STYLES MOVED FROM BLADE FILES
   ===================================================== */

/* No Products Icon - product.blade.php */
.no-products-icon i {
    font-size: 4rem;
    color: #28a745;
}

/* Empty State Styles - subcategory.blade.php */
.empty-state-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.empty-state-title {
    font-size: 2rem;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 1rem;
}

.empty-state-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.empty-state-btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
}

/* Quantity Selector Width - product-view.blade.php */
.quantity-input-group {
    width: 140px;
}

/* =====================================================
   CATEGORY HERO BANNER - subcategory.blade.php
   ===================================================== */

/* Category Hero Banner */
.category-hero-banner {
    min-height: auto;
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    display: flex;
    align-items: center;
    padding: 20px 0;
}


/* Breadcrumb */
.category-breadcrumb {
    margin-bottom: 0.5rem;
}

.category-breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.category-breadcrumb a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.category-breadcrumb span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0 6px;
}

/* Hero Title */
.category-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    font-style: normal;
    line-height: 1.3;
}

/* Hero Description */
.category-hero-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 600px;
}

/* CTA Button */
.category-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-hero-btn:hover {
    background-color: #fff;
    color: #333;
}

.category-hero-btn span {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.category-hero-btn:hover span {
    transform: translateX(5px);
}

/* Empty State */
.empty-state {
    padding: 3rem;
    background: #f9f9f9;
    border-radius: 12px;
}

/* Category Hero Banner Responsive */
@media (max-width: 992px) {
    .category-hero-banner {
        padding: 18px 0;
    }

    .category-hero-title {
        font-size: 1.5rem;
    }

    .category-hero-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .category-hero-banner {
        padding: 15px 0;
    }

    .category-hero-title {
        font-size: 1.35rem;
    }

    .category-hero-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .category-hero-banner {
        padding: 12px 0;
    }

    .category-hero-title {
        font-size: 1.2rem;
    }

    .category-breadcrumb a,
    .category-breadcrumb span {
        font-size: 0.8rem;
    }
}

/* =====================================================
   AUTH SECTION - Register/Login Pages
   ===================================================== */

.auth-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.auth-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.auth-form-wrapper {
    padding: 40px;
}

.auth-header {
    margin-bottom: 30px;
}

.auth-welcome {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 8px;
}

.auth-welcome strong {
    color: #28a745;
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.auth-form .form-control {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
}

.auth-form .form-control::placeholder {
    color: #aaa;
}

.gender-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 8px;
}

.gender-options .form-check-input {
    margin-top: 0.3rem;
}

.gender-options .form-check-input:checked {
    background-color: #28a745;
    border-color: #28a745;
}

.terms-text {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.terms-text a {
    color: #28a745;
    font-weight: 500;
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}

.btn-auth-primary {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-auth-primary:hover {
    background: linear-gradient(135deg, #218838 0%, #1aa179 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    color: #fff;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.auth-footer p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.auth-footer a {
    color: #28a745;
    font-weight: 500;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Auth Side Panel */
.auth-side-panel {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.auth-side-content {
    color: #fff;
    text-align: center;
}

.auth-side-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.auth-side-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.auth-feature i {
    font-size: 1.5rem;
}

/* Auth Section Responsive */
@media (max-width: 991.98px) {
    .auth-section {
        padding: 40px 0;
    }

    .auth-form-wrapper {
        padding: 30px;
    }

    .auth-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .auth-section {
        padding: 30px 0;
    }

    .auth-form-wrapper {
        padding: 25px 20px;
    }

    .auth-title {
        font-size: 1.35rem;
    }

    .auth-form .form-control {
        padding: 10px 14px;
    }

    .btn-auth-primary {
        padding: 12px 20px;
    }
}

/* ============================================
   Related Products Section - Custom Slider
   ============================================ */
.related-section {
    background-color: var(--color-white);
}

.related-header {
    margin-bottom: 1.5rem;
}

.related-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.related-nav {
    display: flex;
    gap: 0.5rem;
}

.related-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gray-light);
    border-radius: 50%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text-primary);
}

.related-arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.related-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.related-arrow:disabled:hover {
    background: var(--color-white);
    border-color: var(--color-gray-light);
    color: var(--color-text-primary);
}

/* Slider Container */
.related-slider {
    overflow: hidden;
    position: relative;
    padding: 10px 10px;
}

.related-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.4s ease;
}

.related-item {
    flex: 0 0 calc(25% - 0.75rem);
    min-width: calc(25% - 0.75rem);
}

/* Product Card */
.related-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.related-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* Product Image */
.related-img-wrap {
    position: relative;
    padding: 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 160px;
}

.related-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.related-card:hover .related-img {
    transform: scale(1.05);
}

.related-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #dc3545;
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Product Info */
.related-info {
    padding: 1rem;
}

.related-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.52em;
}

.related-pricing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.related-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.related-old-price {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}

/* Order Row */
.related-order-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.related-min-order {
    font-size: 0.75rem;
    color: #666;
}

.related-order-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.related-qty-input {
    width: 60px;
    padding: 0.4rem 0.5rem;
    border: 1px solid var(--color-gray-light);
    border-radius: 6px;
    text-align: center;
    font-size: 0.85rem;
}

.related-qty-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.related-add-btn {
    flex: 1;
    padding: 0.5rem 0.75rem;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.related-add-btn:hover {
    background: var(--color-primary-dark);
}

/* Dots Navigation (Mobile) */
.related-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.related-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gray-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.related-dot.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 5px;
}

/* Related Products Responsive */
@media (max-width: 991.98px) {
    .related-item {
        flex: 0 0 calc(33.333% - 0.67rem);
        min-width: calc(33.333% - 0.67rem);
    }

    .related-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .related-item {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }

    .related-name {
        font-size: 0.85rem;
    }

    .related-price {
        font-size: 1rem;
    }

    .related-arrow {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 575.98px) {
    .related-item {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }

    .related-img-wrap {
        padding: 0.75rem;
    }

    .related-info {
        padding: 0.75rem;
    }

    .related-name {
        font-size: 0.8rem;
        min-height: auto;
        -webkit-line-clamp: 1;
    }

    .related-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .related-order-actions {
        flex-direction: column;
    }

    .related-qty-input {
        width: 100%;
    }

    .related-add-btn {
        width: 100%;
    }
}

/* ============================================
   Product Listing Page Styles
   ============================================ */

/* Product Hero Banner */
.product-hero-banner {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 30px 0;
    text-transform: capitalize;
}

/* Breadcrumb */
.product-breadcrumb {
    margin-bottom: .5rem;
}

.product-breadcrumb a {
    color: #fff;
    text-decoration: underline;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.product-breadcrumb a:hover {
    opacity: 0.8;
}

.product-breadcrumb span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0 8px;
}

/* Hero Title */
.product-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

/* Hero Description */
.product-hero-description {
    font-size: .8rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 0;
}

/* CTA Button */
.product-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-hero-btn:hover {
    background-color: #fff;
    color: #333;
}

.product-hero-btn span {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.product-hero-btn:hover span {
    transform: translateX(5px);
}

/* Section Title */
.product-listing-title {
    color: #333;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.product-listing-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

/* Product Listing Card - Clean Full Image Design */
.product-listing-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.06); */
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.product-listing-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.product-listing-link {
    display: block;
    text-decoration: none;
}

.product-listing-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-listing-card:hover .product-listing-image img {
    transform: scale(1.08);
}

/* Favorite Icon */
.product-listing-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 5;
}

.product-listing-favorite i {
    font-size: 1rem;
    color: #666;
    transition: all 0.3s ease;
}

.product-listing-favorite:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-listing-favorite:hover i {
    color: #e74c3c;
}

.product-listing-favorite.active i {
    color: #e74c3c;
}

.product-listing-favorite.active i::before {
    content: "\f415";
}

.product-listing-info {
    padding: 1rem;
    text-align: center;
    flex: 1;
    background: #fff;
}

.product-listing-name {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.product-listing-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-listing-name a:hover {
    color: #28a745;
}

.product-listing-category {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0;
}

/* Price */
.product-listing-price {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-listing-price .price-current {
    font-size: 1.1rem;
    font-weight: 700;
    color: #28a745;
}

.product-listing-price .price-old {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}

/* Add to Cart Section */
.product-listing-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
}

.product-listing-cart .qty-input {
    width: 50px;
    height: 36px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    -moz-appearance: textfield;
}

.product-listing-cart .qty-input::-webkit-outer-spin-button,
.product-listing-cart .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-listing-cart .qty-input:focus {
    outline: none;
    background: #f9f9f9;
}

.product-listing-add-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-listing-add-btn:hover {
    background: #333;
    color: #fff;
}

.product-listing-add-btn i {
    font-size: 0.85rem;
}

/* No Products */
.product-listing-empty {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 3rem;
}

/* Product Listing Page Responsive */
@media (max-width: 992px) {
    .product-hero-banner {
        min-height: 300px;
        padding: 40px 0;
    }

    .product-hero-title {
        font-size: 2.5rem;
    }

    .product-hero-description {
        font-size: 1rem;
    }

    .product-listing-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .product-hero-banner {
        min-height: 280px;
        padding: 30px 0;
    }

    .product-hero-title {
        font-size: 2rem;
    }

    .product-hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .product-hero-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .product-listing-title {
        font-size: 1.25rem;
    }

    .product-listing-image {
        height: 150px;
    }

    .product-listing-name {
        font-size: 0.85rem;
    }

    .product-listing-info {
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .product-hero-banner {
        min-height: 250px;
    }

    .product-hero-title {
        font-size: 1.75rem;
    }

    .product-breadcrumb a,
    .product-breadcrumb span {
        font-size: 0.85rem;
    }

    .product-listing-image {
        height: 130px;
    }

    .product-listing-favorite {
        width: 30px;
        height: 30px;
        top: 8px;
        right: 8px;
    }

    .product-listing-favorite i {
        font-size: 0.85rem;
    }

    .product-listing-price .price-current {
        font-size: 0.95rem;
    }

    .product-listing-price .price-old {
        font-size: 0.75rem;
    }

    .product-listing-qty {
        flex: 0 0 50px;
    }

    .product-listing-qty .qty-input {
        min-height: 38px;
        font-size: 0.85rem;
    }

    .product-listing-add-btn {
        min-height: 38px;
        font-size: 0.8rem;
        gap: 5px;
    }

    .product-listing-add-btn i {
        font-size: 0.95rem;
    }
}

/* ============================================
   About Page Styles
   ============================================ */

.about-content-section {
    background-color: #fff;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.02);
}

.about-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    position: relative;
}


.about-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 1rem;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-section-title {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 1rem;
    }
}

/* About Media Cards */
.about-media-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.about-media-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.about-media-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.about-media-content {
    padding: 1.25rem;
}

.about-media-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 50px;
}

.about-media-content .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
}

/* ============================================
   About Page Styles
   ============================================ */

/* About Hero Section */
.about-hero-section {
    position: relative;
    min-height: 300px;
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.6), rgba(0, 0, 0, 0.7));
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

.about-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* About Introduction Section */
.about-intro-section {
    padding: 80px 0;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.about-intro-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-intro-content {
    padding: 20px 0 20px 30px;
    font-family: 'Poppins', sans-serif;
}

.about-intro-label {
    font-family: 'Poppins', sans-serif;
    color: #4caf50;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-intro-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.about-intro-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 15px;
}

/* Mission Section */
.about-mission-section {
    padding: 80px 0;
    background: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

.about-section-label {
    font-family: 'Poppins', sans-serif;
    color: #4caf50;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.mission-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4caf50, #81c784);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.mission-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.mission-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Values Section */
.about-values-section {
    padding: 80px 0;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.about-values-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-values-content {
    padding: 20px 30px 20px 0;
    font-family: 'Poppins', sans-serif;
}

.values-list {
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.value-icon {
    flex-shrink: 0;
    margin-right: 15px;
}

.value-icon i {
    font-size: 1.5rem;
    color: #4caf50;
}

.value-text h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.value-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* CTA Section */
.about-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    font-family: 'Poppins', sans-serif;
}

.about-cta-content {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.about-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.about-cta-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.about-cta-btn {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #4caf50;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-cta-btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}

/* Media Section */
.about-media-section {
    padding: 80px 0;
    background: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

.media-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    font-family: 'Poppins', sans-serif;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.media-thumbnail {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.media-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-card:hover .media-thumbnail img {
    transform: scale(1.05);
}

.media-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #fff;
    opacity: 0.9;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.media-card:hover .media-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.podcast-icon {
    background: linear-gradient(135deg, #4caf50, #81c784);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.media-content {
    padding: 20px;
    font-family: 'Poppins', sans-serif;
}

.media-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.media-btn {
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #4caf50;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.media-btn:hover {
    background: #2e7d32;
    color: #fff;
    transform: translateY(-2px);
}

.podcast-btn {
    background: #8e44ad;
}

.podcast-btn:hover {
    background: #6c3483;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-section {
        min-height: 200px;
    }

    .about-intro-section,
    .about-mission-section,
    .about-values-section {
        padding: 50px 0;
    }

    .about-intro-content,
    .about-values-content {
        padding: 30px 0 0 0;
    }

    .about-intro-title,
    .about-section-title {
        font-size: 1.8rem;
    }

    .mission-card {
        padding: 30px 20px;
    }

    .about-media-section {
        padding: 50px 0;
    }

    .media-thumbnail {
        height: 160px;
    }

    .media-title {
        min-height: auto;
        font-size: 14px;
    }

    .about-intro-text,
    .mission-text,
    .value-text p,
    .about-cta-text {
        font-size: 14px;
    }
}

/* ============================================
   Shipping Policy & Generic Page Styles
   ============================================ */

/* Page Hero Section */
.page-hero-section {
    position: relative;
    min-height: 200px;
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.6), rgba(0, 0, 0, 0.7));
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 50px 0;
    font-family: 'Poppins', sans-serif;
}

.page-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

/* Content Section */
.page-content-section {
    padding: 50px 0 80px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.content-wrapper {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.content-wrapper p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 14px;
}

.content-wrapper a {
    color: #4caf50;
    text-decoration: none;
}

.content-wrapper a:hover {
    text-decoration: underline;
}

/* Teams Page */
.team-content-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

/* Error/Not Found Pages */
.error-page-content {
    position: absolute;
    top: 30%;
    margin-left: 10%;
    font-family: 'Poppins', sans-serif;
}

.error-page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    text-align: left;
    color: #333;
    margin-bottom: 1rem;
}

.error-page-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-decoration: none;
    color: #4CAF50;
    text-transform: capitalize;
}

.error-page-link:hover {
    color: #2e7d32;
    text-decoration: underline;
}

/* Account Page */
.account-section-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.account-order-number {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

/* Responsive for Page Styles */
@media (max-width: 768px) {
    .page-hero-title {
        font-size: 1.8rem;
    }

    .page-hero-section {
        min-height: 150px;
    }

    .page-content-section {
        padding: 30px 0 50px;
    }

    .content-wrapper {
        font-size: 14px;
    }

    .error-page-title {
        font-size: 2rem;
    }

    .error-page-content {
        margin-left: 5%;
    }
}

/* ============================================
   Privacy & Terms Pages – Improved Design
   ============================================ */

/* Legacy hero (when lang file still uses bg-title-page) */
.bg-title-page {
    position: relative;
    min-height: 220px;
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.bg-title-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.75), rgba(0, 0, 0, 0.88));
}

.t-text2 {
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

/* Privacy page wrapper */
.privacy-page-section {
    padding: 50px 0 80px;
    background: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

.privacy-page-content {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.75;
}

/* Table of contents card */
.privacy-toc {
    border-radius: 12px;
    padding: 24px 28px;
}

.privacy-toc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.privacy-toc-list {
    list-style: none;
    margin: 0;
    font-size: 14px;
}

.privacy-toc-list li {
    padding: 8px 0;
    font-family: 'Poppins', sans-serif;
    color: #555;
}

.privacy-toc-list li:last-child {
    border-bottom: none;
}

/* Content blocks */
.privacy-block {
    padding: 28px 24px;
    font-family: 'Poppins', sans-serif;
}

.privacy-block h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2e7d32;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f5e9;
}

.privacy-block h6 u {
    text-decoration: none;
}

.privacy-block p {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 14px;
    text-align: justify;
}

.privacy-block p:last-child {
    margin-bottom: 0;
}

.privacy-block ul {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin: 0 0 14px 0;
    padding-left: 22px;
}

.privacy-block ul li {
    margin-bottom: 8px;
}

.privacy-block a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
}

.privacy-block a:hover {
    color: #2e7d32;
    text-decoration: underline;
}

/* Last updated badge */
.privacy-updated {
    font-size: 13px;
    color: #888;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    .bg-title-page {
        min-height: 180px;
    }

    .t-text2 {
        font-size: 1.75rem;
    }

    .privacy-page-section {
        padding: 30px 0 50px;
    }

    .privacy-toc,
    .privacy-block {
        padding: 20px;
    }

    .privacy-block h6 {
        font-size: 0.95rem;
    }
}

/* ============================================
   Cancel Shipping / Widerruf Page Styles
   ============================================ */

.cancel-shipping-section {
    padding: 50px 0 80px;
    background: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

.cancel-shipping-content {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.75;
}

.cancel-shipping-block {
    padding: 28px 24px;
    font-family: 'Poppins', sans-serif;
}

.cancel-shipping-block h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2e7d32;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f5e9;
}

.cancel-shipping-block h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2e7d32;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f5e9;
}

.cancel-shipping-block h6 u {
    text-decoration: none;
}

.cancel-shipping-block p {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 14px;
    text-align: justify;
}

.cancel-shipping-block p:last-child {
    margin-bottom: 0;
}

.cancel-shipping-block hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #eee;
}

.cancel-shipping-block a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
}

.cancel-shipping-block a:hover {
    color: #2e7d32;
    text-decoration: underline;
}

.cancel-shipping-block i {
    font-style: italic;
    color: #555;
}

/* Responsive for Cancel Shipping */
@media (max-width: 768px) {
    .cancel-shipping-section {
        padding: 30px 0 50px;
    }

    .cancel-shipping-block {
        padding: 20px;
    }

    .cancel-shipping-block h5 {
        font-size: 1.15rem;
    }

    .cancel-shipping-block h6 {
        font-size: 0.95rem;
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */

.contact-page-section {
    padding: 50px 0 80px;
    background: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

.contact-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.contact-intro-block {
    padding: 28px 24px;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.contact-intro-block h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 20px;
}

.contact-intro-block p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 15px;
    text-align: justify;
}

.contact-intro-block p:last-child {
    margin-bottom: 0;
}

.contact-intro-block a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
}

.contact-intro-block a:hover {
    color: #2e7d32;
    text-decoration: underline;
}

.contact-info-block {
    padding: 28px 24px;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.contact-info-block h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 15px;
}

.contact-info-block p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-info-block p:last-child {
    margin-bottom: 0;
}

.contact-form-block {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    font-family: 'Poppins', sans-serif;
}

.contact-form-block .form-group {
    margin-bottom: 20px;
}

.contact-form-block .form-control {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form-block .form-control:focus {
    border-color: #4caf50;
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.contact-form-block textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form-block label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.contact-form-block .form-check {
    margin-bottom: 15px;
}

.contact-form-block .form-check-input {
    margin-top: 0.3rem;
}

.contact-form-block .form-check-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #555;
    margin-left: 8px;
}

.contact-form-block .form-check-label span {
    color: #dc3545;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.captcha-container #user-input {
    flex: 1;
    min-width: 150px;
}

.captcha-container .reload-captcha {
    cursor: pointer;
    padding: 8px;
    color: #4caf50;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.captcha-container .reload-captcha:hover {
    transform: rotate(180deg);
    color: #2e7d32;
}

.captcha-container #captcha-image {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    padding: 8px 12px;
    background: #f0f0f0;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.contact-form-block .btn-log {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 30px;
    background: #4caf50;
    color: #fff;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-form-block .btn-log:hover {
    background: #2e7d32;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.contact-form-block .alert-success {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    border-radius: 8px;
    border: none;
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    margin-bottom: 25px;
}

/* Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-page-section {
        padding: 30px 0 50px;
    }

    .contact-intro-block,
    .contact-info-block,
    .contact-form-block {
        padding: 20px;
    }

    .contact-intro-block h4 {
        font-size: 1.3rem;
    }

    .captcha-container {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-container #user-input {
        width: 100%;
    }
}

/* ============================================
   FAQ Page Styles
   ============================================ */

.faq-page-section {
    padding: 50px 0 80px;
    background: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

.faq-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.faq-item-block {
    padding: 28px 24px;
    font-family: 'Poppins', sans-serif;
}

.faq-question {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2e7d32;
    margin: 0 0 15px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f5e9;
}

.faq-answer {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 12px;
    text-align: justify;
}

.faq-answer:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    color: #2e7d32;
    text-decoration: underline;
}

.faq-answer strong {
    font-weight: 600;
    color: #333;
}

/* Responsive for FAQ Page */
@media (max-width: 768px) {
    .faq-page-section {
        padding: 30px 0 50px;
    }

    .faq-item-block {
        padding: 20px;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 14px;
    }
}

/* ============================================
   Teams Page Styles
   ============================================ */

.teams-page-section {
    padding: 50px 0 80px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.teams-main-block {
    padding: 40px;
    font-family: 'Poppins', sans-serif;
}

.teams-image-wrapper {
    margin-bottom: 30px;
}

.teams-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.teams-text-content {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    text-align: justify;
}

.teams-text-content p {
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.75;
}

.teams-text-content p:last-child {
    margin-bottom: 0;
}

/* Responsive for Teams Page */
@media (max-width: 768px) {
    .teams-page-section {
        padding: 30px 0 50px;
    }

    .teams-main-block {
        padding: 24px;
    }

    .teams-text-content {
        font-size: 14px;
    }
}

/* ============================================
   Events Page - New Design
   ============================================ */

.events-new-intro-section,
.events-new-discovery-section,
.events-new-tours-section,
.events-new-info-section,
.events-new-group-section,
.events-new-video-section {
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

.events-new-intro-section,
.events-new-group-section {
    background: #fff;
}

.events-new-discovery-section,
.events-new-info-section,
.events-new-video-section {
    background: #f8f9fa;
}

.events-new-tours-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
}

.events-new-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

/* Intro Card */
.events-new-intro-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    font-family: 'Poppins', sans-serif;
}

.events-new-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.events-new-content {
    padding: 20px 0 20px 30px;
    font-family: 'Poppins', sans-serif;
}

.events-new-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 20px;
}

.events-new-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 16px;
}

.events-new-text:last-child {
    margin-bottom: 0;
}

.events-new-link {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
}

.events-new-link:hover {
    color: #2e7d32;
    text-decoration: underline;
}

/* Discovery Card */
.events-new-discovery-card {
    border-radius: 16px;
    padding: 40px;
    font-family: 'Poppins', sans-serif;
}

.events-new-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 20px;
    text-align: center;
}

.events-new-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

/* Tours Dates Section */
.events-new-tours-header {
    text-align: center;
    margin-bottom: 40px;
}

.events-new-dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.events-new-date-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.events-new-date-item:hover {
    transform: translateY(-4px);
    border-color: #4caf50;
}

.events-new-date-day {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 8px;
}

.events-new-date-month {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4caf50;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.events-new-date-time {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.events-new-date-weekday {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #888;
}

.events-new-note {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666;
    text-align: center;
    font-style: italic;
    margin-top: 20px;
}

/* Info Cards Section */
.events-new-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.events-new-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #4caf50;
}

.events-new-info-card:hover {
    transform: translateY(-5px);
}

.events-new-info-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.events-new-info-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 16px;
}

.events-new-info-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.events-new-info-text a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
}

.events-new-info-text a:hover {
    color: #2e7d32;
    text-decoration: underline;
}

/* Group Tour Card */
.events-new-group-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    font-family: 'Poppins', sans-serif;
}

/* Video Section */
.events-new-video-header {
    text-align: center;
    margin-bottom: 40px;
}

.events-new-video-card {
    max-width: 900px;
    margin: 0 auto;
}

.events-new-video-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.events-new-video-thumbnail {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.events-new-video-thumbnail:hover {
    transform: scale(1.02);
}

.events-new-video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.events-new-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.events-new-video-thumbnail:hover .events-new-video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.events-new-play-button {
    width: 100px;
    height: 100px;
    background: rgba(76, 175, 80, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    border: 4px solid #fff;
}

.events-new-video-thumbnail:hover .events-new-play-button {
    background: #4caf50;
    transform: scale(1.1);
}

/* Responsive for New Events Design */
@media (max-width: 768px) {

    .events-new-intro-section,
    .events-new-discovery-section,
    .events-new-tours-section,
    .events-new-info-section,
    .events-new-group-section,
    .events-new-video-section {
        padding: 40px 0;
    }

    .events-new-intro-card,
    .events-new-discovery-card,
    .events-new-group-card {
        padding: 24px;
    }

    .events-new-content {
        padding: 20px 0 0 0;
    }

    .events-new-title,
    .events-new-section-title {
        font-size: 1.6rem;
    }

    .events-new-dates-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 16px;
    }

    .events-new-date-item {
        padding: 20px 16px;
    }

    .events-new-date-day {
        font-size: 1.6rem;
    }

    .events-new-info-grid {
        grid-template-columns: 1fr;
    }

    .events-new-play-button {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* ============================================
   Terms Page – New Design
   ============================================ */

.terms-page-section {
    padding: 50px 0 80px;
    background: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

.terms-page-content {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.75;
}

/* Terms Table of Contents */
.terms-toc {
    padding: 28px 32px;
    font-family: 'Poppins', sans-serif;
    box-shadow: none;
}

.terms-toc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f5e9;
}

.terms-toc-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    font-weight: 500;
}

.terms-toc-list {
    list-style: none;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    counter-reset: item;
}

.terms-toc-list li {
    padding: 5px 0;
    padding-left: 28px;
    position: relative;
    color: #555;
    font-family: 'Poppins', sans-serif;
    counter-increment: item;
}

.terms-toc-list li:last-child {
    border-bottom: none;
}

.terms-toc-list li:before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 600;
}

/* Terms Content Blocks */
.terms-block {
    padding: 28px 32px;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    box-shadow: none;
}

.terms-block h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2e7d32;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f5e9;
}

.terms-block h6 u {
    text-decoration: none;
}

.terms-block p {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 14px;
    text-align: justify;
    font-family: 'Poppins', sans-serif;
}

.terms-block p:last-child {
    margin-bottom: 0;
}

.terms-block ul {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin: 0 0 14px 0;
    padding-left: 24px;
    font-family: 'Poppins', sans-serif;
}

.terms-block ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.terms-block ul li:last-child {
    margin-bottom: 0;
}

.terms-block a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
}

.terms-block a:hover {
    color: #2e7d32;
    text-decoration: underline;
}

/* Terms Page Responsive */
@media (max-width: 768px) {
    .terms-page-section {
        padding: 30px 0 50px;
    }

    .terms-toc,
    .terms-block {
        padding: 20px;
    }

    .terms-toc-title {
        font-size: 1.1rem;
    }

    .terms-block h6 {
        font-size: 1rem;
    }
}

/* ============================================
   Disclaimer Page – New Design
   ============================================ */

.disclaimer-page-section {
    padding: 50px 0 80px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.disclaimer-page-content {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.75;
}

/* Disclaimer Content Blocks */
.disclaimer-block {
    padding: 28px 32px;
    font-family: 'Poppins', sans-serif;
}

.disclaimer-block h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2e7d32;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f5e9;
}

.disclaimer-block h6 u {
    text-decoration: none;
}

.disclaimer-block p {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 14px;
    text-align: justify;
    font-family: 'Poppins', sans-serif;
}

.disclaimer-block p:last-child {
    margin-bottom: 0;
}

.disclaimer-block ul {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin: 0 0 14px 0;
    padding-left: 24px;
    font-family: 'Poppins', sans-serif;
}

.disclaimer-block ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.disclaimer-block ul li:last-child {
    margin-bottom: 0;
}

.disclaimer-block a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
}

.disclaimer-block a:hover {
    color: #2e7d32;
    text-decoration: underline;
}

/* Disclaimer Page Responsive */
@media (max-width: 768px) {
    .disclaimer-page-section {
        padding: 30px 0 50px;
    }

    .disclaimer-block {
        padding: 0;
    }

    .disclaimer-block h6 {
        font-size: 1rem;
    }
}

/* ============================================
   Payment Policy Page – New Design
   ============================================ */

.payment-policy-page-section {
    padding: 50px 0 80px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.payment-policy-page-content {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.75;
}

/* Payment Policy Content Blocks */
.payment-policy-block {
    padding: 0;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.payment-policy-block h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2e7d32;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f5e9;
}

.payment-policy-block h6 u {
    text-decoration: none;
}

.payment-policy-block p {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 14px;
    text-align: justify;
    font-family: 'Poppins', sans-serif;
}

.payment-policy-block p:last-child {
    margin-bottom: 0;
}

.payment-policy-block ul {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin: 0 0 14px 0;
    padding-left: 24px;
    font-family: 'Poppins', sans-serif;
}

.payment-policy-block ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.payment-policy-block ul li:last-child {
    margin-bottom: 0;
}

.payment-policy-block a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
}

.payment-policy-block a:hover {
    color: #2e7d32;
    text-decoration: underline;
}

/* Payment Policy Page Responsive */
@media (max-width: 768px) {
    .payment-policy-page-section {
        padding: 30px 0 50px;
    }

    .payment-policy-block {
        padding: 0;
    }

    .payment-policy-block h6 {
        font-size: 1rem;
    }
}

/* ============================================
   Get Started (Dispute Resolution) Page – New Design
   ============================================ */

.get-started-page-section {
    padding: 50px 0 80px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.get-started-page-content {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.75;
}

.get-started-block {
    padding: 0;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.get-started-block h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2e7d32;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f5e9;
}

.get-started-block h6 u {
    text-decoration: none;
}

.get-started-block p {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 14px;
    text-align: justify;
    font-family: 'Poppins', sans-serif;
}

.get-started-block p:last-child {
    margin-bottom: 0;
}

.get-started-block ul {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin: 0 0 14px 0;
    padding-left: 24px;
    font-family: 'Poppins', sans-serif;
}

.get-started-block ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.get-started-block a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
}

.get-started-block a:hover {
    color: #2e7d32;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .get-started-page-section {
        padding: 30px 0 50px;
    }

    .get-started-block {
        padding: 0;
    }

    .get-started-block h6 {
        font-size: 1rem;
    }
}

/* ============================================
   Imprint Page – New Design
   ============================================ */

.imprint-page-section {
    padding: 50px 0 80px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.imprint-page-content {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.75;
}

.imprint-block {
    padding: 0;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.imprint-block h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2e7d32;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
}

.imprint-block h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #4caf50;
    margin: 30px 0 5px 0;
    padding-bottom: 12px;
}

.imprint-block h6 u {
    text-decoration: none;
}

.imprint-block h6 a {
    color: #4caf50;
    text-decoration: underline;
}

.imprint-block h6 a:hover {
    color: #2e7d32;
    text-decoration: underline;
}

.imprint-block p {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 14px;
    text-align: justify;
    font-family: 'Poppins', sans-serif;
}

.imprint-block p:last-child {
    margin-bottom: 0;
}

.imprint-block p b {
    font-weight: 600;
    color: #333;
}

.imprint-block p i {
    font-style: italic;
}

.imprint-block a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
}

.imprint-block a:hover {
    color: #2e7d32;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .imprint-page-section {
        padding: 30px 0 50px;
    }

    .imprint-block {
        padding: 0;
    }

    .imprint-block h5 {
        font-size: 1.1rem;
    }

    .imprint-block h6 {
        font-size: 1rem;
    }
}

/* ============================================
   Season Product Page – Card design (fixed height, image no stretch, price, Add to cart)
   ============================================ */

.season-product-page-section {
    padding: 50px 0 80px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.season-product-page-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.season-product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.season-product-card:hover {
    border-color: #e5e5e5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
}

/* Fixed height image container – image does not stretch, rounded top */
.season-product-image {
    position: relative;
    width: 100%;
    height: 220px;
    min-height: 220px;
    background: #f8f8f8;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Glazing overlay – frosted/glossy effect on hover */
.season-product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 10px 10px 0 0;
}

.season-product-card:hover .season-product-image::after {
    opacity: 1;
}

.season-product-image a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
}

.season-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.season-product-card:hover .season-product-image img {
    transform: scale(1.06);
}

/* SALE badge */
.season-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #d32f2f;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    z-index: 2;
}

/* Card body: name, price, min order, actions */
.season-product-body {
    padding: 1rem 1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.season-product-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1.2rem 0;
    line-height: 1.35;
}

.season-product-name a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.25s ease;
}

.season-product-name a:hover {
    color: #2e7d32;
    text-decoration: underline;
}

/* Category line (product listing "Alle Produkte") */
.season-product-body .product-listing-category,
.season-product-body .season-product-category {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #888;
    margin: 0 0 0.25rem 0;
}

.season-product-price {
    margin-bottom: 0.35rem;
}

.season-product-price-current {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.season-product-price-old {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.35rem;
}

.season-product-min-order {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: #666;
    margin: 0 0 0.75rem 0;
}

/* Quantity input + Add button row */
.season-product-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.season-product-qty {
    width: 60px;
    padding: 0.4rem 0.5rem;
    border: 1px solid var(--color-gray-light);
    border-radius: 6px;
    text-align: center;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #333;
    /* -moz-appearance: textfield; */
}

.season-product-qty::-webkit-outer-spin-button,
.season-product-qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.season-product-add-btn {
    flex: 1;
    padding: 0.5rem 0.75rem;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;

}

.season-product-add-btn:hover {
    background: #1b5e20;
    color: #fff;
    transform: scale(1.02);
}

.season-product-add-btn i {
    font-size: 14px;
}

.season-product-view-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2e7d32;
    text-decoration: none;
}

.season-product-view-link:hover {
    text-decoration: underline;
}

/* Empty state (no products) */
.season-product-empty {
    position: relative;
    width: 100%;
    min-height: 60vh;
    overflow: hidden;
}

.season-product-empty img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

.season-product-empty .error-page-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    margin-left: 0;
}

@media (max-width: 768px) {
    .season-product-page-section {
        padding: 30px 0 50px;
    }

    .season-product-image {
        height: 180px;
        min-height: 180px;
    }

    .season-product-page-heading {
        font-size: 1rem;
    }

    .season-product-name {
        font-size: 14px;
    }

    .season-product-price-current {
        font-size: 1.1rem;
    }

    .season-product-price-old,
    .season-product-min-order {
        font-size: 14px;
    }

    .season-product-qty {
        width: 48px;
        height: 36px;
        font-size: 14px;
    }

    .season-product-add-btn {
        height: 36px;
        font-size: 14px;
    }

    .season-product-add-btn i {
        font-size: 14px;
    }
}