/* 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;
}

.bg-gray-light {
    background-color: #f5f6f8;
}

.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 .nav-category-dropdown {
    min-width: 240px;
    margin-top: 0.55rem !important;
    padding: 0.45rem;
    border: 1px solid #e8f0ea;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(15, 31, 20, 0.1);
}

.NavbarMenu .nav-category-dropdown__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.62rem 0.75rem;
    border-radius: 10px;
    color: #0f1f14;
    font-size: 0.88rem;
    /* font-weight: 600; */
    line-height: 1.35;
    transition: background 0.2s ease, color 0.2s ease;
}

.NavbarMenu .nav-category-dropdown__link:hover,
.NavbarMenu .nav-category-dropdown__link:focus {
    background: #f4faf5;
    color: var(--color-primary-dark);
}

.NavbarMenu .nav-category-dropdown__link.active,
.NavbarMenu .nav-category-dropdown__link:active {
    background: #e8f8ee;
    color: #166534;
}

.NavbarMenu .nav-category-dropdown__label {
    min-width: 0;
    text-transform: none;
}

.NavbarMenu .nav-category-dropdown__icon {
    flex: 0 0 auto;
    font-size: 1.1rem;
    color: #9aaea3;
    transition: color 0.2s ease, transform 0.2s ease;
}

.NavbarMenu .nav-category-dropdown__link:hover .nav-category-dropdown__icon,
.NavbarMenu .nav-category-dropdown__link:focus .nav-category-dropdown__icon {
    color: var(--color-primary);
    transform: translateX(2px);
}

.NavbarMenu .nav-category-dropdown__divider {
    height: 1px;
    margin: 0.35rem 0.5rem;
    background: #eef4ef;
    list-style: none;
}

.NavbarMenu .nav-category-dropdown__link--accent {
    background: linear-gradient(135deg, #f8fcf9 0%, #f4faf5 100%);
    border: 1px solid #d7e5db;
}

.NavbarMenu .nav-category-dropdown__link--accent:hover,
.NavbarMenu .nav-category-dropdown__link--accent:focus {
    background: #e8f8ee;
    border-color: #cfe8d6;
}

.NavbarMenu .nav-category-dropdown__gift {
    margin-right: 0.35rem;
    color: var(--color-primary);
    font-size: 0.92rem;
    vertical-align: -0.1em;
}

.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: 1320px;
}

@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}

/* 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;
}

@media (max-width: 768px) {
    .language-selector .dropdown-toggle {
        padding: 0px 0px;
    }

    .language-selector a {
        white-space: nowrap;
    }
}

/* Event catalog and ticket booking */
.event-listing-section .event-card-media {
    height: 210px;
}

.event-listing-section .event-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
}

.event-listing-section .event-card-title {
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: .55rem;
}

.event-card-summary {
    color: #667085;
    font-size: .9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.event-card-facts {
    display: grid;
    gap: .55rem;
    color: #475467;
    font-size: .84rem;
    margin-bottom: 1.15rem;
}

.event-card-facts>div {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: .45rem;
    align-items: start;
}

.event-card-facts i {
    color: #16803d;
}

.event-listing-section .event-card-btn {
    min-width: 0;
    padding: .52rem .8rem;
    border-radius: 6px;
    font-size: .85rem;
}

/* Event detail page */
.event-page {
    background: #f4f8f5;
}

.event-page__hero-wrap {
    padding-top: 1rem;
    background: linear-gradient(180deg, #edf7f0 0%, #f4f8f5 100%);
}

.event-page__breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.1rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: #6b7c72;
}

.event-page__breadcrumb a {
    color: #4a5c50;
    text-decoration: none;
}

.event-page__breadcrumb a:hover {
    color: var(--color-primary-dark);
}

.event-page__breadcrumb-current {
    color: #0f1f14;
}

.event-page__hero {
    position: relative;
    min-height: 150px;
    height: clamp(150px, 24vw, 280px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 31, 20, 0.14);
}

.event-page__hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.2s ease, transform 0.6s ease;
}

.event-page__hero:hover .event-page__hero-img {
    transform: scale(1.03);
}

.event-page__hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(8, 18, 12, 0.08) 0%, rgba(8, 18, 12, 0.15) 35%, rgba(8, 18, 12, 0.82) 100%);
}

.event-page__hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: clamp(0.85rem, 2vw, 1.5rem);
    color: #fff;
    z-index: 2;
}

.event-page__hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.event-page__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.event-page__badge--success {
    background: #d9f5e0;
    color: #1b6b32;
}

.event-page__badge--secondary {
    background: #e8edf0;
    color: #4f5d68;
}

.event-page__badge--danger {
    background: #fde2e2;
    color: #b42318;
}

.event-page__badge--ghost {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(6px);
}

.event-page__title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.event-page__subtitle {
    margin: 0;
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.82rem, 1.2vw, 0.95rem);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-page__thumbs {
    display: flex;
    gap: 0.65rem;
    margin-top: 0.85rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
}

.event-page__thumb {
    flex: 0 0 auto;
    width: 84px;
    height: 64px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 18px rgba(15, 31, 20, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.event-page__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-page__thumb:hover {
    transform: translateY(-2px);
}

.event-page__thumb.is-active {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.18);
}

.event-page__info-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.event-page__info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.05rem;
    background: #fff;
    border: 1px solid #e3ece6;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(15, 31, 20, 0.07);
}

.event-page__info-item i {
    font-size: 1.2rem;
    color: #2e7d32;
    flex-shrink: 0;
}

.event-page__info-item strong {
    display: block;
    color: #6b7c72;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.12rem;
}

.event-page__info-item span {
    display: block;
    color: #1a2b20;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
}

.event-page__date-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(145deg, #2e7d32, #43a047);
    color: #fff;
    flex-shrink: 0;
}

.event-page__date-day {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
}

.event-page__date-month {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-page__info-price {
    color: #28a745 !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
}

.event-page__body {
    padding-top: 2rem;
}

.event-page__section-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.15rem;
}

.event-page__section-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #dce8df;
    color: #4a5c50;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.event-page__section-link:hover,
.event-page__section-link.is-active {
    background: #e8f5e9;
    border-color: #b9dfc4;
    color: #1b6b32;
}

.event-page__card {
    background: #fff;
    border: 1px solid #e3ece6;
    border-radius: 20px;
    padding: 1.45rem 1.55rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(15, 31, 20, 0.04);
}

.event-page__card:last-child {
    margin-bottom: 0;
}

.event-page__card--meeting {
    background: linear-gradient(135deg, #f3fbf5 0%, #ffffff 100%);
    border-color: #cfe8d6;
}

.event-page__card-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid #edf2ee;
}

.event-page__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.event-page__card-head h2 {
    margin: 0;
    font-size: 1.28rem;
    font-weight: 700;
    color: #0f1f14;
}

.event-page__card-head p {
    margin: 0.2rem 0 0;
    color: #6b7c72;
    font-size: 0.86rem;
}

.event-page__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.event-page__stat {
    padding: 0.85rem 0.95rem;
    border-radius: 12px;
    background: #f7fbf8;
    border: 1px solid #e8f0ea;
}

.event-page__stat span {
    display: block;
    color: #6b7c72;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
}

.event-page__stat strong {
    color: #0f1f14;
    font-size: 0.94rem;
}

.event-page__prose {
    color: #46515b;
    line-height: 1.85;
    font-size: 0.97rem;
}

.event-page__meeting {
    font-size: 1rem;
    line-height: 1.7;
    color: #2f3b34;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px dashed #b9dfc4;
}

.event-page__booking {
    position: sticky;
    top: 130px;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dce8df;
    box-shadow: 0 20px 50px rgba(15, 31, 20, 0.1);
}

.event-page__booking-top {
    padding: 1.35rem 1.4rem 1rem;
    background: linear-gradient(135deg, #1f7a34 0%, #2e9b46 55%, #3cb45a 100%);
    color: #fff;
}

.event-page__booking-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.88;
    margin-bottom: 0.25rem;
}

.event-page__booking-price {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.event-page__booking-capacity {
    margin: 0.45rem 0 0;
    font-size: 0.82rem;
    opacity: 0.9;
}

.event-page__booking-summary {
    display: grid;
    gap: 0.45rem;
    padding: 0.9rem 1.4rem;
    background: #f7fbf8;
    border-bottom: 1px solid #e8f0ea;
    color: #3f4b55;
    font-size: 0.86rem;
    font-weight: 500;
}

.event-page__booking-summary i {
    color: #2e7d32;
    margin-right: 0.35rem;
}

.event-page__booking-body {
    padding: 1.25rem 1.4rem 1.4rem;
}

.event-page__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4a5c50;
}

.event-page__input {
    border-radius: 10px;
    border-color: #d9e5dc;
    padding: 0.62rem 0.8rem;
}

.event-page__input:focus {
    border-color: #7bc48a;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.12);
}

.event-page__qty {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #d9e5dc;
}

.event-page__qty-btn {
    border: 0;
    background: #f3f8f4;
    color: #2e7d32;
    padding: 0.55rem 0.85rem;
}

.event-page__qty-btn:hover {
    background: #e8f5e9;
    color: #1b6b32;
}

.event-page__qty .form-control {
    border: 0;
    border-left: 1px solid #d9e5dc;
    border-right: 1px solid #d9e5dc;
    box-shadow: none;
}

.event-page__cta {
    padding: 0.78rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(40, 167, 69, 0.22);
}

.event-page__waitlist-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0.85rem 0 0.35rem;
    color: #0f1f14;
}

.event-page__waitlist-copy {
    font-size: 0.86rem;
    color: #6b7c72;
    margin-bottom: 1rem;
}

@media (max-width: 1199px) {
    .event-page__info-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 1rem;
    }
}

@media (max-width: 991px) {
    .event-page__stats {
        grid-template-columns: 1fr;
    }

    .event-page__booking {
        position: static;
    }
}

@media (max-width: 767px) {
    .event-page__hero {
        border-radius: 18px;
    }

    .event-page__info-strip {
        grid-template-columns: 1fr;
    }

    .event-page__section-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.25rem;
    }

    .event-page__section-link {
        white-space: nowrap;
    }
}

.event-detail-cover {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
    background: #eef1f3;
}

.event-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-detail-title {
    font-size: 2.25rem;
    line-height: 1.15;
    color: #17202a;
    letter-spacing: 0;
}

.event-detail-lead {
    margin-top: 1rem;
    color: #5f6b76;
    font-size: 1.05rem;
    line-height: 1.65;
}

.event-detail-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.event-detail-facts>div {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: .65rem;
    color: #3f4b55;
}

.event-detail-facts i {
    color: #15803d;
    font-size: 1.1rem;
}

.event-detail-facts strong {
    display: block;
    color: #17202a;
    font-size: .78rem;
    margin-bottom: .15rem;
}

.event-content-section {
    padding: 0 0 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #dfe4e8;
}

.event-content-section:last-child {
    margin-bottom: 0;
}

.event-content-section h2 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #17202a;
}

.event-rich-text {
    color: #46515b;
    line-height: 1.75;
}

.event-about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.event-about-grid>div {
    border-left: 3px solid #198754;
    padding-left: .8rem;
}

.event-about-grid span {
    display: block;
    color: #6b7280;
    font-size: .78rem;
}

.event-about-grid strong {
    display: block;
    color: #17202a;
    margin-top: .2rem;
}

.event-booking-panel {
    position: sticky;
    top: 110px;
    background: #fff;
    border: 1px solid #dce2e6;
    border-radius: 6px;
    padding: 1.4rem;
}

.event-booking-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #17202a;
    margin-bottom: .25rem;
}

@media (max-width: 767px) {
    .event-detail-title {
        font-size: 1.75rem;
    }

    .event-detail-facts {
        grid-template-columns: 1fr;
    }

    .event-booking-panel {
        position: static;
    }
}

.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;
}

.Product-slider-wrapper {
    padding: 1.5rem 1rem;
}

.product-slider-header {
    padding: 0 0.7rem;
}

/* 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;
}

.main-header {
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
}

.main-header__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.main-header__menu-btn {
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #0f1f14;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.main-header__menu-btn:hover {
    background: #f4faf5;
    color: var(--color-primary);
}

.main-header .logo {
    min-width: 0;
    flex: 1 1 auto;
}

.main-header__search input {
    border-radius: 25px 0 0 25px !important;
}

.main-header__search .btn-success {
    border-radius: 0 25px 25px 0 !important;
}

.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;
    height: 100%;
}

.hero-image {
    max-width: 100%;
    height: 100%;
    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;
    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: 7px;
    width: 100%;
    padding: 6px;
    margin: 0;
    background-image: none !important;
    position: relative;
    overflow-x: auto;
    max-height: 410px;

}

.month_product_list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.month-section__image img {
    position: sticky;
    top: 110px;
}

#tabcontent {
    position: relative;
}

#tabcontent.is-open {
    padding-top: 0.5rem;
}

.timeline-tab-close {
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #d9e5dc;
    border-radius: 50%;
    background: #fff;
    color: #4a5c50;
    box-shadow: 0 4px 14px rgba(15, 31, 20, 0.08);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.timeline-tab-close:hover {
    background: #e8f5e9;
    border-color: #b9dfc4;
    color: #1b6b32;
}

.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: 13px;
    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: 1050;
    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;
}

/* JS auto-position (viewport-aware, like dropdowns — escapes overflow:auto parents) */
.month-product-tooltip.month-product-tooltip--js-positioned {
    position: fixed;
    left: 0;
    top: 0;
    bottom: auto;
    right: auto;
    transform: none;
}

.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);
}

/* Tooltip below trigger: arrow on top */
.month-product-tooltip[data-placement="bottom"]::after {
    top: -6px;
    bottom: auto;
    transform: translateX(-50%) rotate(45deg);
    border-right: none;
    border-bottom: none;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 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-wrap:hover .month-product-tooltip.month-product-tooltip--js-positioned {
    transform: none;
}

.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;
    margin-right: -0.5rem;
}


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

@media (max-width: 1500px) {

    .category-card,
    .category-card--large {
        height: 340px;
    }
}

@media (max-width: 992px) {

    .category-card,
    .category-card--large {
        height: 200px;
    }
}

@media (max-width: 768px) {

    .category-card,
    .category-card--large {
        height: 160px;
    }
}

@media (max-width: 576px) {

    .category-card,
    .category-card--large {
        height: 120px;
    }
}


.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;
    }

    .main-header__brand {
        height: 100%;
    }

    .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-top: 0.85rem !important;
        padding-bottom: 0.85rem !important;
    }

    .main-header__brand {
        gap: 0.65rem;
    }

    .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: 768px) {
    .hero-main {
        padding: 1rem 0;
        height: calc(100vh - 270px);
    }


    .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: 0rem 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.75rem;
        flex-shrink: 0;
        min-width: fit-content;
        padding: 6px 8px;
    }

    .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: 578px) {
    .categories-section {
        padding: 1.5rem 0;
    }

    .hero-main {
        height: calc(100vh - 220px);
    }


    .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;
    }

    .month-section__container {
        padding: 1rem 0;
    }

    .month-section .nav-item .month-button {
        display: block;
        border: 1px solid #fff;
    }

    .month_product_list {
        padding: 0px 12px;
    }

    .month_product_list.Winter .btn-outline-month-product {
        background-color: rgb(34 181 225 / 23%);
        border-color: rgb(34 181 225 / 70%);
    }

    .month_product_list.Summer .btn-outline-month-product {
        background-color: rgb(255 215 73 / 23%);
        border-color: rgb(255 215 73 / 70%);
    }

    .month_product_list.Spring .btn-outline-month-product {
        background-color: rgb(76 175 80 / 23%);
        border-color: rgb(76 175 80 / 70%);
    }

    .month_product_list.Autumn .btn-outline-month-product {
        background-color: rgb(248 151 55 / 23%);
        border-color: rgb(248 151 55 / 70%);
    }

    .month-section__image img {
        width: 110px;
    }

    .btn-outline-month-product {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
}




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

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

.home-section-more-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1.35rem;
    border-radius: 999px;
    border: 1.5px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.home-section-more-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

.home-section-more-btn>span,
.home-section-more-btn>.home-section-more-icon {
    position: relative;
    z-index: 1;
}

.home-section-more-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.home-section-more-btn:hover,
.home-section-more-btn:focus-visible {
    color: #fff;
    border-color: var(--color-primary);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.28);
}

.home-section-more-btn:hover::before,
.home-section-more-btn:focus-visible::before {
    transform: scaleX(1);
}

.home-section-more-btn:hover .home-section-more-icon,
.home-section-more-btn:focus-visible .home-section-more-icon {
    transform: translateX(4px);
}

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

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

.arrivals-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

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

.arrivals-slider .slick-slide>div {
    height: 100%;
}

.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 .slick-track {
    margin: 0 !important;
}

.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 0rem;
    }

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

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

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

    .new-arrivals {
        padding: 2rem 0;
    }

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

    .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;
    }
}

/* ============================================================
   Refer a Friend Section - Modern Card Design
   ============================================================ */
.refer-friend-section {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background-color: #f1f0f0;
    isolation: isolate;
    --refer-friend-bg: url('../../images/refer-friend-bg.png');
}

.refer-friend-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--refer-friend-bg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 90%;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.refer-friend-section .container-fluid {
    position: relative;
    z-index: 1;
}

/* Decorative floating blobs */
.refer-friend-blob {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(2px);
}

.refer-friend-blob--1 {
    width: 320px;
    height: 320px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle at 30% 30%, rgba(40, 167, 69, 0.12), rgba(40, 167, 69, 0));
}

.refer-friend-blob--2 {
    width: 240px;
    height: 240px;
    bottom: -110px;
    left: -70px;
    background: radial-gradient(circle at 50% 50%, rgba(31, 41, 55, 0.08), rgba(31, 41, 55, 0));
}

.refer-friend-section .row {
    position: relative;
    z-index: 1;
}

.refer-friend-content {
    padding: 1rem 0;
}

.refer-friend-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #1e7e34;
    background: rgba(40, 167, 69, 0.12);
    border: 1px solid rgba(40, 167, 69, 0.28);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.refer-friend-badge i {
    font-size: 0.95rem;
}

.refer-friend-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1f2937;
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
}

.refer-friend-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e7e34;
    margin: 0 0 1rem 0;
}

.refer-friend-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 2rem 0;
}

.refer-friend-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 1rem 2.4rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 12px 28px -8px rgba(40, 167, 69, 0.45);
}

.refer-friend-btn i {
    transition: transform 0.3s ease;
}

.refer-friend-btn:hover {
    background-color: #1e7e34;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 18px 36px -10px rgba(40, 167, 69, 0.55);
}

.refer-friend-btn:hover i {
    transform: translateX(4px);
}

.refer-friend-btn:focus {
    outline: none;
}

.refer-friend-note {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #6b7280;
    margin: 1.25rem 0 0 0;
}

.refer-friend-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.5rem;
    min-height: 100%;
    background: var(--refer-friend-gradient);
    border-radius: 12px;
}

.refer-friend-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    mix-blend-mode: multiply;
    transition: transform 0.4s ease;
}

.refer-friend-image:hover {
    transform: translateY(-4px);
}
@media (max-width: 1200px) {
    .refer-friend-section::before{
        background-size: 80%;
    }
    .refer-friend-headline{
        font-size: 2.2rem;
    }
    .refer-friend-desc{
        font-size: 0.85rem;
    }
}
/* Refer a Friend Responsive */
@media (max-width: 991.98px) {
    .refer-friend-content {
        text-align: center;
    }
    .refer-friend-section::before{
        opacity: 0.1;
        background-size: cover;
    }

    .refer-friend-desc {
        max-width: none;
    }

    .refer-friend-headline {
        font-size: 2.4rem;
    }

    .refer-friend-tagline {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .refer-friend-section {
        min-height: 520px;
    }

    .refer-friend-section::before {
        background-position: center bottom;
        opacity: 0.35;
        background-size: cover;
    }

    .refer-friend-headline {
        font-size: 2rem;
    }

    .refer-friend-tagline {
        font-size: 1rem;
    }

    .refer-friend-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}
@media (max-width: 575.98px) {
    .refer-friend-headline{
        font-size: 1.6rem;
    }
    .refer-friend-tagline{
        font-size: 0.9rem;
    }
    .refer-friend-desc{
        font-size: 0.75rem;
    }
    .refer-friend-section::before {
        opacity: 0.1;
    }
    .Product-slider-wrapper{
        padding: 0rem;
    }
}

@media (min-width: 1200px) {
    .refer-friend-headline {
        font-size: 2.6rem;
    }
}

/* 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-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem 2.6rem 0.9rem 0.9rem;
    border: 1px solid #e6efe7;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.feature-item::after {
    content: "\2192";
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%) translateX(0);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(46, 125, 50, 0.08);
    opacity: 0.8;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.feature-link:hover .feature-item {
    transform: translateY(-2px);
    border-color: rgba(46, 125, 50, 0.28);
    box-shadow: 0 8px 18px rgba(35, 78, 39, 0.10);
    background-color: #fcfffc;
}

.feature-link:hover .feature-item::after,
.feature-link:focus-visible .feature-item::after {
    opacity: 1;
    transform: translateY(-50%) translateX(2px);
    background-color: rgba(46, 125, 50, 0.16);
}

.feature-link:active .feature-item {
    transform: translateY(0);
}

.feature-link:focus-visible {
    outline: 2px solid rgba(46, 125, 50, 0.35);
    outline-offset: 2px;
}

.feature-link:hover .feature-icon,
.feature-link:focus-visible .feature-icon {
    background-color: rgba(40, 167, 69, 0.18);
}

.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-lg-5 {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.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 1 auto;
    flex: 1 1 auto;
    -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: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    padding: 0 0.25rem 0 0.25rem;
}

.natural-food-section .product-card-actions .season-product-add-btn {
    display: block;
    flex: none;
}

.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 .product-info {
    width: 60%;
}

.natural-food-section .product-name {
    white-space: nowrap;
    overflow-wrap: normal;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Natural Food Section Responsive */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .natural-food-section .section-title {
        margin-bottom: 1.5rem;
    }

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

    .natural-food-section .product-pricing {
        flex-direction: row;
        align-items: center;
    }


    .product-pricing {
        flex-direction: column;
        gap: 5px;
        align-items: self-start;
    }

    .banner-overlay {
        padding: 1.5rem;
    }

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

    .natural-food-section .product-card>a {
        padding: 0.65rem 0.75rem;
        gap: 0.75rem;
    }

    .natural-food-section .product-image {
        width: 88px;
        min-width: 88px;
        height: 88px;
    }

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

@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: 250px;
    }

    .banner-overlay {
        padding: 2rem;
    }

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

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

    .natural-food-banner {
        margin-bottom: 0px;
    }

    .natural-food-section .products-slider {
        padding: 0 .5rem;
    }

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

    .natural-food-section .row {
        row-gap: 0.5rem;
    }

    .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;
    }

    .natural-food-section .product-card>a {
        padding: 0.65rem 0.75rem;
    }

    .natural-food-section .season-product-add-btn {
        padding: 4px 10px;
        font-size: 0.78rem;
    }

    .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: .8rem 0;
}

.footer-bottom .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff !important;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.footer-bottom .social-icons a:hover {
    transform: scale(1.15);
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff !important;
}

.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-auth-links {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.header-auth-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f1f14;
    text-decoration: none;
    transition: color 0.2s ease;
}

.header-auth-link:hover {
    color: var(--color-primary-dark);
}

.header-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-darker) 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(40, 167, 69, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-auth-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(40, 167, 69, 0.28);
}

.header-user-dropdown {
    position: relative;
}

.header-account-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.3rem 0.55rem 0.3rem 0.3rem;
    border: 1.5px solid #e2ebe4;
    border-radius: 999px;
    background: #fafcfa;
    color: #0f1f14;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.header-account-toggle:hover,
.header-account-toggle.show,
.header-account-toggle[aria-expanded="true"] {
    border-color: #cfe8d6;
    background: #f4faf5;
    box-shadow: 0 4px 14px rgba(40, 167, 69, 0.12);
}

.header-account-toggle::after {
    display: none;
}

.header-account-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e7e34 0%, #28a745 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-account-avatar--lg {
    width: 42px;
    height: 42px;
    font-size: 0.82rem;
}

.header-account-name {
    max-width: 110px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-account-chevron {
    font-size: 0.72rem;
    color: #6b7c72;
    transition: transform 0.2s ease;
}

.header-account-toggle[aria-expanded="true"] .header-account-chevron {
    transform: rotate(180deg);
}

.header-account-dropdown {
    min-width: 260px;
    padding: 0;
    margin-top: 0.55rem !important;
    border: 1px solid #e8f0ea;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 31, 20, 0.12);
}

.header-account-dropdown__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1rem 0.85rem;
    background: linear-gradient(135deg, #f4faf5 0%, #ffffff 100%);
    border-bottom: 1px solid #e8f0ea;
}

.header-account-dropdown__meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.header-account-dropdown__meta strong {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f1f14;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-account-dropdown__meta span {
    font-size: 0.78rem;
    color: #6b7c72;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-account-dropdown__menu {
    padding: 0.45rem;
}

.header-account-dropdown__item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    color: #0f1f14;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.header-account-dropdown__item i {
    font-size: 1rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.header-account-dropdown__item:hover {
    background: rgba(40, 167, 69, 0.08);
    color: var(--color-primary-dark);
}

.header-account-dropdown__item--logout i {
    color: #dc3545;
}

.header-account-dropdown__item--logout:hover {
    background: #fff1f2;
    color: #c82333;
}

@media (max-width: 575.98px) {
    .header-account-name {
        display: none;
    }

    .header-account-toggle {
        padding: 0.25rem;
    }

    .header-auth-links {
        gap: 0.45rem;
    }

    .header-auth-link {
        font-size: 0.8rem;
    }

    .header-auth-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
}

.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;
    transition: color 0.3s ease;
}

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

.offcanvas_main_menu>li>ul>li{
    padding: 0;
}

.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;
}

/* Tablet side menu — matches account side menu */
@media (max-width: 991.98px) {
    .offcanvas_menu.tablet-side-menu {
        width: 340px;
        background: #f4faf5;
        box-shadow: 4px 0 28px rgba(15, 31, 20, 0.1);
    }

    .tablet-side-menu__inner {
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        padding: 1rem;
        margin-top: 0;
    }

    .tablet-side-menu__close {
        align-self: flex-end;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        padding: 0;
        border: 1px solid #e8f0ea;
        border-radius: 10px;
        background: #fff;
        color: #6b7c72;
        font-size: 1rem;
        line-height: 1;
        cursor: pointer;
        transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .tablet-side-menu__close:hover {
        background: #f4faf5;
        border-color: #cfe8d6;
        color: var(--color-primary-dark);
    }

    .tablet-side-menu__card {
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        position: static;
        top: auto;
        margin: 0;
        padding: 1rem 0.85rem 0.9rem;
    }

    .tablet-side-menu__card #menu {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        padding-right: 0.15rem;
    }

    .tablet-side-menu .offcanvas_main_menu > li {
        border-bottom: 0;
        padding: 0;
    }

    .tablet-side-menu .account-side-menu-link--parent {
        cursor: pointer;
    }

    .tablet-side-menu .account-side-menu-link--parent .menu-expand {
        margin-left: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        font-size: 0.78rem;
        color: #6b7c72;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .tablet-side-menu .menu-item-has-children.active > .account-side-menu-link--parent {
        background: rgba(40, 167, 69, 0.1);
        color: var(--color-primary-dark);
        box-shadow: inset 0 0 0 1px rgba(40, 167, 69, 0.18);
    }

    .tablet-side-menu .menu-item-has-children.active > .account-side-menu-link--parent i:first-child,
    .tablet-side-menu .menu-item-has-children.active > .account-side-menu-link--parent .menu-expand {
        color: var(--color-primary);
    }

    .tablet-side-menu .menu-item-has-children.active > .account-side-menu-link--parent .menu-expand {
        transform: rotate(180deg);
    }

    .tablet-side-menu__submenu {
        list-style: none;
        margin: 0.2rem 0 0;
        padding: 0 0 0.15rem 2.15rem;
        display: none;
    }

    .tablet-side-menu .menu-item-has-children.active .tablet-side-menu__submenu {
        display: block;
    }

    .tablet-side-menu__sublink {
        display: block;
        padding: 0.48rem 0.65rem;
        border-radius: 8px;
        color: #6b7c72;
        font-size: 0.84rem;
        font-weight: 500;
        line-height: 1.35;
        text-decoration: none;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .tablet-side-menu__sublink:hover {
        background: #f4faf5;
        color: var(--color-primary-dark);
    }

    .tablet-side-menu__footer {
        margin-top: auto;
        padding: 0;
        border-top: 0;
    }

    .tablet-side-menu__footer .account-side-menu-link {
        background: #fff;
        border: 1px solid #e8f0ea;
        box-shadow: 0 8px 20px rgba(15, 31, 20, 0.04);
    }
}

/* 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 showcase v2 */
.product-showcase {
    background: linear-gradient(180deg, #f8fcf9 0%, #ffffff 28%);
}

.product-showcase__breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.35rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: #6b7c72;
}

.product-showcase__breadcrumb a {
    color: #4a5c50;
    text-decoration: none;
}

.product-showcase__breadcrumb a:hover {
    color: var(--color-primary-dark);
}

.product-showcase__breadcrumb-current {
    color: #0f1f14;
}

.product-gallery-panel {
    background: #fff;
    border: 1px solid #e8f0ea;
    border-radius: 20px;
    padding: 0.85rem;
    box-shadow: 0 16px 40px rgba(15, 31, 20, 0.05);
}

.product-gallery-panel .product-image-gallery {
    position: sticky;
    top: 120px;
}

.product-gallery-layout {
    display: flex;
    gap: 0.85rem;
    align-items: stretch;
}

.product-gallery__sidebar {
    flex: 0 0 auto;
}

.product-gallery__main {
    flex: 1 1 auto;
    min-width: 0;
}

.product-gallery-panel .main-product-image {
    position: relative;
    min-height: 460px;
    max-height: 460px;
    margin-bottom: 0;
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #f4faf5;
    cursor: zoom-in;
}

.product-gallery__main-img {
    transition: opacity 0.2s ease, transform 0.4s ease;
}

.product-gallery-panel .main-product-image:hover .product-gallery__main-img {
    transform: scale(1.04);
}

.product-gallery__zoom-hint {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #0f1f14;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(15, 31, 20, 0.12);
    pointer-events: none;
}

.product-gallery__thumbs--vertical {
    flex-direction: column;
    flex-wrap: nowrap;
    max-height: 460px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.15rem;
    scrollbar-width: thin;
    scrollbar-color: #cfe8d6 transparent;
}

.product-gallery-panel .thumbnail-item {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    border: 2px solid transparent;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(15, 31, 20, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-gallery-panel .thumbnail-item:hover {
    transform: translateY(-2px);
    border-color: #cfe8d6;
}

.product-gallery-panel .thumbnail-item.active {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.14);
}

.product-info-panel {
    padding: 0.25rem 0.15rem;
    height: 100%;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.product-info-panel__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.product-info-panel .product-title {
    font-size: clamp(1.55rem, 2.5vw, 2.15rem);
    font-weight: 700;
    color: #0f1f14;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.product-info-panel__scientific {
    margin-top: 0.35rem;
    color: #6b7c72;
    font-size: 0.95rem;
}

.product-info-panel__stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-info-panel__stock-badge.in-stock {
    background: #e8f7ec;
    color: #1e7e34;
}

.product-info-panel__stock-badge.out-of-stock {
    background: #fff1f2;
    color: #c82333;
}

.product-info-panel .stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.product-info-panel__lead {
    margin-bottom: 1.15rem;
    color: #4a5c50;
    font-size: 0.96rem;
    line-height: 1.65;
}

.product-info-panel__price-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.15rem;
    padding: 1rem 0rem;
    }

.product-info-panel__price-row {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-info-panel__price-band .current-price {
    font-size: 2.1rem;
    font-weight: 800;
    color: #28a744;
    line-height: 1;
}

.product-info-panel__price-band .old-price {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: line-through;
}

.product-info-panel__sale-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-info-panel__facts {
    margin-bottom: 1.15rem;
}

.product-info-panel__fact {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0rem;
    border-radius: 12px;
    color: #4a5c50;
    font-size: 0.84rem;
    line-height: 1.35;
}

.product-info-panel__fact i {
    color: var(--color-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.product-info-panel__purchase {
    border-radius: 18px;
    background: #fff;
    margin-bottom: 1rem;
}

.product-info-panel__label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6b7c72;
    font-weight: 700;
}

.product-info-panel__options {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eef4ef;
}

.product-info-panel .size-option {
    min-width: 50px;
    height: 44px;
    border: 1.5px solid #e2ebe4;
    border-radius: 999px;
    background: #fff;
    font-weight: 700;
    color: #0f1f14;
}

.product-info-panel .size-option.active {
    background: #0f1f14;
    border-color: #0f1f14;
    color: #fff;
}

.product-info-panel__buy-row {
    margin-top: 0.25rem;
}

.product-info-panel .product-qty-stepper,
.product-info-panel .quantity-input-group {
    width: 118px;
    height: 46px;
    border: 1px solid #d7e5db;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.product-info-panel .quantity-btn {
    min-width: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #4a5c50;
    font-size: 0.95rem;
}

.product-info-panel .quantity-btn:hover {
    background: #f4faf5;
    color: #0f1f14;
}

.product-info-panel .quantity-input-group .form-control {
    border: 0;
    border-left: 1px solid #eef4ef;
    border-right: 1px solid #eef4ef;
    background: transparent;
    padding: 0;
    height: 100%;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f1f14;
}

.product-info-panel .quantity-input-group .form-control:focus {
    box-shadow: none;
}

.product-info-panel__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.6rem;
    min-height: 46px;
    margin-top: 1rem;
}

.product-info-panel__actions .product-cta-btn {
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 0 1rem;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}


.product-info-panel__actions .product-cta-btn--cart {
    background: #fff;
    border: 1px solid #d7e5db;
    color: #0f1f14;
}

.product-info-panel__actions .product-cta-btn--cart:hover {
    background:  #fff;
    border-color: var(--color-primary);
    color:  var(--color-primary);
}

.product-info-panel__actions .product-cta-btn--buy {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #fff;
    width: auto;
}

.product-info-panel__actions .product-cta-btn--buy:hover {
    background: #1e7e34;
    border-color: #1e7e34;
    color: #fff;
}

.product-info-panel__alert {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: #fff5f5;
    color: #c82333;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-info-panel__notify {
    padding: 0.95rem;
    border-radius: 14px;
    background: #fafcfa;
    border: 1px solid #e8f0ea;
}

.product-info-panel__help {
    display: block;
    margin-top: 0.55rem;
    color: #6b7c72;
    font-size: 0.82rem;
}

.product-info-panel__share {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
}

.product-info-panel__share-label {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6b7c72;
    font-weight: 700;
}

.product-info-panel__share .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-color: #e2ebe4;
    background: #fff;
}

@media (max-width: 991.98px) {
    .product-gallery-panel .product-image-gallery {
        position: static;
    }

    .product-gallery-layout {
        flex-direction: column-reverse;
    }

    .product-gallery__thumbs--vertical {
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 0.25rem;
    }

    .product-gallery-panel .main-product-image {
        min-height: 320px;
    }

    .product-info-panel__facts {
        grid-template-columns: 1fr;
    }

   
}

@media (max-width: 575.98px) {
    .product-gallery-panel {
        padding: 0.65rem;
    }

    .product-gallery-panel .main-product-image {
        min-height: 260px;
    }

    .product-info-panel__top {
        flex-direction: column;
    }

    .product-info-panel__price-band .current-price {
        font-size: 1.75rem;
    }

    .product-info-panel__buy-row {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .product-info-panel__actions {
        min-height: 44px;
    }

    .product-info-panel__actions .product-cta-btn {
        font-size: 0.8rem;
        padding: 0 0.75rem;
    }

    .product-info-panel .product-qty-stepper,
    .product-info-panel .quantity-input-group {
        width: 100%;
        max-width: 140px;
    }
}

.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 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);
}

@media (max-width: 1440px) {
    .main-product-image {
        max-height: 100%;
    }
}

/* 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;
    }

    .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 */
.login-modal-dialog {
    max-width: 880px;
    margin: 1rem auto;
}

.login-modal-content {
    border: 1px solid #e8f0ea;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(15, 31, 20, 0.12);
}

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

.login-modal-form-section {
    position: relative;
    background: #fff;
}

.login-modal-form-wrap {
    padding: 2rem 2.25rem 2.35rem;
}

.login-modal-header {
    margin-bottom: 1.5rem;
}

.login-modal-logo {
    display: block;
    max-height: 52px;
    width: auto;
    margin-bottom: 1.15rem;
}

.login-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--color-primary-dark);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.login-modal-title {
    margin: 0 0 0.5rem;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.25;
    color: #0f1f14;
    letter-spacing: -0.02em;
}

.login-modal-description {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b7c72;
}

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

.login-modal-form .form-label {
    margin-bottom: 0.45rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: #4a5c50;
}

.login-field {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 48px;
    padding: 0 0rem 0 0.75rem;
    border: 1px solid #d7e5db;
    border-radius: 12px;
    background: #fafcfa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    overflow: hidden;
}

.login-field:focus-within {
    border-color: #9ec9ad;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.12);
}

.login-field__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6b7c72;
    font-size: 1rem;
}

.login-field:focus-within .login-field__icon {
    color: var(--color-primary-dark);
}

.login-field__input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.72rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.login-field__input:focus {
    border-color: transparent;
    box-shadow: none;
    background: transparent;
}

.login-modal-form .form-control {
    padding: 0.72rem 0.9rem;
    border: none !important;
    border-radius: 10px;
    font-size: 0.92rem;
    background: #fff;
}

.login-modal-form .form-control:focus {
    border-color: #9ec9ad;
    box-shadow: none !important;
}

.login-modal-form .error_info {
    min-height: 1.25rem;
    margin: 0.35rem 0 0.85rem;
    font-size: 0.84rem;
    font-weight: 600;
}

.login-modal-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.15rem;
}

.login-modal-links--center {
    justify-content: center;
    margin-bottom: 0;
}

.forgot-password-error,
.forgot-password-success {
    min-height: 1.25rem;
    margin: 0.35rem 0 0.85rem;
    font-size: 0.84rem;
    font-weight: 600;
}

.login-modal-link {
    font-size: 0.84rem;
    font-weight: 600;
    color: #6b7c72;
    text-decoration: none;
    transition: color 0.2s ease;
}

.login-modal-link:hover {
    color: var(--color-primary-dark);
}

.login-modal-submit {
    width: 100%;
    padding: 0.82rem 1rem;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    background: #166534;
    border: 1px solid #166534;
}

.login-modal-submit:hover {
    background: #14532d;
    border-color: #14532d;
}

.login-modal-brand {
    position: relative;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    overflow: hidden;
    background: #0f1f14;
    color: #fff;
}

.login-modal-brand__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.login-modal-brand__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 31, 20, 0.25) 0%, rgba(15, 31, 20, 0.88) 100%);
}

.login-modal-brand__content {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.login-modal-brand__title {
    margin: 0 0 0.75rem;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
}

.login-modal-brand__text {
    margin: 0;
    max-width: 18rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.login-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.login-modal-close--mobile {
    border-color: #e8f0ea;
    background: #fff;
    color: #4a5c50;
}

.login-modal-close--mobile:hover {
    background: #fafcfa;
    color: #0f1f14;
}

.login-modal-close--brand {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.login-modal-close--brand:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

@media (max-width: 991.98px) {
    .login-modal-dialog {
        max-width: 520px;
    }

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

@media (max-width: 575.98px) {
    .login-modal-form-wrap {
        padding: 1.5rem 1.15rem 1.75rem;
    }

    .login-modal-title {
        font-size: 1.35rem;
    }

    .login-modal-links {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* 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-count-badge{
    position: absolute;
    top: -12px;
    right: -10px;
    background-color: var(--color-gray-light);
    color: var(--color-text-primary);
    border-radius: 50%;
    padding: 0.25rem 0.5rem;
}

/* 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;
    }
    .main-header__brand{
        gap: 0.5rem;
    }
    .main-header__menu-btn{
        width: 30px;
        font-size: 1rem;
    }
}

/* 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 {
    background-color: #f8f9fa;
    min-height: calc(100vh - 220px);
}


.cart-page-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.cart-page-intro {
    flex: 1;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 1.5rem;
    align-items: start;
    margin: 0 auto;
}

.cart-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--color-primary-darker);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cart-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f1f14;
}

.cart-subtitle {
    margin: 0.35rem 0 0;
    font-size: 0.95rem;
    color: #6b7c72;
}

.cart-main {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(15, 31, 20, 0.06);
    overflow: hidden;
}

.cart-table-head {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) 100px 130px 110px 48px;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e8f0ea;
    background: #fafcfa;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6b7c72;
}

.cart-items-container {
    padding: 0.5rem 0;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1.8fr) 100px 130px 110px 48px;
    gap: 1rem;
    align-items: center;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid #eef4ef;
    transition: background-color 0.2s ease;
}

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

.cart-item-card:hover {
    background: #fbfcfb;
}

.cart-item-image {
    width: 88px;
    height: 88px;
    border-radius: 14px;
    overflow: hidden;
    background: #f4faf5;
    flex-shrink: 0;
}

.cart-item-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.cart-item-image:hover img {
    transform: scale(1.04);
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.cart-item-card .item-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    color: #0f1f14;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cart-item-card .item-name:hover {
    color: var(--color-primary);
}

.cart-item-card .item-variant {
    font-size: 0.82rem;
    color: #6b7c72;
}

.item-unit-price {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.item-unit-price--desktop {
    font-size: 0.95rem;
    color: #0f1f14;
}

.cart-item-price-col {
    text-align: center;
}

.cart-item-quantity {
    display: flex;
    justify-content: center;
}

.qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #e2ebe4;
    border-radius: 12px;
    overflow: hidden;
    background: #fafcfa;
}

.qty-btn {
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    color: #6b7c72;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

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

.qty-input {
    width: 42px;
    height: 38px;
    border: 0;
    border-left: 1.5px solid #e2ebe4;
    border-right: 1.5px solid #e2ebe4;
    background: #fff;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f1f14;
    -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 {
    text-align: right;
}

.cart-item-card .item-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f1f14;
}

.cart-item-remove {
    display: flex;
    justify-content: center;
}

.btn-remove {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: #fff5f5;
    color: #dc3545;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-remove:hover {
    background: #dc3545;
    color: #fff;
    transform: scale(1.04);
}

.cart-actions {
    padding: 1.25rem 1.5rem 1.5rem;
    border-top: 1px solid #eef4ef;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.1rem;
    border: 1.5px solid #d7e5db;
    border-radius: 12px;
    background: #fff;
    color: #0f1f14;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.btn-action:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
    background: #f4faf5;
}

.cart-sidebar {
    position: sticky;
    top: 1.5rem;
}

.cart-summary-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(15, 31, 20, 0.08);
    overflow: hidden;
}

.cart-summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    border-bottom: 1px solid #e8f0ea;
    background: linear-gradient(135deg, #f4faf5 0%, #ffffff 100%);
}

.cart-summary-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f1f14;
}

.cart-summary-count {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    background: rgba(40, 167, 69, 0.1);
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
}

.cart-summary-body {
    padding: 0.35rem 0;
}

.order-summary .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.35rem;
    border-bottom: 1px solid #f0f4f1;
}

.order-summary .summary-row:last-of-type {
    border-bottom: none;
}

.summary-label {
    font-size: 0.9rem;
    color: #4a5c50;
}

.summary-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f1f14;
}

.order-summary .summary-total {
    margin-top: 0.25rem;
    padding-top: 1rem;
    border-top: 1.5px solid #e2ebe4;
    background: #fafcfa;
}

.order-summary .summary-total .summary-label {
    font-size: 1rem;
    font-weight: 700;
    color: #0f1f14;
}

.order-summary .summary-total .summary-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.order-summary .discount-message {
    display: block;
    margin: 0 1.35rem 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    color: #166534;
    font-size: 0.82rem;
    line-height: 1.45;
    border-bottom: none;
}

.order-summary .summary-row.discount-message {
    justify-content: flex-start;
}

.cart-summary-footer {
    padding: 1rem 1.35rem 1.35rem;
    border-top: 1px solid #e8f0ea;
}

.btn-checkout-black {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-darker) 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.28);
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-checkout-black:hover {
    color: #fff;
    filter: brightness(1.05);
    box-shadow: 0 12px 28px rgba(40, 167, 69, 0.34);
    transform: translateY(-1px);
}

.btn-checkout-top {
    flex-shrink: 0;
    width: auto;
    padding-inline: 1.5rem;
}

.cart-summary-note {
    margin: 0.85rem 0 0;
    font-size: 0.75rem;
    line-height: 1.45;
    color: #6b7c72;
    text-align: center;
}

.cart-empty {
    display: flex;
    justify-content: center;
    padding: 2rem 0 4rem;
}

.cart-empty-card {
    width: 100%;
    max-width: 520px;
    padding: 3rem 2rem;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(15, 31, 20, 0.06);
}

.cart-empty-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4faf5 0%, #e8f5ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-empty-icon i {
    font-size: 2rem;
    color: var(--color-primary);
}

.cart-empty-title {
    margin: 0 0 0.6rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f1f14;
}

.cart-empty-text {
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    color: #6b7c72;
    line-height: 1.55;
}

@media (max-width: 1199.98px) {
    .cart-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
    }

    .cart-table-head,
    .cart-item-card {
        grid-template-columns: 80px minmax(0, 1.6fr) 90px 120px 100px 40px;
    }
}

@media (max-width: 991.98px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        position: static;
    }

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

    .cart-item-card {
        grid-template-columns: 88px minmax(0, 1fr) auto 40px;
        grid-template-areas:
            "image details total remove"
            "image qty qty remove";
        gap: 0.75rem 1rem;
        padding: 1.1rem 1.25rem;
    }

    .cart-item-image {
        grid-area: image;
    }

    .cart-item-details {
        grid-area: details;
    }

    .cart-item-price-col {
        display: none !important;
    }

    .cart-item-quantity {
        grid-area: qty;
        justify-content: flex-start;
    }

    .cart-item-total {
        grid-area: total;
        text-align: right;
        align-self: start;
    }

    .cart-item-remove {
        grid-area: remove;
        align-self: start;
    }
}

@media (max-width: 575.98px) {
    .cart-page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-title {
        font-size: 1.6rem;
    }

    .cart-item-card {
        grid-template-columns: 72px minmax(0, 1fr) 36px;
        grid-template-areas:
            "image details remove"
            "image qty total";
    }

    .cart-item-image {
        width: 72px;
        height: 72px;
    }

    .cart-item-total {
        align-self: center;
    }

    .cart-empty-card {
        padding: 2.25rem 1.25rem;
    }
}

/* ============================================
   CHECKOUT PAGE STYLES
   ============================================ */

.checkout-section {
    background-color: #f8f9fa;
    min-height: calc(100vh - 220px);
}

.checkout-alert {
    
    margin: 0 auto 1.25rem;
    border-radius: 12px;
}

.checkout-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkout-header .checkout-steps {
    margin-bottom: 0;
}

.checkout-title {
    margin: 0 0 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f1f14;
}

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 680px;
    margin: 0 auto 2rem;
    padding: 0.5rem;
}

.checkout-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    cursor: default;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.checkout-steps .step.completed {
    cursor: pointer;
}

.checkout-steps .step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eef4ef;
    color: #6b7c72;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.checkout-steps .step.active .step-number {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-darker) 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(40, 167, 69, 0.3);
}

.checkout-steps .step.completed .step-number {
    background: var(--color-primary);
    color: #fff;
}

.checkout-steps .step-label {
    font-size: 0.78rem;
    color: #6b7c72;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
}

.checkout-steps .step.active .step-label {
    color: var(--color-primary-dark);
}

.checkout-steps .step.completed .step-label {
    color: #0f1f14;
}

.checkout-steps .step-divider {
    flex: 1;
    height: 2px;
    background: #e2ebe4;
    margin: 0 0.75rem;
    margin-bottom: 1.4rem;
    max-width: 100px;
    border-radius: 2px;
    transition: background-color 0.25s ease;
}

.checkout-steps .step.completed+.step-divider {
    background: var(--color-primary);
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 1.75rem;
    align-items: start;
    
    margin: 0 auto;
}

.checkout-main {
    min-width: 0;
}

.checkout-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(15, 31, 20, 0.06);
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.checkout-card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.5rem;
    border-bottom: 1px solid #e8f0ea;
    background: linear-gradient(135deg, #f4faf5 0%, #ffffff 100%);
}

.checkout-card .card-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f1f14;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
}

.checkout-card .card-title i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.checkout-card .item-count {
    margin-left: auto;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    background: rgba(40, 167, 69, 0.1);
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
}

.checkout-card .card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cart-items-list .cart-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eef4ef;
}

.cart-items-list .cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-items-list .cart-item:first-child {
    padding-top: 0;
}

.cart-items-list .item-image {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    overflow: hidden;
    background: #f4faf5;
    flex-shrink: 0;
}

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

.cart-items-list .item-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.cart-items-list .item-info .item-name {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
    color: #0f1f14;
}

.cart-items-list .item-info .item-variant,
.cart-items-list .item-info .item-qty {
    font-size: 0.82rem;
    color: #6b7c72;
}

.cart-items-list .cart-item .item-price {
    font-size: 1rem;
    font-weight: 700;
    color: #0f1f14;
    white-space: nowrap;
}

.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.4rem;
}

.checkout-card .form-group label,
.checkout-field-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #4a5c50;
}

.required {
    color: #dc3545;
}

.form-input,
.form-select {
    height: 46px;
    padding: 0 0.95rem;
    border: 1.5px solid #e2ebe4;
    border-radius: 12px;
    font-size: 0.92rem;
    color: #0f1f14;
    background: #fafcfa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.12);
}

.form-input::placeholder {
    color: #9aab9f;
}

.form-input.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545 !important;
    background: #fff8f8;
}

.form-divider {
    height: 1px;
    background: #eef4ef;
    margin: 1.25rem 0;
}

.phone-input-group {
    display: flex;
    gap: 0.5rem;
}

.phone-code {
    width: 76px;
    flex-shrink: 0;
    text-align: center;
}

.phone-number {
    flex: 1;
}

.payment-methods {
    display: flex;
    flex-direction: row;
    gap: 0.85rem;
}

.payment-option {
    cursor: pointer;
    display: block;
}

.payment-radio {
    display: none;
}

.payment-card {
    display: flex;
    align-items: center;
    padding: 1.1rem 1.25rem;
    border: 1.5px solid #e2ebe4;
    border-radius: 14px;
    transition: all 0.2s ease;
    gap: 1rem;
    background: #fafcfa;
}

.payment-radio:checked+.payment-card {
    border-color: var(--color-primary);
    background: rgba(40, 167, 69, 0.06);
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.12);
}

.payment-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #6b7c72;
    flex-shrink: 0;
    border: 1px solid #e8f0ea;
    transition: all 0.2s ease;
}

.payment-radio:checked+.payment-card .payment-icon {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.payment-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.payment-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f1f14;
}

.payment-desc {
    font-size: 0.82rem;
    color: #6b7c72;
    line-height: 1.4;
}

.payment-check {
    font-size: 1.35rem;
    color: #d7e5db;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.payment-radio:checked+.payment-card .payment-check {
    color: var(--color-primary);
}

.bank-details {
    margin-top: 1.25rem;
    padding: 1.15rem 1.25rem;
    background: #f9f9f9;
    border-radius: 14px;
    border: 1px solid #e2ebe4;
}

.bank-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f1f14;
    margin: 0 0 0.85rem;
}

.bank-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid #e2ebe4;
    font-size: 0.88rem;
}

.bank-row:last-child {
    border-bottom: none;
}

.bank-label {
    font-weight: 600;
    color: #6b7c72;
}

.bank-value {
    font-weight: 600;
    color: #0f1f14;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.85rem;
    text-align: right;
}

.checkout-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.95rem 1.1rem;
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    margin-top: 1.25rem;
}

.checkout-notice i {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.checkout-notice p {
    margin: 0;
    font-size: 0.85rem;
    color: #166534;
    line-height: 1.5;
}


/* Shared checkout/payment 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: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    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: #0f1f14;
    border: 1.5px solid #d7e5db;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-secondary-outline:hover {
    background: #f4faf5;
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.order-summary-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(15, 31, 20, 0.08);
    overflow: hidden;
}

.order-summary-card .summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    border-bottom: 1px solid #e8f0ea;
    background: linear-gradient(135deg, #f4faf5 0%, #ffffff 100%);
}

.order-summary-card .summary-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f1f14;
}

.checkout-summary-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    background: rgba(40, 167, 69, 0.1);
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    flex-shrink: 0;
}

.order-summary-card .summary-body {
    padding: 0.35rem 0 0.5rem;
}

.order-summary-card .summary-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 10px 1.35rem 0.5rem;
    padding-bottom: 0.75rem;
    border-top: 1px solid #eef4ef;
    max-height: 200px;
    overflow-y: auto;
}

.order-summary-card .summary-items:first-child {
    border-top: none;

}

.order-summary-card .summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.84rem;
}

.order-summary-card .summary-divider {
    height: 1px;
    background: #eef4ef;
    margin: 0.5rem 1.35rem;
}

.order-summary-card .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 1.35rem;
    border-bottom: 1px solid #f0f4f1;
    font-size: 0.9rem;
}

.order-summary-card .summary-row span:first-child {
    color: #4a5c50;
}

.order-summary-card .summary-row span:last-child {
    font-weight: 600;
    color: #0f1f14;
}

.order-summary-card .discount-row span:last-child {
    color: #dc3545;
}

.order-summary-card .summary-tax {
    font-size: 0.85rem;
}

.order-summary-card .summary-total {
    margin-top: 0.25rem;
    padding: 1rem 1.35rem;
    border-top: 1.5px solid #e2ebe4;
    border-bottom: none;
    background: #fafcfa;
}

.order-summary-card .summary-total span:first-child {
    font-size: 1rem;
    font-weight: 700;
    color: #0f1f14;
}

.order-summary-card .summary-total .total-dynamic-append {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.order-summary-card .summary-footer {
    padding: 1rem 1.35rem 1.35rem;
    border-top: 1px solid #e8f0ea;
    background: #fff;
}

.order-summary-card .form-group {
    padding: 0.35rem 1.35rem 0.75rem;
    margin-bottom: 0;
}

.order-summary-card .form-group .form-label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #4a5c50;
}

.order-summary-card .form-control {
    height: 46px;
    border: 1.5px solid #e2ebe4;
    border-radius: 12px;
    background: #fafcfa;
    font-size: 0.92rem;
}

.order-summary-card .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.12);
}

.order-summary-card .input-group {
    display: flex;
    gap: 0.5rem;
}

.order-summary-card .input-group .form-control {
    flex: 1;
    min-width: 0;
}

.order-summary-card .input-group .btn {
    border-radius: 12px;
    padding: 0 1rem;
    font-weight: 600;
    border: 1.5px solid #e2ebe4;
    color: #0f1f14;
    background: #fff;
    white-space: nowrap;
}

.order-summary-card .input-group .btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
    background: #f4faf5;
}

.order-summary-card .form-text {
    font-size: 0.78rem;
    color: #6b7c72;
}

.summary-shipping-message {
    display: none;
    margin: 10px 1.35rem 0.75rem;
    padding: 0.9rem;
    border-radius: 10px;
    background: #fff8e1;
    color: #7a5a00;
    font-size: 0.8rem;
    line-height: 1.45;
}

.summary-shipping-message.is-unlocked {
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5c50;
}

.secure-checkout i {
    color: var(--color-primary);
}

.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.step-actions .btn-primary-solid,
.step-actions .btn-order {
    min-width: 180px;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-darker) 100%);
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.28);
    font-weight: 700;
    border: none;
}

.step-actions .btn-primary-solid:hover,
.step-actions .btn-order:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(40, 167, 69, 0.34);
    color: #fff;
}

.step-actions .btn-secondary-outline {
    border-radius: 12px;
    border: 1.5px solid #d7e5db;
    font-weight: 600;
    padding: 0.85rem 1.25rem;
    background: #fff;
}

.step-actions .btn-secondary-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
    background: #f4faf5;
}

.checkout-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 520px;
    margin: 2rem auto 4rem;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(15, 31, 20, 0.06);
    text-align: center;
}

.checkout-empty .empty-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #f4faf5 0%, #e8f5ea 100%);
}

.checkout-empty .empty-icon i {
    color: var(--color-primary);
    font-size: 2rem;
}

.checkout-empty h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f1f14;
}

.checkout-empty p {
    color: #6b7c72;
}

.checkout-empty .btn-primary-solid {
    border-radius: 12px;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-darker) 100%);
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.28);
    font-weight: 700;
}

.checkout-steps .step.completed {
    cursor: pointer;
}

.checkout-steps .step:not(.active):not(.completed) {
    cursor: default;
}

.hidden {
    display: none !important;
}

@media (max-width: 991.98px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-sidebar {
        position: static;
        order: -1;
    }

    .payment-methods {
        flex-direction: column;
    }

    .payment-option {
        width: 100%;
    }
}

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

    .checkout-steps .step-label {
        font-size: 0.68rem;
    }

    .checkout-steps .step-number {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .form-grid,
    .form-grid-3-1,
    .form-grid-contact {
        grid-template-columns: 1fr;
    }

    .step-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .step-actions .btn-primary-solid,
    .step-actions .btn-secondary-outline,
    .step-actions .btn-order {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .checkout-section {
        padding-top: 1.5rem !important;
        padding-bottom: 2rem !important;
    }

    .checkout-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .checkout-steps .step-label {
        display: none;
    }

    .checkout-steps .step-divider {
        margin-bottom: 0;
    }
}

/* =====================================================
   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;
    }
}

/* Register page */
.register-page-section {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
    min-height: calc(100vh - 220px);
    background: linear-gradient(180deg, #f4faf5 0%, #f8f9fa 100%);
    display: block;
}

.register-page-layout {
    max-width: 640px;
    margin: 0 auto;
}

.register-page-card {
    background: #fff;
    border: 1px solid #e8f0ea;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(15, 31, 20, 0.08);
    overflow: hidden;
}

.register-page-form {
    padding: 2rem 2rem 2.25rem;
}

.register-page-header {
    margin-bottom: 1.75rem;
}

.register-page-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--color-primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.85rem;
}

.register-page-title {
    margin: 0 0 0.65rem;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0f1f14;
    letter-spacing: -0.02em;
}

.register-page-description {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.55;
    color: #6b7c72;
    max-width: 560px;
}

.register-page-grid {
    display: grid;
    gap: 0 1rem;
}

.register-page-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.register-page-form .form-label .required {
    color: #dc3545;
}

.register-gender-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.register-gender-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.65rem 0.75rem;
    border: 1.5px solid #e2ebe4;
    border-radius: 12px;
    background: #fafcfa;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
    text-align: center;
}

.register-gender-option span {
    font-size: 0.88rem;
    font-weight: 600;
    color: #4a5c50;
}

.register-gender-option .form-check-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.register-gender-option:has(.form-check-input:checked) {
    border-color: var(--color-primary);
    background: #f0fdf4;
    box-shadow: 0 4px 14px rgba(40, 167, 69, 0.12);
}

.register-gender-option:has(.form-check-input:checked) span {
    color: var(--color-primary-dark);
}

.register-terms-box {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: #fafcfa;
    border: 1px solid #e8f0ea;
    margin-bottom: 1.25rem;
}

.register-page-submit-wrap {
    margin-bottom: 0;
}

.register-page-footer {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eef4ef;
}

@media (max-width: 991.98px) {
    .register-page-form {
        padding: 1.75rem 1.5rem 2rem;
    }

    .register-page-title {
        font-size: 1.65rem;
    }
}

@media (max-width: 767.98px) {
    .register-page-grid--two,
    .register-gender-grid {
        grid-template-columns: 1fr;
    }

    .register-page-form {
        padding: 1.5rem 1.15rem 1.75rem;
    }

    .register-page-title {
        font-size: 1.45rem;
    }
}

/* ============================================
   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 {
        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 {
        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 {
    
    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);
}

/* Events listing cards */
.event-card {
    background: #ffffff;
    border: 1px solid #dde2e7;
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(12, 26, 40, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(12, 26, 40, 0.14);
}

.event-card-media {
    position: relative;
    height: 280px;
    background: #f3f5f7;
    overflow: hidden;
}

.event-card-media a {
    display: block;
    height: 100%;
}

.event-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-card-media img {
    transform: scale(1.02);
}

.event-card-body {
    padding: 1.25rem 1.25rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.event-card-tags--overlay {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    margin-bottom: 0;
    z-index: 2;
}

.event-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.58rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.2;
}

.event-card-tag--active {
    color: #1b5e20;
    background: rgba(223, 244, 226, 0.95);
}

.event-card-tag--expired {
    color: #fff;
    background: #dc3545;
}

.event-card-tag.badge-success {
    color: #fff;
    background: #28a745;
}

.event-card-tag.badge-danger {
    color: #fff;
    background: #dc3545;
}

.event-card-tag--category {
    color: #495057;
    background: rgba(244, 246, 248, 0.95);
    border: 1px solid rgba(227, 231, 235, 0.95);
}

.event-card-tag--type {
    color: #fff;
    background: #fd7e14;
}

.event-card-title {
    margin: 0 0 0.85rem;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1f2d47;
}

.event-card-title a {
    color: inherit;
    text-decoration: none;
}

.event-card-title a:hover {
    color: #1f2d47;
}

.event-card-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: .85rem;
    color: #3f4e67;
    margin-bottom: 1rem;
    padding-bottom: 1.05rem;
    border-bottom: 1px solid #e6eaef;
}

.event-card-meta i {
    font-size: 1rem;
    color: #4b5d79;
}

.event-card-meta span {
    line-height: 1.35;
}

.event-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.event-card-price {
    font-size: 1rem;
    font-weight: 600;
    color: #2f3c54;
}

.event-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 138px;
    padding: 0.62rem 1.15rem;
    background: var(--color-primary);
    color: #fff;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.event-card-btn:hover {
    color: #fff;
    text-decoration: none;
    background: var(--color-primary-darker);
    border-color: var(--color-primary-darker);
    box-shadow: 0 8px 16px var(--color-primary-light);
}

/* 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;
}

.product-sort-toolbar {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    /* border: 1px solid #e9ecef; */
    border-radius: 12px;
    background: #fff;
    /* box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04); */
}

.product-sort-toolbar__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d2d2d;
    font-size: 0.95rem;
    font-weight: 600;
}

.product-sort-toolbar__label i {
    color: var(--color-primary);
    font-size: 1rem;
}

.product-sort-toolbar__form {
    min-width: 220px;
}

.product-sort-toolbar__select {
    border-radius: 8px;
    border-color: #d7dbe0;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 2.4rem 0.5rem 0.9rem;
    box-shadow: none;
    height: auto;
}

.product-sort-toolbar__select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem var(--color-primary-light);
}

.search-hero-query {
    display: inline-block;
    max-width: 100%;
    margin: 0.75rem 0 0;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-results-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid #e8f0ea;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8fcf9 0%, #ffffff 100%);
}

.search-results-meta--empty {
    margin-bottom: 1.25rem;
}

.search-results-meta__text {
    margin: 0;
    color: #4a5c50;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
}

.search-results-meta__text strong {
    color: var(--color-primary-dark);
    font-weight: 700;
}

.search-results-meta__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--color-primary-dark);
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.search-page-section .product-sort-toolbar {
    margin-bottom: 1.25rem;
}

@media (max-width: 767.98px) {
    .search-hero-query {
        font-size: 0.86rem;
        max-width: calc(100vw - 2rem);
    }

    .search-results-meta {
        align-items: flex-start;
        flex-direction: column;
    }
}

.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;
    /* min-height: 2.7em; */
}

.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;
    /* flex-direction: column; */
    gap: 0.5rem;
    margin-top: auto;
    flex-wrap: wrap;
}

/* Keep equal-height cards in carousel rows. */
.arrivals-slider .season-product-card {
    height: 100%;
}

/* Stepper: minus | input | plus — ties into one control (global .qty-btn is 44px for cart only) */
.season-qty-wrapper {
    display: inline-flex;
    align-items: stretch;
    flex-shrink: 0;
    border: 1px solid var(--color-gray-light);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.season-qty-wrapper .qty-btn {
    width: 24px;
    min-width: 24px;
    height: auto;
    min-height: 30px;
    font-size: .90rem;
    font-weight: 500;
    background: #f5f5f5;
    color: #444;
}

.season-qty-wrapper .qty-btn:hover {
    background: #e8e8e8;
    color: #222;
}

.season-qty-wrapper .season-product-qty {
    width: 34px;
    min-height: 30px;
    border: none;
    border-left: 1px solid var(--color-gray-light);
    border-right: 1px solid var(--color-gray-light);
    border-radius: 0;
    align-self: stretch;
    box-sizing: border-box;
    padding: 0.35rem 0.15rem;
}

.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.70rem;
    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) {
    .product-sort-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .product-sort-toolbar__form {
        min-width: 100%;
    }

    .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;
    }
}

/* Registration Success Page */
.registration-success-section {
    background: linear-gradient(180deg, #f6fff8 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.registration-success-section::before,
.registration-success-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.08);
    pointer-events: none;
}

.registration-success-section::before {
    top: -80px;
    left: -60px;
}

.registration-success-section::after {
    right: -70px;
    bottom: -90px;
}

.registration-success-card {
    background: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(40, 167, 69, 0.08);
}

.registration-success-icon-wrap {
    width: 132px;
    height: 132px;
    background: radial-gradient(circle at 30% 30%, #eefdf2 0%, #d7f7e2 100%);
    border: 2px solid rgba(40, 167, 69, 0.18);
}

.registration-success-icon {
    font-size: 68px;
}

.registration-success-title {
    letter-spacing: 0.01em;
}

.registration-success-desc {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.registration-success-btn {
    min-width: 190px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.25);
}

.registration-success-btn:hover {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .registration-success-icon-wrap {
        width: 108px;
        height: 108px;
    }

    .registration-success-icon {
        font-size: 52px;
    }

    .registration-success-desc {
        max-width: 100%;
    }
}

.account-page-wrap {
    background: #f8f9fa;
    min-height: calc(100vh - 220px);
}

.account-alert {
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.account-page-header {
    margin-bottom: 1.5rem;
}

.account-page-title {
    margin: 0 0 0.35rem;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f1f14;
}

.account-page-subtitle {
    margin: 0;
    font-size: 0.95rem;
    color: #6b7c72;
    line-height: 1.5;
}

.account-top-stats {
    margin-bottom: 1.5rem;
}

.account-stat-card {
    background: #fff;
    border: 1px solid #e8f0ea;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(15, 31, 20, 0.05);
    padding: 1.1rem 1.15rem;
}

.account-stat-card--profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}

.account-stat-card__profile-main {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.account-stat-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e7e34 0%, #28a745 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.account-stat-card__profile-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.account-stat-card__profile-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: #0f1f14;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.account-stat-card__profile-text span {
    font-size: 0.82rem;
    color: #6b7c72;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.account-status-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #e8f8ee;
    color: #28a744 !important;
    border: 1px solid #ccefd9;
    border-radius: 999px;
    font-size: 0.75rem !important;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    white-space: nowrap;
    margin-top: 10px;
}

.account-stat-card--metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
}

.account-stat-card__metric-copy {
    min-width: 0;
}

.account-stat-card__label {
    display: block;
    font-size: 0.8rem;
    color: #6b7c72;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.account-stat-card__value {
    display: block;
    font-size: 1.55rem;
    font-weight: 700;
    color: #0f1f14;
    line-height: 1.1;
}

.account-stat-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.account-stat-card__icon--green {
    background: rgba(40, 167, 69, 0.12);
    color: var(--color-primary-dark);
}

.account-stat-card__icon--amber {
    background: #fff4e5;
    color: #d97706;
}

.account-layout {
    align-items: flex-start;
}

.account-side-menu-card {
        border-radius: 18px;
    padding: 1.15rem 1rem 1rem;
    position: sticky;
    top: 120px;
    z-index: 10;
}

.account-side-menu-title {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: #6b7c72;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 0.85rem;
    padding: 0 0.55rem;
}

.account-side-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.account-side-menu li + li {
    margin-top: 0.25rem;
}

.account-side-menu-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.72rem 0.8rem;
    border-radius: 12px;
    color: #4a5c50;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.account-side-menu-link i {
    font-size: 1rem;
    color: #6b7c72;
    flex-shrink: 0;
    width: 1.1rem;
    text-align: center;
}

.account-side-menu-link span:first-of-type {
    flex: 1;
    min-width: 0;
}

.account-side-menu-link:hover {
    background: #f4faf5;
    color: var(--color-primary-dark);
}

.account-side-menu-link:hover i {
    color: var(--color-primary);
}

.account-side-menu-link.active {
    background: rgba(40, 167, 69, 0.1);
    color: var(--color-primary-dark);
    box-shadow: inset 0 0 0 1px rgba(40, 167, 69, 0.18);
}

.account-side-menu-link.active i {
    color: var(--color-primary);
}

.account-menu-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 0.4rem;
    border-radius: 999px;
    background: #eef4ef;
    color: #4a5c50;
    font-size: 0.72rem;
    font-weight: 700;
}

.account-panel,
.account-main-card {
    background: #fff;
    border: 1px solid #e8f0ea;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(15, 31, 20, 0.06);
    overflow: hidden;
}

.account-panel__body {
    padding: 1.35rem 1.5rem 1.5rem;
}

.account-panel__toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.15rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid #eef4ef;
}

.account-panel__toolbar--compact {
    margin-bottom: 1rem;
}

.account-panel__heading {
    min-width: 0;
}

.account-panel__title {
    margin: 0 0 0.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f1f14;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.account-panel__title i {
    color: var(--color-primary);
    font-size: 1.05rem;
}

.account-panel__subtitle {
    margin: 0;
    font-size: 0.84rem;
    color: #6b7c72;
}

.account-edit-btn,
.account-cancel-btn,
.account-save-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.account-edit-btn {
    border: 1.5px solid #d7e5db;
    background: #fff;
    color: #0f1f14;
}

.account-edit-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
    background: #f4faf5;
}

.account-cancel-btn {
    border: 1.5px solid #d7e5db;
    background: #fff;
    color: #4a5c50;
}

.account-cancel-btn:hover {
    background: #f8f9fa;
}

.account-save-btn {
    border: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-darker) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(40, 167, 69, 0.22);
}

.account-save-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(40, 167, 69, 0.28);
}

.account-form-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.account-hidden-menu,
.account-hidden-pane {
    display: none !important;
}

.account-main-card {
    border-radius: 18px;
}

.account-hero-banner {
    max-height: 230px;
    object-fit: cover;
}

.account-avatar {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #15803d, #16a34a);
    font-size: 20px;
}

.account-stats .stat-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    background: #fff;
    padding: 14px 16px;
    height: 100%;
}

.account-stats .stat-label {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 6px;
}

.account-stats .stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    line-height: 1;
}

.account-nav {
    display: none !important;
}

.account-nav .nav-link {
    border-radius: 999px;
    padding: 10px 18px;
    color: #475569;
    font-weight: 600;
}

.account-nav .nav-link.active {
    background: #198754;
    color: #fff !important;
    box-shadow: 0 6px 15px rgba(25, 135, 84, .24);
}

.account-form .form-label,
.account-form .label-form {
    font-size: 0.82rem;
    color: #4a5c50;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.account-form .form-control,
.account-form .form-select {
    border-radius: 12px !important;
    border: 1.5px solid #e2ebe4 !important;
    min-height: 46px;
    background: #f8faf9 !important;
    color: #0f1f14 !important;
    font-size: 0.92rem;
    padding: 0.65rem 0.9rem;
}

.account-form .form-control:disabled,
.account-form .form-select:disabled {
    background: #f3f6f4 !important;
    color: #4a5c50 !important;
    opacity: 1;
}

.account-form .form-control:focus,
.account-form .form-select:focus {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.12) !important;
    background: #fff !important;
}

.account-dummy-card {
    border: 1px solid #e8f0ea;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 31, 20, 0.04);
    padding: 1.25rem 1.35rem;
    margin-bottom: 1rem;
}

.account-dummy-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f1f14;
    margin-bottom: 0.35rem;
}

.account-dummy-subtitle {
    color: #6b7c72;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.account-dummy-chip {
    display: inline-block;
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    background: #e8f8ee;
    color: #166534;
}

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

.account-dummy-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid #eef4ef;
}

.account-dummy-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.account-dummy-kpi {
    border: 1px solid #e8f0ea;
    border-radius: 14px;
    padding: 1rem;
    text-align: center;
    background: #fafcfa;
    height: 100%;
}

.account-dummy-kpi .value {
    display: block;
    font-size: 1.45rem;
    font-weight: 700;
    color: #0f1f14;
    line-height: 1.2;
}

.account-dummy-kpi .label {
    display: block;
    font-size: 0.82rem;
    color: #6b7c72;
    margin-top: 0.25rem;
}

.account-reward-stats {
    margin-bottom: 1.5rem;
}

.account-reward-stat {
    height: 100%;
}

.account-reward-history {
    border: 1px solid #e8f0ea;
    border-radius: 16px;
    background: #fafcfa;
    padding: 1.15rem 1.15rem 0.35rem;
}

.account-reward-history__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0 0.15rem;
}

.account-reward-history__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #0f1f14;
}

.account-reward-history__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 0.5rem;
    border-radius: 999px;
    background: rgba(40, 167, 69, 0.12);
    color: var(--color-primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
}

.account-reward-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding-bottom: 0.85rem;
}

.account-reward-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: center;
    padding: 0.95rem 1rem;
    border: 1px solid #e8f0ea;
    border-radius: 14px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.account-reward-item:hover {
    border-color: #d4e8db;
    box-shadow: 0 8px 20px rgba(15, 31, 20, 0.05);
}

.account-reward-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f4faf5;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.account-reward-item__title {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f1f14;
    margin-bottom: 0.35rem;
    line-height: 1.35;
}

.account-reward-item__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    font-size: 0.8rem;
    color: #6b7c72;
}

.account-reward-item__meta > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.account-reward-item__amount {
    font-size: 0.98rem;
    font-weight: 700;
    white-space: nowrap;
}

.account-reward-item__amount.is-credit {
    color: #166534;
}

.account-reward-item__amount.is-debit {
    color: #c82333;
}

.account-rewards-empty {
    text-align: center;
    padding: 2.5rem 1.25rem 2.75rem;
    border: 1px dashed #d7e5db;
    border-radius: 14px;
    background: #fff;
    margin-bottom: 0.85rem;
}

.account-rewards-empty__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.account-rewards-empty p {
    margin: 0;
    color: #6b7c72;
    font-size: 0.92rem;
    font-weight: 600;
}

.account-gift-cards__toolbar {
    align-items: flex-start;
}

.account-gift-cards__buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-darker) 100%);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(40, 167, 69, 0.22);
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.account-gift-cards__buy-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(40, 167, 69, 0.28);
}

.account-gift-cards__buy-btn--inline {
    margin-top: 1rem;
}

.account-gift-card-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.account-gift-card-item {
    border: 1px solid #e8f0ea;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 31, 20, 0.04);
    overflow: hidden;
}

.account-gift-card-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 1.15rem;
    background: linear-gradient(135deg, #f4faf5 0%, #ffffff 100%);
    border-bottom: 1px solid #e8f0ea;
}

.account-gift-card-item__identity {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.account-gift-card-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(40, 167, 69, 0.12);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.account-gift-card-item__label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7c72;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.account-gift-card-item__title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #0f1f14;
    line-height: 1.3;
}

.account-gift-card-item__header-side {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.account-gift-card-item__amount {
    text-align: right;
    padding: 0.4rem 0.7rem;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e8f0ea;
    min-width: 100px;
}

.account-gift-card-item__amount span {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7c72;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.account-gift-card-item__amount strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.account-gift-card-item__body {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: 1rem 1.15rem 1.15rem;
}

.account-gift-card-item__field {
    min-width: 0;
}

.account-gift-card-item__field-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7c72;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.account-gift-card-item__field strong {
    display: block;
    font-size: 0.9rem;
    color: #0f1f14;
    line-height: 1.35;
    word-break: break-word;
}

.account-gift-card-item__field-sub {
    display: block;
    font-size: 0.8rem;
    color: #6b7c72;
    margin-top: 0.15rem;
    word-break: break-all;
}

.account-gift-card-item__code {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    background: #f4faf5;
    border: 1px solid #e8f0ea;
    color: #0f1f14;
    font-size: 0.82rem;
    word-break: break-all;
}

.account-gift-cards-empty {
    text-align: center;
    padding: 2.75rem 1.5rem;
    border: 1px dashed #d7e5db;
    border-radius: 16px;
    background: #fafcfa;
}

.account-gift-cards-empty__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.account-gift-cards-empty p {
    margin: 0;
    color: #6b7c72;
    font-size: 0.92rem;
    font-weight: 600;
}

.account-event-ticket-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.account-event-ticket-item {
    border: 1px solid #e8f0ea;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 31, 20, 0.04);
    overflow: hidden;
}

.account-event-ticket-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 1.15rem;
    background: linear-gradient(135deg, #f4faf5 0%, #ffffff 100%);
    border-bottom: 1px solid #e8f0ea;
}

.account-event-ticket-item__identity {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.account-event-ticket-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(40, 167, 69, 0.12);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.account-event-ticket-item__label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7c72;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.account-event-ticket-item__title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #0f1f14;
    line-height: 1.3;
}

.account-event-ticket-item__group {
    display: block;
    font-size: 0.82rem;
    color: #6b7c72;
    margin-top: 0.15rem;
}

.account-event-ticket-item__header-side {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.account-event-ticket-item__qty {
    text-align: right;
    padding: 0.4rem 0.7rem;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e8f0ea;
    min-width: 88px;
}

.account-event-ticket-item__qty span {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7c72;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.account-event-ticket-item__qty strong {
    font-size: 1rem;
    font-weight: 700;
    color: #0f1f14;
}

.account-event-ticket-item__body {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1rem 1.15rem;
}

.account-event-ticket-item__field {
    min-width: 0;
}

.account-event-ticket-item__field--full {
    grid-column: 1 / -1;
}

.account-event-ticket-item__field-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7c72;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.account-event-ticket-item__field strong {
    display: block;
    font-size: 0.9rem;
    color: #0f1f14;
    line-height: 1.35;
    word-break: break-word;
}

.account-event-ticket-item__code {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    background: #f4faf5;
    border: 1px solid #e8f0ea;
    color: #0f1f14;
    font-size: 0.82rem;
    word-break: break-all;
}

.account-event-ticket-item__reason {
    display: block;
    font-size: 0.86rem;
    color: #6b7c72;
    line-height: 1.45;
}

.account-event-ticket-item__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 0 1.15rem 1.15rem;
}

.account-event-ticket-cancel-form {
    margin: 0;
}

.account-event-ticket-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
    background: transparent;
}

.account-event-ticket-btn--primary {
    border-color: #cfe8d6;
    background: #fff;
    color: var(--color-primary-dark);
}

.account-event-ticket-btn--primary:hover {
    background: #f4faf5;
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.account-event-ticket-btn--danger {
    border-color: #f5c2c7;
    background: #fff;
    color: #c82333;
}

.account-event-ticket-btn--danger:hover {
    background: #fff5f5;
    border-color: #dc3545;
    color: #c82333;
}

.account-event-tickets-empty {
    text-align: center;
    padding: 2.75rem 1.5rem;
    border: 1px dashed #d7e5db;
    border-radius: 16px;
    background: #fafcfa;
}

.account-event-tickets-empty__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.account-event-tickets-empty p {
    margin: 0;
    color: #6b7c72;
    font-size: 0.92rem;
    font-weight: 600;
}

.account-gift-seeds-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.account-gift-seeds-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: center;
    padding: 1rem 1.1rem;
    border: 1px solid #e8f0ea;
    border-radius: 14px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.account-gift-seeds-item:hover {
    border-color: #d4e8db;
    box-shadow: 0 8px 20px rgba(15, 31, 20, 0.05);
}

.account-gift-seeds-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.account-gift-seeds-item__title {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f1f14;
    line-height: 1.35;
}

.account-gift-seeds-item__price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #f4faf5;
    border: 1px solid #e8f0ea;
    color: var(--color-primary-dark);
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
}

.account-birthday-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.25rem 1.35rem;
    border: 1px solid #e8f0ea;
    border-radius: 16px;
    background: linear-gradient(135deg, #fffdf8 0%, #ffffff 72%);
    box-shadow: 0 8px 24px rgba(15, 31, 20, 0.04);
}

.account-birthday-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.16) 0%, rgba(52, 206, 87, 0.12) 100%);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.account-birthday-card__content {
    flex: 1;
    min-width: 200px;
}

.account-birthday-card__title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0f1f14;
    line-height: 1.35;
}

.account-birthday-card__text {
    margin: 0;
    font-size: 0.88rem;
    color: #6b7c72;
    line-height: 1.5;
}

.account-birthday-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.15rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-darker) 100%);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(40, 167, 69, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.account-birthday-card__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(40, 167, 69, 0.28);
}

.account-refer-card {
    padding: 1.25rem 1.35rem;
    border: 1px solid #e8f0ea;
    border-radius: 16px;
    background: linear-gradient(135deg, #f4faf5 0%, #ffffff 100%);
    box-shadow: 0 8px 24px rgba(15, 31, 20, 0.04);
}

.account-refer-card__label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #4a5c50;
    margin-bottom: 0.55rem;
}

.account-refer-card__copy-row {
    display: flex;
    align-items: stretch;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.account-refer-card__input {
    flex: 1;
    min-width: 220px;
    padding: 0.75rem 1rem;
    border: 1px solid #e8f0ea;
    border-radius: 12px;
    background: #fff;
    font-size: 0.9rem;
    color: #0f1f14;
}

.account-refer-card__input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.12);
    outline: none;
}

.account-refer-card__copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1.1rem;
    border: 1.5px solid #cfe8d6;
    border-radius: 12px;
    background: #fff;
    color: var(--color-primary-dark);
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.account-refer-card__copy-btn:hover {
    background: #f4faf5;
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.account-refer-share {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e8f0ea;
}

.account-refer-share__label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #4a5c50;
    margin-bottom: 0.65rem;
}

.account-refer-share__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.account-refer-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 0.85rem;
    border-radius: 10px;
    border: 1px solid #e8f0ea;
    background: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.2s ease;
}

.account-refer-share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 31, 20, 0.08);
}

.account-refer-share-btn--whatsapp {
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.35);
}

.account-refer-share-btn--whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.account-refer-share-btn--facebook {
    color: #1877f2;
    border-color: rgba(24, 119, 242, 0.35);
}

.account-refer-share-btn--facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.account-refer-share-btn--twitter {
    color: #0f1419;
    border-color: rgba(15, 20, 25, 0.2);
}

.account-refer-share-btn--twitter:hover {
    background: #0f1419;
    border-color: #0f1419;
    color: #fff;
}

.account-refer-share-btn--telegram {
    color: #229ed9;
    border-color: rgba(34, 158, 217, 0.35);
}

.account-refer-share-btn--telegram:hover {
    background: #229ed9;
    border-color: #229ed9;
    color: #fff;
}

.account-refer-share-btn--email {
    color: #6b7c72;
    border-color: #d4e0d8;
}

.account-refer-share-btn--email:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.account-refer-card__stats {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e8f0ea;
}

.account-refer-card__stats-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(40, 167, 69, 0.12);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.account-refer-card__stats p {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7c72;
    font-weight: 600;
    line-height: 1.45;
}

.account-tracking-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.account-tracking-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: center;
    padding: 1rem 1.1rem;
    border: 1px solid #e8f0ea;
    border-radius: 14px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.account-tracking-item:hover {
    border-color: #d4e8db;
    box-shadow: 0 8px 20px rgba(15, 31, 20, 0.05);
}

.account-tracking-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.account-tracking-item__title {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f1f14;
    line-height: 1.4;
}

.account-offers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.account-offer-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.1rem 1.15rem;
    border: 1px dashed #c5dcc9;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8fcf9 0%, #ffffff 100%);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.account-offer-card:hover {
    border-color: var(--color-primary);
    border-style: solid;
    box-shadow: 0 8px 20px rgba(15, 31, 20, 0.06);
    transform: translateY(-1px);
}

.account-offer-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(40, 167, 69, 0.12);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.account-offer-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.account-offer-card__code {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f1f14;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.account-offer-card__label {
    font-size: 0.84rem;
    font-weight: 600;
    color: #6b7c72;
    line-height: 1.4;
}

.order-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.account-order-card {
    border: 1px solid #e8f0ea;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 31, 20, 0.04);
    overflow: hidden;
}

.account-order-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 1.15rem;
    background: linear-gradient(135deg, #f4faf5 0%, #ffffff 100%);
    border-bottom: 1px solid #e8f0ea;
}

.account-order-card__label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7c72;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.account-order-card__number {
    font-size: 1rem;
    font-weight: 700;
    color: #0f1f14;
}

.account-order-card__header-side {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.account-order-card__date {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: #6b7c72;
    font-weight: 600;
}

.account-order-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.account-order-badge--paid {
    background: #e8f8ee;
    color: #166534;
}

.account-order-badge--pending {
    background: #fff4e5;
    color: #b45309;
}

.account-order-badge--neutral {
    background: #eef4ef;
    color: #4a5c50;
}

.account-order-badge--cancelled {
    background: #fff1f2;
    color: #c82333;
}

.account-order-card__items {
    padding: 0.35rem 1.15rem;
}

.account-order-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eef4ef;
}

.account-order-item:last-child {
    border-bottom: 0;
    padding-bottom: 0.85rem;
}

.account-order-item__image {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    background: #f4faf5;
    border: 1px solid #e8f0ea;
}

.account-order-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-order-item__name {
    margin: 0 0 0.45rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f1f14;
    line-height: 1.35;
}

.account-order-item__status {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.account-order-item__status-label {
    font-size: 0.78rem;
    color: #6b7c72;
    font-weight: 600;
}

.account-order-item__pricing {
    text-align: right;
    min-width: 90px;
}

.account-order-item__qty {
    display: block;
    font-size: 0.78rem;
    color: #6b7c72;
    margin-bottom: 0.2rem;
}

.account-order-item__total {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.account-order-card__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 1rem;
    align-items: start;
    padding: 1rem 1.15rem 1.15rem;
    background: #fafcfa;
    border-top: 1px solid #e8f0ea;
}

/* Order success page */
.order-success-page {
    min-height: 75vh;
    background: #f6f9f7;
}

.order-success-shell {
    overflow: hidden;
    border: 1px solid #e8f0ea;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(15, 31, 20, 0.06);
}

.order-success-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.75rem 1.75rem 1.5rem;
    border-bottom: 1px solid #eef4ef;
    background: linear-gradient(180deg, #fafcfa 0%, #ffffff 100%);
}

.order-success-header__main {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 0;
}

.order-success-header__icon {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #e8f8ee;
    color: #166534;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
}

.order-success-header__copy {
    min-width: 0;
}

.order-success-header__title {
    margin: 0 0 0.45rem;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.35;
    color: #0f1f14;
    letter-spacing: -0.01em;
}

.order-success-header__message {
    margin: 0;
    max-width: 38rem;
    color: #6b7c72;
    font-size: 0.9rem;
    line-height: 1.65;
}

.order-success-header__meta {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    text-align: right;
}

.order-success-header__order-id {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f1f14;
    letter-spacing: 0.01em;
}

.order-success-body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.order-success-panel {
    height: 100%;
    padding: 1.1rem 1.15rem;
    border: 1px solid #e8f0ea;
    border-radius: 14px;
    background: #fff;
}

.order-success-panel--items {
    margin-top: 1.25rem;
    padding: 0;
    overflow: hidden;
}

.order-success-panel__head {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.95rem;
}

.order-success-panel--items .order-success-panel__head {
    margin-bottom: 0;
    padding: 0.95rem 1.15rem;
    background: #fafcfa;
    border-bottom: 1px solid #eef4ef;
}

.order-success-panel__head i {
    color: var(--color-primary);
    font-size: 1rem;
}

.order-success-panel__head h2 {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4a5c50;
}

.order-success-details {
    margin: 0;
}

.order-success-details__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #f1f5f2;
}

.order-success-details__row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.order-success-details__row dt {
    margin: 0;
    font-size: 0.84rem;
    font-weight: 600;
    color: #6b7c72;
}

.order-success-details__row dd {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f1f14;
    text-align: right;
}

.order-success-details__row--total {
    margin-top: 0.35rem;
    padding-top: 0.85rem;
    border-top: 1px solid #e8f0ea;
    border-bottom: 0;
}

.order-success-details__row--total dt,
.order-success-details__row--total dd {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f1f14;
}

.order-success-address {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin: 0;
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #4a5c50;
}

.order-success-items__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.15rem;
    border-bottom: 1px solid #f1f5f2;
}

.order-success-items__row:last-child {
    border-bottom: 0;
}

.order-success-items__product {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.order-success-items__name {
    color: #0f1f14;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
}

.order-success-items__qty {
    color: #6b7c72;
    font-size: 0.8rem;
    font-weight: 600;
}

.order-success-items__price {
    color: #0f1f14;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.order-success-items__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    background: #fafcfa;
    border-top: 1px solid #e8f0ea;
    font-size: 0.92rem;
    font-weight: 600;
    color: #4a5c50;
}

.order-success-items__summary strong {
    font-size: 1rem;
    font-weight: 700;
    color: #0f1f14;
}

.order-success-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    counter-reset: order-step;
}

.order-success-timeline__step {
    position: relative;
    padding: 0 0.75rem;
    text-align: center;
}

.order-success-timeline__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18px;
    left: calc(50% + 22px);
    width: calc(100% - 44px);
    height: 1px;
    background: #d7e5db;
}

.order-success-timeline__marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 0.75rem;
    border: 1px solid #cfe8d6;
    border-radius: 50%;
    background: #fff;
    color: #166534;
    font-size: 0.78rem;
    font-weight: 700;
}

.order-success-timeline__content i {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--color-primary);
    font-size: 1rem;
}

.order-success-timeline__content p {
    margin: 0 auto;
    max-width: 11rem;
    color: #4a5c50;
    font-size: 0.8rem;
    line-height: 1.5;
    font-weight: 600;
}

.order-success-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.75rem;
    padding-top: 1.35rem;
    border-top: 1px solid #eef4ef;
}

.order-success-footer__text {
    margin: 0;
    color: #6b7c72;
    font-size: 0.9rem;
    font-weight: 600;
}

.order-success-footer__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.7rem 1.15rem;
    border: 1.5px solid #0f1f14;
    border-radius: 10px;
    background: #0f1f14;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.order-success-footer__btn:hover {
    background: #1a3324;
    border-color: #1a3324;
    color: #fff;
}

@media (max-width: 991.98px) {
    .order-success-header {
        flex-direction: column;
        gap: 1.15rem;
    }

    .order-success-header__meta {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .order-success-body {
        padding: 1.15rem;
    }

    .order-success-header {
        padding: 1.25rem 1.15rem 1.1rem;
    }

    .order-success-timeline {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .order-success-timeline__step {
        display: flex;
        align-items: flex-start;
        gap: 0.85rem;
        padding: 0;
        text-align: left;
    }

    .order-success-timeline__step:not(:last-child)::after {
        display: none;
    }

    .order-success-timeline__marker {
        margin-bottom: 0;
        flex: 0 0 auto;
    }

    .order-success-timeline__content p {
        max-width: none;
    }

    .order-success-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .order-success-footer__btn {
        width: 100%;
    }
}

.account-order-tracking__head {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.35rem;
    color: #0f1f14;
    font-size: 0.9rem;
}

.account-order-tracking__head i {
    color: var(--color-primary);
}

.account-order-tracking__code {
    margin: 0 0 0.75rem;
    font-size: 0.84rem;
    color: #6b7c72;
}

.account-order-tracking__code span {
    color: #0f1f14;
    font-weight: 700;
}

.account-order-track-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    border-radius: 10px;
    border: 1.5px solid #cfe8d6;
    background: #fff;
    color: var(--color-primary-dark);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.account-order-track-btn:hover {
    background: #f4faf5;
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.account-order-tracking__empty {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.84rem;
    color: #6b7c72;
}

.account-order-summary {
    background: #fff;
    border: 1px solid #e8f0ea;
    border-radius: 12px;
    padding: 0.85rem 0.95rem;
}

.account-order-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
    font-size: 0.84rem;
    color: #4a5c50;
}

.account-order-summary__row span:last-child {
    font-weight: 600;
    color: #0f1f14;
}

.account-order-summary__row--total {
    margin-top: 0.35rem;
    padding-top: 0.65rem;
    border-top: 1px solid #eef4ef;
    font-size: 0.92rem;
}

.account-order-summary__row--total span:first-child {
    font-weight: 700;
    color: #0f1f14;
}

.account-order-summary__row--total span:last-child {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.account-orders-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    border: 1px dashed #d7e5db;
    border-radius: 16px;
    background: #fafcfa;
}

.account-orders-empty__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.account-orders-empty p {
    margin: 0;
    color: #6b7c72;
    font-size: 0.95rem;
    font-weight: 600;
}

.order-wrapper .card {
    border: 1px solid #e8f0ea;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 31, 20, 0.04);
    overflow: hidden;
    margin-bottom: 1rem;
}

.order-wrapper .card-header {
    background: linear-gradient(135deg, #f4faf5 0%, #ffffff 100%);
    border-bottom: 1px solid #e8f0ea;
    padding: 0.9rem 1.15rem;
}

.order-wrapper .card-footer {
    background: #fafcfa;
    border-top: 1px solid #e8f0ea;
}

.order-total-box {
    background: #f4faf5;
    border-left: 4px solid var(--color-primary);
    border-radius: 12px;
    padding: 0.85rem 1rem;
}

.order-total-box h6 {
    color: #4a5c50 !important;
    font-size: 0.88rem;
    margin-bottom: 0.35rem !important;
}

@media (max-width: 991.98px) {
    .account-order-card__footer {
        grid-template-columns: 1fr;
    }

    .account-order-summary {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .account-order-item {
        grid-template-columns: 64px minmax(0, 1fr);
        grid-template-areas:
            "image content"
            "image pricing";
    }

    .account-order-item__image {
        grid-area: image;
        width: 64px;
        height: 64px;
    }

    .account-order-item__content {
        grid-area: content;
    }

    .account-order-item__pricing {
        grid-area: pricing;
        text-align: left;
        padding-left: calc(64px + 1rem);
    }

    .account-order-card__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-reward-item {
        grid-template-columns: 38px minmax(0, 1fr);
        grid-template-areas:
            "icon content"
            "amount amount";
    }

    .account-reward-item__icon {
        grid-area: icon;
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .account-reward-item__content {
        grid-area: content;
    }

    .account-reward-item__amount {
        grid-area: amount;
        text-align: left;
        padding-left: calc(38px + 0.85rem);
        margin-top: 0.15rem;
    }

    .account-gift-cards__toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .account-gift-cards__buy-btn {
        width: 100%;
    }

    .account-gift-card-item__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-gift-card-item__header-side {
        width: 100%;
        justify-content: space-between;
    }

    .account-gift-card-item__body {
        grid-template-columns: 1fr 1fr;
    }

    .account-event-ticket-item__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-event-ticket-item__header-side {
        width: 100%;
        justify-content: space-between;
    }

    .account-event-ticket-item__body {
        grid-template-columns: 1fr 1fr;
    }

    .account-event-ticket-item__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .account-event-ticket-btn,
    .account-event-ticket-cancel-form {
        width: 100%;
    }

    .account-event-ticket-cancel-form .account-event-ticket-btn {
        width: 100%;
    }

    .account-gift-seeds-item {
        grid-template-columns: 42px minmax(0, 1fr);
        grid-template-areas:
            "icon content"
            "price price";
    }

    .account-gift-seeds-item__icon {
        grid-area: icon;
        width: 42px;
        height: 42px;
    }

    .account-gift-seeds-item__content {
        grid-area: content;
    }

    .account-gift-seeds-item__price {
        grid-area: price;
        justify-self: start;
        margin-left: calc(42px + 0.85rem);
    }

    .account-birthday-card {
        flex-direction: column;
        align-items: stretch;
    }

    .account-birthday-card__btn {
        width: 100%;
    }

    .account-refer-card__copy-row {
        flex-direction: column;
    }

    .account-refer-card__copy-btn {
        width: 100%;
    }

    .account-refer-share-btn {
        flex: 1 1 calc(50% - 0.55rem);
        min-width: 0;
    }

    .account-tracking-item {
        grid-template-columns: 42px minmax(0, 1fr);
        grid-template-areas:
            "icon content"
            "badge badge";
    }

    .account-tracking-item__icon {
        grid-area: icon;
        width: 42px;
        height: 42px;
    }

    .account-tracking-item__content {
        grid-area: content;
    }

    .account-tracking-item .account-order-badge {
        grid-area: badge;
        justify-self: start;
        margin-left: calc(42px + 0.85rem);
    }

    .account-offers-grid {
        grid-template-columns: 1fr;
    }
}

.account-panel .table,
.account-dummy-card .table {
    margin-bottom: 0;
}

.account-panel .table thead th,
.account-dummy-card .table thead th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7c72;
    border-bottom-color: #e8f0ea;
    background: #fafcfa;
}

.account-panel .table td,
.account-dummy-card .table td {
    font-size: 0.88rem;
    color: #0f1f14;
    border-bottom-color: #eef4ef;
    vertical-align: middle;
}

@media (max-width: 991.98px) {
    .account-side-menu-card {
        position: static;
        top: auto;
    }

    .account-page-title {
        font-size: 1.65rem;
    }

    .account-panel__toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .account-edit-btn {
        align-self: flex-start;
    }
}

@media (max-width: 767.98px) {
    .account-page-wrap {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }

    .account-stat-card--profile {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-panel__body {
        padding: 1rem 1.1rem 1.15rem;
    }

    .account-form-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .account-edit-btn,
    .account-cancel-btn,
    .account-save-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .account-hero-banner {
        height: 190px;
    }
}

.product-info-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
}

.product-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid #d9e7d6;
    background: #fbfff8;
    border-radius: 8px;
    padding: 12px;
    min-height: 82px;
}

.product-info-box-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf7e8;
    color: #5b8f29;
    font-size: 18px;
}

.product-info-box-title {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    color: #6d7f2c;
    text-transform: uppercase;
}

.product-info-box-value {
    margin-top: 3px;
    font-size: 14px;
    line-height: 1.35;
    color: #24352b;
    word-break: break-word;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.product-tag-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 12px;
    background: #1b8f43;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

.product-tag-badge:hover {
    background: #126d32;
    color: #fff;
    text-decoration: none;
}

/* ==========================================================================
   Large desktop (1500px+): increase typography & interactive component heights
   Does not alter layouts below 1500px.
   ========================================================================== */
@media (min-width: 1500px) {

    /* Base type */
    body {
        font-size: 20px !important;
        line-height: 1.55;
    }

    h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.7rem;
    }

    h3 {
        font-size: 2.25rem;
    }

    h4 {
        font-size: 1.85rem;
    }

    h5 {
        font-size: 1.55rem;
    }

    h6 {
        font-size: 1.35rem;
    }

    p,
    label,
    .form-label {
        font-size: 1.25rem;
    }

    /* Global controls */
    .btn {
        font-size: 1.2rem;
        padding: 0.7rem 1.35rem;
        min-height: 50px;
    }

    .btn-sm {
        font-size: 1.1rem;
        padding: 0.5rem 1.05rem;
        min-height: 42px;
    }

    .btn-lg {
        font-size: 1.35rem;
        padding: 0.85rem 1.8rem;
        min-height: 58px;
    }

    .form-control,
    .form-select,
    select.form-control,
    input.form-control,
    textarea.form-control {
        font-size: 1.2rem;
        min-height: 54px;
        padding: 0.8rem 1.2rem;
    }

    textarea.form-control {
        min-height: 140px;
    }

    .dropdown-menu {
        font-size: 1.2rem;
    }

    .dropdown-item {
        font-size: 1.2rem;
        padding: 0.7rem 1.35rem;
    }

    .table {
        font-size: 1.2rem;
    }

    .table> :not(caption)>*>* {
        padding: 1.05rem 1.2rem;
    }

    .modal-title {
        font-size: 1.7rem;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1.35rem 1.65rem;
    }

    .modal-dialog {
        --bs-modal-margin: 1.75rem;
    }

    .badge {
        font-size: 0.95rem;
        min-width: 24px;
        height: 24px;
        padding: 0.4em 0.6em;
    }

    /* Header / nav */
    .top-bar {
        font-size: 1.2rem;
    }

    .language-selector a,
    .language-selector select {
        font-size: 1.2rem;
    }

    .logo {
        font-size: 3.35rem;
    }

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

    .search-container input {
        font-size: 1.2rem;
        padding: 0.85rem 1.3rem;
        min-height: 54px;
    }

    .search-container .btn-success {
        padding: 0.75rem 1.35rem;
        min-height: 54px;
        font-size: 1.2rem;
    }

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

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 1.35rem !important;
    }

    .NavbarMenu .dropdown-menu,
    .menu-drop {
        max-height: 400px;
    }

    /* Hero */
    .hero-main {
        height: 580px;
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 4.5rem;
        margin-bottom: 1.1rem;
    }

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

    .hero-bottom {
        padding: 1.35rem 0;
    }

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

    .hero-dots .dot {
        width: 13px;
        height: 13px;
    }

    /* Other pages — match home large-desktop type scale */
    .product-hero-title,
    .category-hero-title {
        font-size: 3.4rem;
    }

    .product-breadcrumb a,
    .product-breadcrumb span,
    .category-breadcrumb a,
    .category-breadcrumb span {
        font-size: 1.15rem;
    }

    .page-hero-title,
    .about-hero-title {
        font-size: 2.85rem;
    }

    .about-intro-title,
    .about-section-title {
        font-size: 2.55rem;
    }

    .cart-title,
    .checkout-title {
        font-size: 2.35rem;
    }

    /* Month timeline */
    .month-section__container {
        padding: 1.75rem 0;
    }

    .month-button {
        font-size: 20px;
        padding: 11px 20px;
        min-height: 48px;
    }

    .btn-outline-month-product {
        font-size: 18px;
        padding: 10px 20px;
        min-height: 46px;
    }

    .month-product-tooltip__price {
        font-size: 18px;
        padding: 7px 15px;
    }

    .month_product_list {
        max-height: 500px;
        gap: 12px;
        padding: 10px;
    }

    /* Category cards */
    .category-card {
        height: 460px;
    }

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

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

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

    .category-btn {
        font-size: 1.2rem;
        padding: 0.75rem 1.45rem;
        min-height: 50px;
    }

    .category-content {
        padding: 1.75rem 2rem;
        min-height: 98px;
    }

    /* Section titles & product carousels */
    .section-title {
        font-size: 2.9rem;
        margin-bottom: 3rem;
    }

    .home-section-more-btn {
        font-size: 1.15rem;
        padding: 0.75rem 1.75rem;
        min-height: 48px;
    }

    .home-section-more-icon {
        font-size: 1rem;
    }

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

    .season-product-image {
        height: 290px;
        min-height: 290px;
    }

    .season-product-body {
        padding: 1.35rem 1.35rem 1.65rem;
    }

    .season-product-name {
        font-size: 1.25rem;
    }

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

    .season-product-price-old {
        font-size: 1.2rem;
    }

    .season-product-min-order {
        font-size: 1.05rem;
    }

    .season-product-badge {
        font-size: 14px;
        padding: 0.4rem 0.8rem;
    }

    .season-qty-wrapper .qty-btn {
        width: 34px;
        min-width: 34px;
        min-height: 44px;
        font-size: 1.2rem;
    }

    .season-qty-wrapper .season-product-qty {
        width: 48px;
        min-height: 44px;
        font-size: 1.05rem;
    }

    .season-product-qty {
        font-size: 1.05rem;
        padding: 0.6rem 0.7rem;
        min-height: 44px;
    }

    .season-product-add-btn {
        font-size: 1.15rem;
        padding: 0.75rem 1.1rem;
        min-height: 48px;
    }

    .season-product-add-btn i {
        font-size: 19px;
    }

    .season-product-view-link {
        font-size: 1.2rem;
    }

    /* Natural food / highlight products */
    .natural-food-section {
        padding: 5rem 0;
    }

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

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

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

    .banner-overlay {
        padding: 2.6rem 2.35rem;
    }

    .natural-food-section .product-image {
        width: 130px;
        min-width: 130px;
        height: 130px;
    }

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

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

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

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

    /* Refer a friend */
    .refer-friend-section {
        padding: 4.5rem;
    }

    .refer-friend-badge {
        font-size: 1.1rem;
        padding: 0.7rem 1.5rem;
    }

    .refer-friend-headline {
        font-size: 4.7rem;
    }

    .refer-friend-tagline {
        font-size: 1.7rem;
    }

    .refer-friend-desc {
        font-size: 1.3rem;
    }

    .refer-friend-btn {
        font-size: 1.3rem;
        padding: 1.25rem 3rem;
        min-height: 62px;
    }

    .refer-friend-note {
        font-size: 1.1rem;
    }

    /* Footer */
    .footer-heading {
        font-size: 1.45rem;
    }

    .footer-description,
    .footer-links a,
    .footer-contact {
        font-size: 1.2rem;
    }

    .newsletter-form .form-control {
        font-size: 1.2rem;
        min-height: 56px;
        padding: 0.85rem 1.3rem;
    }

    /* Cart qty (global) */
    .qty-btn {
        width: 54px;
        height: 54px;
        font-size: 1.55rem;
    }

    .qty-input {
        width: 66px;
        font-size: 1.2rem;
        min-height: 54px;
    }

    /* Cart dropdown */
    .cart-dropdown-title {
        font-size: 1.5rem;
    }

    .cart-dropdown-count {
        font-size: 1.15rem;
    }

    .cart-dropdown-item {
        padding: 1.3rem 1.85rem;
    }

    /* Auth / account forms */
    .auth-form .form-control,
    .account-form .form-control,
    .contact-form-block .form-control {
        font-size: 1.2rem;
        min-height: 56px;
        padding: 0.85rem 1.3rem;
    }

    /* Product detail page */
    .breadcrumb-nav .breadcrumb {
        font-size: 1.15rem;
    }

    .breadcrumb-nav .breadcrumb-item a,
    .breadcrumb-nav .breadcrumb-item.active,
    .breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before {
        font-size: 1.15rem;
    }

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

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

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

    .product-title-meta,
    .product-title-meta p,
    .product-highlights,
    .product-highlights li,
    .product-highlights .text-muted,
    .product-meta .text-muted,
    .product-meta .small {
        font-size: 1.2rem;
    }

    .product-highlights .small {
        font-size: 1.1rem;
    }

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

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

    .product-options .form-label,
    .quantity-selector .form-label,
    .back-in-stock-box .form-label {
        font-size: 1.25rem;
    }

    .size-option {
        min-width: 54px;
        height: 54px;
        font-size: 1.1rem;
        padding: 0.6rem 1.15rem;
    }

    .quantity-input-group {
        width: 170px;
    }

    .quantity-btn {
        padding: 0.7rem 0.95rem;
        font-size: 1.15rem;
        min-height: 50px;
    }

    .quantity-selector input,
    .quantity-input-group .form-control {
        font-size: 1.2rem;
        min-height: 50px;
    }

    .btn-add-to-cart,
    .btn-BuyNow {
        font-size: 1.2rem;
        padding: 0.85rem 1.75rem;
        min-height: 54px;
    }

    .social-share .social-icon {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }

    .product-tabs .nav-link {
        font-size: 1.2rem;
        padding: 1.15rem 1.75rem;
    }

    .tab-content-wrapper {
        font-size: 1.2rem;
        line-height: 1.75;
        padding: 2rem !important;
    }

    .tab-content-wrapper h5,
    .growing-calendar h5 {
        font-size: 1.55rem;
    }

    .tab-content-wrapper h6 {
        font-size: 1.3rem;
    }

    .product-description,
    .product-further-details,
    .product-howtogrow {
        font-size: 1.2rem;
        line-height: 1.75;
    }

    .tab-content-wrapper table td {
        padding: 0.95rem 1.2rem;
        font-size: 1.15rem;
    }

    .product-info-box-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 18px;
    }

    .product-info-box {
        padding: 18px;
        min-height: 108px;
        gap: 16px;
    }

    .product-info-box-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        font-size: 24px;
    }

    .product-info-box-title {
        font-size: 16px;
    }

    .product-info-box-value {
        font-size: 19px;
    }

    .product-tag-badge {
        font-size: 16px;
        padding: 9px 16px;
    }

    .month-badge {
        min-width: 58px;
        padding: 0.6rem 0.9rem;
        font-size: 1rem;
    }

    /* About section (homepage) — same type scale as 2000px */
    .about-label {
        font-size: 1.2rem;
    }

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

    .about-text {
        font-size: 1.25rem;
    }

    .feature-item::after {
        font-size: 1rem;
    }

    .feature-icon {
        font-size: 2.1rem;
    }

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

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

/* ==========================================================================
   Ultra-wide desktop (2000px+): further typography & control height increase
   Builds on the 1500px rules; does not alter layouts below 2000px.
   ========================================================================== */
@media (min-width: 2000px) {

    /* Base type */
    body {
        font-size: 20px !important;
        line-height: 1.55;
    }

    h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.7rem;
    }

    h3 {
        font-size: 2.25rem;
    }

    h4 {
        font-size: 1.85rem;
    }

    h5 {
        font-size: 1.55rem;
    }

    h6 {
        font-size: 1.35rem;
    }

    p,
    label,
    .form-label {
        font-size: 1.25rem;
    }

    /* Global controls */
    .btn {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
        min-height: 56px;
    }

    .btn-sm {
        font-size: 1.1rem;
        padding: 0.55rem 1.15rem;
        min-height: 46px;
    }

    .btn-lg {
        font-size: 1.35rem;
        padding: 0.95rem 2rem;
        min-height: 64px;
    }

    .form-control,
    .form-select,
    select.form-control,
    input.form-control,
    textarea.form-control {
        font-size: 1.2rem;
        min-height: 60px;
        padding: 0.9rem 1.35rem;
    }

    textarea.form-control {
        min-height: 155px;
    }

    .dropdown-menu {
        font-size: 1.2rem;
    }

    .dropdown-item {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }

    .table {
        font-size: 1.2rem;
    }

    .table> :not(caption)>*>* {
        padding: 1.15rem 1.35rem;
    }

    .modal-title {
        font-size: 1.7rem;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1.5rem 1.85rem;
    }

    .modal-dialog {
        --bs-modal-margin: 2rem;
    }

    .badge {
        font-size: 0.95rem;
        min-width: 26px;
        height: 26px;
        padding: 0.45em 0.65em;
    }

    /* Header / nav — top-bar & navbar-menu inners */
    .top-bar {
        font-size: 1.2rem;
        padding-top: 0.55rem !important;
        padding-bottom: 0.55rem !important;
    }

    .top-bar .social-icons a {
        font-size: 1.2rem;
    }

    .top-bar .language-selector {
        gap: 1.35rem;
    }

    .top-bar .language-selector a,
    .top-bar .language-selector select {
        font-size: 1.2rem;
        padding-right: 1.25rem;
    }

    .top-bar .language-selector .dropdown-toggle {
        padding: 12px 0;
        font-size: 1.2rem;
    }

    .top-bar .language-selector .dropdown-menu {
        font-size: 1.2rem;
    }

    .top-bar .language-selector .dropdown-menu ul li a {
        padding: 0.7rem 1.25rem;
        font-size: 1.2rem;
    }

    .navbar-menu .logo {
        font-size: 3.35rem;
    }

    .navbar-menu .logo-image {
        max-height: 88px;
    }

    .navbar-menu .search-container input {
        font-size: 1.2rem;
        padding: 0.95rem 1.45rem;
        min-height: 60px;
    }

    .navbar-menu .search-container .btn-success {
        padding: 0.85rem 1.5rem;
        min-height: 60px;
        font-size: 1.2rem;
    }

    .navbar-menu .search-container .search-suggestions {
        font-size: 1.2rem;
        max-height: 360px;
    }

    .navbar-menu .search-container .search-suggestions li {
        padding: 0.75rem 1.25rem;
    }

    .navbar-menu .user-actions,
    .navbar-menu .user-actions a {
        font-size: 1.2rem;
    }

    .navbar-menu .user-actions i {
        font-size: 1.2rem !important;
    }

    .navbar-menu .user-actions .badge {
        min-width: 3%;
        height: 36px;
        font-size: 0.95rem !important;
    }

    .navbar-menu .navbar {
        padding: 0.85rem 0;
    }

    .navbar-menu .navbar-nav {
        gap: 0.75rem;
    }

    .navbar-menu .nav-link,
    .NavbarMenu .nav-link {
        font-size: 1.2rem;
        padding: 1.1rem 1.5rem !important;
    }

    .navbar-menu .dropdown-item,
    .NavbarMenu .dropdown-item {
        font-size: 1.2rem;
        padding: 0.75rem 1.4rem;
    }

    .NavbarMenu .dropdown-menu,
    .menu-drop {
        max-height: 480px;
        font-size: 1.2rem;
    }

    .navbar-menu .header-account-toggle {
        font-size: 1rem;
    }

    .navbar-menu .header-account-name {
        max-width: 140px;
    }

    .navbar-menu .header-account-dropdown__item {
        font-size: 1.05rem;
        padding: 0.85rem 0.95rem;
    }

    /* Hero */
    .hero-main {
        height: 640px;
        padding: 1.75rem 0;
    }

    .hero-title {
        font-size: 4.5rem;
        margin-bottom: 1.25rem;
    }

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

    .hero-bottom {
        padding: 1.5rem 0;
    }

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

    .hero-dots .dot {
        width: 14px;
        height: 14px;
    }

    /* Other pages — match home ultra-wide type scale */
    .product-hero-title,
    .category-hero-title {
        font-size: 3.4rem;
    }

    .product-breadcrumb a,
    .product-breadcrumb span,
    .category-breadcrumb a,
    .category-breadcrumb span {
        font-size: 1.15rem;
    }

    .page-hero-title,
    .about-hero-title {
        font-size: 2.85rem;
    }

    .about-intro-title,
    .about-section-title {
        font-size: 2.55rem;
    }

    .cart-title,
    .checkout-title {
        font-size: 2.35rem;
    }

    /* Month timeline */
    .month-section__container {
        padding: 2rem 0;
    }

    .month-button {
        font-size: 20px;
        padding: 12px 22px;
        min-height: 52px;
    }

    .btn-outline-month-product {
        font-size: 18px;
        padding: 11px 22px;
        min-height: 50px;
    }

    .month-product-tooltip__price {
        font-size: 18px;
        padding: 8px 16px;
    }

    .month_product_list {
        max-height: 540px;
        gap: 14px;
        padding: 12px;
    }

    .home-category-content strong {
        font-size: 28px !important;
    }

    .home-category-content span {
        font-size: 15px !important;
    }

    /* Category cards */
    .category-card {
        height: 500px;
    }

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

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

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

    .category-btn {
        font-size: 1.2rem;
        padding: 0.85rem 3.5rem;
        min-height: 56px;
    }

    .category-content {
        padding: 2rem 2.25rem;
        min-height: 110px;
    }

    /* Section titles & product carousels */
    .section-title {
        font-size: 2.9rem;
        margin-bottom: 3.35rem;
    }

    .home-section-more-btn {
        font-size: 1.15rem;
        padding: 0.85rem 1.95rem;
        min-height: 54px;
    }

    .home-section-more-icon {
        font-size: 1rem;
    }

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

    .natural-food-section .product-card-actions .season-product-add-btn {
        width: 80px !important;
    }

    .season-product-image {
        height: 320px;
        min-height: 320px;
    }

    .season-product-body {
        padding: 1.5rem 1.5rem 1.85rem;
    }

    .season-product-name {
        font-size: 1.25rem;
    }

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

    .season-product-price-old {
        font-size: 1.2rem;
    }

    .season-product-min-order {
        font-size: 1.05rem;
    }

    .season-product-badge {
        font-size: 14px;
        padding: 0.45rem 0.9rem;
    }

    .season-qty-wrapper .qty-btn {
        width: 50px;
        min-width: 70px;
        min-height: 48px;
        font-size: 1.2rem;
    }

    .season-qty-wrapper .season-product-qty {
        width: 100px;
        min-height: 58px;
        font-size: 1.05rem;
    }

    .season-product-qty {
        font-size: 1.05rem;
        padding: 0.7rem 0.8rem;
        min-height: 48px;
    }

    .season-product-add-btn {
        font-size: 1.15rem;
        padding: 0.85rem 1.25rem;
        min-height: 54px;
    }

    .season-product-add-btn i {
        font-size: 19px;
    }

    .season-product-view-link {
        font-size: 1.2rem;
    }

    /* Natural food / highlight products */
    .natural-food-section {
        padding: 5.5rem 0;
    }

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

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

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

    .banner-overlay {
        padding: 2.9rem 2.6rem;
    }

    .natural-food-section .product-image {
        width: 145px;
        min-width: 145px;
        height: 145px;
    }

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

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

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

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

    /* Refer a friend */
    .refer-friend-section {
        padding: 5rem;
    }

    .refer-friend-badge {
        font-size: 1.1rem;
        padding: 0.8rem 1.65rem;
    }

    .refer-friend-headline {
        font-size: 4.7rem;
    }

    .refer-friend-tagline {
        font-size: 1.7rem;
    }

    .refer-friend-desc {
        font-size: 1.3rem;
    }

    .refer-friend-btn {
        font-size: 1.3rem;
        padding: 1.4rem 3.35rem;
        min-height: 70px;
    }

    .refer-friend-note {
        font-size: 1.1rem;
    }

    /* Footer */
    .footer-section .footer-upper {
        padding: 5.25rem 0 4rem;
    }

    .footer-section .footer-widget {
        margin-bottom: 2rem;
    }

    .footer-section .footer-logo {
        font-size: 3.35rem;
        margin-bottom: 1.5rem;
    }

    .footer-section .footer-heading {
        font-size: 1.45rem;
        margin-bottom: 1.5rem;
    }

    .footer-section .footer-description,
    .footer-section .footer-links a,
    .footer-section .footer-contact,
    .footer-section .contact-item,
    .footer-section .newsletter-text {
        font-size: 1.2rem;
        line-height: 1.7;
    }

    .footer-section .footer-description {
        margin-bottom: 1.75rem;
    }

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

    .footer-section .contact-item {
        margin-bottom: 0.95rem;
    }

    .footer-section .newsletter-text {
        margin-bottom: 1.5rem;
    }

    .footer-section .newsletter-form .form-control {
        font-size: 1.2rem;
        min-height: 62px;
        padding: 0.95rem 1.45rem;
    }

    .footer-section .btn-subscribe {
        font-size: 0.85rem;
        padding: 0.95rem 2.1rem;
        min-height: 62px;
    }

    .footer-section .footer-bottom {
        padding: 1.15rem 4rem;
    }

    .footer-section .copyright-text {
        font-size: 1.2rem;
    }

    .footer-section .footer-bottom .social-icons a {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .footer-section .footer-bottom-right {
        gap: 1.85rem;
    }

    .footer-section .payment-methods {
        gap: 0.95rem;
    }

    .footer-section .payment-icon {
        height: 30px;
    }

    .scroll-to-top {
        width: 80px;
        height: 80px;
        font-size: 1.2rem;
        bottom: 40px;
        right: 40px;
    }

    /* Cart qty (global) */
    .qty-btn {
        width: 60px;
        height: 60px;
        font-size: 1.55rem;
    }

    .qty-input {
        width: 74px;
        font-size: 1.2rem;
        min-height: 60px;
    }

    /* Cart dropdown */
    .cart-dropdown-title {
        font-size: 1.5rem;
    }

    .cart-dropdown-count {
        font-size: 1.15rem;
    }

    .cart-dropdown-item {
        padding: 1.45rem 2rem;
    }

    /* Auth / account forms */
    .auth-form .form-control,
    .account-form .form-control,
    .contact-form-block .form-control {
        font-size: 1.2rem;
        min-height: 62px;
        padding: 0.95rem 1.45rem;
    }

    /* Product detail page */
    .breadcrumb-nav .breadcrumb {
        font-size: 1.15rem;
    }

    .breadcrumb-nav .breadcrumb-item a,
    .breadcrumb-nav .breadcrumb-item.active,
    .breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before {
        font-size: 1.15rem;
    }

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

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

    .product-info {
        padding: 2rem 2.25rem;
    }

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

    .product-title-meta,
    .product-title-meta p,
    .product-highlights,
    .product-highlights li,
    .product-highlights .text-muted,
    .product-meta .text-muted,
    .product-meta .small {
        font-size: 1.2rem;
    }

    .product-highlights .small {
        font-size: 1.1rem;
    }

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

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

    .product-options .form-label,
    .quantity-selector .form-label,
    .back-in-stock-box .form-label {
        font-size: 1.25rem;
    }

    .size-option {
        min-width: 62px;
        height: 62px;
        font-size: 1.1rem;
        padding: 0.7rem 1.3rem;
    }

    .quantity-input-group {
        width: 190px;
    }

    .quantity-btn {
        padding: 0.8rem 1.05rem;
        font-size: 1.15rem;
        min-height: 56px;
    }

    .quantity-selector input,
    .quantity-input-group .form-control {
        font-size: 1.2rem;
        min-height: 60px;
    }

    .btn-add-to-cart,
    .btn-BuyNow {
        font-size: 1.2rem;
        padding: 0.95rem 2rem;
        min-height: 60px;
    }

    .social-share .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.15rem;
    }

    .product-tabs .nav-link {
        font-size: 1.2rem;
        padding: 1.3rem 2rem;
    }

    .tab-content-wrapper {
        font-size: 1.2rem;
        line-height: 1.75;
        padding: 2.35rem !important;
    }

    .tab-content-wrapper h5,
    .growing-calendar h5 {
        font-size: 1.55rem;
    }

    .tab-content-wrapper h6 {
        font-size: 1.3rem;
    }

    .product-description,
    .product-further-details,
    .product-howtogrow {
        font-size: 1.2rem;
        line-height: 1.75;
    }

    .tab-content-wrapper table td {
        padding: 1.05rem 1.35rem;
        font-size: 1.15rem;
    }

    .product-info-box-grid {
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
        gap: 22px;
    }

    .product-info-box {
        padding: 20px;
        min-height: 120px;
        gap: 18px;
    }

    .product-info-box-icon {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
        font-size: 24px;
    }

    .product-info-box-title {
        font-size: 16px;
    }

    .product-info-box-value {
        font-size: 19px;
    }

    .product-tag-badge {
        font-size: 16px;
        padding: 10px 18px;
    }

    .month-badge {
        min-width: 66px;
        padding: 0.7rem 1.05rem;
        font-size: 1rem;
    }

    /* About section (homepage) */
    .about-section {
        padding: 5.5rem 0;
    }

    .about-content {
        padding: 2.75rem 4rem;
    }

    .about-label {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

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

    .about-text {
        font-size: 1.25rem;
        line-height: 1.75;
        margin-bottom: 2rem;
    }

    .features-grid {
        gap: 1.85rem;
    }

    .feature-item {
        gap: 1.25rem;
        padding: 1.2rem 3.1rem 1.2rem 1.2rem;
    }

    .feature-item::after {
        right: 1.1rem;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        font-size: 2.1rem;
    }

    .feature-title {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }

    .feature-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}

/* Gift Card Page */
.gift-card-section {
    min-height: calc(100vh - 220px);
    background-color: #f9f9f9;
}

.gift-card-payment-section {
    background: #f8f9fa;
}


.gift-card-alert {
    border-radius: 12px;
    margin-bottom: 1.25rem;
    max-width: 1320px;
}

.gift-card-page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gift-card-title {
    margin: 0 0 0.35rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f1f14;
}

.gift-card-subtitle {
    font-size: 0.95rem;
    color: #6b7c72;
    margin: 0 0 1.75rem;
    line-height: 1.5;
}

.gift-card-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 680px;
    margin: 0 auto;
    padding: 0.5rem;
}

.gift-card-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.gift-card-step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eef4ef;
    color: #6b7c72;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    /* border: 2px solid transparent; */
}

.gift-card-step-label {
    font-size: 0.78rem;
    color: #6b7c72;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
}

.gift-card-step.is-active .gift-card-step-num {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-darker) 100%);
    color: #fff;

}

.gift-card-step.is-done .gift-card-step-num {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 6px 18px rgba(40, 167, 69, 0.3);
}

.gift-card-step.is-done .gift-card-step-num {
    box-shadow: none;
}

.gift-card-step.is-active .gift-card-step-label {
    color: var(--color-primary-dark);
}

.gift-card-step.is-done .gift-card-step-label {
    color: #0f1f14;
}

.gift-card-step-num i {
    font-size: 1rem;
    line-height: 1;
}

.gift-card-step-line {
    flex: 1;
    height: 2px;
    background: #e2ebe4;
    margin: 0 0.75rem;
    margin-bottom: 1.4rem;
    max-width: 100px;
    border-radius: 2px;
    transition: background-color 0.25s ease;
}

.gift-card-step-line.is-done {
    background: var(--color-primary);
}

.gift-card-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 1.5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.gift-card-preview-sticky {
    position: sticky;
    top: 120px;
}

.gift-card-visual {
    background: linear-gradient(145deg, #1e7e34 0%, #28a745 45%, #34ce57 100%);
    border-radius: 16px;
    padding: 1.5rem;
    color: #fff;
    box-shadow: 0 12px 32px rgba(40, 167, 69, 0.28);
    margin-bottom: 1.25rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.gift-card-visual__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.gift-card-visual__brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.gift-card-visual__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
}

.gift-card-visual__amount {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.gift-card-visual__title {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0 0 1rem;
}

.gift-card-visual__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin-bottom: 0.85rem;
}

.gift-card-visual__to {
    font-size: 0.8rem;
    margin: 0 0 0.5rem;
    opacity: 0.85;
}

.gift-card-visual__to span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.gift-card-visual__to strong {
    font-size: 1rem;
    font-weight: 600;
}

.gift-card-visual__message {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gift-card-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.gift-card-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.85rem;
    color: #666;
    background: #fff;
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.gift-card-features li i {
    color: var(--color-primary);
    width: 16px;
    text-align: center;
}

.gift-card-panel {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(15, 31, 20, 0.06);
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.gift-card-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.5rem;
    border-bottom: 1px solid #e8f0ea;
    background: linear-gradient(135deg, #f4faf5 0%, #ffffff 100%);
}

.gift-card-panel__header h2 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f1f14;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.gift-card-panel__header h2 i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.gift-card-panel__body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.gift-card-voucher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.85rem;
}

.gift-card-voucher-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.gift-card-voucher {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 110px;
    padding: 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
}

.gift-card-voucher:hover {
    border-color: #cfe8d6;
    background: #f8fff9;
}

.gift-card-voucher-input:checked+.gift-card-voucher {
    border-color: var(--color-primary);
    background: #f0fdf4;
    box-shadow: 0 4px 14px rgba(40, 167, 69, 0.15);
}

.gift-card-voucher__check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e0e0e0;
    color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    transition: all 0.2s ease;
}

.gift-card-voucher-input:checked+.gift-card-voucher .gift-card-voucher__check {
    background: var(--color-primary);
    color: #fff;
}

.gift-card-voucher__title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    line-height: 1.3;
}

.gift-card-voucher__amount {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.gift-card-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gift-card-form-grid--full {
    grid-column: 1 / -1;
}

.gift-card-form .form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 0.4rem;
}

.gift-card-form .form-input {
    width: 100%;
}

.gift-card-textarea {
    height: auto !important;
    min-height: 96px;
    padding: 0.75rem 1rem !important;
    resize: vertical;
}

.gift-card-char-count {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 0.35rem;
}

.gift-card-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.gift-card-empty {
    text-align: center;
    padding: 3rem 1.5rem;
}

.gift-card-empty-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.gift-card-empty h2 {
    font-size: 1.1rem;
    color: #555;
    margin: 0 0 1.25rem;
}

/* Gift card payment page */
.gift-card-payment-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 1.5rem;
    align-items: start;
    margin: 0 auto;
}

.gift-card-payment-main {
    min-width: 0;
}

.gift-card-payment-sidebar {
    position: sticky;
    top: 1.5rem;
}

.gift-card-payment-intro {
    margin: 0 0 1.25rem;
    color: #6b7c72;
    font-size: 0.92rem;
    line-height: 1.5;
}

.gift-card-provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.gift-card-provider-option {
    cursor: pointer;
    margin: 0;
}

.gift-card-provider-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.gift-card-provider-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 50px;
    border: 1.5px solid #e2ebe4;
    border-radius: 12px;
    padding: 0.8rem 0.95rem;
    background: #fafcfa;
    color: #0f1f14;
    font-weight: 600;
    font-size: 0.86rem;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.gift-card-provider-card i {
    font-size: 1.1rem;
    color: var(--color-primary-dark);
    flex-shrink: 0;
}

.gift-card-provider-option:hover .gift-card-provider-card {
    border-color: #cfe8d6;
    background: #f4faf5;
}

.gift-card-provider-option input:checked+.gift-card-provider-card {
    border-color: var(--color-primary);
    background: rgba(40, 167, 69, 0.06);
    color: var(--color-primary-dark);
    box-shadow: 0 4px 14px rgba(40, 167, 69, 0.12);
}

.gift-card-provider-panel {
    border: 1.5px solid #e2ebe4;
    border-radius: 14px;
    padding: 1.15rem 1.25rem;
    background: #f9f9f9;
    margin-bottom: 1rem;
}

.gift-card-provider-panel__head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.gift-card-provider-panel__head>i {
    font-size: 1.35rem;
    color: var(--color-primary);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.gift-card-provider-panel__content strong {
    display: block;
    color: #0f1f14;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.gift-card-provider-panel__content p {
    margin: 0;
    color: #6b7c72;
    font-size: 0.84rem;
    line-height: 1.45;
}

.gift-card-payment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0.9rem 1.25rem;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-darker) 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.28);
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.gift-card-payment-btn:hover {
    color: #fff;
    filter: brightness(1.05);
    box-shadow: 0 12px 28px rgba(40, 167, 69, 0.34);
    transform: translateY(-1px);
}

.gift-card-paypal-button {
    max-width: 360px;
}

.gift-card-payment-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.95rem 1.1rem;
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    margin-top: 0.5rem;
}

.gift-card-payment-notice i {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.gift-card-payment-notice p {
    margin: 0;
    font-size: 0.85rem;
    color: #166534;
    line-height: 1.5;
}

.gift-card-summary-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(15, 31, 20, 0.08);
    overflow: hidden;
    position: sticky;
    top: 1.5rem;
}

.gift-card-summary-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    border-bottom: 1px solid #e8f0ea;
    background: linear-gradient(135deg, #f4faf5 0%, #ffffff 100%);
}

.gift-card-summary-card__header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f1f14;
}

.gift-card-summary-card__body {
    padding: 1.25rem 1.35rem;
}

.gift-card-summary-card__footer {
    padding: 1rem 1.35rem 1.35rem;
    border-top: 1px solid #e8f0ea;
}

.gift-card-summary-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f4faf5 0%, #e8f5ea 100%);
    border: 1px solid #e2ebe4;
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.gift-card-summary-visual i {
    font-size: 1.75rem;
    color: var(--color-primary);
}

.gift-card-summary-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    letter-spacing: -0.02em;
}

.gift-card-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eef4ef;
}

.gift-card-summary-row {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.gift-card-summary-row span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7c72;
    font-weight: 600;
}

.gift-card-summary-row strong {
    font-size: 0.92rem;
    color: #0f1f14;
    font-weight: 600;
    word-break: break-word;
}

.gift-card-summary-row--message p {
    font-size: 0.9rem;
    color: #4a5c50;
    margin: 0;
    font-style: italic;
    line-height: 1.5;
}

.gift-card-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0 0;
    font-size: 1rem;
}

.gift-card-summary-total span {
    font-size: 1rem;
    font-weight: 700;
    color: #0f1f14;
}

.gift-card-summary-total strong {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.gift-card-secure-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #6b7c72;
}

.gift-card-secure-footer i {
    color: var(--color-primary);
    font-size: 1rem;
}

/* Success page */
.gift-card-success-section {
    background: linear-gradient(180deg, #f6fff8 0%, #f9f9f9 100%);
    min-height: calc(100vh - 220px);
}

.gift-card-success-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 1.5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.gift-card-success-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.gift-card-success-hero {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #fff;
    border: 1px solid rgba(40, 167, 69, 0.12);
    border-radius: 18px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 12px 32px rgba(15, 31, 20, 0.06);
}

.gift-card-success-icon-wrap {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #eefdf2 0%, #d7f7e2 100%);
    border: 2px solid rgba(40, 167, 69, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-card-success-icon {
    font-size: 2.35rem;
    color: var(--color-primary);
    line-height: 1;
}

.gift-card-success-hero__copy {
    min-width: 0;
    padding-top: 0.15rem;
}

.gift-card-success-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f1f14;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.gift-card-success-desc {
    font-size: 0.95rem;
    color: #6b7c72;
    line-height: 1.65;
    margin: 0;
}

.gift-card-success-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: #e8f8ee;
    color: #166534;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gift-card-success-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.gift-card-success-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.85rem 1rem;
    background: #f9f9f9;
    border-radius: 12px;
    border: 1px solid #eef4ef;
}

.gift-card-success-detail span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7c72;
    font-weight: 600;
}

.gift-card-success-detail strong {
    font-size: 0.95rem;
    color: #0f1f14;
    font-weight: 600;
    word-break: break-word;
}

.gift-card-success-message {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    background: #f4faf5;
    border: 1px solid #e2ebe4;
    border-radius: 12px;
}

.gift-card-success-message span {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7c72;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.gift-card-success-message p {
    margin: 0;
    font-size: 0.92rem;
    color: #4a5c50;
    font-style: italic;
    line-height: 1.55;
}

.gift-card-success-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.gift-card-success-timeline__step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    padding-bottom: 1.35rem;
}

.gift-card-success-timeline__step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 17px;
    top: 38px;
    bottom: 0;
    width: 2px;
    background: #e2ebe4;
}

.gift-card-success-timeline__step.is-done:not(:last-child)::after {
    background: var(--color-primary);
}

.gift-card-success-timeline__marker {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eef4ef;
    color: #6b7c72;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.gift-card-success-timeline__step.is-done .gift-card-success-timeline__marker {
    background: var(--color-primary);
    color: #fff;
}

.gift-card-success-timeline__content strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f1f14;
    margin-bottom: 0.2rem;
}

.gift-card-success-timeline__content p {
    margin: 0;
    font-size: 0.86rem;
    color: #6b7c72;
    line-height: 1.55;
}

.gift-card-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.25rem;
}

.gift-card-success-actions .btn-primary-solid,
.gift-card-success-actions .btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 200px;
}

.gift-card-success-btn {
    box-shadow: 0 8px 18px rgba(40, 167, 69, 0.22);
}

.gift-card-success-sidebar {
    position: sticky;
    top: 120px;
}

.gift-card-visual--success {
    margin-bottom: 1.25rem;
}

.gift-card-success-card {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(40, 167, 69, 0.1);
    padding: 2.5rem 2rem;
    text-align: center;
}

.gift-card-success-btn {
    min-width: 180px;
    box-shadow: 0 8px 18px rgba(40, 167, 69, 0.22);
}

.gift-card-preview-col {
    position: sticky;
    top: 135px;
}

@media (max-width: 1199.98px) {
    .gift-card-payment-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
    }
}

@media (max-width: 991.98px) {

    .gift-card-layout,
    .gift-card-payment-layout,
    .gift-card-success-layout {
        grid-template-columns: 1fr;
    }

    .gift-card-preview-sticky,
    .gift-card-summary-card,
    .gift-card-payment-sidebar,
    .gift-card-success-sidebar {
        position: static;
    }

    .gift-card-payment-sidebar,
    .gift-card-success-sidebar {
        order: -1;
    }

    .gift-card-preview-col {
        order: -1;
    }

    .gift-card-visual {
        min-height: auto;
    }

    .gift-card-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .gift-card-features li {
        flex: 1 1 auto;
    }
}

@media (max-width: 767.98px) {
    .gift-card-title {
        font-size: 1.6rem;
    }

    .gift-card-step-label {
        font-size: 0.68rem;
    }

    .gift-card-step-num {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .gift-card-provider-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gift-card-provider-card {
        font-size: 0.8rem;
        padding: 0.7rem 0.8rem;
    }

    .gift-card-form-grid {
        grid-template-columns: 1fr;
    }

    .gift-card-form-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .gift-card-form-actions .btn-primary-solid,
    .gift-card-form-actions .btn-secondary-outline {
        width: 100%;
        justify-content: center;
    }

    .gift-card-voucher-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gift-card-success-details {
        grid-template-columns: 1fr;
    }

    .gift-card-success-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.35rem 1.25rem;
    }

    .gift-card-success-actions {
        flex-direction: column;
    }

    .gift-card-success-actions .btn-primary-solid,
    .gift-card-success-actions .btn-secondary-outline {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .gift-card-payment-section {
        padding-top: 1.5rem !important;
        padding-bottom: 2rem !important;
    }

    .gift-card-title {
        font-size: 1.4rem;
    }

    .gift-card-step-label {
        display: none;
    }

    .gift-card-step-line {
        margin-bottom: 0;
    }

    .gift-card-provider-grid {
        grid-template-columns: 1fr;
    }

    .gift-card-panel__body {
        padding: 1rem 1.15rem 1.15rem;
    }
    .gift-card-preview-col{
        position: static;
    }
}

/* Order payment page */
.order-payment-section .checkout-header {
    margin-bottom: 2rem;
}

.order-payment-subtitle {
    margin: -0.75rem 0 1.5rem;
    font-size: 0.95rem;
    color: #6b7c72;
    line-height: 1.5;
}

.order-payment-intro {
    margin: 0 0 1.25rem;
    color: #6b7c72;
    font-size: 0.92rem;
    line-height: 1.5;
}

.order-payment-layout .checkout-sidebar {
    position: sticky;
    top: 1.5rem;
}

.order-payment-paypal {
    max-width: 360px;
}

.order-payment-section .checkout-steps .step.completed .step-number {
    box-shadow: none;
}

.order-payment-section .checkout-notice {
    margin-top: 1rem;
    margin-bottom: 0;
}

.gift-card-payment-actions {
    margin-top: 0.25rem;
}

.order-payment-actions {
    margin-top: 0.25rem;
}

@media (max-width: 991px) {
    .order-payment-layout .checkout-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .order-payment-subtitle {
        font-size: 0.88rem;
        padding: 0 0.5rem;
    }

    .order-payment-section .checkout-steps .step-label {
        display: none;
    }

    .order-payment-section .checkout-steps .step-divider {
        margin-bottom: 0;
    }
}
.tatgut-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin: 34px 0 16px;
    padding: 16px 18px;
    border: 1px solid #dce7df;
    border-radius: 8px;
    background: #fff;
}

.tatgut-pagination__summary {
    color: #607168;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.tatgut-pagination__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tatgut-pagination__link,
.tatgut-pagination__ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #d7e2da;
    border-radius: 6px;
    background: #fff;
    color: #18311f;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.tatgut-pagination__link:hover {
    border-color: #169344;
    background: #eff9f2;
    color: #117737;
}

.tatgut-pagination__link.is-active {
    border-color: #169344;
    background: #169344;
    color: #fff;
    box-shadow: 0 5px 14px rgba(22, 147, 68, 0.2);
}

.tatgut-pagination__link.is-disabled {
    background: #f5f7f6;
    color: #a8b3ac;
    cursor: not-allowed;
}

.tatgut-pagination__ellipsis {
    border-color: transparent;
    color: #7d8c83;
}

@media (max-width: 767.98px) {
    .tatgut-pagination {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px;
    }

    .tatgut-pagination__list {
        justify-content: flex-start;
        width: 100%;
    }

    .tatgut-pagination__link,
    .tatgut-pagination__ellipsis {
        width: 34px;
        height: 34px;
    }
}
