/* CSS Stylesheet for Arshith Fresh Replica */

/* Root variables defining the theme color system matching the live site */
:root {
    --color-primary: #0f7139; /* 15,113,57 */
    --color-primary-rgb: 15, 113, 57;
    --color-secondary-bg: #376751;
    --color-dark-bg: #0b3718;
    --color-light-accent: #f7f8fa;
    --color-cream: #faf3e0;
    --color-text-dark: #2f3e46;
    --color-text-muted: #555555;
    --color-border: #e2e2e2;
    --font-heading: "Playfair Display", serif;
    --font-body: "Plus Jakarta Sans", sans-serif;
    --max-width: 1600px;
    --header-height: 80px;
    --announcement-height: 40px;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: #ffffff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

input, button {
    font-family: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    transition: all 0.3s ease;
}

/* Sticky Announcement Bar with Scrolling Marquee */
.announcement-bar {
    background: linear-gradient(135deg, #005d4a 0%, #007a62 50%, #005d4a 100%);
    color: #ffffff;
    overflow: hidden;
    position: sticky;
    top: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 93, 74, 0.3);
}

.announcement-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.announcement-track {
    display: inline-flex;
    animation: marquee 25s linear infinite;
    align-items: center;
}

.announcement-track span {
    padding: 0 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    display: inline-block;
}

.announcement-track .announcement-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    padding: 0;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Header & Navigation */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 40px; /* Right below the sticky announcement bar */
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    font-size: 1.05rem;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* Dropdown Menu */
.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

.arrow-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 8px 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background-color: var(--color-light-accent);
    color: var(--color-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-bar-container {
    position: relative;
    width: 290px;
}

/* Live Search Autocomplete Dropdown */
.search-suggestions-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 390px;
    max-width: 90vw;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.16);
    border: 1px solid #e2e8f0;
    z-index: 9999;
    display: none;
    overflow: hidden;
    animation: searchDropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes searchDropdownFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-suggestions-dropdown.active {
    display: block !important;
}

.search-suggestion-header {
    padding: 10px 14px 6px 14px;
    font-size: 11.5px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.clear-all-searches-btn {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.15s ease;
}

.clear-all-searches-btn:hover {
    color: #ef4444;
    text-decoration: underline;
}

/* Saved Info Rows & Cross Delete Mark */
.search-saved-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
}

.search-saved-info-row:hover {
    background: #f8fafc;
}

.saved-info-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: #334155;
}

.delete-saved-item-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 50%;
    transition: color 0.15s ease, background 0.15s ease, transform 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delete-saved-item-btn:hover {
    color: #ef4444;
    background: #fee2e2;
    transform: scale(1.15);
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
    text-decoration: none;
    color: #1e293b;
}

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

.search-suggestion-item:hover, .search-suggestion-item.active-item {
    background: #f1f5f9;
}

.search-suggestion-thumb {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
    background: #ffffff;
}

.search-suggestion-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.search-suggestion-title {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-suggestion-meta {
    font-size: 11.5px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.search-suggestion-price {
    color: #0f7139;
    font-weight: 700;
}

.search-suggestion-word {
    padding: 8px 14px;
    font-size: 13px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.15s ease;
    border-bottom: 1px solid #f1f5f9;
}

.search-suggestion-word:hover {
    background: #f1f5f9;
    color: #0f7139;
}

.search-suggestion-footer {
    padding: 11px 14px;
    background: #f8fafc;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #0f7139;
    cursor: pointer;
    border-top: 1px solid #e2e8f0;
    transition: background 0.15s ease;
}

.search-suggestion-footer:hover {
    background: #f1f5f9;
    color: #0b542a;
}

.search-form {
    display: flex;
    align-items: center;
    border: 2px solid var(--color-primary);
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.search-form:focus-within {
    border-color: #0f7139;
    box-shadow: 0 0 0 4px rgba(15, 113, 57, 0.14);
}

.search-form input {
    border: none;
    padding: 7px 14px;
    font-size: 0.92rem;
    width: 100%;
    outline: none;
}

.search-clear-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s ease;
}

.search-clear-btn:hover {
    color: #ef4444;
}

.search-submit {
    color: var(--color-primary);
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-light-accent);
    position: relative;
}

.action-btn:hover {
    background-color: rgba(var(--color-primary-rgb), 0.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.wishlist-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.wishlist-btn:hover svg {
    fill: #ef4444;
    stroke: #ef4444;
    transform: scale(1.15);
    transition: transform 0.2s ease, fill 0.2s ease;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.menu-icon-bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Drawer Menu */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background-color: #ffffff;
    z-index: 10001;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    left: 0;
}

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-header h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.4rem;
}

.drawer-close-btn {
    font-size: 1.8rem;
    color: var(--color-primary);
}

.drawer-body {
    padding: 20px;
    overflow-y: auto;
}

.drawer-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drawer-nav-links li a {
    font-size: 1.15rem;
    font-weight: 500;
    display: block;
    padding: 8px 0;
}

.drawer-submenu {
    list-style: none;
    padding-left: 20px;
    margin-top: 8px;
    display: none;
    flex-direction: column;
    gap: 12px;
    border-left: 2px solid var(--color-primary);
}

.drawer-submenu.show {
    display: flex;
}

.drawer-submenu li a {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Main Section Wrapper */
main {
    flex-grow: 1;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Hero Banner Carousel */
/* =======================================================
   INSTAMART-STYLE MULTI-CARD HERO BANNER CAROUSEL (RICH GREEN THEME)
   ======================================================= */
.instamart-hero-section {
    max-width: 1440px;
    margin: 16px auto 26px;
    padding: 0 20px;
    position: relative;
    box-sizing: border-box;
}

.instamart-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.instamart-carousel-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 4px 14px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.instamart-carousel-track::-webkit-scrollbar {
    display: none;
}

.instamart-banner-card {
    flex: 0 0 calc(33.333% - 12px);
    min-width: 340px;
    height: 240px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    scroll-snap-align: start;
    box-shadow: 0 6px 20px rgba(0, 45, 34, 0.15);
    border: 1.5px solid rgba(189, 163, 128, 0.28);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    cursor: pointer;
}

.instamart-banner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 45, 34, 0.28);
    border-color: rgba(189, 163, 128, 0.6);
}

/* Card Themes - Signature Green Palette */
.instamart-banner-card.card-oils {
    background: linear-gradient(135deg, #022c1b 0%, #064e3b 55%, #005d4a 100%);
}

.instamart-banner-card.card-podulu {
    background: linear-gradient(135deg, #0b3718 0%, #0f5132 55%, #1b5b33 100%);
}

.instamart-banner-card.card-ghee {
    background: linear-gradient(135deg, #012b1d 0%, #04432c 55%, #0d5e40 100%);
}

.instamart-banner-card.card-seeds {
    background: linear-gradient(135deg, #043825 0%, #0c5738 55%, #156d47 100%);
}

.instamart-banner-card.card-nuts {
    background: linear-gradient(135deg, #06311d 0%, #0d4d2e 55%, #13633c 100%);
}

.instamart-banner-card.card-spices {
    background: linear-gradient(135deg, #022e1e 0%, #084931 55%, #0d5f40 100%);
}

/* Top Badge */
.instamart-card-badge {
    position: absolute;
    top: 14px;
    left: 20px;
    background: rgba(0, 30, 20, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(189, 163, 128, 0.35);
    padding: 4px 11px;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #BDA380;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
    pointer-events: none;
}

.instamart-card-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #BDA380;
    box-shadow: 0 0 6px #BDA380;
}

.instamart-card-badge strong {
    color: #ffffff;
    font-weight: 800;
}

/* Left Content */
.instamart-card-content {
    flex: 1 1 50%;
    padding: 42px 14px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
    box-sizing: border-box;
}

.instamart-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    letter-spacing: -0.3px;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.instamart-card-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.84rem;
    color: #d1fae5;
    font-weight: 500;
    line-height: 1.35;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.92;
}

.instamart-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #BDA380;
    color: #022c1b;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    padding: 9px 22px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}

.instamart-cta-btn:hover {
    background: #ffffff;
    color: #005d4a;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(189, 163, 128, 0.45);
}

/* Right Image Container */
.instamart-card-img-wrap {
    flex: 0 0 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 12px 14px 12px 4px;
    box-sizing: border-box;
    overflow: hidden;
}

.instamart-card-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-oils .instamart-card-img-wrap,
.card-podulu .instamart-card-img-wrap,
.card-ghee .instamart-card-img-wrap,
.card-seeds .instamart-card-img-wrap {
    flex: 0 0 50%;
    padding: 10px 14px 10px 4px;
}

.card-nuts .instamart-card-img-wrap,
.card-spices .instamart-card-img-wrap {
    flex: 0 0 53%;
    padding: 6px 12px 6px 0;
}

.card-oils .instamart-card-img-wrap img,
.card-podulu .instamart-card-img-wrap img,
.card-ghee .instamart-card-img-wrap img,
.card-seeds .instamart-card-img-wrap img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
    transform: scale(1.08);
}

/* Make last two cards (dry fruits & spices) scale up to match vertical size of seeds & other cards */
.card-nuts .instamart-card-img-wrap img,
.card-spices .instamart-card-img-wrap img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
    transform: scale(1.26);
    transform-origin: center center;
}

.instamart-banner-card:hover .instamart-card-img-wrap img {
    transform: scale(1.14);
}

.instamart-banner-card.card-nuts:hover .instamart-card-img-wrap img,
.instamart-banner-card.card-spices:hover .instamart-card-img-wrap img {
    transform: scale(1.32);
}

/* Arrow Controls */
.instamart-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #005d4a;
    color: #ffffff;
    border: 1.5px solid rgba(189, 163, 128, 0.45);
    box-shadow: 0 4px 14px rgba(0, 45, 34, 0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 10;
    transition: all 0.2s ease;
    line-height: 1;
    padding: 0;
}

.instamart-arrow:hover {
    background: #0f7139;
    color: #BDA380;
    border-color: #BDA380;
    transform: translateY(-50%) scale(1.08);
}

.instamart-arrow.prev {
    left: -14px;
}

.instamart-arrow.next {
    right: -14px;
}

/* Instamart Counter Pagination */
.instamart-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.instamart-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #005d4a;
    opacity: 0.5;
    display: inline-block;
    transition: background 0.2s, opacity 0.2s;
}

.instamart-pill-counter {
    background: #005d4a;
    color: #BDA380;
    border: 1px solid rgba(189, 163, 128, 0.35);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 9999px;
    letter-spacing: 0.8px;
    box-shadow: 0 3px 8px rgba(0, 45, 34, 0.2);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .instamart-banner-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 300px;
        height: 220px;
    }
    .instamart-card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .instamart-hero-section {
        padding: 0 12px;
        margin: 10px auto 16px;
    }
    .instamart-carousel-track {
        gap: 12px;
        padding: 6px 2px 10px;
    }
    .instamart-banner-card {
        flex: 0 0 88%;
        min-width: 270px;
        height: 195px;
        border-radius: 18px;
    }
    .instamart-card-content {
        padding: 34px 10px 14px 14px;
    }
    .instamart-card-badge {
        top: 10px;
        left: 14px;
        font-size: 9.5px;
        padding: 3px 8px;
    }
    .instamart-card-title {
        font-size: 1.15rem;
        margin-bottom: 4px;
    }
    .instamart-card-subtitle {
        font-size: 0.78rem;
        margin-bottom: 12px;
    }
    .instamart-cta-btn {
        padding: 7px 16px;
        font-size: 11px;
    }
    .instamart-arrow {
        display: none !important;
    }
}
    transform: scale(1.2);
}

@keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* ====================================================
   GRAND FESTIVE OFFER PROMOTIONAL SECTION
   ==================================================== */
.festive-promo-section {
    position: relative;
    padding: 36px 20px 24px 20px;
    background: linear-gradient(180deg, #fdfbf7 0%, #fef8ee 50%, #fefae0 100%);
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.festive-promo-section.festive-visible {
    opacity: 1;
    transform: translateY(0);
}

.festive-promo-container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.festive-promo-card {
    position: relative;
    border-radius: 28px;
    background: 
        radial-gradient(circle at 85% 25%, rgba(245, 158, 11, 0.28) 0%, transparent 45%),
        radial-gradient(circle at 12% 75%, rgba(16, 185, 129, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, #022c22 0%, #064e3b 40%, #005d4a 75%, #042f24 100%);
    border: 2px solid rgba(251, 191, 36, 0.45);
    box-shadow: 
        0 24px 60px -12px rgba(2, 44, 34, 0.45),
        0 0 45px rgba(245, 158, 11, 0.18),
        inset 0 1px 1px rgba(255, 255, 255, 0.35);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 32px;
    padding: 40px 44px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.festive-promo-card:hover {
    box-shadow: 
        0 30px 70px -12px rgba(2, 44, 34, 0.55),
        0 0 60px rgba(245, 158, 11, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

/* Subtle Festive Mandala Pattern Background */
.festive-mandala-watermark {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
    border: 1px dashed rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    pointer-events: none;
    animation: slowMandalaRotate 60s linear infinite;
    z-index: 1;
}

.festive-mandala-watermark::before {
    content: '';
    position: absolute;
    inset: 40px;
    border: 1px dashed rgba(251, 191, 36, 0.15);
    border-radius: 50%;
}

.festive-mandala-watermark::after {
    content: '';
    position: absolute;
    inset: 90px;
    border: 1px dotted rgba(251, 191, 36, 0.18);
    border-radius: 50%;
}

@keyframes slowMandalaRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hanging Festive Lanterns & Diyas */
.festive-lanterns-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none;
    z-index: 2;
}

.festive-lantern {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lanternSway 4s ease-in-out infinite alternate;
    transform-origin: top center;
}

.festive-lantern.lantern-2 {
    animation-delay: 1.5s;
    animation-duration: 4.8s;
}

.festive-lantern.lantern-3 {
    animation-delay: 0.8s;
    animation-duration: 4.2s;
}

.lantern-rope {
    width: 1.5px;
    height: 28px;
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.8) 0%, rgba(217, 119, 6, 0.5) 100%);
}

.lantern-body {
    width: 26px;
    height: 34px;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 70%, #92400e 100%);
    border-radius: 6px;
    position: relative;
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.7);
}

.lantern-flame {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 12px;
    background: radial-gradient(circle, #ffffff 10%, #fde047 50%, #ea580c 100%);
    border-radius: 50% 50% 20% 20%;
    filter: drop-shadow(0 0 6px #f59e0b);
    animation: flameFlicker 1.8s ease-in-out infinite alternate;
}

@keyframes lanternSway {
    0% { transform: rotate(-3.5deg); }
    100% { transform: rotate(3.5deg); }
}

@keyframes flameFlicker {
    0% { transform: translateX(-50%) scale(0.9); opacity: 0.85; }
    50% { transform: translateX(-50%) scale(1.1) rotate(2deg); opacity: 1; }
    100% { transform: translateX(-50%) scale(0.95) rotate(-2deg); opacity: 0.9; }
}

/* Floating Golden Sparkle Stars */
.festive-sparkle {
    position: absolute;
    color: #fde047;
    font-size: 14px;
    pointer-events: none;
    animation: sparkleTwinkle 3s ease-in-out infinite alternate;
    z-index: 2;
}

.sparkle-1 { top: 18%; left: 6%; animation-delay: 0s; font-size: 18px; }
.sparkle-2 { top: 68%; left: 16%; animation-delay: 1.2s; font-size: 14px; }
.sparkle-3 { top: 15%; right: 38%; animation-delay: 2s; font-size: 16px; }
.sparkle-4 { top: 82%; right: 10%; animation-delay: 0.7s; font-size: 20px; }
.sparkle-5 { top: 40%; left: 45%; animation-delay: 1.8s; font-size: 12px; }

@keyframes sparkleTwinkle {
    0% { transform: scale(0.7) rotate(0deg); opacity: 0.3; filter: drop-shadow(0 0 2px #fbbf24); }
    50% { transform: scale(1.25) rotate(90deg); opacity: 1; filter: drop-shadow(0 0 10px #f59e0b); }
    100% { transform: scale(0.8) rotate(180deg); opacity: 0.4; filter: drop-shadow(0 0 3px #fbbf24); }
}

/* Main Content Column */
.festive-main-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.festive-header-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.festive-pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.45);
    color: #fef08a;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.15);
}

.festive-pill-tag .tag-icon {
    font-size: 13px;
    animation: sparkleTwinkle 2s ease-in-out infinite alternate;
}

.festive-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #fef08a 35%, #f59e0b 70%, #fffbeb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 3px 12px rgba(245, 158, 11, 0.3));
    letter-spacing: -0.5px;
}

.festive-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.4;
    color: #fefce8;
    margin: 0;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Hero Offer Row with Button */
.festive-hero-offer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
}

.festive-discount-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d97706 0%, #b45309 50%, #92400e 100%);
    border: 1.5px solid #fef08a;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(180, 83, 9, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.4);
    animation: pulseDiscount 3s ease-in-out infinite alternate;
}

@keyframes pulseDiscount {
    0% { transform: scale(1); box-shadow: 0 6px 20px rgba(180, 83, 9, 0.4); }
    100% { transform: scale(1.04); box-shadow: 0 10px 30px rgba(245, 158, 11, 0.6); }
}

.festive-code-box {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px dashed rgba(251, 191, 36, 0.6);
    color: #fef08a;
    font-size: 13px;
    font-weight: 600;
}

.festive-code-box strong {
    color: #ffffff;
    background: rgba(245, 158, 11, 0.35);
    padding: 2px 7px;
    border-radius: 6px;
    letter-spacing: 1px;
}

.festive-shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fef08a 0%, #fbbf24 30%, #f59e0b 70%, #d97706 100%);
    color: #022c22 !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45), 0 2px 6px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    margin-left: auto;
}

.festive-shop-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    animation: btnShimmer 3.5s infinite;
}

@keyframes btnShimmer {
    0% { left: -100%; }
    30% { left: 160%; }
    100% { left: 160%; }
}

.festive-shop-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 32px rgba(245, 158, 11, 0.65), 0 0 20px rgba(254, 240, 138, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #fef08a 40%, #fbbf24 80%, #f59e0b 100%);
    color: #022c22 !important;
}

.festive-shop-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.festive-shop-btn:hover svg {
    transform: translateX(3px);
}

/* ====================================================
   3 SMALLER DISCOUNT CATEGORY CARDS
   ==================================================== */
.festive-deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 6px;
}

.festive-deal-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.32);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.festive-deal-card:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: #fef08a;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3), 0 0 20px rgba(245, 158, 11, 0.25);
}

.deal-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.deal-card-badge.badge-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.deal-card-badge.badge-gold {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    color: #1e293b;
    border-color: #fffbeb;
}

.deal-card-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

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

.festive-deal-card:hover .deal-card-img {
    transform: scale(1.12);
}

.deal-card-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.deal-title {
    font-size: 13.5px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.25;
}

.deal-sub {
    font-size: 11px;
    font-weight: 500;
    color: #d1fae5;
    margin: 0;
    line-height: 1.3;
    opacity: 0.9;
}

.deal-link-text {
    font-size: 11.5px;
    font-weight: 700;
    color: #fef08a;
    margin-top: 4px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.festive-deal-card:hover .deal-link-text {
    transform: translateX(3px);
    color: #ffffff;
}

/* Right Festive Visual Showcase Card */
.festive-visual-showcase {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.festive-card-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
    border-radius: 20px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(251, 191, 36, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 35px rgba(245, 158, 11, 0.25);
    animation: cardFloat 5s ease-in-out infinite alternate;
    transition: transform 0.4s ease;
}

@keyframes cardFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.festive-card-frame:hover {
    transform: translateY(-12px) scale(1.02);
}

.festive-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    line-height: 0;
}

.festive-hamper-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.festive-card-frame:hover .festive-hamper-img {
    transform: scale(1.04);
}

.festive-floating-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(2, 44, 34, 0.92);
    border: 1.5px solid #fef08a;
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 7px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(245, 158, 11, 0.3);
    animation: badgeFloatTag 4s ease-in-out infinite alternate;
}

@keyframes badgeFloatTag {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

.festive-floating-badge .badge-icon {
    font-size: 16px;
}

.festive-floating-badge .badge-meta strong {
    font-size: 11.5px;
    display: block;
    color: #fef08a;
}

.festive-floating-badge .badge-meta span {
    font-size: 10px;
    color: #a7f3d0;
}

/* Responsive Breakpoints */
@media screen and (max-width: 1100px) {
    .festive-promo-card {
        grid-template-columns: 1fr;
        padding: 34px 28px;
        gap: 28px;
    }
    
    .festive-shop-btn {
        margin-left: 0;
    }
    
    .festive-card-frame {
        max-width: 420px;
    }
}

@media screen and (max-width: 767px) {
    .festive-deals-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .festive-deal-card {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .festive-headline {
        font-size: 28px;
    }
    
    .festive-hero-offer-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .festive-shop-btn {
        width: 100%;
    }
}

@media screen and (max-width: 575px) {
    .festive-promo-section {
        padding: 18px 12px;
    }
    
    .festive-promo-card {
        padding: 24px 16px;
        border-radius: 20px;
    }
    
    .festive-headline {
        font-size: 24px;
    }
    
    .festive-subtitle {
        font-size: 13.5px;
    }
    
    .festive-discount-pill {
        font-size: 16px;
        padding: 7px 14px;
    }
    
    .festive-lanterns-wrapper {
        padding: 0 12px;
    }
}

/* ====================================================
   FESTIVE PROMOTIONAL POPUP MODAL (BLINK-UP DIALOG)
   ==================================================== */
.festive-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 20, 16, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
    padding: 20px;
    box-sizing: border-box;
}

.festive-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.festive-modal-container {
    position: relative;
    width: 100%;
    max-width: 1060px;
    max-height: 92vh;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 28px;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 35px 80px -10px rgba(0, 0, 0, 0.75), 0 0 50px rgba(245, 158, 11, 0.35);
    scrollbar-width: thin;
    scrollbar-color: rgba(251, 191, 36, 0.4) transparent;
}

.festive-modal-container::-webkit-scrollbar {
    width: 6px;
}

.festive-modal-container::-webkit-scrollbar-thumb {
    background: rgba(251, 191, 36, 0.4);
    border-radius: 4px;
}

.festive-modal-overlay.show .festive-modal-container {
    transform: scale(1) translateY(0);
}

.festive-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 25;
    background: rgba(0, 0, 0, 0.5);
    border: 1.5px solid rgba(251, 191, 36, 0.75);
    color: #ffffff;
    font-size: 24px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.festive-modal-close:hover {
    background: #ef4444;
    border-color: #fca5a5;
    color: #ffffff;
    transform: rotate(90deg) scale(1.1);
}

.festive-modal-card {
    border-radius: 28px !important;
    border: 2px solid rgba(251, 191, 36, 0.6) !important;
}

.festive-copy-hint {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 4px;
    background: rgba(251, 191, 36, 0.25);
    color: #fef08a;
    margin-left: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.festive-code-box:hover .festive-copy-hint {
    background: #f59e0b;
    color: #022c22;
}

.festive-modal-footer {
    text-align: center;
    padding: 12px 0 6px 0;
    background: rgba(2, 44, 34, 0.95);
    border-top: 1px solid rgba(251, 191, 36, 0.2);
}

.festive-skip-link {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.festive-skip-link:hover {
    color: #fef08a;
}

/* Mobile Compact & Centered Fit for Festive Offer Popup Modal */
@media screen and (max-width: 767px) {
    .festive-modal-overlay {
        padding: 10px 8px !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }
    
    .festive-modal-container {
        width: 92% !important;
        max-width: 360px !important;
        max-height: 88vh !important;
        height: auto !important;
        border-radius: 16px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(245, 158, 11, 0.25) !important;
        margin: auto !important;
    }
    
    .festive-modal-card {
        padding: 10px 10px 6px 10px !important;
        border-radius: 16px !important;
        gap: 4px !important;
        display: flex !important;
        flex-direction: column !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    .festive-modal-close {
        top: 6px !important;
        right: 6px !important;
        width: 24px !important;
        height: 24px !important;
        font-size: 15px !important;
        z-index: 50 !important;
        background: rgba(0, 0, 0, 0.7) !important;
        border: 1.5px solid #f59e0b !important;
        color: #ffffff !important;
    }

    .festive-lanterns-wrapper {
        display: none !important;
    }

    .festive-main-content {
        gap: 4px !important;
    }

    .festive-header-block {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin-bottom: 2px !important;
        padding-top: 0 !important;
        width: 100% !important;
    }

    .festive-pill-tag {
        font-size: 8.5px !important;
        padding: 2px 7px !important;
        margin: 0 auto 3px auto !important;
        align-self: center !important;
        letter-spacing: 0.5px !important;
    }

    .festive-headline {
        font-size: 15px !important;
        line-height: 1.2 !important;
        margin: 0 0 2px 0 !important;
        text-align: center !important;
        width: 100% !important;
        word-wrap: break-word !important;
    }

    .festive-subtitle {
        font-size: 9.5px !important;
        line-height: 1.25 !important;
        margin: 0 0 4px 0 !important;
        text-align: center !important;
        width: 100% !important;
        opacity: 0.9 !important;
    }

    /* Hero Offer Row: Centered offer pills and full-width CTA button */
    .festive-hero-offer-row {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        margin-bottom: 4px !important;
        width: 100% !important;
    }

    .festive-discount-pill {
        font-size: 9px !important;
        padding: 3px 8px !important;
        text-align: center !important;
        border-radius: 8px !important;
        white-space: nowrap !important;
        flex: 1 1 auto !important;
        justify-content: center !important;
    }

    .festive-code-box {
        font-size: 9px !important;
        padding: 3px 8px !important;
        justify-content: center !important;
        border-radius: 6px !important;
        white-space: nowrap !important;
        flex: 1 1 auto !important;
    }

    .festive-shop-btn {
        width: 100% !important;
        font-size: 10.5px !important;
        font-weight: 800 !important;
        padding: 5px 12px !important;
        height: 26px !important;
        border-radius: 999px !important;
        justify-content: center !important;
        text-align: center !important;
        white-space: nowrap !important;
        margin: 2px 0 0 0 !important;
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4) !important;
    }

    /* 3 Deal Cards in Sleek Micro Vertical List on Mobile */
    .festive-deals-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
        margin-bottom: 4px !important;
        width: 100% !important;
    }

    .festive-deal-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 4px 6px !important;
        border-radius: 8px !important;
        gap: 6px !important;
        position: relative !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(251, 191, 36, 0.35) !important;
    }

    .deal-card-icon-wrap {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        border-radius: 6px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    .deal-card-img {
        width: 24px !important;
        height: 24px !important;
        border-radius: 6px !important;
        object-fit: cover !important;
    }

    .deal-card-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        flex: 1 !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .deal-title {
        font-size: 9.5px !important;
        font-weight: 700 !important;
        line-height: 1.15 !important;
        margin: 0 !important;
        text-align: left !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 100% !important;
        color: #ffffff !important;
    }

    .deal-sub {
        display: none !important;
    }

    .deal-link-text {
        display: none !important;
    }

    .deal-card-badge {
        position: static !important;
        font-size: 8px !important;
        font-weight: 800 !important;
        padding: 2px 5px !important;
        border-radius: 4px !important;
        flex-shrink: 0 !important;
        margin-left: auto !important;
    }

    /* Dussehra Festive Banner Image Showcase */
    .festive-visual-showcase {
        margin-top: 2px !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .festive-card-frame {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        border: 1px solid rgba(251, 191, 36, 0.35) !important;
        background: transparent !important;
        padding: 0 !important;
        animation: none !important;
        box-shadow: none !important;
    }

    .festive-img-wrap {
        width: 100% !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }

    .festive-hamper-img {
        width: 100% !important;
        height: auto !important;
        max-height: 120px !important;
        object-fit: contain !important;
        display: block !important;
        border-radius: 8px !important;
        margin: 0 auto !important;
    }

    .festive-modal-footer {
        padding: 4px 0 2px 0 !important;
    }

    .festive-skip-link {
        font-size: 9.5px !important;
        color: rgba(255, 255, 255, 0.75) !important;
    }
}

@media screen and (max-width: 380px) {
    .festive-modal-container {
        width: 95% !important;
        max-width: 320px !important;
    }
    
    .festive-headline {
        font-size: 13.5px !important;
    }
    
    .festive-hamper-img {
        max-height: 100px !important;
    }
}

/* Banner Highlight Text */
.banner-highlight {
    background: #50001a;
    color: #ffffff;
    text-align: center;
    padding: 8px 10px;
    margin: 0;
    line-height: 1.2;
    overflow: hidden;
}

.af-heading {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    display: inline-block;
    transform: scaleY(0.74);
    transform-origin: center;
}

@media (max-width: 768px) {
    .af-heading {
        font-size: 14px;
        letter-spacing: 0.8px;
    }
}

/* Categories Section */
.categories-section {
    max-width: var(--max-width);
    margin: 30px auto 60px;
    padding: 0 24px;
}

.section-title {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 12px auto 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    justify-content: center;
}

.category-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.category-img-container {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.category-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-img-container {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(var(--color-primary-rgb), 0.15);
}

.category-card:hover .category-img-container img {
    transform: scale(1.1);
}

.category-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-text-dark);
}

/* Products Section (Slider) */
.products-carousel-section {
    width: 100%;
    padding: 60px 0;
    margin: 0;
}

.products-carousel-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Specific Gradients & Background Colors */
.sec-favorites, .sec-dryfruits, .sec-seeds {
    background: linear-gradient(135deg, #eceee8, #ffffff);
}
.sec-wellness, .sec-oils, .sec-powders, .sec-spicecollection {
    background: #ffffff;
}
.sec-wellness .title, .sec-wellness .card__heading, .sec-wellness .sale-price, .sec-wellness .regular-price,
.sec-oils .title, .sec-oils .card__heading, .sec-oils .sale-price, .sec-oils .regular-price,
.sec-powders .title, .sec-powders .card__heading, .sec-powders .sale-price, .sec-powders .regular-price,
.sec-spicecollection .title, .sec-spicecollection .card__heading, .sec-spicecollection .sale-price, .sec-spicecollection .regular-price {
    color: #004005 !important;
}

.section-header-wrap {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.section-header-wrap .title {
    display: inline-block;
    position: relative;
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 2.2rem;
    margin: 0;
}

.section-header-wrap .title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 8px auto 0;
}

.discount-badge {
    position: absolute;
    top: 50%;
    left: calc(100% + 15px);
    transform: translateY(-50%);
    background-color: #ff5252;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.product-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.products-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 4px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

.products-grid::-webkit-scrollbar {
    display: none; /* Hide Chrome/Safari/Opera scrollbar */
}

.slider-arrow {
    position: absolute;
    background-color: #ffffff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

.slider-arrow:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.slider-arrow.prev {
    left: -22px;
}

.slider-arrow.next {
    right: -22px;
}

/* Product Card */
.product-card {
    flex: 0 0 calc(20% - 16px); /* 5 cards per row on desktop */
    min-width: 200px;
    max-width: 240px;
    scroll-snap-align: start;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    box-sizing: border-box;
}

.product-card-link {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    height: auto !important;
    min-height: 0 !important;
    text-decoration: none !important;
    color: inherit !important;
    width: 100% !important;
    cursor: pointer !important;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(var(--color-primary-rgb), 0.3);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 155px;
    min-height: 155px;
    max-height: 155px;
    overflow: hidden;
    background-color: #ffffff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
}

.product-image-container img {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 8px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    box-sizing: border-box;
}

.product-image-container .primary-img {
    z-index: 1;
    opacity: 1;
}

.product-image-container .hover-img {
    z-index: 2;
    opacity: 0;
    pointer-events: none;
}

.product-card:hover .product-image-container img {
    transform: scale(1.04);
}

.product-card:hover .product-image-container:has(.hover-img) .primary-img,
.product-card:hover .product-image-container.has-second-img .primary-img {
    opacity: 0;
}

.product-card:hover .product-image-container .hover-img {
    opacity: 1;
}

.card-discount-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: #007a55;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    z-index: 5;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Heart-Shaped Wishlist Icon on Every Product Card */
.product-card-wishlist-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(226, 232, 240, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    padding: 0;
}

.product-card-wishlist-btn:hover {
    background: #ffffff;
    color: #ef4444;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.product-card-wishlist-btn.active {
    background: #fef2f2;
    color: #ef4444;
    border-color: #fca5a5;
}

.product-card-wishlist-btn.active svg {
    fill: #ef4444;
    stroke: #ef4444;
}

.product-info {
    padding: 12px 14px 8px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.card__heading {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-dark);
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    line-height: 21px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    margin: 4px 0 6px 0;
    width: 100%;
    text-align: center;
    text-transform: capitalize;
}

.rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    margin: 2px 0 8px 0;
    font-size: 0.85rem;
    width: 100%;
}

.rating-stars {
    color: #ffb400;
    letter-spacing: 2px;
    line-height: 1;
}

.rating-text {
    color: var(--color-text-muted);
    line-height: 1;
    white-space: nowrap;
}

.price-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
    height: 26px;
    min-height: 26px;
    max-height: 26px;
    margin: auto 0 8px 0;
    width: 100%;
    overflow: hidden;
}

.sale-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-primary);
    white-space: nowrap;
    line-height: 1;
    flex-shrink: 0;
}

.regular-price {
    font-size: 12.5px;
    color: #999999;
    text-decoration: line-through;
    white-space: nowrap;
    line-height: 1;
    flex-shrink: 0;
}

.add-to-cart-btn {
    background-color: var(--color-primary);
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
    padding: 10px 16px;
    width: 100%;
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    border: none;
    border-radius: 0 0 11px 11px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-top: auto;
    flex-shrink: 0;
}

.add-to-cart-btn:hover {
    background-color: var(--color-dark-bg);
}

.add-to-cart-btn.disabled,
.add-to-cart-btn:disabled {
    background-color: #f1f5f9 !important;
    color: #94a3b8 !important;
    cursor: not-allowed !important;
    border-color: #cbd5e1 !important;
    opacity: 0.85;
}

.card-out-of-stock-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc2626;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* WE BELIEVE IN Section */
.believe-in-section {
    background-color: #094b3d;
    padding: 80px 24px;
    text-align: center;
}

.af-believe-heading {
    display: inline-block;
    background: #00523D;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

.believe-grid {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
}

.believe-card {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    text-align: center;
}

.believe-card:hover {
    transform: none;
}

.believe-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    margin-bottom: 8px;
}

.believe-card h3 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.believe-card p {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
    color: #f1f1f1;
}

/* Chilli Process Banner */
.process-banner {
    background: #fbf5dc;
    padding: 80px 24px;
    text-align: center;
    width: 100%;
    margin: 0;
}

.chilli-premium-title {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 2.6rem;
    margin-bottom: 50px;
    line-height: 1.3;
}

.chilli-premium-title span {
    font-size: 2rem;
    font-weight: normal;
    color: var(--color-text-dark);
}

.process-images {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-img-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.process-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Native Ingredients Section */
.native-ingredients-section {
    background-color: #f7f0d4;
    padding: 40px 24px;
    text-align: center;
    width: 100%;
    margin: 0;
}

.native-heading {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 2.6rem;
    margin-bottom: 50px;
    line-height: 1.3;
}

.native-heading span {
    font-size: 2rem;
    font-weight: normal;
    color: var(--color-text-dark);
}

.native-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.native-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.native-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Science Meets Tradition (Oils Process) */
.process-section {
    background: #dbf5d6;
    padding: 70px 20px;
    text-align: center;
    overflow: hidden;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: #4e7d3a;
    margin-bottom: 50px;
}

.process-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.process-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f7f0dc;
    min-height: 480px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    flex: 0 0 auto;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.process-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 35px 15px;
    }

    .process-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .process-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .process-grid::-webkit-scrollbar {
        display: none;
    }

    .process-card {
        min-width: 200px;
        max-width: 220px;
        height: 250px;
        min-height: 250px;
        max-height: 250px;
        border-radius: 14px;
        scroll-snap-align: start;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        background: #ffffff;
    }

    .process-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        display: block;
        background: #ffffff;
    }
}

/* FAQs Section Accordion */
.faq-section {
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 0 20px;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c2c2c;
    text-align: left;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0; /* stacked accordions */
}

.faq-item {
    border: 1px solid #094b3d;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-question {
    background: #094b3d;
    color: #ffffff;
    padding: 18px 22px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
}

.faq-question span {
    font-size: 26px;
    font-weight: normal;
}

.faq-answer {
    background: #fffdf5;
    padding: 20px 22px;
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    font-family: "Georgia", "Times New Roman", serif;
    display: none;
    border-top: 1px solid #e2e2e2;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Trust / Feature Section */
.feature-section {
    width: 100%;
    background-color: #ffffff;
    padding: 40px 20px 60px;
    border-top: 1px dashed #ccc;
}

.feature-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-box {
    background: #094b3d;
    color: #ffffff;
    border-radius: 14px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 34px;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 18px;
    font-weight: 600;
}

/* Partners Network */
.partners-section {
    background-color: #f7f9fa;
    padding: 60px 24px;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.partners-title {
    font-family: var(--font-heading);
    color: #0e2238;
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partners-subtitle {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 40px;
}

.partners-container {
    max-width: 960px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partners-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 160px;
    height: 130px;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border-color: #cbd5e1;
}

.partner-card.highlighted {
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.12);
}

.partner-card img {
    height: 42px;
    width: auto;
    max-width: 85%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-card:hover img {
    transform: scale(1.05);
}

.partner-card span {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
}

/* Payment Methods Section */
.payment-methods-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 16px 24px;
    background: #003805;
    background: linear-gradient(180deg, #0b3718 0%, #005d4a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.payment-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    white-space: nowrap;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 38px;
    width: auto;
    max-width: 76px;
    background-color: #ffffff;
    padding: 4px 12px;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.25s ease;
}

.payment-icons img:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

@media screen and (max-width: 767px) {
    .payment-methods-section {
        flex-direction: column;
        gap: 12px;
        padding: 14px 16px;
    }
    .payment-title {
        font-size: 1rem;
    }
    .payment-icons img {
        height: 32px;
        padding: 3px 8px;
    }
}

/* Footer Banner Wrapper - Seamless Zero-Gap Connection */
.footer-banner-wrapper {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    margin-top: 0 !important;
    margin-bottom: -4px !important;
    padding: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    overflow: hidden !important;
    z-index: 2 !important;
    display: block !important;
    background-color: transparent !important;
    box-sizing: border-box !important;
}

.footer-banner-img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: bottom !important;
    border: none !important;
    outline: none !important;
    object-fit: cover !important;
}

@media screen and (max-width: 767px) {
    .footer-banner-wrapper {
        margin-top: 0 !important;
        margin-bottom: -3px !important;
        padding: 0 !important;
    }
}

/* Main Footer styling */
.main-footer {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    margin-top: 0 !important;
    background: linear-gradient(180deg, #005d4a 0%, #0B3214 100%);
    color: #e2e8f0;
    padding: 60px 24px 40px;
    overflow: visible;
    box-sizing: border-box !important;
}

.main-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 20%, rgba(189,163,128,.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(189,163,128,.1) 0%, transparent 50%),
      radial-gradient(circle at 40% 40%, rgba(189,163,128,.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-top {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-logo {
    max-width: 220px;
    height: auto;
    display: block;
    padding-top: 6px;
    margin-bottom: 4px;
}

.office-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #cbd5e1;
}

.footer-newsletter {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 320px;
}

.footer-newsletter .newsletter-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin: 0;
}

.footer-newsletter-input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.15);
    color: #e6f3ef;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-input:focus {
    border-color: #ffffff;
    background: rgba(0,0,0,0.22);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 25px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.copyright-text {
    font-size: 13px;
    color: #cbd5e1;
    letter-spacing: .3px;
    line-height: 1.4;
}

.footer-accordion-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    pointer-events: none; /* Disable click on desktop */
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #ffffff; /* Bright crisp white for high contrast */
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 4px;
}

.footer-accordion-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: linear-gradient(135deg, #BDA380, #D4B896);
    border-radius: 2px;
}

.footer-arrow {
    display: none; /* Hide toggle symbol on desktop */
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list li a {
    color: #cbd5e1;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links-list li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #BDA380;
    transition: width .3s ease;
}

.footer-links-list li a:hover {
    color: #BDA380;
    padding-left: 6px;
    text-shadow: 0 0 10px rgba(189,163,128,.6);
}

.footer-links-list li a:hover::before {
    width: 100%;
}

.help-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-item {
    font-size: 0.95rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .3s ease;
}

.help-item:hover {
    color: #BDA380;
}

.help-item a {
    color: inherit;
}

.help-item a:hover {
    color: #BDA380;
    text-shadow: 0 0 10px rgba(189,163,128,.6);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #BDA380;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}

.social-icon-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #BDA380, #D4B896);
    opacity: 0;
    transition: opacity .3s ease;
}

.social-icon-btn:hover::before {
    opacity: 1;
}

.social-icon-btn svg {
    position: relative;
    z-index: 1;
    transition: color .3s ease;
}

.social-icon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(189,163,128,.5);
}

.social-icon-btn:hover svg {
    color: #1e293b;
}

/* Floating Widgets styling */
.whatsapp-float-btn {
    position: fixed;
    bottom: 120px;
    right: 20px;
    background-color: #25d366;
    color: #ffffff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9998;
    transition: all 0.3s ease;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

.sticky-cart-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9997;
    display: flex;
    flex-direction: column;
    width: 240px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 93, 74, 0.25);
    text-decoration: none;
    border: 1px solid rgba(0, 93, 74, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cart-bar:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 93, 74, 0.35);
}

.cart-bar-header {
    background-color: #dcf3df;
    color: #005d4a;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    padding: 6px 10px;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.cart-bar-body {
    background-color: #005d4a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.cart-bar-icon {
    font-size: 16px;
}

.cart-bar-link {
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
}

.bottom-left-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #ffffff;
    color: #333333;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.bottom-left-popup.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.close-popup-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    color: #999999;
}

.close-popup-btn:hover {
    color: #333333;
}

@media screen and (max-width: 767px) {
    .whatsapp-float-btn {
        bottom: 140px;
        right: 14px;
        width: 48px;
        height: 48px;
        z-index: 9997;
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
    .whatsapp-float-btn svg {
        width: 26px;
        height: 26px;
    }
    .sticky-cart-bar {
        bottom: 64px;
        right: 12px;
        left: auto;
        width: 210px;
        padding: 0;
        z-index: 9998;
        border-radius: 10px;
    }
    .bottom-left-popup {
        display: none !important; /* Hide intrusive promo popup on mobile screens to prevent UI clutter */
    }
    .carousel-control {
        display: none !important; /* Clean hero banner on mobile; navigation via auto-play and indicator dots */
    }
}

/* Mobile Bottom Fixed Nav Menu */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    justify-content: space-around;
    padding: 8px 0;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #666666;
}

.bottom-nav-item img {
    height: 24px;
    width: auto;
}

.bottom-nav-item.active {
    color: var(--color-primary);
}

/* Media Queries & Responsiveness */

@media screen and (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    .product-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media screen and (max-width: 991px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .header-actions .search-bar-container {
        display: none; /* Hide search bar from header, keep login/cart */
    }
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .announcement-bar {
        font-size: 0.75rem;
    }
    .af-heading {
        font-size: 1.6rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .category-img-container {
        width: 100px;
        height: 100px;
    }
    .category-name {
        font-size: 0.95rem;
    }
    .product-card {
        flex: 0 0 calc(50% - 12px);
    }
    .section-header-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .section-header-wrap .title {
        display: block;
        font-size: 1.5rem;
    }
    .discount-badge {
        position: static;
        transform: none;
        display: inline-block;
        margin-top: 5px;
    }
    .footer-banner-wrapper {
        margin-top: 0 !important;
        margin-bottom: -3px !important;
    }
    .believe-grid {
        grid-template-columns: 1fr;
    }
    .process-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .process-img-item {
        max-height: 200px;
        border-radius: 14px;
    }
    .native-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .native-item {
        max-height: 180px;
    }
    .science-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .partners-grid {
        gap: 30px;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-accordion-btn {
        pointer-events: auto; /* Enable click */
    }
    .footer-arrow {
        display: block;
    }
    .footer-links-list {
        display: none; /* Collapse lists by default on mobile */
        margin-top: 12px;
    }
    .footer-links-list.show {
        display: flex;
    }
    .mobile-bottom-nav {
        display: flex;
    }
}

@media screen and (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-card {
        flex: 0 0 100%;
    }
    .science-grid {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================================================
   INTERACTIVE PRODUCT MODAL & E-COMMERCE STYLES
   ==================================================== */
.product-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.product-modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.product-modal-dialog {
    background: #ffffff;
    border-radius: 16px;
    max-width: 960px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    padding: 36px 40px;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-modal-backdrop.open .product-modal-dialog {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 22px;
    background: #f1f5f9;
    border: none;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.product-modal-image-col {
    position: relative;
    background: #f8fafc;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f1f5f9;
}

.product-modal-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #005d4a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-modal-img-wrapper img {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-modal-img-wrapper img:hover {
    transform: scale(1.04);
}

.product-modal-info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-modal-brand {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #64748b;
    text-transform: uppercase;
}

.product-modal-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.product-modal-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.stars-gold {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 2px;
}

.review-count {
    color: #64748b;
    font-weight: 500;
}

.product-modal-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 4px;
}

.modal-orig-price {
    font-size: 18px;
    color: #94a3b8;
    text-decoration: line-through;
}

.modal-sale-price {
    font-size: 26px;
    font-weight: 800;
    color: #005d4a;
}

.modal-sale-tag {
    background: #dcfce7;
    color: #166534;
    font-weight: 700;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 12px;
}

.modal-tax-note {
    font-size: 13px;
    color: #64748b;
}

.shipping-link {
    text-decoration: underline;
    cursor: pointer;
}

.modal-option-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.modal-option-label {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
}

.weight-pills-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.weight-pill {
    padding: 8px 20px;
    border-radius: 24px;
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.weight-pill:hover {
    border-color: #005d4a;
}

.weight-pill.active {
    background: #005d4a;
    color: #ffffff;
    border-color: #005d4a;
    box-shadow: 0 4px 12px rgba(0, 93, 74, 0.25);
}

.modal-quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
    width: 120px;
}

.modal-qty-btn {
    width: 36px;
    height: 38px;
    background: #f8fafc;
    border: none;
    font-size: 18px;
    font-weight: bold;
    color: #334155;
    cursor: pointer;
    transition: background 0.2s ease;
}

.modal-qty-btn:hover {
    background: #e2e8f0;
}

.modal-qty-input {
    width: 48px;
    height: 38px;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    outline: none;
}

.modal-cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

.modal-btn {
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    border: none;
}

.add-to-cart-cta {
    background: #ffffff;
    color: #005d4a;
    border: 2px solid #005d4a;
}

.add-to-cart-cta:hover {
    background: #f0fdf4;
}

.buy-now-cta {
    background: #005d4a;
    color: #ffffff;
}

.buy-now-cta:hover {
    background: #004738;
    box-shadow: 0 6px 18px rgba(0, 93, 74, 0.3);
}

.modal-description-box {
    margin-top: 20px;
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}

.modal-desc-heading {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.modal-desc-text {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

.modal-specs-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    background: #f8fafc;
    padding: 12px 14px;
    border-radius: 8px;
}

.spec-row strong {
    color: #334155;
}

/* ====================================================
   SLIDE-OVER CART DRAWER STYLES
   ==================================================== */
.cart-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background: #ffffff;
    z-index: 99999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
}

.cart-drawer-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.drawer-close-icon {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #64748b;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.free-shipping-bar-container {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 18px;
}

.free-shipping-text {
    font-size: 13px;
    color: #166534;
    margin-bottom: 6px;
}

.shipping-progress-track {
    width: 100%;
    height: 6px;
    background: #dcfce7;
    border-radius: 3px;
    overflow: hidden;
}

.shipping-progress-fill {
    height: 100%;
    background: #005d4a;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.empty-cart-state {
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.empty-cart-state h3 {
    font-size: 20px;
    color: #1e293b;
}

.empty-cart-state p {
    font-size: 14px;
    color: #64748b;
}

.start-shopping-btn {
    margin-top: 10px;
    padding: 10px 24px;
    background: #005d4a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

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

.cart-item-card {
    display: flex;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.cart-item-weight {
    font-size: 12px;
    color: #64748b;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 800;
    color: #005d4a;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
}

.cart-qty-picker {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    overflow: hidden;
}

.cart-qty-picker button {
    width: 28px;
    height: 26px;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.cart-qty-picker span {
    padding: 0 10px;
    font-size: 13px;
    font-weight: 700;
}

.remove-cart-item-btn {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 12px;
    cursor: pointer;
    font-weight: 600;
}

.cart-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.cart-subtotal-note {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 16px;
}

.drawer-checkout-btn {
    width: 100%;
    padding: 14px;
    background: #005d4a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.drawer-checkout-btn:hover {
    background: #004738;
}

/* ====================================================
   CHECKOUT & ORDER SUCCESS MODALS STYLES
   ==================================================== */
.checkout-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.checkout-modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.checkout-modal-dialog {
    background: #ffffff;
    border-radius: 16px;
    max-width: 880px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    padding: 30px 36px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
}

.checkout-pane-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #005d4a;
}

.checkout-items-mini-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 240px;
    overflow-y: auto;
    padding-right: 6px;
}

.mini-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 8px;
}

.mini-item-img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
}

.mini-item-info {
    flex: 1;
}

.mini-item-title {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.mini-item-meta {
    font-size: 11px;
    color: #64748b;
}

.mini-item-price {
    font-size: 13px;
    font-weight: 700;
    color: #005d4a;
}

.checkout-totals {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f1f5f9;
    padding: 14px;
    border-radius: 8px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #475569;
}

.total-row.grand-total {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    padding-top: 8px;
    border-top: 1px solid #cbd5e1;
}

.checkout-form-pane form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
}

.form-control {
    padding: 10px 12px;
    border: 1.5px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    border-color: #005d4a;
}

.form-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-radio-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.payment-radio-card:has(input:checked) {
    border-color: #005d4a;
    background: #f0fdf4;
}

.place-order-submit-btn {
    margin-top: 8px;
    padding: 14px;
    background: #005d4a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease;
}

.place-order-submit-btn:hover {
    background: #004738;
}

.order-success-box {
    text-align: center;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.success-checkmark-icon {
    width: 64px;
    height: 64px;
    background: #005d4a;
    color: #ffffff;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 93, 74, 0.3);
}

.order-ref-badge {
    background: #f1f5f9;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 15px;
    color: #334155;
}

.order-notice-text {
    font-size: 14px;
    color: #64748b;
    max-width: 400px;
}

.continue-shopping-btn {
    margin-top: 10px;
    padding: 12px 30px;
    background: #005d4a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

/* Toast notification */
.arshith-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(40px);
    background: #0f172a;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 100001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.arshith-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media screen and (max-width: 768px) {
    .product-modal-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    .product-modal-dialog {
        padding: 24px;
    }
}

/* ====================================================
   COLLECTIONS PAGE STYLES
   ==================================================== */
.collections-page-wrapper {
    background: #f8fafc;
    min-height: 80vh;
    padding-bottom: 60px;
}

.collection-hero-banner {
    background: linear-gradient(135deg, #0b3718 0%, #005d4a 60%, #007a62 100%);
    color: #ffffff;
    padding: 48px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.collection-hero-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 8px;
}

.collection-hero-breadcrumbs {
    font-size: 14px;
    color: #cbd5e1;
}

.collection-hero-breadcrumbs a {
    color: #ffffff;
    text-decoration: underline;
}

.category-pills-bar {
    max-width: var(--max-width);
    margin: 24px auto 0;
    padding: 0 24px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}
.category-pills-bar::-webkit-scrollbar {
    display: none;
}

.category-pill {
    padding: 10px 20px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-pill:hover {
    border-color: #005d4a;
    color: #005d4a;
}

.category-pill.active {
    background: #005d4a;
    color: #ffffff;
    border-color: #005d4a;
    box-shadow: 0 4px 14px rgba(0, 93, 74, 0.25);
}

.collection-main-layout {
    max-width: var(--max-width);
    margin: 32px auto 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

.collection-sidebar-filter {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    height: fit-content;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group-title {
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-range-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-range-wrap input[type="range"] {
    width: 100%;
    accent-color: #005d4a;
    cursor: pointer;
}

.price-range-val {
    font-size: 14px;
    font-weight: 600;
    color: #005d4a;
}

.sort-select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    color: #334155;
    background: #ffffff;
    cursor: pointer;
}

.collection-products-pane {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.collection-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.products-count-lbl {
    font-size: 15px;
    font-weight: 600;
    color: #475569;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.quick-view-btn {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(255, 255, 255, 0.95);
    color: #005d4a;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid #005d4a;
    cursor: pointer;
}

.product-image-container:hover .quick-view-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-brand {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* ====================================================
   PRODUCT DETAIL PAGE STYLES
   ==================================================== */
.product-detail-page-wrapper {
    background: #ffffff;
    min-height: 80vh;
    padding: 40px 24px 80px;
}

.product-detail-container-box {
    max-width: 1300px;
    margin: 0 auto;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.product-gallery-pane {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.main-gallery-stage {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.main-gallery-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.main-gallery-stage:hover .main-gallery-img {
    transform: scale(1.04);
}

.gallery-thumbs-row {
    display: flex;
    gap: 12px;
}

.thumb-item {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.thumb-item.active, .thumb-item:hover {
    border-color: #005d4a;
    box-shadow: 0 2px 8px rgba(0, 93, 74, 0.2);
}

.product-summary-pane {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-breadcrumb {
    font-size: 14px;
    color: #64748b;
}

.product-breadcrumb a {
    color: #005d4a;
    font-weight: 600;
}

.product-brand-tag {
    font-size: 12px;
    font-weight: 800;
    color: #005d4a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-main-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.product-ratings-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.rating-score {
    font-weight: 700;
    color: #0f172a;
}

.rating-count {
    color: #64748b;
}

.product-price-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.detail-sale-price {
    font-size: 32px;
    font-weight: 800;
    color: #005d4a;
}

.detail-orig-price {
    font-size: 20px;
    color: #94a3b8;
    text-decoration: line-through;
}

.detail-savings-badge {
    background: #dcfce7;
    color: #15803d;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.stock-status-badge {
    font-size: 14px;
    font-weight: 700;
    color: #16a34a;
}

.variant-picker-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.variant-label {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
}

.variant-pills-wrap {
    display: flex;
    gap: 10px;
}

.variant-pill {
    padding: 10px 20px;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
}

.variant-pill.active {
    border-color: #005d4a;
    background: #f0fdf4;
    color: #005d4a;
}

.detail-cta-row {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.detail-qty-picker {
    display: flex;
    align-items: center;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    padding: 12px 18px;
    font-size: 18px;
    font-weight: 700;
    background: #f8fafc;
    cursor: pointer;
}

.qty-val {
    padding: 0 16px;
    font-weight: 700;
    font-size: 16px;
}

.add-to-cart-cta-btn {
    flex: 1;
    padding: 14px 24px;
    background: #005d4a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.add-to-cart-cta-btn:hover {
    background: #004738;
}

.buy-now-cta-btn {
    flex: 1;
    padding: 14px 24px;
    background: #d97706;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.buy-now-cta-btn:hover {
    background: #b45309;
}

.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
}

.trust-feature-card {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.feature-icon {
    font-size: 20px;
}

.product-specs-accordion {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-tab {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 20px;
}

.tab-header {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.tab-content {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.tab-content ul {
    list-style-type: square;
    padding-left: 20px;
}

.customer-reviews-section {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 2px solid #f1f5f9;
}

.reviews-section-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
}

.reviews-summary-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
}

.score-card {
    text-align: center;
}

.big-score {
    font-size: 56px;
    font-weight: 900;
    color: #005d4a;
    line-height: 1;
}

.total-reviews-lbl {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

.score-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.bar-row {
    display: grid;
    grid-template-columns: 60px 1fr 40px;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.bar-track {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #005d4a;
}

.related-products-section {
    max-width: 1300px;
    margin: 64px auto 0;
}

.related-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* ====================================================
   SELLER, LOGIN & CART STANDALONE PAGES
   ==================================================== */
.standalone-page-container {
    max-width: 900px;
    margin: 48px auto;
    padding: 0 24px;
}

.auth-card-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.auth-header-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #0f172a;
    margin-bottom: 24px;
}

.seller-hero-box {
    background: linear-gradient(135deg, #0b3718 0%, #005d4a 100%);
    color: #ffffff;
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    margin-bottom: 40px;
}

.seller-hero-box h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 12px;
}

.seller-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.benefit-card h3 {
    margin: 12px 0 8px;
    font-size: 18px;
    color: #0f172a;
}

.benefit-card p {
    font-size: 14px;
    color: #64748b;
}

@media screen and (max-width: 900px) {
    .collection-main-layout {
        grid-template-columns: 1fr;
    }
    .product-detail-layout {
        grid-template-columns: 1fr;
    }
    .seller-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================================================
   PREMIUM DESIGN & VISUAL POLISH ENHANCEMENTS
   ==================================================== */
.collection-hero-banner {
    background: linear-gradient(135deg, #072a12 0%, #0f7139 50%, #005d4a 100%) !important;
    position: relative;
    overflow: hidden;
    padding: 60px 24px !important;
}

.collection-hero-banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.collection-hero-title {
    font-size: 42px !important;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.category-pill {
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.category-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 113, 57, 0.15);
}

.category-pill.active {
    background: linear-gradient(135deg, #0f7139, #005d4a) !important;
    box-shadow: 0 6px 20px rgba(15, 113, 57, 0.3) !important;
}

.product-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(15, 113, 57, 0.12) !important;
}

.card-discount-tag {
    background: linear-gradient(135deg, #e11d48, #b91c1c) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 11px !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(185, 28, 28, 0.3);
}

.rating-stars {
    color: #f59e0b !important;
    letter-spacing: 2px;
}

.sale-price {
    color: #0f7139 !important;
    font-weight: 800 !important;
    font-size: 18px !important;
}

.regular-price {
    color: #94a3b8 !important;
    font-size: 14px !important;
}

.add-to-cart-btn {
    background: #0f7139 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    padding: 12px !important;
    transition: all 0.25s ease !important;
}

.add-to-cart-btn:hover {
    background: #0b3718 !important;
    transform: scale(1.02);
}

.detail-sale-price {
    color: #0f7139 !important;
    font-size: 36px !important;
}

.detail-savings-badge {
    background: #dcfce7 !important;
    color: #15803d !important;
    font-weight: 800 !important;
    border: 1px solid #bbf7d0;
}

.variant-pill {
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.variant-pill.active {
    background: #f0fdf4 !important;
    border-color: #0f7139 !important;
    color: #0f7139 !important;
    box-shadow: 0 0 0 2px rgba(15, 113, 57, 0.15);
}

.add-to-cart-cta-btn {
    background: linear-gradient(135deg, #0f7139, #005d4a) !important;
    box-shadow: 0 6px 20px rgba(15, 113, 57, 0.25);
}

.add-to-cart-cta-btn:hover {
    background: linear-gradient(135deg, #0b3718, #004738) !important;
}

.buy-now-cta-btn {
    background: linear-gradient(135deg, #d97706, #b45309) !important;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.25);
}

.buy-now-cta-btn:hover {
    background: linear-gradient(135deg, #b45309, #92400e) !important;
}

/* Item Added Notification Modal (Image 3 Match) */
.item-added-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    padding: 20px;
}

.item-added-modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.item-added-modal-dialog {
    background: #ffffff;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(12px);
    transition: transform 0.25s ease;
    position: relative;
}

.item-added-modal-backdrop.open .item-added-modal-dialog {
    transform: translateY(0);
}

.item-added-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.item-added-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 500;
    color: #0f7139;
    display: flex;
    align-items: center;
    gap: 8px;
}

.item-added-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}

.item-added-close-btn:hover {
    color: #0f7139;
}

.item-added-body {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.item-added-img {
    width: 75px;
    height: 85px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.item-added-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-added-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 500;
    color: #0f7139;
    margin: 0;
    line-height: 1.3;
}

.item-added-weight {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.item-added-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.item-added-view-cart-btn {
    width: 100%;
    height: 48px;
    border: 1.5px solid #0f7139;
    border-radius: 6px;
    background: #ffffff;
    color: #0f7139;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.item-added-view-cart-btn:hover {
    background-color: rgba(15, 113, 57, 0.06);
}

.item-added-checkout-btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 6px;
    background: #0f7139;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.item-added-checkout-btn:hover {
    background-color: #0b3718;
}

.item-added-continue-wrap {
    text-align: center;
    margin-top: 4px;
}

.item-added-continue-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    color: #0f7139;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.item-added-continue-link:hover {
    color: #0b3718;
}

/* ====================================================
   COLLECTIONS PAGE REDESIGN (PIC 1, PIC 2 & PIC 3 MATCH)
   ==================================================== */

/* 1. Circle Navigation Icons Bar (Pic 1) */
.collections-top-nav-bar {
    background-color: #ffffff;
    padding: 30px 20px 20px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #f1f5f9;
}

.category-circle-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
}

.category-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    width: 90px;
    cursor: pointer;
}

.circle-img-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid #0f7139;
    overflow: hidden;
    padding: 2px;
    background: #ffffff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.circle-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.category-circle-item:hover .circle-img-wrap,
.category-circle-item.active .circle-img-wrap {
    transform: scale(1.08);
    box-shadow: 0 0 0 3px rgba(15, 113, 57, 0.25);
}

.circle-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 12px;
    color: #0f7139;
    text-align: center;
    line-height: 1.25;
    font-weight: 500;
}

/* 2. Collection Page Title & Banner Slider (Pic 1 & Pic 2) */
.collection-hero-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 16px 20px 8px;
    box-sizing: border-box;
}

.collection-main-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-weight: 600;
    color: #0f7139;
    margin: 0 0 18px 0;
}

/* Category Featured Single Header Banner (Medium Proportional Banner) */
.category-featured-banner {
    position: relative;
    max-width: 1020px;
    width: 100%;
    height: auto;
    margin: 0 auto 22px;
    border-radius: 16px;
    background: #540224;
    box-shadow: 0 6px 20px rgba(84, 2, 36, 0.22);
    overflow: hidden;
    border: 1.5px solid rgba(189, 163, 128, 0.35);
}

.category-featured-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.category-featured-banner:hover img {
    transform: scale(1.015);
}

@media (max-width: 768px) {
    .category-featured-banner {
        max-width: 100%;
        border-radius: 12px;
        margin-bottom: 16px;
    }
    .category-featured-banner img {
        border-radius: 12px;
    }
}

.collection-banner-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 24px;
    background: #022c1b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.collection-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.collection-slide {
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 18px;
}

.collection-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 18px;
}

/* =======================================================
   COLLECTION LUXURY GREEN HERO BANNERS
   ======================================================= */
.collection-green-banner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: linear-gradient(135deg, #022c1b 0%, #064e3b 55%, #005d4a 100%) !important;
    border-radius: 20px !important;
    border: 1.5px solid rgba(189, 163, 128, 0.35) !important;
    box-shadow: 0 8px 24px rgba(0, 45, 34, 0.2) !important;
    min-height: 280px !important;
    max-height: 320px !important;
    padding: 28px 40px !important;
    box-sizing: border-box !important;
    position: relative !important;
    overflow: hidden !important;
}

.collection-green-banner.banner-variant-2 {
    background: linear-gradient(135deg, #0b3718 0%, #0f5132 55%, #185a31 100%) !important;
}

.collection-green-banner.banner-variant-spice {
    background: linear-gradient(135deg, #032e1e 0%, #094f34 55%, #0e6140 100%) !important;
}

.collection-green-banner.banner-variant-ghee {
    background: linear-gradient(135deg, #022a1b 0%, #05482e 55%, #0b5e3e 100%) !important;
}

.collection-green-banner.banner-variant-seeds {
    background: linear-gradient(135deg, #043825 0%, #0d5a3a 55%, #146e48 100%) !important;
}

.col-banner-content {
    flex: 1 1 58% !important;
    max-width: 580px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    z-index: 2 !important;
}

.col-banner-badge {
    background: rgba(0, 40, 30, 0.85) !important;
    border: 1px solid rgba(189, 163, 128, 0.4) !important;
    backdrop-filter: blur(6px) !important;
    color: #BDA380 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    padding: 4px 12px !important;
    border-radius: 9999px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 12px !important;
}

.col-banner-badge .badge-dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: #BDA380 !important;
    box-shadow: 0 0 6px #BDA380 !important;
}

.col-banner-title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    letter-spacing: -0.3px !important;
    margin: 0 0 10px 0 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
}

.col-banner-desc {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.95rem !important;
    color: #d1fae5 !important;
    font-weight: 400 !important;
    line-height: 1.45 !important;
    margin: 0 0 16px 0 !important;
    opacity: 0.95 !important;
}

.col-banner-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

.col-tag {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(189, 163, 128, 0.3) !important;
    color: #BDA380 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    letter-spacing: 0.4px !important;
}

.col-banner-img-wrap {
    flex: 1 1 42% !important;
    height: 100% !important;
    min-height: 220px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 2 !important;
}

.col-banner-img-wrap img {
    max-height: 220px !important;
    max-width: 100% !important;
    width: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35)) !important;
    transition: transform 0.4s ease !important;
}

.collection-green-banner:hover .col-banner-img-wrap img {
    transform: scale(1.05) !important;
}

@media (max-width: 768px) {
    .collection-green-banner {
        flex-direction: column !important;
        padding: 20px 16px !important;
        min-height: auto !important;
        max-height: none !important;
        text-align: center !important;
    }
    .col-banner-content {
        align-items: center !important;
        max-width: 100% !important;
        margin-bottom: 12px !important;
    }
    .col-banner-title {
        font-size: 1.4rem !important;
    }
    .col-banner-desc {
        font-size: 0.85rem !important;
    }
    .col-banner-tags {
        justify-content: center !important;
    }
    .col-banner-img-wrap {
        min-height: 160px !important;
    }
    .collection-banner-slider-wrapper,
    .collection-slide {
        height: auto !important;
        max-height: none !important;
        border-radius: 12px !important;
    }
    .collection-slide img {
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        border-radius: 12px !important;
    }
}

.collection-slider-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 38px !important;
    height: 38px !important;
    background: rgba(15, 113, 57, 0.9) !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    z-index: 15 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.25s ease !important;
    padding: 0 !important;
    user-select: none !important;
    outline: none !important;
    font-size: 0 !important; /* Hide raw html text child */
    backdrop-filter: blur(6px) !important;
}

.collection-slider-arrow::after {
    font-size: 22px;
    line-height: 1;
    font-weight: bold;
    display: block;
}

.collection-slider-arrow.prev::after {
    content: "‹";
    margin-right: 1px;
}

.collection-slider-arrow.next::after {
    content: "›";
    margin-left: 1px;
}

.collection-slider-arrow:hover {
    background: #0f7139 !important;
    transform: translateY(-50%) scale(1.08) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35) !important;
}

.collection-slider-arrow.prev {
    left: 16px !important;
}

.collection-slider-arrow.next {
    right: 16px !important;
}

.collection-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 15;
    background: rgba(0, 0, 0, 0.45);
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

.collection-slider-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: all 0.3s ease;
}

.collection-slider-dots .dot.active {
    width: 24px;
    border-radius: 6px;
    background: #ffffff;
}

/* 3. Collection Layout (Sidebar & Product Grid - Pic 3) */
.collection-body-layout {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 20px 60px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 36px;
}

/* Sidebar Filters (Matching Images 1, 2 & 3) */
.sidebar-filter-pane {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: #0f7139;
    margin: 0 0 12px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.filter-accordion-item {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 16px;
}

.filter-accordion-header {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 500;
    color: #0f7139;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 4px 0;
}

.filter-accordion-header .chevron-icon {
    font-size: 14px;
    color: #0f7139;
    transition: transform 0.3s ease;
}

.filter-accordion-item.open .chevron-icon {
    transform: rotate(180deg);
}

.filter-accordion-body {
    padding-top: 12px;
    display: none; /* Hidden by default until header is clicked */
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: #0f7139;
}

.filter-accordion-item.open .filter-accordion-body {
    display: flex !important;
}

.price-highest-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    color: #0f7139;
    margin: 4px 0 12px 0;
}

.price-input-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.currency-symbol {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    color: #0f7139;
}

.price-input-box {
    flex: 1;
    border: 1.5px solid #0f7139;
    border-radius: 8px;
    padding: 8px 12px;
    background: #ffffff;
}

.price-input-box input {
    width: 100%;
    border: none;
    outline: none;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    color: #0f7139;
    background: transparent;
}

.price-input-box input::placeholder {
    color: #0f7139;
    opacity: 0.7;
}

.filter-checkbox-lbl {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14.5px;
    color: #0f7139;
    cursor: pointer;
}

.filter-checkbox-lbl input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 1px solid #0f7139;
    border-radius: 2px;
    accent-color: #0f7139;
    cursor: pointer;
}

/* Top Meta Row (Pic 3) */
.collection-top-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.sort-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
}

.sort-select-box {
    padding: 6px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    color: #334155;
    outline: none;
    background: #ffffff;
}

.products-count-text {
    font-size: 13.5px;
    color: #64748b;
}

/* Product Cards Grid */
/* Product Cards Grid */
.collections-product-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
    gap: 24px !important;
    width: 100% !important;
}

.collection-product-card-box {
    border: 1.5px solid #0f7139;
    border-radius: 12px;
    padding: 20px;
    background: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.collection-product-card-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(15, 113, 57, 0.12);
}

.card-discount-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #0f7139;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 3;
}

.card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-img-wrap {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 16px;
    background: #ffffff;
}

.product-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.product-card-img-wrap .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.collection-product-card-box:hover .hover-img {
    opacity: 1;
}

.collection-product-card-box:hover .product-card-img-wrap:has(.hover-img) .primary-img,
.collection-product-card-box:hover .product-card-img-wrap.has-second-img .primary-img {
    opacity: 0;
}

.card-title-serif {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    margin: 0 0 8px 0;
    line-height: 1.35;
    min-height: 44px;
}

.rating-stars-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.stars-green {
    color: #0f7139;
    font-size: 14px;
}

.reviews-count {
    font-size: 12px;
    color: #64748b;
}

.card-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
}

.card-orig-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 13px;
}

.card-from-sale {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    color: #0f7139;
}

.choose-options-btn {
    background-color: #0f7139;
    color: #ffffff;
    border: none;
    border-radius: 22px;
    width: 100%;
    height: 44px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.choose-options-btn:hover {
    background-color: #0b3718;
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .collection-body-layout {
        grid-template-columns: 1fr;
    }
}

/* Quick View Modal Styles (Matching User Image 2) */
.product-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.product-modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.product-modal-dialog {
    background: #ffffff;
    border-radius: 16px;
    max-width: 920px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-modal-backdrop.open .product-modal-dialog {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #64748b;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background: #f8fafc;
    color: #0f7139;
    border-color: #0f7139;
}

.quick-view-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.quick-view-img-col {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
}

.quick-view-img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
}

.quick-view-info-col {
    display: flex;
    flex-direction: column;
}

.quick-view-brand {
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #0f7139;
    font-weight: 600;
    margin-bottom: 6px;
    opacity: 0.8;
}

.quick-view-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    color: #0f7139;
    margin: 0 0 10px 0;
    line-height: 1.25;
}

.quick-view-stars {
    color: #0f7139;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.quick-view-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.quick-orig-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 14px;
}

.quick-sale-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: #0f7139;
}

.quick-sale-badge {
    background: #fef9c3;
    color: #854d0e;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 12px;
    border: 1px solid #fef08a;
}

.quick-view-tax-note {
    font-size: 12px;
    color: #64748b;
    margin: 0 0 20px 0;
}

.quick-view-tax-note a {
    color: #0f7139;
    text-decoration: underline;
}

.quick-variant-lbl {
    font-size: 13px;
    color: #334155;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

.quick-variant-section {
    margin-bottom: 20px;
}

.quick-variant-pills {
    display: flex;
    gap: 10px;
}

.quick-weight-pill {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1.5px solid #0f7139;
    background: #ffffff;
    color: #0f7139;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-weight-pill.active {
    background: #0f7139;
    color: #ffffff;
}

.quick-qty-section {
    margin-bottom: 24px;
}

.quick-qty-picker {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border: 1.5px solid #0f7139;
    border-radius: 6px;
    width: 130px;
    height: 44px;
    padding: 0 10px;
}

.quick-qty-picker button {
    border: none;
    background: transparent;
    font-size: 18px;
    color: #0f7139;
    cursor: pointer;
    width: 30px;
    height: 100%;
}

.quick-qty-picker span {
    font-size: 15px;
    font-weight: 600;
    color: #0f7139;
}

.quick-actions-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.quick-add-cart-btn {
    width: 100%;
    height: 48px;
    border: 1.5px solid #0f7139;
    background: #ffffff;
    color: #0f7139;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.quick-add-cart-btn:hover {
    background: #f0fdf4;
}

.quick-buy-now-btn {
    width: 100%;
    height: 48px;
    border: none;
    background: #0f7139;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.quick-buy-now-btn:hover {
    background: #0b3718;
}

.quick-view-full-details {
    margin-top: 10px;
}

.quick-view-full-details a {
    color: #0f7139;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.quick-view-full-details a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .quick-view-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product-modal-dialog {
        padding: 24px 16px;
    }
}

/* Policy Modal Popup Styling */
.policy-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.policy-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.policy-modal-dialog {
    background: #ffffff;
    border-radius: 12px;
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    padding: 30px 28px 24px 28px;
    animation: modalPopIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.policy-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: #f1f5f9;
    border: none;
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.policy-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.policy-modal-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    color: #0f7139;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.policy-modal-body {
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
}

.policy-modal-body h3 {
    font-size: 16px;
    color: #0f7139;
    margin: 18px 0 6px 0;
    font-weight: 600;
}

.policy-modal-body p {
    margin: 0 0 12px 0;
}

.policy-modal-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
}

.policy-close-btn {
    background: #0f7139;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.policy-close-btn:hover {
    background: #0b3718;
}

/* Interactive Auto Signup Popup Modal for Exploring Visitors */
.signup-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
    padding: 20px;
}

.signup-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.signup-modal-container {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    padding: 32px 28px 24px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.92) translateY(15px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    border: 1px solid #e2e8f0;
}

.signup-modal-overlay.show .signup-modal-container {
    transform: scale(1) translateY(0);
}

.signup-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: #f1f5f9;
    border: none;
    font-size: 22px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.signup-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.signup-modal-error {
    background: #fef2f2;
    border: 1.5px solid #fca5a5;
    color: #991b1b;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    line-height: 1.4;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.12);
    animation: shakeModalAlert 0.35s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.signup-modal-error i {
    font-size: 18px;
    color: #ef4444;
    flex-shrink: 0;
}

.signup-modal-error a {
    color: #0f7139;
    font-weight: 700;
    text-decoration: underline;
    margin-left: 4px;
}

@keyframes shakeModalAlert {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

.signup-modal-logo {
    height: 38px;
    object-fit: contain;
    margin-bottom: 12px;
}

.signup-offer-badge {
    display: inline-block;
    background: #dcfce7;
    color: #0f7139;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.signup-modal-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    color: #0f7139;
    margin: 0 0 6px 0;
    font-weight: 700;
}

.signup-modal-sub {
    font-size: 13.5px;
    color: #475569;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.signup-form-group {
    margin-bottom: 12px;
    text-align: left;
}

.signup-modal-input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    color: #0f172a;
    background: #f8fafc;
    outline: none;
    transition: all 0.2s ease;
}

.signup-modal-input:focus {
    border-color: #0f7139;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(15, 113, 57, 0.15);
}

.signup-modal-submit-btn {
    width: 100%;
    height: 48px;
    background: #0f7139;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.2s ease, transform 0.1s ease;
}

.signup-modal-submit-btn:hover {
    background: #0b3718;
}

.signup-modal-footer {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    font-size: 13px;
    color: #64748b;
}

.signup-login-link {
    color: #0f7139;
    font-weight: 600;
    text-decoration: underline;
}

.signup-skip-link {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 12px;
    cursor: pointer;
    margin-top: 10px;
    text-decoration: underline;
    display: block;
    width: 100%;
}

.signup-skip-link:hover {
    color: #64748b;
}

/* ==========================================================================
   LIVE SEARCH BAR SUGGESTIONS DROPDOWN & SAVED INFO STYLING
   ========================================================================== */
.search-bar-container, .search-form {
    position: relative;
}

.search-clear-btn {
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
    background: #cbd5e1;
    color: #475569;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.search-clear-btn:hover {
    background: #94a3b8;
    color: #ffffff;
}

.search-suggestions-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    min-width: 300px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
    z-index: 9999;
    display: none;
    overflow: hidden;
    max-height: 480px;
    overflow-y: auto;
    animation: searchDropIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-suggestions-dropdown.active {
    display: block !important;
}

@keyframes searchDropIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-suggestion-header {
    background: #f8fafc;
    padding: 10px 16px;
    font-size: 11.5px;
    font-weight: 700;
    color: #0f7139;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-bottom: 1px solid #e2e8f0;
    border-top: 1px solid #e2e8f0;
}

.search-suggestion-header:first-child {
    border-top: none;
}

.search-saved-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    font-size: 13.5px;
    color: #334155;
    cursor: pointer;
    transition: background 0.15s ease;
    border-bottom: 1px solid #f1f5f9;
}

.search-saved-info-row:hover {
    background: #f1f5f9;
}

.saved-info-label {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.delete-saved-item-btn {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 16px;
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 4px;
    transition: color 0.15s ease, background 0.15s ease;
}

.delete-saved-item-btn:hover {
    color: #ef4444;
    background: #fee2e2;
}

.clear-all-searches-btn {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-transform: none;
}

.clear-all-searches-btn:hover {
    text-decoration: underline;
}

.search-suggestion-word {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13.5px;
    color: #1e293b;
    cursor: pointer;
    transition: background 0.15s ease;
    border-bottom: 1px solid #f1f5f9;
}

.search-suggestion-word:hover {
    background: #eef7f2;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
}

.search-suggestion-item:hover {
    background: #eef7f2;
}

.search-suggestion-thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.search-suggestion-info {
    flex: 1;
    overflow: hidden;
}

.search-suggestion-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-suggestion-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

.search-suggestion-price {
    font-weight: 700;
    color: #0f7139;
}

.search-suggestion-footer {
    padding: 12px 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #0f7139;
    background: #f8fafc;
    cursor: pointer;
    transition: background 0.15s ease;
}

.search-suggestion-footer:hover {
    background: #eef7f2;
}

/* ==========================================================================
   CUSTOMER PRODUCT REVIEWS & RATINGS SECTION
   ========================================================================== */
.product-reviews-section {
    margin-top: 48px;
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.reviews-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    color: #0f172a;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-overview-card {
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 14px;
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 32px;
    align-items: center;
    margin-bottom: 32px;
}

@media (max-width: 850px) {
    .reviews-overview-card {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
}

.rating-score-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid #e2e8f0;
    padding-right: 24px;
}

@media (max-width: 850px) {
    .rating-score-box {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 20px;
    }
}

.big-rating-number {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 6px;
}

.stars-gold {
    color: #f59e0b;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.reviews-count-text {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.rating-breakdown-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.breakdown-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12.5px;
    color: #475569;
}

.breakdown-star-lbl {
    width: 50px;
    font-weight: 600;
    white-space: nowrap;
}

.breakdown-progress-bg {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.breakdown-progress-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 6px;
    transition: width 0.4s ease;
}

.breakdown-pct-lbl {
    width: 38px;
    text-align: right;
    font-weight: 600;
    color: #64748b;
}

.write-review-btn {
    background: #0f7139;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.write-review-btn:hover {
    background: #0b542a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 113, 57, 0.2);
}

/* WRITE REVIEW FORM CARD */
.write-review-form-card {
    background: #ffffff;
    border: 1.5px solid #0f7139;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(15, 113, 57, 0.08);
    display: none;
    animation: fadeInForm 0.3s ease-out;
}

.write-review-form-card.active {
    display: block;
}

@keyframes fadeInForm {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.review-form-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.review-form-subtitle {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 20px 0;
}

.review-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 600px) {
    .review-form-grid {
        grid-template-columns: 1fr;
    }
}

.review-form-group {
    margin-bottom: 16px;
}

.review-form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.review-form-input,
.review-form-select,
.review-form-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #0f172a;
    background: #ffffff;
    box-sizing: border-box;
    outline: none;
    transition: all 0.2s ease;
}

.review-form-input:focus,
.review-form-select:focus,
.review-form-textarea:focus {
    border-color: #0f7139;
    box-shadow: 0 0 0 3px rgba(15, 113, 57, 0.12);
}

.review-form-select {
    cursor: pointer;
    font-weight: 600;
    color: #1e293b;
}

.review-form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.review-form-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 10px;
}

.review-cancel-btn {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.review-cancel-btn:hover {
    background: #e2e8f0;
}

.review-submit-btn {
    background: #0f7139;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.review-submit-btn:hover {
    background: #0b542a;
}

/* REVIEWS FEED LIST */
.reviews-feed-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px 24px;
    background: #ffffff;
    transition: transform 0.15s, box-shadow 0.15s;
}

.review-item-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.review-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.reviewer-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #0f7139 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.reviewer-name {
    font-weight: 700;
    font-size: 14.5px;
    color: #1e293b;
}

.verified-buyer-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #ecfdf5;
    color: #047857;
    font-size: 11.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 6px;
}

.review-date-text {
    font-size: 12.5px;
    color: #94a3b8;
}

.review-stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.review-stars-gold {
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 1px;
}

.review-item-headline {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.review-item-comment {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* ==========================================================================
   AMAZON-STYLE CUSTOMER RATINGS & REVIEWS SYSTEM
   ========================================================================== */
.amazon-reviews-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px;
    margin: 32px 0 40px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.reviews-section-header {
    margin-bottom: 28px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 16px;
}

.reviews-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.reviews-section-subtitle {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
}

.amazon-reviews-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 36px;
    align-items: start;
}

@media (max-width: 900px) {
    .amazon-reviews-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .amazon-reviews-section {
        padding: 24px 18px;
    }
}

/* Left Column: Rating Breakdown */
.reviews-summary-panel {
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 14px;
    padding: 24px;
}

.overall-score-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
}

.overall-score-num {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.overall-score-max {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

.overall-stars-row {
    color: #f59e0b;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.total-ratings-label {
    font-size: 13.5px;
    color: #64748b;
    margin-bottom: 20px;
    display: block;
}

/* Distribution Bars */
.distribution-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.distribution-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    cursor: pointer;
    padding: 3px 6px;
    border-radius: 6px;
    transition: background 0.15s ease;
}

.distribution-row:hover {
    background: #e2e8f0;
}

.dist-star-label {
    width: 52px;
    color: #005d4a;
    font-weight: 600;
    white-space: nowrap;
}

.dist-bar-track {
    flex: 1;
    height: 14px;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.dist-bar-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 8px;
    transition: width 0.4s ease;
}

.dist-pct-label {
    width: 42px;
    text-align: right;
    font-weight: 700;
    color: #334155;
    font-size: 12.5px;
}

/* Write Review CTA Box */
.write-review-prompt-box {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    text-align: left;
}

.write-review-prompt-box h4 {
    margin: 0 0 4px 0;
    font-size: 15px;
    color: #0f172a;
    font-weight: 700;
}

.write-review-prompt-box p {
    margin: 0 0 14px 0;
    font-size: 13px;
    color: #64748b;
}

.write-review-main-btn {
    width: 100%;
    background: #ffffff;
    color: #0f7139;
    border: 1.5px solid #0f7139;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.write-review-main-btn:hover {
    background: #0f7139;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 113, 57, 0.2);
}

/* Right Column: Write Form & Reviews Feed */
.reviews-feed-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Write / Edit Review Card Form */
.review-form-card {
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 6px 20px rgba(15, 113, 57, 0.06);
    animation: fadeInForm 0.25s ease-out;
}

@keyframes fadeInForm {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.review-form-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f7139;
    margin: 0 0 4px 0;
}

.review-form-desc {
    font-size: 13px;
    color: #475569;
    margin: 0 0 18px 0;
}

/* Interactive Star Picker */
.interactive-star-rating-box {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 16px;
}

.star-picker-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 30px;
    cursor: pointer;
    margin-bottom: 4px;
}

.star-pick-btn {
    color: #cbd5e1;
    transition: transform 0.15s ease, color 0.15s ease;
    user-select: none;
}

.star-pick-btn:hover,
.star-pick-btn.active {
    color: #f59e0b;
    transform: scale(1.15);
}

.star-feedback-text {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f7139;
}

/* Toolbar: Filters & Sort */
.reviews-filter-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 18px;
}

.filter-pills-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.15s ease;
}

.filter-pill:hover {
    border-color: #0f7139;
    color: #0f7139;
}

.filter-pill.active {
    background: #0f7139;
    color: #ffffff;
    border-color: #0f7139;
}

.sort-select-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-dropdown {
    padding: 6px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    background: #ffffff;
    cursor: pointer;
    outline: none;
}

/* Reviews List Items */
.reviews-list-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.review-item-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.2s ease;
}

.review-item-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.review-author-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.author-avatar-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.author-name-text {
    font-weight: 700;
    font-size: 14px;
    color: #1e293b;
}

.review-rating-headline-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.review-card-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-card-title {
    font-weight: 700;
    font-size: 14.5px;
    color: #0f172a;
}

.review-date-verified-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.verified-purchase-badge {
    color: #c45500;
    font-weight: 700;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.review-card-comment {
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
    margin: 0 0 12px 0;
}

/* Image Thumbnails */
.review-images-gallery {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.review-img-thumb {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #cbd5e1;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.review-img-thumb:hover {
    transform: scale(1.08);
}

/* Helpful & Actions Row */
.review-actions-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed #f1f5f9;
    padding-top: 12px;
    margin-top: 6px;
    flex-wrap: wrap;
    gap: 10px;
}

.helpful-vote-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 5px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.15s ease;
}

.helpful-vote-btn:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a;
}

.helpful-vote-btn.voted {
    background: #f0fdf4;
    border-color: #86efac;
    color: #0f7139;
    font-weight: 700;
}

.own-review-actions {
    display: flex;
    gap: 8px;
}

.edit-review-btn-sm {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #0284c7;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.delete-review-btn-sm {
    background: #fff;
    border: 1px solid #fca5a5;
    color: #dc2626;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

/* Empty State */
.reviews-empty-box {
    text-align: center;
    padding: 48px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px dashed #cbd5e1;
}

.reviews-empty-box h4 {
    font-size: 16px;
    color: #1e293b;
    margin: 10px 0 4px 0;
}

.reviews-empty-box p {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
}

/* ==========================================================================
   ARSHITH FRESH - LUXURY & ELEGANT UI DESIGN SYSTEM (v5.5)
   Comprehensive styling overhaul: typography, cards, buttons, banners, spacing
   ========================================================================== */

/* 1. Global Polish & Spacing */
:root {
    --color-primary: #0f7139 !important;
    --color-primary-rgb: 15, 113, 57 !important;
    --color-secondary-bg: #376751 !important;
    --color-dark-bg: #0b3718 !important;
    --color-light-accent: #f7f8fa !important;
    --color-cream: #faf3e0 !important;
    --color-text-dark: #2f3e46 !important;
    --color-text-muted: #555555 !important;
    --color-border: #e2e8f0 !important;
    --color-gold: #BDA380 !important;
    --color-gold-light: #D4B896 !important;
}

body {
    background-color: #ffffff !important;
    color: #2f3e46 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* 2. Refined Sticky Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, #005d4a 0%, #007a62 50%, #005d4a 100%) !important;
    padding: 9px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 93, 74, 0.3) !important;
}

.announcement-track span {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.4px !important;
    color: #ffffff !important;
}

.announcement-track .announcement-separator {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 14px !important;
    margin: 0 16px !important;
}

/* 3. Sleek Glassmorphism Header */
.main-header {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid #eef2f6 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.header-container {
    max-width: 1440px !important;
    padding: 12px 28px !important;
}

.header-logo .logo-img {
    height: 52px !important;
    width: auto !important;
    transition: transform 0.2s ease !important;
}

.header-logo .logo-img:hover {
    transform: scale(1.03) !important;
}

.nav-links > li > a {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
    border-bottom: none !important;
    transition: all 0.2s ease !important;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: #0f7139 !important;
    background: #f0fdf4 !important;
}

/* Dropdown Menu Polish */
.dropdown-menu {
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 12px 32px rgba(15, 113, 57, 0.12) !important;
    padding: 8px !important;
}

.dropdown-menu li a {
    border-radius: 6px !important;
    padding: 9px 16px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    transition: all 0.15s ease !important;
}

.dropdown-menu li a:hover {
    background: #f0fdf4 !important;
    color: #0f7139 !important;
    transform: translateX(4px) !important;
}

/* Modern Search Bar with Inset Shadow & Glow */
.search-bar-container {
    width: 320px !important;
}

.search-form {
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 30px !important;
    padding: 2px 8px 2px 16px !important;
    background: #f8fafc !important;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.25s ease !important;
}

.search-form:focus-within {
    border-color: #0f7139 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(15, 113, 57, 0.12), inset 0 1px 2px rgba(0, 0, 0, 0.02) !important;
}

.search-form input {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 13.5px !important;
    color: #1e293b !important;
    padding: 8px 0 !important;
}

.search-submit {
    color: #0f7139 !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    transition: transform 0.2s ease, background 0.2s ease !important;
}

.search-submit:hover {
    background: #f0fdf4 !important;
    transform: scale(1.1) !important;
}

/* Header Action Buttons (Account, Wishlist, Cart) */
.action-btn {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #0f7139 !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.action-btn:hover {
    background: #0f7139 !important;
    color: #ffffff !important;
    border-color: #0f7139 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(15, 113, 57, 0.25) !important;
}

.action-btn:hover svg {
    stroke: #ffffff !important;
}

.cart-count, .wishlist-count {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
}

/* 4. Hero Carousel Banner Framing */
.hero-carousel-section {
    max-width: 1400px !important;
    margin: 16px auto 24px !important;
    padding: 0 20px !important;
}

.carousel-container {
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07) !important;
    overflow: hidden !important;
    border: 1px solid #eef2f6 !important;
}

.carousel-control {
    width: 44px !important;
    height: 44px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(8px) !important;
    color: #0f7139 !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
    border-radius: 50% !important;
    transition: all 0.25s ease !important;
}

.carousel-control:hover {
    background: #0f7139 !important;
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(15, 113, 57, 0.3) !important;
}

.carousel-indicators {
    bottom: 16px !important;
    gap: 8px !important;
}

.carousel-indicators .indicator {
    width: 8px !important;
    height: 8px !important;
    border-radius: 4px !important;
    background: rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.carousel-indicators .indicator.active {
    width: 28px !important;
    background: #0f7139 !important;
}

/* 5. Luxury Emerald Ribbon ("Best E-Commerce Platform") */
.banner-highlight {
    background: linear-gradient(135deg, #005d4a 0%, #0f7139 50%, #005d4a 100%) !important;
    padding: 16px 20px !important;
    margin: 24px auto !important;
    max-width: 1400px !important;
    border-radius: 14px !important;
    box-shadow: 0 4px 20px rgba(0, 93, 74, 0.2) !important;
    border: 1px solid rgba(189, 163, 128, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.banner-highlight .af-heading {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    text-align: center !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

/* 6. Shop by Category Cards Polish - Exact 7-Card Horizontal Row & Circular Frames */
.categories-section {
    max-width: 1440px !important;
    margin: 36px auto 44px !important;
    padding: 0 20px !important;
    text-align: center !important;
}

.categories-section .section-title {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    text-align: center !important;
    margin-bottom: 8px !important;
    letter-spacing: -0.4px !important;
}

.section-title-underline {
    width: 48px !important;
    height: 3.5px !important;
    background: #0f7139 !important;
    margin: 0 auto 28px !important;
    border-radius: 3px !important;
}

.categories-grid {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 16px !important;
    align-items: stretch !important;
}

.category-card {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 22px 10px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
    min-height: 184px !important;
    box-sizing: border-box !important;
}

.category-card:hover,
.category-card.active {
    transform: translateY(-4px) !important;
    border: 2px solid #007a55 !important;
    box-shadow: 0 10px 24px rgba(0, 122, 85, 0.14) !important;
}

.category-img-container {
    width: 96px !important;
    height: 96px !important;
    min-width: 96px !important;
    min-height: 96px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    margin-bottom: 14px !important;
    background: #fdfaf3 !important;
    border: 2.5px solid transparent !important;
    transition: all 0.25s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.category-img-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    transition: transform 0.25s ease !important;
}

.category-card:hover .category-img-container,
.category-card.active .category-img-container {
    transform: scale(1.05) !important;
    border-color: #007a55 !important;
}

.category-name {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    transition: color 0.2s ease !important;
}

.category-card:hover .category-name,
.category-card.active .category-name {
    color: #007a55 !important;
}

@media screen and (max-width: 1150px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 14px !important;
    }
}

@media screen and (max-width: 768px) {
    .categories-section {
        padding: 0 12px !important;
        margin: 24px auto 32px !important;
    }
    .categories-grid {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        padding: 6px 16px 16px 16px !important;
        margin: 0 -12px !important;
        gap: 12px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: thin;
    }
    .categories-grid::-webkit-scrollbar {
        height: 4px;
    }
    .categories-grid::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 4px;
    }
    .categories-grid::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 4px;
    }
    .category-card {
        flex: 0 0 130px !important;
        scroll-snap-align: start !important;
        padding: 16px 8px 14px !important;
        min-height: 165px !important;
    }
    .category-img-container {
        width: 76px !important;
        height: 76px !important;
        min-width: 76px !important;
        min-height: 76px !important;
    }
    .category-name {
        font-size: 12px !important;
    }
}

/* 7. Product Cards Refinement - Exact Premium Rounded Emerald Frame Matching Photo */
.product-card {
    background: #ffffff !important;
    border: 2px solid #005d4a !important;
    border-radius: 24px !important;
    padding: 16px 14px 16px 14px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: center !important;
    box-shadow: 0 4px 20px rgba(0, 93, 74, 0.07) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
    width: 250px !important;
    min-width: 240px !important;
    max-width: 260px !important;
    flex: 0 0 250px !important;
    margin: 0 auto !important;
}

.products-grid .product-card {
    flex: 0 0 250px !important;
    min-width: 240px !important;
    max-width: 260px !important;
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
}

.collections-product-cards-grid .product-card {
    width: 100% !important;
    min-width: 220px !important;
    max-width: 260px !important;
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
}

.product-card:hover {
    transform: translateY(-5px) !important;
    border-color: #005d4a !important;
    box-shadow: 0 14px 32px rgba(0, 93, 74, 0.16) !important;
}

.product-card-link {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    height: auto !important;
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer !important;
    justify-content: flex-start !important;
    align-items: center !important;
    margin-bottom: 6px !important;
}

.card-discount-tag {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    right: auto !important;
    background: #007a55 !important;
    color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    padding: 5px 11px !important;
    border-radius: 8px !important;
    box-shadow: 0 3px 8px rgba(0, 93, 74, 0.25) !important;
    z-index: 5 !important;
    letter-spacing: 0.3px !important;
    white-space: nowrap !important;
}

.product-card-wishlist-btn {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #e2e8f0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #475569 !important;
    cursor: pointer !important;
    z-index: 6 !important;
    transition: all 0.2s ease !important;
    outline: none !important;
    padding: 0 !important;
}

.product-card-wishlist-btn:hover {
    background: #ffffff !important;
    color: #ef4444 !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2) !important;
}

.product-card-wishlist-btn.active {
    background: #fef2f2 !important;
    color: #ef4444 !important;
    border-color: #fca5a5 !important;
}

.product-card-wishlist-btn.active svg {
    fill: #ef4444 !important;
    stroke: #ef4444 !important;
}

.product-image-container {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    width: 100% !important;
    height: 145px !important;
    min-height: 145px !important;
    max-height: 145px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    margin-bottom: 8px !important;
    padding: 4px !important;
}

.product-image-container img,
.product-card img {
    max-height: 135px !important;
    height: auto !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    transition: transform 0.3s ease !important;
    margin: 0 auto !important;
    display: block !important;
}

.product-image-container .hover-img {
    display: none !important;
}

.product-card:hover .product-image-container img,
.product-card:hover img {
    transform: scale(1.05) !important;
    opacity: 1 !important;
}

.product-card:hover .product-image-container:has(.hover-img) .primary-img,
.product-card:hover .product-image-container.has-second-img .primary-img {
    opacity: 1 !important;
}

.product-info {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
    padding: 0 !important;
    flex: 1 1 auto !important;
}

.card__heading,
.product-title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.12rem !important;
    font-weight: 700 !important;
    color: #003805 !important;
    line-height: 1.35 !important;
    text-align: center !important;
    margin: 4px 0 6px !important;
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
    -webkit-line-clamp: 2 !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    width: 100% !important;
}

.rating-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    height: 22px !important;
    min-height: 22px !important;
    max-height: 22px !important;
    margin: 2px 0 6px !important;
    width: 100% !important;
}

.rating-stars {
    color: #005d4a !important;
    font-size: 15px !important;
    letter-spacing: 2px !important;
    line-height: 1 !important;
}

.rating-text {
    color: #005d4a !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.price-box,
.product-price {
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    height: 26px !important;
    min-height: 26px !important;
    max-height: 26px !important;
    margin: 2px 0 10px !important;
    width: 100% !important;
    overflow: visible !important;
    line-height: 1.2 !important;
    padding: 0 2px !important;
}

.regular-price {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #003805 !important;
    text-decoration: line-through !important;
    white-space: nowrap !important;
    opacity: 0.9 !important;
}

.sale-price {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #003805 !important;
    white-space: nowrap !important;
}

.btn-add-to-cart,
.add-to-cart-btn {
    background: #005d4a !important;
    border: none !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    padding: 0 16px !important;
    border-radius: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: auto !important;
    box-shadow: 0 4px 12px rgba(0, 93, 74, 0.2) !important;
    flex-shrink: 0 !important;
    position: relative !important;
    z-index: 10 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.btn-add-to-cart:hover,
.add-to-cart-btn:hover {
    background: #0f7139 !important;
    box-shadow: 0 6px 16px rgba(0, 93, 74, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* 8. Floating Sticky Cart Bar */
.sticky-cart-bar {
    background: linear-gradient(135deg, #005d4a 0%, #0f7139 100%) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0, 93, 74, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    overflow: hidden !important;
    transition: transform 0.25s ease !important;
}

.sticky-cart-bar:hover {
    transform: translateY(-2px) scale(1.02) !important;
}

/* 9. Collections & Filter Sidebar Polish */
.collections-page-wrapper {
    max-width: 1440px !important;
    margin: 0 auto !important;
    padding: 24px 20px !important;
}

.category-circle-row {
    display: flex !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    max-width: 1300px !important;
    margin: 0 auto 20px auto !important;
}

.category-circle-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 110px !important;
    min-width: 110px !important;
    height: 146px !important;
    min-height: 146px !important;
    max-height: 146px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 14px 8px 10px 8px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
    box-sizing: border-box !important;
    transition: all 0.25s ease !important;
}

.category-circle-item:hover,
.category-circle-item.active {
    border-color: #0f7139 !important;
    background: #fbfdfb !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(15, 113, 57, 0.12) !important;
}

.circle-img-wrap {
    width: 68px !important;
    height: 68px !important;
    min-width: 68px !important;
    min-height: 68px !important;
    border-radius: 50% !important;
    border: 2px solid #0f7139 !important;
    overflow: hidden !important;
    padding: 2px !important;
    background: #ffffff !important;
    margin-bottom: 8px !important;
    flex-shrink: 0 !important;
    transition: transform 0.25s ease !important;
}

.category-circle-item:hover .circle-img-wrap,
.category-circle-item.active .circle-img-wrap {
    transform: scale(1.05) !important;
    border-color: #0f7139 !important;
}

.circle-title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #0f7139 !important;
    text-align: center !important;
    line-height: 1.2 !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 !important;
    word-break: break-word !important;
}

.sidebar-filter-pane {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 20px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02) !important;
}

.filter-main-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #1a202c !important;
}

.filter-accordion-item {
    border-bottom: 1px solid #f1f5f9 !important;
    padding: 12px 0 !important;
}

.sort-select-box {
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    padding: 6px 12px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    background: #ffffff !important;
}

/* 10. Footer Refinement - Exact Original Rich Theme */
.main-footer {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    margin-top: 0 !important;
    background: linear-gradient(180deg, #005d4a 0%, #0B3214 100%) !important;
    color: #e2e8f0 !important;
    padding: 60px 24px 40px !important;
    border-top: none !important;
    box-sizing: border-box !important;
}

.footer-top {
    max-width: 1440px !important;
    margin: 0 auto !important;
    padding: 0 0 32px !important;
}

.footer-accordion-btn {
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    color: #BDA380 !important;
    position: relative !important;
    padding-bottom: 10px !important;
    margin-bottom: 4px !important;
}

.footer-accordion-btn::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 36px !important;
    height: 3px !important;
    background: linear-gradient(135deg, #BDA380, #D4B896) !important;
    border-radius: 2px !important;
}

.footer-links-list li a {
    color: #cbd5e1 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
}

.footer-links-list li a:hover {
    color: #BDA380 !important;
    transform: translateX(4px) !important;
}

.help-item {
    color: #cbd5e1 !important;
}

.help-item:hover,
.help-item a:hover {
    color: #BDA380 !important;
}

.social-icon-btn {
    color: #BDA380 !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.social-icon-btn:hover {
    box-shadow: 0 8px 25px rgba(189, 163, 128, 0.5) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 24px 24px 0 !important;
    margin-top: 24px !important;
}

.copyright-text {
    font-size: 13px !important;
    color: #cbd5e1 !important;
}

/* 11. Mobile Responsiveness Polish (<768px) */
@media (max-width: 768px) {
    .header-container {
        padding: 10px 16px !important;
    }

    .search-bar-container {
        width: 100% !important;
    }

    .hero-carousel-section {
        padding: 0 10px !important;
        margin: 10px auto 16px !important;
    }

    .carousel-container {
        border-radius: 14px !important;
    }

    .categories-grid {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        overflow-x: auto !important;
        gap: 10px !important;
    }

    .category-card {
        padding: 12px 6px !important;
    }

    .category-img-container {
        width: 68px !important;
        height: 68px !important;
        min-width: 68px !important;
        min-height: 68px !important;
    }

    .category-name {
        font-size: 11.5px !important;
    }

    .banner-highlight {
        margin: 16px 10px !important;
        padding: 12px 14px !important;
    }

    .banner-highlight .af-heading {
        font-size: 1.1rem !important;
        letter-spacing: 1px !important;
    }

    .product-card {
        padding: 12px !important;
    }
}

/* ==========================================================================
   BLINKIT & SWIGGY INSTAMART MOBILE UI DESIGN SYSTEM (< 767px)
   Designed strictly for mobile view while preserving 100% of PC layout
   ========================================================================== */
@media screen and (max-width: 767px) {
    /* Global App Canvas & Background */
    html, body {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        background-color: #f4f6f8 !important;
        font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    }

    /* 1. Sticky Blinkit App Header & Location/Search Bar */
    .main-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 10000 !important;
        background: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
        border-bottom: 1px solid #e8ecef !important;
        padding-bottom: 6px !important;
    }

    .header-container {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 8px 12px 4px !important;
        gap: 8px !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        align-items: center !important;
        order: 1 !important;
        width: 36px !important;
        height: 36px !important;
        padding: 9px 7px !important;
        background: #f8fafc !important;
        border-radius: 10px !important;
        border: 1px solid #e2e8f0 !important;
        box-sizing: border-box !important;
        cursor: pointer !important;
    }

    .mobile-menu-btn .menu-icon-bar {
        display: block !important;
        width: 100% !important;
        height: 2.5px !important;
        background-color: #0c831f !important;
        border-radius: 3px !important;
        margin: 0 !important;
    }

    .header-logo {
        order: 2 !important;
        display: flex !important;
        align-items: center !important;
    }

    .logo-img {
        max-height: 36px !important;
        height: 36px !important;
        width: auto !important;
    }

    .header-actions {
        order: 3 !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .header-actions .search-bar-container {
        display: none !important;
    }

    .search-bar-container {
        order: 4 !important;
        width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 4px !important;
        padding: 0 2px !important;
    }

    .search-form {
        width: 100% !important;
        height: 42px !important;
        border-radius: 12px !important;
        border: 1px solid #e2e8f0 !important;
        background: #f8fafc !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
        display: flex !important;
        align-items: center !important;
    }

    .search-form input {
        font-size: 13px !important;
        padding: 8px 14px !important;
        color: #1e293b !important;
    }

    /* 2. Instamart / Blinkit Modern Offer Banners Carousel */
    .hero-carousel-section,
    .instamart-hero-section {
        padding: 8px 10px !important;
        margin: 6px auto 10px !important;
    }

    .carousel-container,
    .instamart-carousel-track {
        border-radius: 14px !important;
        gap: 10px !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06) !important;
    }

    .instamart-banner-card {
        flex: 0 0 min(310px, 88vw) !important;
        min-width: min(310px, 88vw) !important;
        height: 175px !important;
        min-height: 175px !important;
        border-radius: 14px !important;
        box-shadow: 0 4px 14px rgba(12, 131, 31, 0.15) !important;
    }

    .instamart-card-content {
        padding: 12px 10px 12px 12px !important;
    }

    .instamart-card-title {
        font-size: 1.1rem !important;
        line-height: 1.2 !important;
        margin-bottom: 4px !important;
        font-weight: 800 !important;
    }

    .instamart-card-subtitle {
        font-size: 0.72rem !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }

    .instamart-cta-btn {
        padding: 5px 14px !important;
        font-size: 11px !important;
        min-height: 32px !important;
        border-radius: 8px !important;
        font-weight: 800 !important;
    }

    /* 3. Blinkit-Style Categories Slider */
    .categories-section {
        padding: 0 10px !important;
        margin: 10px auto 14px !important;
    }

    .categories-grid,
    .categories-slider,
    .category-circle-row {
        display: flex !important;
        gap: 10px !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
        padding: 4px 2px 6px !important;
    }

    .categories-grid::-webkit-scrollbar,
    .categories-slider::-webkit-scrollbar,
    .category-circle-row::-webkit-scrollbar {
        display: none !important;
    }

    .category-card,
    .category-circle-item {
        flex: 0 0 76px !important;
        min-width: 76px !important;
        max-width: 76px !important;
        scroll-snap-align: start !important;
        text-align: center !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        min-height: auto !important;
    }

    .category-img-container,
    .circle-img-wrap {
        width: 64px !important;
        height: 64px !important;
        border-radius: 18px !important;
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
        margin: 0 auto 6px !important;
        padding: 6px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .category-img-container img,
    .circle-img-wrap img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        border-radius: 12px !important;
    }

    .category-name,
    .circle-title {
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        color: #1e293b !important;
        line-height: 1.2 !important;
        text-align: center !important;
        margin: 0 !important;
    }

    /* 4. Authentic Blinkit / Instamart 2-Column Product Cards Grid */
    .products-grid,
    .collections-grid,
    #relatedProductsGrid,
    .related-products-grid,
    .collections-product-cards-grid,
    .collection-product-cards-grid,
    .products-carousel-section .products-grid,
    .product-slider-wrapper .products-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: visible !important;
        padding: 6px 10px 16px 10px !important;
        margin: 0 !important;
    }

    .products-grid .product-card,
    .collections-grid .product-card,
    #relatedProductsGrid .product-card,
    .related-products-grid .product-card,
    .collections-product-cards-grid .product-card,
    .collection-product-cards-grid .product-card,
    .product-slider-wrapper .product-card,
    .products-carousel-section .product-card,
    .product-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
        height: auto !important;
        min-height: 240px !important;
        max-height: none !important;
        padding: 10px 10px 12px 10px !important;
        border-radius: 14px !important;
        border: 1px solid #e8ecef !important;
        background: #ffffff !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        text-align: left !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .product-card-link {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .card-discount-tag {
        position: absolute !important;
        top: 8px !important;
        left: 8px !important;
        background: #0c831f !important;
        color: #ffffff !important;
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 10px !important;
        font-weight: 800 !important;
        padding: 2px 7px !important;
        border-radius: 4px !important;
        box-shadow: 0 2px 6px rgba(12, 131, 31, 0.2) !important;
        z-index: 5 !important;
        letter-spacing: 0.2px !important;
    }

    .product-card-wishlist-btn {
        position: absolute !important;
        top: 8px !important;
        right: 8px !important;
        width: 28px !important;
        height: 28px !important;
        border-radius: 50% !important;
        background: #ffffff !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
        border: 1px solid #e2e8f0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #94a3b8 !important;
    }

    .product-image-container {
        height: 105px !important;
        min-height: 105px !important;
        max-height: 105px !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 4px !important;
        margin-bottom: 6px !important;
        background: transparent !important;
    }

    .product-image-container img,
    .product-card img {
        max-height: 95px !important;
        width: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
    }

    .product-info {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        padding: 0 !important;
    }

    .card__heading,
    .product-title {
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        color: #1e293b !important;
        line-height: 1.35 !important;
        text-align: left !important;
        margin: 2px 0 4px !important;
        height: 32px !important;
        min-height: 32px !important;
        max-height: 32px !important;
        -webkit-line-clamp: 2 !important;
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        width: 100% !important;
    }

    .rating-box {
        display: none !important; /* Blinkit keeps cards ultra clean */
    }

    /* Blinkit Price & Action Footer Row */
    .price-box,
    .product-price {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 1px !important;
        height: auto !important;
        min-height: 30px !important;
        margin: 4px 0 8px !important;
        width: 100% !important;
    }

    .sale-price {
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 13.5px !important;
        font-weight: 800 !important;
        color: #0c831f !important;
    }

    .regular-price {
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 10px !important;
        font-weight: 500 !important;
        color: #94a3b8 !important;
        text-decoration: line-through !important;
    }

    /* Distinctive Blinkit "ADD" Button Styling */
    .btn-add-to-cart,
    .add-to-cart-btn {
        width: 100% !important;
        height: 34px !important;
        min-height: 34px !important;
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 12px !important;
        font-weight: 800 !important;
        border-radius: 8px !important;
        background: #f0fdf4 !important;
        border: 1.5px solid #0c831f !important;
        color: #0c831f !important;
        margin-top: auto !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        box-shadow: none !important;
        transition: all 0.2s ease !important;
    }

    .btn-add-to-cart:hover,
    .add-to-cart-btn:hover,
    .btn-add-to-cart:active,
    .add-to-cart-btn:active {
        background: #0c831f !important;
        color: #ffffff !important;
        border-color: #0c831f !important;
        transform: translateY(-1px) !important;
    }

    /* 5. Floating Widgets & App Sticky Bottom Bar Safety */
    .arshith-ai-btn,
    .ask-ai-widget-btn,
    .floating-ai-btn,
    [class*="ai-btn"],
    [id*="aiWidget"] {
        position: fixed !important;
        bottom: 95px !important;
        right: 14px !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 50% !important;
        z-index: 9996 !important;
        box-shadow: 0 4px 16px rgba(12, 131, 31, 0.3) !important;
        background: linear-gradient(135deg, #0c831f, #075a14) !important;
        color: #ffffff !important;
    }

    .whatsapp-float-btn {
        bottom: 145px !important;
        right: 14px !important;
        width: 44px !important;
        height: 44px !important;
        z-index: 9996 !important;
    }

    .sticky-cart-bar {
        position: fixed !important;
        bottom: 12px !important;
        right: 12px !important;
        left: 12px !important;
        width: auto !important;
        max-width: calc(100vw - 24px) !important;
        z-index: 9998 !important;
        background: linear-gradient(135deg, #0c831f 0%, #075a14 100%) !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 24px rgba(12, 131, 31, 0.35) !important;
        padding: 12px 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    /* 6. Mobile Footer Stack */
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 0 20px !important;
    }
}

/* ====================================================
   COMPACT & MODERN MOBILE PRODUCT PAGE REDESIGN
   ==================================================== */
@media screen and (max-width: 768px) {
    .product-detail-page-wrapper {
        padding: 10px 10px 10px 10px !important;
    }

    .product-detail-page-wrapper nav {
        margin-bottom: 10px !important;
        font-size: 12px !important;
        gap: 6px !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        scrollbar-width: none !important;
    }

    .product-detail-layout {
        display: grid !important;
        grid-template-columns: 42% 58% !important;
        gap: 14px !important;
        align-items: start !important;
        background: #ffffff !important;
        padding: 12px !important;
        border-radius: 16px !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04) !important;
        border: 1px solid #e2e8f0 !important;
        margin-bottom: 14px !important;
    }

    @media screen and (max-width: 480px) {
        .product-detail-layout {
            grid-template-columns: 1fr !important;
        }
    }

    .product-gallery-side {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
    }

    .product-gallery-side > div:first-child {
        height: 240px !important;
        min-height: 200px !important;
        max-height: 260px !important;
        padding: 8px !important;
        border-radius: 12px !important;
        background: #fafbfc !important;
        border: 1px solid #e2e8f0 !important;
        position: relative !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    #mainDetailProductImg {
        max-height: 220px !important;
        width: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
    }

    .product-gallery-side .card-discount-tag {
        top: 8px !important;
        left: 8px !important;
        font-size: 10px !important;
        font-weight: 800 !important;
        padding: 3px 8px !important;
        border-radius: 6px !important;
        background: #005d4a !important;
        color: #ffffff !important;
    }

    .product-thumbnails-carousel {
        gap: 6px !important;
        margin-top: 6px !important;
    }

    .detail-thumb-item {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        padding: 2px !important;
        border-radius: 6px !important;
    }

    .product-info-side {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        gap: 4px !important;
        width: 100% !important;
    }

    .product-detail-heading {
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 22px !important;
        font-weight: 800 !important;
        color: #1e293b !important;
        line-height: 1.25 !important;
        margin: 2px 0 6px 0 !important;
        word-break: break-word !important;
        text-align: left !important;
    }

    #topRatingScoreLink {
        font-size: 11.5px !important;
        gap: 6px !important;
        margin-bottom: 6px !important;
        display: flex !important;
        align-items: center !important;
        flex-wrap: wrap !important;
    }

    #topRatingStarsVisual {
        font-size: 13px !important;
        color: #f59e0b !important;
    }

    #topRatingScoreNum {
        font-size: 12.5px !important;
        color: #1e293b !important;
        font-weight: 700 !important;
    }

    #topRatingCountText {
        font-size: 11px !important;
        color: #0284c7 !important;
    }

    .product-detail-price-box {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        margin-bottom: 8px !important;
        flex-wrap: wrap !important;
        width: 100% !important;
    }

    .product-detail-sale-price {
        font-size: 20px !important;
        font-weight: 800 !important;
        color: #1e293b !important;
        line-height: 1 !important;
    }

    .product-detail-regular-price {
        font-size: 14px !important;
        color: #64748b !important;
        text-decoration: line-through !important;
        line-height: 1 !important;
    }

    .product-detail-save-badge {
        font-size: 11px !important;
        font-weight: 700 !important;
        padding: 3px 8px !important;
        background: #ecfdf5 !important;
        color: #0f7139 !important;
        border-radius: 6px !important;
        line-height: 1 !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    .product-info-side > div:nth-of-type(3) {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        margin-bottom: 10px !important;
        font-size: 11.5px !important;
        align-items: stretch !important;
        width: 100% !important;
    }

    .product-info-side > div:nth-of-type(3) > div {
        padding: 8px 10px !important;
        border-radius: 8px !important;
        border: 1px solid #e2e8f0 !important;
        background: #ffffff !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        min-height: 52px !important;
        box-sizing: border-box !important;
    }

    .product-info-side > div:nth-of-type(3) strong {
        font-size: 10px !important;
        color: #64748b !important;
        text-transform: uppercase !important;
        margin-bottom: 2px !important;
        display: block !important;
        line-height: 1.2 !important;
    }

    .product-info-side > div:nth-of-type(3) span {
        font-size: 12px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
    }
        font-size: 12px !important;
        font-weight: 600 !important;
    }

    /* Action Row: Quantity + Add to Cart & Buy Now Buttons Inline */
    .product-info-side > div:nth-of-type(4) {
        grid-column: 1 / -1 !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 8px !important;
        margin-bottom: 12px !important;
        width: 100% !important;
    }

    .product-info-side > div:nth-of-type(4) > div:first-child {
        height: 48px !important;
        min-height: 48px !important;
        border-radius: 8px !important;
        flex: 0 0 auto !important;
        margin-bottom: 0 !important;
        background: #ffffff !important;
        border: 1.5px solid #cbd5e1 !important;
    }

    .product-info-side button[onclick*="handleDetailAddToCart"] {
        height: 48px !important;
        min-height: 48px !important;
        max-height: 48px !important;
        font-size: 13.5px !important;
        font-weight: 800 !important;
        border-radius: 8px !important;
        letter-spacing: 0.3px !important;
        flex: 1 1 120px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 12px !important;
        white-space: nowrap !important;
    }

    /* Description Card on Mobile */
    .product-info-side > div:nth-of-type(5) {
        grid-column: 1 / -1 !important;
        padding: 14px 16px !important;
        margin-bottom: 12px !important;
        border-radius: 12px !important;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
    }

    .product-info-side > div:nth-of-type(5) h3 {
        font-size: 14px !important;
        font-weight: 700 !important;
        color: #0f7139 !important;
        margin: 0 0 6px 0 !important;
    }

    .product-info-side > div:nth-of-type(5) div {
        font-size: 13px !important;
        line-height: 1.55 !important;
        color: #475569 !important;
    }

    /* Trust Icons on Mobile */
    .product-info-side > div:nth-of-type(6) {
        grid-column: 1 / -1 !important;
        display: flex !important;
        gap: 12px !important;
        font-size: 12px !important;
        color: #64748b !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
    }

    /* Amazon Customer Reviews Section Compact Mobile Redesign */
    .amazon-reviews-section {
        padding: 12px 10px !important;
        margin: 10px 0 !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.03) !important;
    }

    .reviews-section-header {
        margin-bottom: 10px !important;
        padding-bottom: 8px !important;
    }

    .reviews-section-title {
        font-size: 16px !important;
        margin: 0 0 2px 0 !important;
        font-weight: 700 !important;
    }

    .reviews-section-subtitle {
        font-size: 11px !important;
    }

    .amazon-reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .reviews-summary-panel {
        padding: 10px 10px !important;
        border-radius: 8px !important;
    }

    .overall-score-box {
        gap: 4px !important;
        margin-bottom: 2px !important;
        align-items: center !important;
    }

    .overall-score-num {
        font-size: 20px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
    }

    .overall-score-max {
        font-size: 12px !important;
    }

    .overall-stars-row {
        font-size: 13px !important;
        margin-bottom: 2px !important;
        letter-spacing: 1px !important;
    }

    .total-ratings-label {
        font-size: 11px !important;
        margin-bottom: 8px !important;
    }

    .distribution-list {
        gap: 3px !important;
        margin-bottom: 10px !important;
    }

    .distribution-row {
        padding: 2px 4px !important;
        gap: 6px !important;
        font-size: 11px !important;
    }

    .dist-star-label {
        width: 40px !important;
        font-size: 11px !important;
    }

    .dist-bar-track {
        height: 8px !important;
        border-radius: 4px !important;
    }

    .dist-bar-fill {
        border-radius: 4px !important;
    }

    .dist-pct-label {
        width: 30px !important;
        font-size: 10.5px !important;
    }

    .write-review-prompt-box {
        padding-top: 8px !important;
        border-top: 1px solid #e2e8f0 !important;
    }

    .write-review-prompt-box h4 {
        font-size: 12.5px !important;
        margin: 0 0 2px 0 !important;
    }

    .write-review-prompt-box p {
        font-size: 11px !important;
        margin: 0 0 6px 0 !important;
    }

    .write-review-main-btn {
        padding: 6px 10px !important;
        font-size: 12px !important;
        height: 34px !important;
        border-radius: 6px !important;
    }

    .review-form-card {
        padding: 12px 10px !important;
        border-radius: 8px !important;
    }

    .review-item-card {
        padding: 10px 10px !important;
        border-radius: 8px !important;
        gap: 6px !important;
    }

    .author-avatar-circle {
        width: 28px !important;
        height: 28px !important;
        font-size: 11px !important;
    }

    .author-name-text {
        font-size: 12px !important;
    }

    .review-card-stars {
        font-size: 11.5px !important;
    }

    .review-card-title {
        font-size: 12.5px !important;
    }

    .review-card-comment {
        font-size: 11.5px !important;
        line-height: 1.4 !important;
        margin-bottom: 6px !important;
    }

    /* FAQs Section Compact Mobile Redesign */
    .faq-section {
        margin: 24px auto 16px !important;
        padding: 0 12px !important;
    }

    .faq-title {
        font-family: 'Playfair Display', Georgia, serif !important;
        font-size: 22px !important;
        font-weight: 700 !important;
        margin-bottom: 12px !important;
        color: #1e293b !important;
    }

    .faq-item {
        margin-bottom: 10px !important;
        border-radius: 10px !important;
        border: 1px solid #094b3d !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
        overflow: hidden !important;
    }

    .faq-question {
        padding: 12px 14px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        line-height: 1.35 !important;
    }

    .faq-question span {
        font-size: 18px !important;
        font-weight: 700 !important;
    }

    .faq-answer {
        padding: 12px 14px !important;
        font-size: 13px !important;
        line-height: 1.5 !important;
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        color: #475569 !important;
    }

    /* Trust / Feature Section Compact Mobile Redesign */
    .feature-section {
        padding: 20px 10px 24px !important;
        border-top: 1px dashed #e2e8f0 !important;
    }

    .feature-grid {
        display: flex !important;
        gap: 10px !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
        padding: 4px 2px !important;
    }

    .feature-grid::-webkit-scrollbar {
        display: none !important;
    }

    .feature-box {
        flex: 0 0 115px !important;
        min-width: 115px !important;
        max-width: 115px !important;
        height: 120px !important;
        min-height: 120px !important;
        max-height: 120px !important;
        padding: 12px 8px !important;
        border-radius: 12px !important;
        background: #094b3d !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        box-sizing: border-box !important;
        scroll-snap-align: start !important;
        box-shadow: 0 2px 8px rgba(9, 75, 61, 0.15) !important;
    }

    .feature-icon {
        font-size: 20px !important;
        margin-bottom: 6px !important;
        line-height: 1 !important;
    }

    .feature-text {
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 11.5px !important;
        font-weight: 700 !important;
        line-height: 1.25 !important;
        color: #ffffff !important;
        word-break: break-word !important;
    }

    /* Real Customer Reviews Section Compact Mobile Redesign */
    .real-customer-reviews-section {
        padding: 16px 10px !important;
        margin: 14px 0 !important;
    }

    .real-customer-reviews-section > div > div:first-child {
        margin-bottom: 14px !important;
    }

    .real-customer-reviews-section div[style*="e8f5e9"],
    .real-customer-reviews-section div[style*="100% Authentic"] {
        font-size: 10px !important;
        padding: 2px 8px !important;
        margin-bottom: 4px !important;
    }

    .real-customer-reviews-section h2 {
        font-size: 20px !important;
        margin-bottom: 4px !important;
    }

    .real-customer-reviews-section p {
        font-size: 12px !important;
        line-height: 1.35 !important;
        max-width: 100% !important;
    }

    #homepageRealReviewsGrid {
        gap: 10px !important;
        grid-template-columns: 1fr !important;
    }

    .homepage-real-review-card {
        padding: 12px 10px !important;
        border-radius: 10px !important;
    }

    .homepage-real-review-card > div:first-child {
        margin-bottom: 8px !important;
        gap: 8px !important;
    }

    .homepage-real-review-card > div:first-child > div:first-child {
        width: 30px !important;
        height: 30px !important;
        font-size: 13px !important;
    }

    .homepage-real-review-card strong {
        font-size: 12.5px !important;
    }

    .homepage-real-review-card span[style*="10.5px"],
    .homepage-real-review-card span[style*="Verified"] {
        font-size: 9.5px !important;
        padding: 1px 5px !important;
    }

    .homepage-real-review-card span[style*="11.5px"] {
        font-size: 10.5px !important;
    }

    .homepage-real-review-card > div:nth-child(2) {
        margin-bottom: 6px !important;
    }

    .homepage-real-review-card div[style*="de7921"] {
        font-size: 12px !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 2px !important;
    }

    .homepage-real-review-card p {
        font-size: 12px !important;
        line-height: 1.35 !important;
        margin: 0 0 8px 0 !important;
    }

    .homepage-real-review-card > div:last-child {
        padding-top: 6px !important;
        gap: 6px !important;
    }

    .homepage-real-review-card > div:last-child img {
        width: 22px !important;
        height: 22px !important;
    }

    .homepage-real-review-card > div:last-child span {
        font-size: 11px !important;
    }

    /* Chilli Manufacturing Process Banner Mobile Layout (3-Column Horizontal Row) */
    .process-banner,
    .chilli-banner {
        padding: 24px 10px !important;
        background: #fbf5dc !important;
        text-align: center !important;
        margin: 10px 0 !important;
    }

    .chilli-premium-title {
        font-family: 'Playfair Display', Georgia, serif !important;
        color: #0f7139 !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        margin-bottom: 16px !important;
        line-height: 1.25 !important;
    }

    .chilli-premium-title span {
        font-size: 15px !important;
        font-weight: 600 !important;
        color: #334155 !important;
        display: block !important;
        margin-top: 2px !important;
    }

    .process-images {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .process-img-item {
        border-radius: 12px !important;
        overflow: hidden !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        height: 105px !important;
        min-height: 105px !important;
        max-height: 105px !important;
        width: 100% !important;
    }

    .process-img-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* Partners Network Section Compact Mobile Redesign (Side-by-Side Layout) */
    .partners-section {
        padding: 20px 10px !important;
        margin: 10px 0 !important;
    }

    .partners-title {
        font-family: 'Playfair Display', Georgia, serif !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        color: #0e2238 !important;
        margin-bottom: 4px !important;
        letter-spacing: 0.5px !important;
        line-height: 1.25 !important;
    }

    .partners-subtitle {
        font-size: 11.5px !important;
        color: #64748b !important;
        margin-bottom: 14px !important;
        line-height: 1.35 !important;
    }

    .partners-container {
        padding: 12px 6px !important;
        border-radius: 12px !important;
        gap: 10px !important;
        max-width: 100% !important;
        background-color: #ffffff !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
    }

    .partners-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .partner-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 calc(33.333% - 6px) !important;
        width: calc(33.333% - 6px) !important;
        min-width: calc(33.333% - 6px) !important;
        max-width: calc(33.333% - 6px) !important;
        height: 78px !important;
        min-height: 78px !important;
        max-height: 78px !important;
        padding: 8px 4px !important;
        border-radius: 10px !important;
        border: 1px solid #eaeaea !important;
        background-color: #ffffff !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        text-decoration: none !important;
    }

    .partner-card img {
        max-height: 28px !important;
        height: 28px !important;
        width: auto !important;
        max-width: 85% !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .partner-card span {
        font-size: 10px !important;
        font-weight: 600 !important;
        color: #334155 !important;
        text-align: center !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 100% !important;
    }
}

/* Extra Fine-Tuning for 320px - 360px Compact Phones */
@media screen and (max-width: 360px) {
    .header-container {
        padding: 6px 8px !important;
    }
    .logo-img {
        max-height: 32px !important;
        height: 32px !important;
    }
    .instamart-banner-card {
        min-width: 275px !important;
        height: 165px !important;
    }
    .card__heading,
    .product-title {
        font-size: 11px !important;
    }
    .sale-price {
        font-size: 12px !important;
    }
}










