* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f5;
}

a {
    text-decoration: none;
    color: inherit;
}

.pl-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 992px) {
    .utility-bar {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }
}

/* ── ROW 1: UTILITY BAR ── */
.utility-bar {
    background: #fff;
    border-bottom: 1px solid #ebebeb;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 30px;
}

.utility-marquee-container {
    flex: 1;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    gap: 100px;
    animation: marquee-scroll 40s linear infinite;
    width: max-content;
}

.marquee-item {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    color: #333;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.cart-drawer.open {
    right: 0;
}

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

.cart-drawer-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.close-drawer {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
}

.close-drawer:hover {
    color: #333;
}

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

.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
}

.drawer-summary {
    margin-bottom: 20px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-line span:first-child {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.total-price {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
}

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

.btn-view-cart {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid #78B327;
    color: #78B327;
    transition: all 0.2s;
}

.btn-view-cart:hover {
    background: #f4faec;
}

.btn-checkout {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    background: #78B327;
    color: #fff;
    transition: all 0.2s;
}

.btn-checkout:hover {
    background: #669921;
}

.cart-drawer-overlay.active .cart-drawer {
    right: 0;
}

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

.cart-drawer-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #333;
}

.cart-drawer-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 5px;
}

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

.cart-drawer-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-drawer-item {
    display: flex;
    gap: 15px;
    position: relative;
    padding: 10px 0 20px;
    border-bottom: 1px solid #f5f5f5;
}

.cd-item-img {
    width: 80px;
    height: 80px;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cd-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.cd-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cd-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-right: 30px;
}

.cd-item-price {
    font-size: 15px;
    font-weight: 700;
    color: #78B327;
}

.cd-item-controls {
    margin-top: 5px;
}

.cd-qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 50px;
    width: fit-content;
    overflow: hidden;
    background: #fff;
    padding: 2px;
}

.cd-qty-btn {
    background: transparent;
    border: none;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    border-radius: 50%;
    transition: background 0.2s;
}

.cd-qty-btn:hover {
    background: #f5f5f5;
}

.cd-qty-selector input {
    width: 35px;
    height: 28px;
    border: none;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    outline: none;
    background: transparent;
}

.cd-item-remove {
    position: absolute;
    top: -5px;
    right: -5px;
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    padding: 10px;
    font-size: 16px;
    transition: all 0.2s;
}

.cd-item-remove:hover {
    color: #e60000;
    transform: scale(1.1);
}

.cart-drawer-empty {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    gap: 15px;
}

.cart-drawer-empty i {
    font-size: 50px;
    opacity: 0.3;
}

.btn-shop-now {
    margin-top: 10px;
    padding: 10px 25px;
    background: #78B327;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-shop-now:hover {
    background: #669921;
    color: #fff;
}

.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.cd-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cd-total-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.cd-total-value {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
}

.cd-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cd-btn {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.cd-btn-view {
    background: #fff;
    border: 2px solid #78B327;
    color: #78B327;
}

.cd-btn-view:hover {
    background: #f4faec;
}

.cd-btn-checkout {
    background: #78B327;
    border: 2px solid #78B327;
    color: #fff;
}

.cd-btn-checkout:hover {
    background: #669921;
    border-color: #669921;
}

@media (max-width: 450px) {
    .cart-drawer {
        max-width: 100%;
    }
}

/* Floating Cart Button - Modern */
.floating-cart-btn {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 14px 12px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eeeeee;
    min-width: 96px;
}

.floating-cart-btn:hover {
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 14px 45px rgba(0,0,0,0.18);
    border-color: #111111;
}

.fc-icon-wrap {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-icon-wrap svg {
    color: #111111;
    stroke: #111111;
}

.fc-icon-wrap i,
.fc-icon-wrap .fc-bag-icon {
    font-size: 30px;
    color: #111111;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.fc-icon-wrap .cart-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff5252, #d32f2f);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.fc-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.fc-label {
    font-size: 13px;
    font-weight: 700;
    color: #111111;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.2px;
}

.fc-price-pill {
    font-size: 13px;
    font-weight: 800;
    color: #111111;
    background: #f4f4f4;
    padding: 5px 12px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    white-space: nowrap;
    border: 1px solid #ececec;
}

@media (max-width: 768px) {
    .floating-cart-btn {
        left: 90%;
        right: auto;
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
        padding: 0;
        min-width: auto;
        width: 48px;
        height: 48px;
        gap: 0;
        border-radius: 8px;
        background: #111111;
        border: 1px solid #111111;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .floating-cart-btn:hover {
        transform: translate(-50%, -50%);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
        border: 1px solid #111111;
    }

    .fc-icon-wrap {
        width: 28px;
        height: 28px;
    }

    .fc-icon-wrap .fc-bag-icon {
        font-size: 26px;
        color: #ffffff;
        font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
    }

    .fc-content {
        display: none !important;
    }

    .fc-icon-wrap .cart-badge {
        width: 16px;
        height: 16px;
        font-size: 9px;
        right: -7px;
        top: -6px;
    }
}

.utility-right a:hover {
    color: #78B327;
}

.utility-right .sep {
    color: #ddd;
    font-size: 12px;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 12.5px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
    color: #78B327;
}

.flag-icon {
    display: inline-block;
    width: 20px;
    height: 13px;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.flag-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #012169 0% 33%, #fff 33% 66%, #c8102e 66% 100%);
}

/* ── ROW 2: MAIN HEADER ── */
.main-header {
    background: #fff;
    border-bottom: 1px solid #ebebeb;
    padding: 22px 40px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.mobile-menu-btn {
    display: none;
}

/* Logo */
.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.site-logo img {
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

/* Search bar */
.search-bar {
    flex: 1;
    display: flex;
    align-items: center;
    border: 2px solid #78B327;
    border-radius: 4px;
    height: 52px;
    position: relative;
    overflow: visible;
}

.search-category {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border-right: 1px solid #e0e0e0;
    height: 100%;
    background: #fff;
    cursor: pointer;
    font-size: 13.5px;
    color: #555;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 140px;
    border-radius: 2px 0 0 2px;
}

.search-category i {
    font-size: 10px;
    color: #999;
    margin-left: auto;
}

.search-category-wrap {
    position: relative;
    height: 100%;
}

.search-category-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: 2px solid #78B327;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    z-index: 99999;
    display: none;
}

.search-category-wrap:hover .search-category-menu,
.search-category-wrap.open .search-category-menu {
    display: block;
}

.search-category-menu li a {
    display: block;
    padding: 9px 18px;
    font-size: 13.5px;
    color: #444;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.search-category-menu li a:hover {
    background: #f4faec;
    color: #78B327;
}

.search-input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    padding: 0 18px;
    font-size: 14px;
    color: #444;
    font-family: 'Inter', sans-serif;
    background: #fff;
}

.search-input::placeholder {
    color: #bbb;
}

.search-btn {
    width: 56px;
    height: 100%;
    background: #fff;
    border: none;
    border-left: 1px solid #e0e0e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
    border-radius: 0 2px 2px 0;
}

.search-btn:hover {
    background: #fdf3f0;
}

.search-btn i {
    color: #78B327;
    font-size: 17px;
}

.search-suggestions-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: -2px;
    right: -2px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: 3px solid #78B327;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
    z-index: 99999;
    display: none;
    max-height: 420px;
    overflow-y: auto;
}

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

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

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

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

.search-suggestion-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid #eee;
    background: #fafafa;
    flex-shrink: 0;
}

.search-suggestion-info {
    flex: 1;
    min-width: 0;
}

.search-suggestion-name {
    font-size: 13.5px;
    font-weight: 500;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.search-suggestion-price {
    font-size: 13px;
    font-weight: 600;
    color: #78B327;
    margin-top: 3px;
}

.search-suggestions-empty {
    padding: 20px 16px;
    text-align: center;
    color: #888;
    font-size: 13.5px;
}

.search-suggestions-loading {
    padding: 16px;
    text-align: center;
    color: #aaa;
    font-size: 13px;
}

.search-suggestions-footer {
    padding: 10px 16px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
    text-align: center;
}

.search-suggestions-footer a {
    font-size: 13px;
    color: #78B327;
    font-weight: 600;
    text-decoration: none;
}

.search-suggestions-footer a:hover {
    text-decoration: underline;
}

/* Right section */
.header-right {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-shrink: 0;
}

.live-chat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-circle {
    width: 46px;
    height: 46px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-circle .material-symbols-outlined {
    font-size: 24px;
    color: #555;
}

.phone-circle i {
    color: #555;
    font-size: 17px;
}

.live-chat-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.live-chat-text .lc-label {
    font-size: 11.5px;
    color: #999;
}

.live-chat-text .lc-number {
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

.icon-action {
    background: none;
    border: none;
    cursor: pointer;
    color: #444;
    font-size: 22px;
    transition: color .2s;
    display: flex;
    align-items: center;
}

.icon-action:hover {
    color: #78B327;
}

.cart-group {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
}

.cart-icon-wrap {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon-wrap .material-symbols-outlined {
    font-size: 32px;
    color: #333;
}

.cart-icon-wrap i {
    font-size: 26px;
    color: #333;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #78B327;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.cart-text .ct-label {
    font-size: 11.5px;
    color: #999;
}

.cart-text .ct-price {
    font-size: 16px;
    font-weight: 800;
    color: #222;
}

/* ── ROW 3: NAVIGATION BAR ── */
.nav-bar {
    background: #fff;
    border-bottom: 2px solid #ebebeb;
    width: 100%;
}

.nav-bar-inner {
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    height: 54px;
}

.all-departments-wrapper {
    position: relative;
    height: 100%;
}

.all-departments {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    padding-right: 24px;
    border-right: 1px solid #e8e8e8;
    height: 100%;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color .2s;
    font-family: 'Inter', sans-serif;
}

.all-departments:hover {
    color: #78B327;
}

.all-departments .bars-icon {
    font-size: 15px;
}

.all-departments .chev-icon {
    font-size: 10px;
    color: #999;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 1200px;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 40px;
    border-radius: 0 0 15px 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

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

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.mega-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f2f2f2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-col h4:not(:first-child) {
    margin-top: 35px;
}

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

.mega-col li {
    margin-bottom: 12px;
}

.mega-col a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
    line-height: 1.5;
    display: block;
}

.mega-col a:hover {
    color: #78B327;
    transform: translateX(5px);
}

@media (max-width: 1240px) {
    .mega-menu {
        width: 1000px;
    }
}

@media (max-width: 1024px) {
    .mega-menu {
        width: 900px;
    }
}

@media (max-width: 992px) {
    .mega-menu {
        display: none !important;
    }
}

.main-nav {
    display: flex;
    align-items: center;
    list-style: none;
    flex: 1;
    height: 100%;
    padding-left: 8px;
}

.main-nav li {
    height: 100%;
    display: flex;
    align-items: center;
}

.main-nav li a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 18px;
    height: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: color .2s;
    white-space: nowrap;
}

.main-nav li a.active {
    color: #78B327;
    font-weight: 600;
}

.main-nav li a:hover {
    color: #78B327;
}

.main-nav li a .chev {
    font-size: 9px;
    color: #aaa;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-shrink: 0;
}

.nav-right a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: color .2s;
}

.nav-right a:hover {
    color: #78B327;
}

.nav-right a .nr-icon {
    font-size: 15px;
    color: #78B327;
}

/* ── HERO SECTION ── */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 680px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: none;
    z-index: 1;
}

.hero-content-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1240px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-bulk-badge {
    display: inline-block;
    background: #78B327;
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    color: #fff;
    font-size: 82px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-hindi-subtitle {
    color: #fff;
    font-size: 22px;
    margin-bottom: 45px;
    font-weight: 500;
    opacity: 0.9;
}

.hero-form-group {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 580px;
    height: 68px;
    background: #141414;
    border-radius: 50px;
    padding: 6px;
}

.hero-pill-wrap {
    display: flex;
    align-items: center;
    padding: 24px 28px;
    flex: 1;
    height: 100%;
}

.hero-pill-left-icon {
    color: #777;
    margin-right: 14px;
    font-variation-settings: 'wght' 300;
    font-size: 24px;
}

.hero-pill-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    height: 100%;
    width: 100%;
}

.hero-pill-input::placeholder {
    color: #444;
}

.hero-pill-btn {
    height: 100%;
    padding: 0 32px;
    border-radius: 50px;
    background: #fff;
    color: #000;
    border: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-pill-btn .material-symbols-outlined {
    font-size: 22px;
    font-variation-settings: 'wght' 300;
}

.hero-pill-btn:hover {
    background: #f0f0f0;
    transform: scale(1.02);
}

/* ── HERO CAROUSEL ── */
.hero-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Prev / Next buttons */
.hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.32);
    transform: translateY(-50%) scale(1.08);
}

.hero-carousel-btn .material-symbols-outlined {
    font-size: 30px;
    font-variation-settings: 'wght' 300;
}

.hero-prev { left: 28px; }
.hero-next { right: 28px; }

/* Dot indicators */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.35s ease;
}

.hero-dot.active {
    background: #fff;
    width: 28px;
    border-radius: 5px;
}

/* ── NEW BUTTON DESIGN ── */
.Btn-Container {
    display: flex;
    width: 190px;
    height: 48px;
    background-color: #1d2129;
    border-radius: 50px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
    padding-right: 2px;
    transition: transform 0.3s ease;
}

.Btn-Container:hover {
    transform: translateY(-2px);
}

.icon-Container {
    width: 44px;
    height: 44px;
    background-color: #84BC3C;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid #1d2129;
    flex-shrink: 0;
}

.Btn-Container .btn-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.2px;
    padding-left: 10px;
}

.icon-Container svg {
    transition-duration: 1.5s;
}

.Btn-Container:hover .icon-Container svg {
    animation: arrow 1s linear infinite;
}

@keyframes arrow {
    0% {
        opacity: 0;
        margin-left: 0px;
    }

    100% {
        opacity: 1;
        margin-left: 10px;
    }
}

.Btn-Container.light {
    background-color: #fff;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
}

.Btn-Container.light .btn-text {
    color: #1d2129;
}

.Btn-Container.light .icon-Container {
    border-color: #fff;
}

/* ── PRODUCT SHOWCASE SECTION ── */
.showcase-section {
    background: #fff;
    padding: 80px 40px;
    width: 100%;
}

.showcase-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 40px;
}

.showcase-title-wrap {
    max-width: 480px;
}

.showcase-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.showcase-subtitle {
    max-width: 320px;
    font-size: 13.5px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* FEATURED SECTION */
.featured-section {
    padding: 80px 10px;
    background: #f9f9f9;
    width: 100%;
}

.featured-header {
    text-align: center;
    margin-bottom: 50px;
}

.featured-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    width: 100%;
}

.featured-card {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.featured-image {
    background: #f5f5f5;
    border-radius: 10px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 12px;
    overflow: hidden;
}

.featured-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.08);
}

.featured-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: none;
    text-transform: uppercase;
    z-index: 10;
    pointer-events: none;
}

.featured-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 4px;
}

.featured-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.featured-price {
    margin-top: auto;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.featured-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    width: 100%;
}

.featured-footer-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* ── PROMO BANNERS ── */
.promo-banners {
    width: 100%;
    padding: 40px 40px 48px;
    background: #f5f5f5;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    box-sizing: border-box;
}

.promo-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 190px;
    transition: transform .25s, box-shadow .25s;
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

.promo-card.light {
    background: #efefef;
}

.promo-card.dark {
    background: #1c1c1c;
}

.promo-card-img {
    width: 48%;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
}

.promo-card-body {
    flex: 1;
    padding: 28px 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.promo-tag {
    font-size: 11.5px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-card.dark .promo-tag {
    color: #78B327;
}

.promo-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.promo-card.dark .promo-title {
    color: #fff;
    font-size: 28px;
}

.promo-discount {
    font-size: 16px;
    font-weight: 700;
    color: #78B327;
}

.promo-code {
    font-size: 12.5px;
    color: #aaa;
    margin-top: 2px;
}

.promo-code span {
    font-weight: 700;
    color: #ccc;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, color .2s, transform .15s;
    border: 1.5px solid #333;
    color: #333;
    background: transparent;
    width: fit-content;
}

.promo-btn:hover {
    background: #333;
    color: #fff;
    transform: translateX(2px);
}

.promo-btn.orange {
    background: #78B327;
    border-color: #78B327;
    color: #fff;
}

.promo-btn.orange:hover {
    background: #72a333;
    border-color: #72a333;
}

.promo-person-placeholder {
    width: 48%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #d0cec8 0%, #bab8b2 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.promo-person-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.08), transparent);
}

.promo-person-silhouette {
    font-size: 90px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: -8px;
}

/* ── CATEGORIES SECTION ── */
.categories-section {
    width: 100%;
    margin: 60px 0 40px;
    padding: 0 10px;
}

.categories-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 28px;
    gap: 8px;
}

.categories-title {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    margin: 0;
    letter-spacing: -0.3px;
}

.categories-subtitle {
    font-size: 14px;
    color: #777;
    margin: 6px 0 0;
}

.categories-slider-wrap {
    position: relative;
}

.categories-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 4px 2px 14px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    min-height: 140px;
    flex: 0 0 200px;
    scroll-snap-align: start;
}

.cat-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #555;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    z-index: 5;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cat-slider-btn:hover {
    background: #78B327;
    color: #fff;
    border-color: #78B327;
}

.cat-slider-btn.prev {
    left: -8px;
}

.cat-slider-btn.next {
    right: -8px;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: #78B327;
    box-shadow: 0 10px 24px rgba(132, 188, 60, 0.15);
}

.category-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f4faec;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #78B327;
    font-size: 22px;
    margin-bottom: 12px;
    transition: background 0.25s ease, color 0.25s ease;
}

.category-card:hover .category-icon {
    background: #78B327;
    color: #fff;
}

.category-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

/* ── BULK OFFER BANNER ── */
.bulk-offer-banner {
    position: relative;
    width: 100%;
    margin: 40px 0;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bulk-offer-content {
    position: relative;
    margin-left: 8%;
    max-width: 560px;
    padding: 56px 48px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 18px;
    box-shadow:
        0 8px 32px rgba(31, 38, 135, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    color: #ffffff;
    overflow: hidden;
}

.bulk-offer-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.bulk-offer-content>* {
    position: relative;
    z-index: 1;
}

.bulk-offer-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 18px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.bulk-offer-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 26px;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.bulk-offer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    padding: 0 28px;
    height: 50px;
    background: #78B327;
    border: none;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(132, 188, 60, 0.35);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.bulk-offer-link:hover {
    background: #72a333;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(132, 188, 60, 0.45);
}

.bulk-offer-link i {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.bulk-offer-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .bulk-offer-content {
        margin: 0 4%;
        padding: 36px 24px;
        max-width: none;
    }

    .bulk-offer-title {
        font-size: 30px;
    }
}

/* ── SPECIAL OFFER BANNER ── */
.special-offer-banner {
    width: 100%;
    background: #84BC3C;
    padding: 40px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    color: #fff;
    margin-bottom: 60px;
    gap: 15px;
}

.so-left {
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    min-width: 180px;
}

.so-special {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: -5px;
}

.so-offer {
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.so-discount {
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.so-discount-percent {
    font-size: 34px;
    font-style: italic;
}

.so-center {
    z-index: 2;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.so-center-img {
    max-height: 150px;
    width: 100%;
    max-width: 600px;
    object-fit: contain;
}

.so-right {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-width: 180px;
}

.so-promo-box {
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 8px 28px;
    text-align: center;
}

.so-promo-use {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    display: block;
}

.so-promo-code {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.so-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.1;
    background-image: radial-gradient(#fff 1.5px, transparent 1.5px);
    background-size: 20px 20px;
}

/* ── BEST SELLER SECTION ── */
.best-seller-section {
    background: #f1f1f1;
    padding: 100px 0;
    text-align: center;
}

.bs-title {
    font-size: 80px;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -2.5px;
    text-transform: uppercase;
    line-height: 0.9;
}

.bs-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 60px;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bs-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, auto));
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 80px;
}

.bs-tab {
    font-size: 14px;
    font-weight: 800;
    color: #444;
    text-transform: uppercase;
    cursor: pointer;
    padding: 14px 32px;
    transition: all 0.3s ease;
    border-radius: 4px;
    letter-spacing: 0.5px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.bs-tab.active {
    background: #000000;
    color: #fff;
}

.bs-tab:not(.active):hover {
    background: #e5e5e5;
    color: #000;
}

.bs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto 60px;
    box-sizing: border-box;
}

.bs-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 18px;
    cursor: pointer;
}

.bs-image-box {
    background: #fff;
    border-radius: 18px;
    aspect-ratio: 1 / 1.15;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bs-card:hover .bs-image-box {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bs-image-box img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.bs-card:hover .bs-image-box img {
    transform: scale(1.05);
}

.bs-wishlist {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #d1d1d1;
    font-size: 14px;
    transition: color 0.3s;
}

.bs-wishlist:hover,
.bs-wishlist.active {
    color: #ff4d4d;
}

.bs-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 4px;
}

.bs-info h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    color: #1a1a1a;
    letter-spacing: 0;
    margin-bottom: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.bs-info p {
    font-size: 11px;
    color: #777;
    font-weight: 500;
    margin-bottom: 4px;
}

.bs-price {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.view-collection-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* ── REVIEWS SECTION ── */
.reviews-section {
    width: 100%;
    padding: 80px 40px;
    background: #fdfdfd;
}

.reviews-trust-header {
    text-align: center;
    margin-bottom: 70px;
}

.reviews-main-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -1.2px;
}

.trustpilot-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    color: #555;
}

.tp-score {
    font-weight: 500;
}

.tp-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #000;
    font-weight: 700;
    font-size: 18px;
}

.tp-logo i {
    color: #00b67a;
    font-size: 20px;
}

.tp-count {
    color: #777;
}

.reviews-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.reviews-sidebar {
    padding-top: 20px;
}

.quote-icon {
    font-size: 64px;
    color: #bbb;
    margin-bottom: 24px;
    opacity: 0.8;
}

.sidebar-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.reviews-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rev-control-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #222;
    font-size: 18px;
    padding: 0;
    transition: opacity 0.2s;
}

.rev-control-btn:hover {
    opacity: 0.6;
}

.rev-progress-bar {
    flex: 1;
    height: 2px;
    background: #eee;
    position: relative;
    max-width: 140px;
}

.rev-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
    background: #222;
    transition: width 0.3s ease;
}

.reviews-slider-wrap {
    overflow: hidden;
    position: relative;
}

.reviews-grid {
    display: flex;
    gap: 24px;
    overflow: hidden !important;
    padding: 20px 10px 100px;
    position: relative;
}

.reviews-grid-inner {
    display: flex;
    gap: 24px;
    will-change: transform;
    width: max-content;
}

.review-card-container {
    flex: 0 0 380px;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.review-card-container:nth-child(even) {
    transform: translateY(30px);
}

.review-card-container:nth-child(3n) {
    transform: translateY(60px);
}

.review-card-container:nth-child(3n+1) {
    transform: translateY(0);
}

.review-bubble {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    margin-bottom: 24px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-bubble::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 32px;
    width: 24px;
    height: 24px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.review-stars {
    display: flex;
    gap: 4px;
    color: #00b67a;
    font-size: 12px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 8px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: #eee;
}

.user-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.review-time {
    font-size: 12px;
    color: #999;
}

@media (max-width: 1024px) {
    .reviews-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reviews-sidebar {
        text-align: center;
    }

    .reviews-controls {
        justify-content: center;
    }

    .sidebar-title {
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .review-card-container {
        flex: 0 0 300px;
    }

    .reviews-main-title {
        font-size: 32px;
    }
}

/* ── FOOTER ── */
.site-footer-wrap {
    position: relative;
    margin-top: 120px;
    background: #84BC3C;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.footer-newsletter {
    position: relative;
    top: -60px;
    max-width: 1240px;
    margin: 0 auto -60px;
    background: #000;
    border-radius: 12px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.footer-newsletter h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 6px;
    flex: 1;
    max-width: 600px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0 24px;
    color: #fff;
    font-size: 15px;
    height: 52px;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 0 36px;
    height: 52px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.newsletter-form button:hover {
    background: #f0f0f0;
    transform: scale(1.02);
}

.site-footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 100px 32px 30px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 48px;
    position: relative;
}

.footer-brand-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.footer-brand-logo .logo-mark {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 6px;
    display: grid;
    place-items: center;
    color: #84BC3C;
    font-size: 18px;
}

.footer-brand-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 28px;
    max-width: 320px;
}

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

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    display: grid;
    place-items: center;
    color: #1a1a1a;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
    font-size: 14px;
}

.footer-socials a:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 6px 0 22px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color .2s ease, transform .2s ease;
}

.footer-col ul a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #1a1a1a;
    font-size: 11px;
}

.footer-col ul a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
}

.footer-contact-item i {
    color: #1a1a1a;
    margin-top: 4px;
}

.footer-website {
    text-align: center;
    padding: 20px 0 28px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1a1a1a;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 18px 32px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.12);
}

.footer-bg-deco {
    position: absolute;
    right: 40px;
    bottom: 40px;
    font-size: 280px;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    pointer-events: none;
}

/* ── MOBILE NAV (EXACT) ── */
.mobile-side-nav {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: #fff;
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-side-nav.active {
    left: 0;
}

.side-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.side-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-nav-header {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.side-nav-logo img {
    max-height: 48px;
    width: auto;
}

.side-nav-close {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    padding: 10px;
}

.side-nav-content {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

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

.side-nav-menu li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.side-nav-menu li a i {
    width: 24px;
    font-size: 18px;
    color: #78B327;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-nav-menu li a.active {
    background: #f4faec;
    color: #78B327;
}

.side-nav-menu li button {
    transition: all 0.2s ease;
}

.side-nav-menu li button i {
    width: 24px;
    font-size: 18px;
    color: #78B327;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-nav-menu li button:hover {
    background: #f9f9f9;
}

.side-nav-menu li button.logout-btn i {
    color: #e74c3c;
}

.d-desktop-only {
    display: flex !important;
}

@media (max-width: 991px) {
    .d-desktop-only {
        display: none !important;
    }
}

.side-nav-divider {
    height: 1px;
    background: #f1f1f1;
    margin: 15px 0;
    width: 100%;
}

.side-nav-menu.secondary li a {
    font-size: 15px;
    font-weight: 500;
    color: #444;
}

/* Mobile Search Overlay - Base (Desktop Hidden) */
.mobile-search-overlay {
    display: none;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    justify-content: space-around;
    padding: 12px 10px;
    border-top: 1px solid #ebebeb;
}

.mb-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.mb-nav-item i,
.mb-nav-item .material-symbols-outlined {
    font-size: 22px;
}

.mb-nav-item:hover,
.mb-nav-item.active {
    color: #78B327;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: 1px solid #e1e1e1;
        border-radius: 4px;
        width: 42px;
        height: 42px;
        padding: 0;
        cursor: pointer;
        flex-shrink: 0;
    }

    .mobile-menu-btn .material-symbols-outlined {
        font-size: 30px;
        color: #111;
        font-weight: 300;
    }

    .main-header {
        padding: 12px 15px !important;
        gap: 15px !important;
        justify-content: space-between;
    }

    .utility-left .sep,
    .utility-right a:not(.lang-btn),
    .utility-right .sep {
        display: none;
    }

    .utility-bar {
        padding: 10px 20px;
    }

    .utility-left {
        gap: 20px;
    }

    .nav-bar {
        display: none;
    }

    .main-header {
        padding: 15px 20px;
        position: relative;
        justify-content: flex-start;
    }

    .mobile-menu-btn {
        display: block;
        flex-shrink: 0;
        margin-right: auto;
    }

    .search-bar,
    .live-chat,
    .icon-action:not(.cart-group) {
        display: none;
    }

    .header-right {
        gap: 0;
        margin-left: auto;
    }

    .header-right .icon-action {
        display: none;
    }

    .site-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }

    .site-logo img {
        max-height: 40px;
    }

    .cart-text {
        display: none;
    }

    .cart-icon-wrap {
        width: auto;
        height: auto;
    }

    .mobile-bottom-nav {
        display: flex !important;
        z-index: 9999;
    }

    body {
        padding-bottom: 70px;
        /* Space for bottom nav */
    }

    /* General Mobile Fixes */
    .hero-title {
        font-size: 42px;
    }

    .hero-hindi-subtitle {
        font-size: 16px;
    }


    .showcase-title {
        font-size: 32px;
    }

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

    .promo-banners {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 20px;
        padding: 40px 20px;
    }

    .promo-card {
        flex: 0 0 92%;
        scroll-snap-align: center;
        min-height: 220px;
        /* border-radius: 16px; */
    }

    .promo-card-body {
        padding: 30px 20px;
    }

    .promo-title {
        font-size: 26px;
    }

    .promo-btn {
        padding: 12px 24px;
        font-size: 13px;
        font-weight: 800;
        border: 2px solid #000;
        margin-top: 20px;
    }

    .categories-header {
        text-align: center;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .categories-title {
        font-size: 34px !important;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 8px;
        letter-spacing: -1px;
    }

    .categories-subtitle {
        font-size: 14px;
        color: #888;
        line-height: 1.5;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
    }

    .categories-grid {
        padding: 10px 20px 30px !important;
        gap: 15px !important;
    }

    .category-card {
        flex: 0 0 calc(55% - 20px) !important;
        min-height: 160px !important;
        padding: 25px 15px !important;
        border-radius: 12px !important;
        background: #fff !important;
        border: 1px solid #f0f0f0 !important;
    }

    .category-icon {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 15px !important;
        background: #f4faec !important;
        color: #78B327 !important;
    }

    .category-name {
        font-size: 13px !important;
        font-weight: 700 !important;
        color: #1a1a1a !important;
        text-transform: none !important;
    }

    .bs-title {
        font-size: 52px !important;
        letter-spacing: -2px;
        line-height: 0.95;
        margin-bottom: 12px;
        font-weight: 900;
    }

    .bs-subtitle {
        font-size: 13px;
        margin-bottom: 40px;
        padding: 0 30px;
        color: #777;
        line-height: 1.4;
    }

    .bs-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 0 15px 40px !important;
        overflow: visible !important;
    }

    .bs-card {
        flex: none !important;
        width: 100%;
        background: transparent;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .bs-image-box {
        background: #fff;
        border-radius: 12px !important;
        aspect-ratio: 1/1 !important;
        padding: 20px !important;
    }

    .reviews-layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .reviews-sidebar {
        text-align: center;
        padding-top: 0;
    }

    .sidebar-title {
        font-size: 28px !important;
        margin-bottom: 24px;
    }

    .reviews-controls {
        justify-content: center;
    }

    .bs-tabs {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 15px 50px !important;
        margin-bottom: 0 !important;
    }

    .bs-tab {
        padding: 12px 10px !important;
        font-size: 12px !important;
        text-align: center;
        min-width: 0 !important;
        border-radius: 4px;
        font-weight: 800;
        background: #f8f8f8;
    }

    .bs-tab.active {
        background: #000 !important;
        color: #fff !important;
    }


    .cat-slider-btn {
        display: none;
    }

    .special-offer-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px;
        gap: 20px;
    }

    .so-left,
    .so-right {
        width: 100%;
        align-items: center;
    }

    .so-offer {
        font-size: 48px;
    }

    .so-discount-percent {
        font-size: 28px;
    }

    .so-center-img {
        max-height: 120px;
        width: 100%;
    }

    .so-promo-box {
        padding: 6px 15px;
    }

    .review-card-container {
        flex: 0 0 280px !important;
    }

    .review-card-container:nth-child(even),
    .review-card-container:nth-child(3n) {
        transform: translateY(0) !important;
    }

    .site-footer-inner {
        flex-wrap: wrap;
    }


    .showcase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    /* ── Hero mobile fixes (REWRITE) ── */
    .hero-section {
        min-height: 600px;
        padding: 40px 0;
    }

    .hero-overlay {
        background: none !important;
    }

    .hero-content-wrap {
        padding: 0 20px;
    }

    .hero-bulk-badge {
        font-size: 13px;
        padding: 8px 20px;
        margin-bottom: 18px;
        font-weight: 800;
    }

    .hero-title {
        font-size: 48px !important;
        line-height: 1.05;
        letter-spacing: -1.5px;
        margin-bottom: 12px;
        font-weight: 900;
    }

    .hero-hindi-subtitle {
        font-size: 18px !important;
        margin-bottom: 35px;
        opacity: 1;
        font-weight: 600;
    }

    .hero-form-group {
        flex-direction: column;
        height: auto;
        background: transparent;
        padding: 0;
        gap: 14px;
        max-width: 100%;
    }

    .hero-pill-wrap {
        width: 100% !important;
        background: #141414 !important;
        border-radius: 50px !important;
    }

    .hero-pill-left-icon {
        font-size: 22px !important;
        margin-right: 12px !important;
        color: #999 !important;
        font-variation-settings: 'wght' 300 !important;
    }

    .hero-pill-input {
        font-size: 20px !important;
        font-weight: 700 !important;
        color: #fff !important;
    }

    .hero-pill-input::placeholder {
        color: #fff !important;
        opacity: 1 !important;
    }

    .hero-pill-btn {
        width: 100% !important;
        height: 68px !important;
        font-size: 17px !important;
        border-radius: 50px !important;
        background: #fff !important;
        color: #000 !important;
        font-weight: 800 !important;
        justify-content: center;
        gap: 10px;
    }

    .hero-pill-btn .material-symbols-outlined {
        font-size: 24px !important;
        font-variation-settings: 'wght' 300 !important;
    }

    .hero-carousel-btn {
        width: 40px;
        height: 40px;
    }

    .hero-carousel-btn .material-symbols-outlined {
        font-size: 22px;
    }

    .hero-prev { left: 12px; }
    .hero-next { right: 12px; }

    .hero-dots {
        bottom: 16px;
    }

    /* Featured Section Mobile Sliding */
    .featured-section {
        padding: 60px 0;
        overflow: hidden;
    }

    .featured-header {
        padding: 0 20px;
        text-align: left;
        margin-bottom: 30px;
    }

    .featured-title {
        font-size: 32px;
        text-align: left;
    }

    .featured-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px 30px;
        gap: 15px;
    }

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

    .featured-card {
        padding: 12px;
        border-radius: 12px;
    }

    .featured-image {
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .featured-name {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .featured-desc {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .featured-price {
        font-size: 18px;
    }

    .featured-footer {
        margin-top: 20px;
        padding: 0 20px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .featured-footer-wrap {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .Btn-Container {
        width: 190px;
        margin: 0 auto;
    }

    /* Footer Responsive */
    .footer-newsletter {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
        top: -40px;
        margin-bottom: -38px;
        gap: 10px;
    }

    .newsletter-form {
        width: 100%;
        max-width: 100%;
        padding: 4px;
        gap: 5px;
    }

    .newsletter-form input[type="email"] {
        padding: 0 7px;
        font-size: 13px;
        height: 44px;
    }

    .newsletter-form button {
        padding: 0 15px;
        height: 44px;
        font-size: 12px;
        flex-shrink: 0;
    }

    .site-footer-inner {
        grid-template-columns: 1fr 1fr;
        padding: 60px 24px 30px;
        gap: 32px;
    }

    @media (max-width: 640px) {
        .site-footer-inner {
            grid-template-columns: 1fr;
            padding: 60px 24px 24px;
        }

        .footer-newsletter h3 {
            font-size: 22px;
        }

        .footer-website {
            font-size: 18px;
        }
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px 20px 32px;
    }

    /* Hide specific slider buttons on mobile */
    .cat-slider-btn {
        display: none;
    }

    /* Mobile Search Overlay */
    .mobile-search-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 2000;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        flex-direction: column;
    }

    .mobile-search-overlay.active {
        transform: translateY(0);
    }

    .m-search-header {
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #eee;
    }

    .m-search-header h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 0;
    }

    .m-search-close {
        background: none;
        border: none;
        font-size: 20px;
        color: #333;
        cursor: pointer;
    }

    .m-search-body {
        padding: 20px;
    }

    .m-search-form {
        display: flex;
        background: #f5f5f5;
        border-radius: 8px;
        padding: 5px;
        margin-bottom: 30px;
    }

    .m-search-form input {
        flex: 1;
        background: none;
        border: none;
        outline: none;
        padding: 12px 15px;
        font-size: 15px;
    }

    .m-search-form button {
        background: #78B327;
        color: #fff;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 6px;
        font-size: 18px;
    }

    .m-search-popular h4 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #666;
    }

    .m-search-categories {
        margin-bottom: 25px;
    }

    .category-tags,
    .popular-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .category-tags a,
    .popular-tags a {
        background: #f0f0f0;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 13px;
        color: #444;
    }

    .search-suggestions-dropdown {
        position: relative;
        top: 0;
        width: 100%;
        background: #fff;
        z-index: 1000;
        box-shadow: none;
        max-height: 400px;
        overflow-y: auto;
        display: none;
        border: 1px solid #eee;
        margin-bottom: 20px;
    }

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

/* ==========================================================================
   SHARED CONTAINER
   ========================================================================== */

.pl-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

/* ==========================================================================
   PRODUCT LISTING PAGE
   ========================================================================== */

/* ---- Layout ---- */
.pl-section {
    background: #f5f6f5;
    padding: 20px 0 60px;
    width: 100%;
}

.pl-wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 20px;
    align-items: start;
}

/* ---- Sidebar ---- */
.pl-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 18px 16px;
    position: sticky;
    top: 120px;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
}

.pl-sidebar-heading {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 2px solid #78B327;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Category List */
.pl-cat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.pl-cat-item {
    border-radius: 8px;
    margin-bottom: 4px;
}

.pl-cat-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: #444;
    border-radius: 8px;
    transition: background .15s, color .15s;
    text-decoration: none;
}

.pl-cat-item a:hover {
    background: #f0f7e6;
    color: #78B327;
}

.pl-cat-item.is-active a {
    background: #78B327;
    color: #fff;
    font-weight: 600;
}

.pl-cat-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
}

/* Price Filter */
.pl-price-filter {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-bottom: 24px;
}

.pl-price-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.pl-price-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.pl-price-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pl-price-field label {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.pl-price-field input {
    width: 100%;
    border: 1.5px solid #e0e0e0;
    border-radius: 7px;
    padding: 8px 10px;
    font-size: 13px;
    color: #333;
    outline: none;
    font-family: inherit;
    transition: border-color .2s;
    box-sizing: border-box;
}

.pl-price-field input:focus {
    border-color: #78B327;
}

.pl-apply-btn {
    width: 100%;
    background: #78B327;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s;
    letter-spacing: 0.3px;
}

.pl-apply-btn:hover {
    background: #6a9d20;
}

/* Recent Products */
.pl-recent {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.pl-recent-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.pl-recent-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pl-recent-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.pl-recent-img {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

.pl-recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl-recent-info {
    flex: 1;
    min-width: 0;
}

.pl-recent-name {
    font-size: 12.5px;
    font-weight: 600;
    color: #333;
    margin: 0 0 3px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pl-recent-price {
    font-size: 12px;
    font-weight: 700;
    color: #78B327;
    margin: 0;
}

/* ---- Main Content ---- */
.pl-main {
    min-width: 0;
}

/* Top bar */
.pl-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 14px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

/* Breadcrumb */
.pl-breadcrumb {
    font-size: 13px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pl-breadcrumb a {
    color: #777;
    transition: color .2s;
    text-decoration: none;
}

.pl-breadcrumb a:hover {
    color: #78B327;
}

.pl-bc-sep {
    color: #78B327;
    font-weight: 700;
    font-size: 15px;
}

.pl-bc-current {
    color: #78B327;
    font-weight: 600;
}

/* Sort */
.pl-sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pl-sort-label {
    font-size: 13px;
    color: #777;
    white-space: nowrap;
}

.pl-sort {
    position: relative;
}

.pl-sort-btn {
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    transition: border-color .2s;
    white-space: nowrap;
}

.pl-sort-btn:hover {
    border-color: #78B327;
}

.pl-sort-btn i {
    font-size: 11px;
    color: #888;
    transition: transform .2s;
}

.pl-sort-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    min-width: 200px;
    padding: 6px;
    display: none;
    z-index: 100;
}

.pl-sort-menu.is-open {
    display: block;
}

.pl-sort-menu a {
    display: block;
    padding: 9px 12px;
    font-size: 13px;
    color: #444;
    border-radius: 6px;
    transition: background .15s;
    text-decoration: none;
}

.pl-sort-menu a:hover,
.pl-sort-menu a.is-active {
    background: #f0f7e6;
    color: #78B327;
    font-weight: 600;
}

/* Mobile toolbar */
.pl-mobile-toolbar {
    display: none;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.pl-mobile-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    font-family: inherit;
}

.pl-toolbar-sep {
    width: 1px;
    background: #eee;
    height: 24px;
    align-self: center;
}

/* ---- Product Grid ---- */
.pl-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.pl-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
}

.pl-empty i {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.pl-empty p {
    font-size: 16px;
    margin: 0;
}

/* ---- Product Card ---- */
.pl-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
    transition: box-shadow .25s ease, transform .25s ease;
    border: 1px solid #f0f0f0;
}

.pl-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transform: translateY(-2px);
}

.pl-card-img-wrap {
    display: block;
    position: relative;
    background: #f5f5f5;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 10px;
    margin-bottom: 12px;
}

.pl-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    box-sizing: border-box;
    transition: transform .4s ease;
}

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

.pl-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    z-index: 2;
    background: #fff;
    color: #1a1a1a;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.pl-card-body {
    padding: 10px 10px 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pl-card-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.3;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .15s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.pl-card-title:hover {
    color: #78B327;
}

.pl-card-desc {
    font-size: 11px;
    color: #78B327;
    font-style: italic;
    line-height: 1.35;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pl-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.pl-card-price {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.pl-card-details {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    transition: color .15s;
}

.pl-card-details:hover {
    color: #78B327;
}

.pl-card-actions {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: auto;
}

.pl-btn-cart,
.pl-btn-buy {
    width: 100%;
    padding: 7px 10px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
    letter-spacing: 0.1px;
}

.pl-btn-cart {
    background: #fff;
    border: 1.5px solid #d0d0d0;
    color: #333;
}

.pl-btn-cart:hover {
    border-color: #78B327;
    color: #78B327;
    background: #f0f7e6;
}

.pl-btn-buy {
    background: #1a1a1a;
    border: 1.5px solid #1a1a1a;
    color: #fff;
}

.pl-btn-buy:hover {
    background: #78B327;
    border-color: #78B327;
}

/* ---- Pagination ---- */
/* Pagination styling for blog and other frontend pages */
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    margin: 0;
    gap: 5px;
}

.pagination li {
    display: inline-block;
}

.pagination .page-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px !important;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    transition: all .2s;
    padding: 0;
}

.pagination .page-link:hover {
    border-color: #78B327;
    color: #78B327;
    background: #f0f7e6;
}

.pagination .page-item.active .page-link {
    background: #78B327;
    border-color: #78B327;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
    pointer-events: none;
}

.pagination svg {
    width: 20px;
    height: 20px;
}

.pl-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e8e8e8;
}

.pl-page-arrow {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: all .2s;
}

.pl-page-arrow:hover {
    border-color: #78B327;
    color: #78B327;
    background: #f0f7e6;
}

.pl-page-arrow--disabled {
    opacity: 0.35;
    pointer-events: none;
}

.pl-page-nums {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.pl-page-num {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    transition: all .2s;
}

.pl-page-num:hover {
    border-color: #78B327;
    color: #78B327;
}

.pl-page-num.is-active {
    background: #78B327;
    border-color: #78B327;
    color: #fff;
}

/* ---- Filter Drawer ---- */
.pl-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.pl-drawer-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.pl-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: #fff;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right .3s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 24px rgba(0,0,0,.15);
}

.pl-drawer.is-open {
    right: 0;
}

.pl-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.pl-drawer-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    color: #111;
}

.pl-drawer-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #555;
    cursor: pointer;
    padding: 4px;
}

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

.pl-content-title {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px;
}

.pl-drawer-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pl-drawer-cat-list li {
    border-bottom: 1px solid #f5f5f5;
}

.pl-drawer-cat-list a {
    display: block;
    padding: 10px 6px;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    transition: color .15s;
}

.pl-drawer-cat-list a:hover,
.pl-drawer-cat-list a.is-active {
    color: #78B327;
    font-weight: 600;
}

.pl-drawer-footer {
    padding: 16px 20px;
    border-top: 1px solid #f0f0f0;
}

.pl-show-results {
    width: 100%;
    background: #78B327;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s;
}

.pl-show-results:hover {
    background: #6a9d20;
}

/* ---- Responsive ---- */
@media (max-width: 1400px) {
    .pl-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1100px) {
    .pl-wrap {
        grid-template-columns: 200px 1fr;
        gap: 16px;
        padding: 0 16px;
    }
    .pl-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .pl-wrap {
        grid-template-columns: 180px 1fr;
        gap: 14px;
        padding: 0 14px;
    }
    .pl-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pl-sort-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid #ececec;
    border-top: 1px solid #ececec;
    transform: rotate(45deg);
    border-top-left-radius: 2px;
}

@media (max-width: 768px) {
    .pl-mobile-sort-wrap .pl-sort-menu::before {
        right: auto;
        left: 20px;
    }
    .pl-mobile-sort-wrap {
        flex: 1;
        position: relative;
        display: flex;
    }
    .pl-mobile-sort-trigger {
        width: 100%;
    }
    .pl-mobile-sort-wrap .pl-sort-menu {
        left: 0;
        right: auto;
        width: 220px;
        top: calc(100% + 10px);
    }
    .pl-wrap {
        grid-template-columns: 1fr;
        padding: 0 14px;
    }
    .pl-sidebar {
        display: none;
        position: static;
    }
    .pl-mobile-toolbar {
        display: flex;
    }
    .pl-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .pl-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .pl-section {
        padding: 16px 0 60px;
    }
}

@media (max-width: 480px) {
    .pl-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .pl-card-title {
        font-size: 12.5px;
    }
    .pl-card-price {
        font-size: 14px;
    }
    .pl-btn-cart,
    .pl-btn-buy {
        font-size: 11.5px;
        padding: 8px 8px;
    }
    .cd-item-img {
        width: 65px;
        height: 65px;
    }
    .cd-item-name {
        font-size: 13px;
        padding-right: 25px;
    }
    .cd-item-price {
        font-size: 14px;
    }
}


/* Quick Order Section */
.pl-quick-order {
    padding: 80px 0;
    background: #fff;
}

.pl-qo-header {
    text-align: center;
    margin-bottom: 40px;
}

.pl-qo-title {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.pl-qo-subtitle {
    font-size: 16px;
    color: #666;
}

.pl-qo-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pl-qo-form-group {
    margin-bottom: 60px;
}

.pl-qo-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #555;
    margin-bottom: 12px;
}

.pl-qo-search-wrap {
    position: relative;
    width: 100%;
}

.pl-qo-input {
    width: 100%;
    height: 52px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0 48px 0 16px;
    font-size: 15px;
    outline: none;
    transition: border-color .2s;
}

.pl-qo-input:focus {
    border-color: #111;
}

.pl-qo-search-wrap i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 18px;
}

.pl-qo-empty {
    text-align: center;
    padding: 40px 0;
}

.pl-qo-empty-icon {
    font-size: 48px;
    color: #a0a8b1;
    margin-bottom: 20px;
}

.pl-qo-empty-icon i {
    transform: rotate(90deg);
}

.pl-qo-empty-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.pl-qo-empty-text {
    font-size: 14px;
    color: #777;
}

/* Recently Viewed Section */
.pl-recently-viewed {
    padding: 80px 0;
    background: #fcfcfc;
    border-top: 1px solid #f0f0f0;
}

.pl-rv-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 40px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.pl-rv-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .pl-qo-box {
        padding: 24px;
    }
    
    .pl-rv-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .pl-quick-order, .pl-recently-viewed {
        padding: 60px 0;
    }
    
    .pl-qo-title {
        font-size: 28px;
    }
    
    .pl-qo-form-group {
        margin-bottom: 40px;
    }
    
    .pl-rv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fcfcfc;
}

.faq-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: start;
}

.faq-sidebar {
    text-align: center;
    position: sticky;
    top: 100px;
}

.faq-main-title {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.5px;
}

.faq-subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 100%;
}

.faq-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.faq-contact-text {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.faq-contact-text i {
    font-size: 20px;
    color: #111;
}

.faq-contact-btn {
    background: #22c55e;
    color: #fff;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all .25s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25);
}

.faq-contact-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

.faq-content {
    flex: 1;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open {
    border-color: #cbd5e1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    background: none;
    border: none;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    gap: 20px;
}

.faq-icon-box {
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1.5px solid #22c55e;
    color: #22c55e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    transition: all .3s ease;
}

.faq-item.is-open .faq-icon-box {
    background: #22c55e;
    color: #fff;
}

.faq-answer {
    max-height: 58px;
    padding: 10px;
    overflow: hidden;
    line-height: 2;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
    border-top: 1px solid transparent;
}

.faq-item.is-open .faq-answer {
    opacity: 1;
    border-top-color: #e8edf2;
}

.faq-answer p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0;
    padding: 20px 32px 28px;
}

@media (max-width: 1200px) {
    .pl-container {
        padding: 0 30px;
    }

    .faq-layout {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }

    .faq-sidebar {
        max-width: 100%;
    }

    .faq-subtitle {
        max-width: 100%;
    }
}

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

    .faq-sidebar {
        position: static;
        text-align: left;
        max-width: 540px;
    }
}

@media (max-width: 640px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-main-title {
        font-size: 34px;
    }

    .faq-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .faq-contact {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .faq-question {
        font-size: 15px;
        padding: 24px;
    }
    
    .faq-answer p {
        padding: 16px 24px 24px;
        font-size: 14px;
    }

    .faq-icon-box {
        width: 28px;
        height: 28px;
    }
}

/* Blog Detail Section */
.blog-detail-section {
    padding: 60px 0 100px;
    background: #fff;
}

.bd-breadcrumb {
    margin-bottom: 40px;
}

.bd-header {
    text-align: left;
    margin-bottom: 40px;
}

.bd-author-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bd-author-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.bd-author-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.bd-author-name {
    color: #000;
    font-weight: 600;
}

.bd-author-dot {
    color: #ccc;
}

.bd-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.bd-featured-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
}

.bd-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bd-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}

.bd-content {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.bd-content-start {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.bd-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 32px 0 16px;
}

.bd-content p {
    margin-bottom: 20px;
}

.bd-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.bd-content li {
    margin-bottom: 10px;
}

/* Engagement Bar */
.bd-engagement-bar {
    margin-top: 60px;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.engage-stats {
    display: flex;
    gap: 20px;
}

.engage-item {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.engage-comment-input {
    flex: 1;
    max-width: 400px;
    margin-left: 40px;
    position: relative;
    display: flex;
    align-items: center;
}

.engage-comment-input input {
    width: 100%;
    padding: 10px 45px 10px 20px;
    background: #f8f8f8;
    border: none;
    border-radius: 30px;
    font-size: 14px;
}

.comment-send-btn {
    position: absolute;
    right: 5px;
    width: 35px;
    height: 35px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 14px;
}

/* Sidebar v2 */
.bd-sidebar {
    position: sticky;
    top: 100px;
}

.bd-widget {
    margin-bottom: 60px;
}

.bd-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}

.bd-share-icons-v2 {
    display: flex;
    gap: 15px;
}

.bd-share-icons-v2 a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    transition: all 0.2s;
}

.bd-share-icons-v2 a:hover {
    background: #f8f8f8;
    color: #000;
}

.bd-related-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bd-related-card {
    display: flex;
    gap: 15px;
    text-decoration: none;
}

.bd-related-card img {
    width: 100px;
    height: 65px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.related-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.related-title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-cat {
    font-size: 12px;
    color: #999;
}

@media (max-width: 992px) {
    .bd-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .bd-engagement-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .engage-comment-input {
        margin-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .bd-title {
        font-size: 32px;
    }
}

/* Terms Page */
.terms-page {
    background: #fdfaf7;
    padding-bottom: 100px;
}

.terms-header {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

.terms-title {
    font-size: 56px;
    font-weight: 800;
    color: #1a2b56;
    margin-bottom: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.terms-subtitle {
    font-size: 16px;
    color: #888;
}

.terms-content-area {
    margin-top: -40px;
}

.terms-card {
    background: #fff;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.terms-section {
    margin-bottom: 40px;
}

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

.terms-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.terms-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-section ul {
    padding-left: 20px;
    color: #555;
    line-height: 1.7;
}

.terms-section li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .terms-title {
        font-size: 36px;
    }
    .terms-card {
        padding: 40px 25px;
    }
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: #fff;
}

.blog-header {
    text-align: center;
    margin-bottom: 80px;
}

.blog-main-title {
    font-size: 72px;
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    letter-spacing: -3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.blog-highlight {
    color: #000;
}

.blog-subtitle {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 24px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-card-image {
    background: #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 0.85;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

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

.blog-card-info {
    padding: 0 4px;
}

.blog-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.3;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.blog-card-desc {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    font-size: 12px;
    font-weight: 700;
    color: #111;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-read-more:hover {
    gap: 8px;
    color: #22c55e;
}

@media (max-width: 1024px) {
    .blog-main-title {
        font-size: 56px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-main-title {
        font-size: 40px;
        letter-spacing: -1px;
    }
    
    .blog-highlight {
        padding: 0 15px;
        border-radius: 10px;
    }

    .blog-subtitle {
        font-size: 15px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* About Us Page */
.about-page {
    background: #fff;
}

/* New About Hero & Bento */
.about-hero {
    padding: 100px 0 60px;
    text-align: center;
}

.ah-title {
    font-size: 72px;
    font-weight: 800;
    color: #000;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ah-subtitle {
    font-size: 17px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 220px 320px;
    gap: 24px;
    margin-bottom: 120px;
}

.bento-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.bento-item.large {
    grid-row: span 2;
}

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

.bento-stat {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bento-stat.orange { background: #ff5c35; color: #fff; }
.bento-stat.black { background: #111; color: #fff; }

.bs-num { font-size: 48px; font-weight: 700; margin-bottom: 60px; }
.bs-label { font-size: 18px; font-weight: 500; opacity: 0.9; line-height: 1.3; }

/* About Mission */
.about-mission {
    padding: 0 0 100px;
}

.am-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: start;
}

.am-title {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.am-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Bottom Stats Line */
.about-bottom-stats {
    padding: 80px 0;
    border-top: 1px solid #eee;
    margin-bottom: 40px;
}

.abs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.abs-item {
    padding-left: 40px;
    border-left: 1px solid #eee;
}

.abs-item:first-child { border-left: none; padding-left: 0; }

.abs-num {
    font-size: 52px;
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.abs-label {
    font-size: 15px;
    color: #777;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .ah-title { font-size: 56px; }
    .bento-grid { grid-template-rows: 180px 280px; }
    .am-grid { gap: 60px; }
}

@media (max-width: 768px) {
    .ah-title { font-size: 42px; }
    .bento-grid { 
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .bento-item.large { grid-column: span 2; height: 400px; }
    .am-grid { grid-template-columns: 1fr; gap: 40px; }
    .abs-grid { grid-template-columns: 1fr 1fr; }
    .abs-item:nth-child(2n+1) { border-left: none; padding-left: 0; }
}

@media (max-width: 480px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-item.large { grid-column: span 1; height: 350px; }
    .abs-grid { grid-template-columns: 1fr; }
    .abs-item { border-left: none; padding-left: 0; }
}

/* Our Values Section */
.our-values {
    padding: 100px 0;
    background: #fdfaf7;
}

.values-title {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin-bottom: 60px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #eee;
    border-radius: 24px;
    overflow: hidden;
}

.value-card {
    background: #fff;
    padding: 60px;
}

.value-name {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.value-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .value-card {
        padding: 40px 30px;
    }
    .values-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

/* Contact Page */
.contact-page {
    background: #fff;
}

.contact-header {
    padding: 80px 0;
    background: #fdfaf7;
    text-align: center;
}

.ch-content {
    max-width: 800px;
    margin: 0 auto;
}

.ch-title {
    font-size: 56px;
    font-weight: 800;
    color: #1a2b56;
    margin-bottom: 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ch-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.contact-main {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-top: 10px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #78B327;
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.info-details h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.info-details p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.contact-form-container {
    background: #fff;
    padding: 40px 48px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #78B327;
    box-shadow: 0 0 0 4px rgba(120, 179, 39, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #78B327;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #6a9e22;
    transform: translateY(-2px);
}

/* ══ PRODUCT DETAIL PAGE ══ */
.product-detail-page {
    padding: 40px 0 80px;
    background: #fff;
}

.pd-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 30px;
}

/* Gallery */
.pd-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pd-main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
}

.pd-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pd-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s;
}

.pd-nav-btn:hover {
    background: #78B327;
    color: #fff;
}

.pd-nav-btn.prev { left: 20px; }
.pd-nav-btn.next { right: 20px; }

.pd-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.pd-thumb {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-thumb.active {
    border-color: #78B327;
}

/* Info */
.pd-category {
    font-size: 13px;
    font-weight: 600;
    color: #78B327;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.pd-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    line-height: 1.2;
}

.pd-stock-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #27ae60;
    background: #eafaf1;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1.2;
    vertical-align: middle;
    align-self: center;
}

.pd-rating {
    display: flex;
    align-items: center;    gap: 12px;
    margin-bottom: 20px;
}

.pd-stars {
    color: #f1c40f;
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.pd-rating-text {
    font-size: 14px;
    color: #666;
}

.pd-price-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.pd-price {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
}

.pd-old-price {
    font-size: 20px;
    color: #bbb;
    text-decoration: line-through;
}

.pd-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.pd-option-group {
    margin-bottom: 30px;
}

.pd-option-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.pd-options {
    display: flex;
    gap: 12px;
}

.pd-option-btn {
    padding: 8px 20px;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 20px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
}

.pd-option-btn:hover, .pd-option-btn.active {
    background: #00301a;
    color: #fff;
    border-color: #00301a;
}

.pd-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pd-qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 4px;
    background: #fff;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transition: background 0.2s;
    color: #333;
}

.qty-btn:hover {
    background: #f5f5f5;
}

.pd-qty-selector input {
    width: 50px;
    border: none;
    background: none;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    outline: none;
}

.pd-fancy-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 8px 8px 8px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.pd-fancy-btn.pd-buy-now {
    background: #78B327;
}

.pd-fancy-btn.pd-buy-now .icon-circle {
    background: #fff;
    color: #78B327;
}

.pd-fancy-btn .btn-text {
    font-size: 15px;
    font-weight: 700;
}

.pd-fancy-btn .icon-circle {
    width: 44px;
    height: 44px;
    background: #78B327;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #1a1a1a;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.pd-fancy-btn:hover .icon-circle {
    transform: rotate(45deg) scale(1.1);
}

.pd-price-table-section {
    margin-bottom: 30px;
}

.pd-table-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.pd-price-table {
    width: 100%;
    max-width: 500px;
    border-collapse: collapse;
    margin-top: 10px;
}

.pd-price-table th {
    text-align: left;
    padding: 12px 15px;
    font-size: 13px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    border-bottom: 2px solid #eee;
}

.pd-price-table td {
    padding: 15px;
    font-size: 15px;
    color: #1a1a1a;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
}

.pd-price-table tr:last-child td {
    border-bottom: none;
}

.pd-price-table tr:hover td {
    background: #f8f9f6;
}

.pd-actions-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
}

.pd-secondary-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pd-action-link {
    background: none;
    border: none;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
    font-weight: 500;
}

.pd-action-link:hover {
    color: #78B327;
}

.pd-secondary-actions {
    display: flex;
    gap: 15px;
}

.pd-wishlist-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #eee;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 18px;
    color: #555;
    transition: 0.3s;
}

.pd-wishlist-btn:hover {
    border-color: #78B327;
    color: #78B327;
}

.pd-main-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.pd-report-section {
    margin-bottom: 35px;
}

.pd-report-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 600;
    color: #78B327;
    text-decoration: none;
}

.pd-report-link i {
    font-size: 28px;
}

.pd-share-section {
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.pd-share-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e2d45;
    margin-bottom: 20px;
}

.pd-share-icons-colored {
    display: flex;
    gap: 12px;
}

.pd-share-icons-colored a {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 4px;
    color: #fff;
    font-size: 20px;
    transition: opacity 0.2s;
}

.pd-share-icons-colored a:hover {
    opacity: 0.8;
}

.share-fb { background: #3b5998; }
.share-tw { background: #1da1f2; }
.share-in { background: #0077b5; }
.share-pi { background: #bd081c; }
.share-wa { background: #25d366; }

.pd-add-to-cart {
    background: #1a1a1a;
}

.pd-buy-now {
    background: #1a1a1a;
}

.pd-wishlist-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #eee;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    font-size: 20px;
    color: #666;
    cursor: pointer;
}

.pd-meta {
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.pd-meta-item {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pd-meta-item strong {
    color: #1a1a1a;
    min-width: 60px;
}

.pd-share-icons {
    display: flex;
    gap: 15px;
}

.pd-share-icons a {
    color: #00301a;
    font-size: 16px;
    transition: color 0.3s;
}

.pd-stock-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
    vertical-align: middle;
}

.pd-price-table-section {
    margin-top: 30px;
}

.pd-table-title {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.pd-table-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    max-width: 400px;
}

.pd-price-table {
    width: 100%;
    border-collapse: collapse;
}

.pd-price-table th {
    background: #37474f;
    color: #fff;
    text-align: left;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 500;
}

.pd-price-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #333;
}

.pd-price-table tr:last-child td {
    border-bottom: none;
}

.pd-price-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Bottom Layout */
.pd-bottom-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.pd-accordion-item {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.pd-accordion-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fcfcfc;
    transition: background 0.2s;
}

.pd-accordion-header:hover {
    background: #f8f9f6;
}

.pd-accordion-header h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 700;
    color: #1a1a1a;
}

.pd-accordion-content {
    padding: 20px;
    display: none;
    border-top: 1px solid #f5f5f5;
}

.pd-accordion-content.active {
    display: block;
}

.pd-accordion-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.pd-shipping-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pd-shipping-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pd-ship-icon {
    width: 45px;
    height: 45px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.pd-ship-label {
    display: block;
    font-size: 12px;
    color: #999;
}

.pd-ship-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.pd-reviews-section {
    margin-top: 40px;
}

.pd-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.pd-see-more {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
}

.pd-review-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

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

.pd-review-user {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
}

.pd-review-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.pd-user-info {
    flex: 1;
}

.pd-user-name {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
}

.pd-review-date {
    display: block;
    font-size: 12px;
    color: #999;
}

.pd-review-stars {
    color: #ffc107;
    font-size: 12px;
    display: flex;
    gap: 2px;
}

.pd-review-text {
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.pd-review-gallery {
    display: flex;
    gap: 10px;
}

.pd-review-gallery img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #eee;
}

.pd-review-form {
    margin: 0 0 24px;
    padding: 20px;
    border: 1px solid #e8ecef;
    border-radius: 12px;
    background: #fafcfa;
    display: grid;
    gap: 14px;
}

.pd-review-field {
    display: grid;
    gap: 8px;
}

.pd-review-label {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1f;
}

.pd-review-select,
.pd-review-textarea {
    width: 100%;
    border: 1px solid #d6dbe0;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    color: #1d1d1f;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pd-review-select {
    max-width: 180px;
    appearance: auto;
}

.pd-review-textarea {
    min-height: 110px;
    resize: vertical;
    line-height: 1.5;
}

.pd-review-select:focus,
.pd-review-textarea:focus {
    border-color: #78B327;
    box-shadow: 0 0 0 3px rgba(120, 179, 39, 0.18);
    outline: none;
}

.pd-review-select.is-invalid,
.pd-review-textarea.is-invalid {
    border-color: #dc3545;
}

.pd-review-error {
    margin: 0;
    font-size: 13px;
    color: #dc3545;
}

.pd-review-submit {
    border: none;
    border-radius: 10px;
    background: #78B327;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 11px 18px;
    cursor: pointer;
    width: fit-content;
    min-width: 160px;
    transition: background-color 0.2s ease;
}

.pd-review-submit:hover {
    background: #659a1f;
}

.pd-review-help {
    display: block;
    margin-top: -4px;
    font-size: 13px;
    color: #6b7280;
}

.pd-review-login,
.pd-review-empty {
    margin: 0 0 18px;
    font-size: 15px;
    color: #4b5563;
}

.pd-review-login a {
    color: #78B327;
    font-weight: 600;
    text-decoration: underline;
}

/* Sidebar */
.pd-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.pd-sidebar-nav {
    display: flex;
    gap: 10px;
}

.pd-side-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.pd-side-btn.active {
    background: #78B327;
    border-color: #78B327;
    color: #fff;
}

.pd-sidebar-slider {
    overflow: hidden;
    position: relative;
}

.pd-sidebar-track {
    display: flex;
    transition: transform 0.5s ease;
}

.pd-sidebar-card {
    flex: 0 0 100%;
}

.pd-side-img {
    position: relative;
    background: #f5f5f5;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.pd-side-img img {
    width: 100%;
    display: block;
}

.pd-badge-new {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
}

.pd-side-title {
    margin: 0 0 5px;
    font-size: 16px;
}

.pd-side-desc {
    color: #777;
    font-size: 13px;
    margin: 0 0 10px;
}

.pd-side-price {
    font-weight: 800;
    font-size: 18px;
}

@media (max-width: 992px) {
    .pd-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pd-bottom-layout {
        grid-template-columns: 1fr;
    }
    .pd-shipping-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .product-detail-page {
        padding: 20px 0 60px;
    }
    .pl-container {
        padding: 0 20px;
    }
    .pd-main-image {
        height: 300px;
    }
    .pd-nav-btn {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    .pd-nav-btn.prev { left: 10px; }
    .pd-nav-btn.next { right: 10px; }
    
    .pd-thumbnails {
        gap: 10px;
        margin-top: 10px;
    }
    .pd-info {
        margin-top: 10px;
    }
    .pd-title {
        font-size: 24px;
        flex-wrap: wrap;
    }
    .pd-stock-badge {
        margin-left: 0;
        margin-top: 5px;
    }
    .pd-price {
        font-size: 24px;
    }
    .pd-actions-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }
    .pd-main-actions {
        flex-direction: row;
        gap: 10px;
    }
    .pd-fancy-btn {
        flex: 1;
        padding: 4px 4px 4px 12px;
        min-width: auto;
        height: 48px;
    }
    .pd-fancy-btn .btn-text {
        font-size: 13px;
    }
    .pd-fancy-btn .icon-circle {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .pd-qty-selector {
        width: auto;
    }
    .pd-secondary-actions {
        justify-content: flex-end;
    }
    .pd-price-table th, .pd-price-table td {
        padding: 10px;
        font-size: 13px;
    }
    .pd-report-link {
        font-size: 18px;
    }
    .pd-share-title {
        font-size: 18px;
    }
    .pd-accordion-header {
        padding: 15px 20px;
    }
    .pd-accordion-header h3 {
        font-size: 16px;
    }
    .pd-review-user {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .pd-review-stars {
        order: -1;
    }
    .pd-review-form {
        padding: 14px;
        gap: 12px;
    }
    .pd-review-select {
        max-width: 100%;
    }
    .pd-review-submit {
        width: 100%;
    }
}



.map-section {
    line-height: 0;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding: 60px 0;
    }
    .ch-title {
        font-size: 36px;
    }
    .contact-main {
        padding: 60px 0;
    }
    .contact-form-container {
        padding: 28px 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .info-item {
        align-items: flex-start;
    }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.whatsapp-btn {
    background: #25d366;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    position: relative;
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-btn i {
    font-size: 34px;
}

@keyframes whatsapp-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.scroll-top-btn {
    background: #78B327;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Cart Page */
.cart-page {
    padding: 60px 0 100px;
    background: #fff;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

.cart-main-title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cart-stats {
    font-size: 16px;
    color: #666;
}

.cart-checkout-btn-top {
    background: #78B327;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.cart-checkout-btn-top:hover {
    background: #6a9d20;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

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

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 150px 100px;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-img img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.item-stock {
    font-size: 13px;
    color: #78B327;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.item-name {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
}

.cart-qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 10px;
}

.cart-qty-control .qty-btn {
    background: none;
    border: none;
    width: 30px;
    height: 35px;
    font-size: 18px;
    cursor: pointer;
}

.cart-qty-control input {
    width: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    outline: none;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #78B327;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    text-align: right;
}

/* Mobile Fixed Cart Bar */
.mobile-cart-fixed-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    z-index: 1001;
    justify-content: space-between;
    align-items: center;
}

.m-cart-total-wrap {
    display: flex;
    flex-direction: column;
}

.m-total-label {
    font-size: 13px;
    color: #888;
    font-weight: 600;
}

.m-total-price {
    font-size: 18px;
    font-weight: 800;
    color: #000;
}

.m-checkout-btn {
    background: #78B327;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
}

@media (max-width: 640px) {
    .mobile-cart-fixed-bar {
        display: flex;
    }
    .cart-page {
        padding-bottom: 80px;
    }
}

/* Color Unification and Fixes */
.dash-nav-item.active {
    background: #78B327;
}

.new-request-btn {
    background: #78B327;
}

.new-request-btn:hover {
    background: #629220;
}

/* Sidebar Toggle for Mobile (Placeholder for actual toggle) */
@media (max-width: 1024px) {
    .dashboard-sidebar {
        display: block;
        margin-bottom: 30px;
    }
    .dashboard-layout {
        display: flex;
        flex-direction: column;
    }
}
.user-dashboard-page {
    padding: 60px 0 100px;
    background: #f8f9fa;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.user-welcome-card {
    background: #f0f2f5;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.welcome-label {
    font-size: 13px;
    color: #888;
    display: block;
    margin-bottom: 5px;
}

.user-display-name {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dash-nav-item {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.dash-nav-item:hover {
    background: #eee;
    color: #000;
}

.dash-nav-item.active {
    background: #78B327;
    color: #fff;
}

.logout-link {
    margin-top: 20px;
    color: #78B327;
}

/* Main Content */
.dash-content-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    min-height: 500px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.dash-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.dash-card-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dash-title-icon {
    width: 40px;
    height: 40px;
    background: #f0f2f5;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 18px;
    color: #333;
}

.dash-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.new-request-btn {
    background: #78B327;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.new-request-btn:hover {
    background: #1f8d64;
}

.dash-table-wrapper {
    overflow-x: auto;
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
}

.dash-table th {
    text-align: left;
    padding: 15px;
    font-size: 13px;
    color: #888;
    font-weight: 600;
    border-bottom: 2px solid #f0f2f5;
}

/* ── Quick Order Page ── */
.pl-quick-order {
    padding: 30px 0;
    min-height: 400px;
}

.pl-qo-header {
    text-align: center;
    margin-bottom: 25px;
}

.pl-qo-title {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.pl-qo-subtitle {
    font-size: 14px;
    color: #666;
}

.pl-qo-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    max-width: 950px;
    margin: 0 auto;
}

.pl-qo-search-section {
    margin-bottom: 20px;
}

.pl-qo-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #444;
}

.pl-qo-search-wrap {
    position: relative;
}

.pl-qo-input {
    width: 100%;
    padding: 12px 20px;
    padding-right: 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
}

.pl-qo-input:focus {
    border-color: #78B327;
    outline: none;
    box-shadow: 0 0 0 3px rgba(120, 179, 39, 0.1);
}

.pl-qo-search-wrap i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.qo-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.qo-suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 15px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f5f5f5;
}

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

.qo-suggestion-item:hover {
    background: #f9f9f9;
}

.qo-suggestion-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.qo-suggestion-info {
    flex: 1;
}

.qo-suggestion-name {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.qo-suggestion-price {
    color: #78B327;
    font-weight: 600;
    font-size: 13px;
}

.pl-qo-empty {
    text-align: center;
    padding: 60px 20px;
}

.pl-qo-empty-icon {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
}

.pl-qo-empty-title {
    font-size: 20px;
    color: #444;
    margin-bottom: 10px;
}

.pl-qo-empty-text {
    color: #888;
}

.pl-qo-product-card {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.qo-product-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
}

.qo-image-box {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

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

.qo-product-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.qo-stock-status {
    margin-bottom: 10px;
}

.badge-stock {
    background: #e7f6ef;
    color: #1a9d5e;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.qo-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.qo-stars {
    color: #ffc107;
    font-size: 16px;
    display: flex;
    gap: 2px;
}

.qo-rating-text {
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

.qo-price-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.qo-current-price {
    font-size: 26px;
    font-weight: 800;
    color: #000;
}

.qo-old-price {
    font-size: 18px;
    color: #bbb;
    text-decoration: line-through;
}

.qo-wholesale-title {
    font-size: 14px;
    font-weight: 700;
    color: #666;
    margin-bottom: 8px;
}

.qo-pricing-table-wrap {
    margin-bottom: 15px;
}

.qo-pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.qo-pricing-table th {
    background: #455a64;
    color: #fff;
    padding: 8px 15px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qo-pricing-table th:last-child {
    text-align: right;
}

.qo-pricing-table td {
    padding: 6px 15px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.qo-pricing-table tr:nth-child(even) {
    background: #f8f9fa;
}

.qo-pricing-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.qo-qty-pill {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.qo-qty-pill .qo-qty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qo-qty-pill input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 18px;
    font-weight: 800;
    color: #000;
    outline: none;
    background: transparent;
}

.qo-total-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.qo-total-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 3px;
}

.qo-total-value {
    font-size: 28px;
    font-weight: 800;
    color: #000;
}

.qo-action-buttons {
    display: flex;
    gap: 15px;
}

.btn-fancy {
    flex: 1;
    height: 48px;
    border-radius: 50px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px 0 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-fancy .btn-text {
    font-size: 15px;
    font-weight: 800;
    text-transform: capitalize;
}

.btn-fancy .icon-circle {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.btn-add-to-cart {
    background: #1a1a1a;
    color: #fff;
}

.btn-add-to-cart .icon-circle {
    background: #78B327;
    color: #000;
}

.btn-add-to-cart:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-buy-now {
    background: #78B327;
    color: #fff;
}

.btn-buy-now .icon-circle {
    color: #78B327;
}

.btn-buy-now:hover {
    background: #6a9d20;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(120, 179, 39, 0.2);
}

@media (max-width: 1024px) {
    .qo-product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


.dash-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f2f5;
}

.empty-state {
    padding: 100px 0;
    text-align: center;
}

.empty-state p {
    font-size: 18px;
    color: #bcc3c9;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .user-dashboard-page {
        padding: 30px 0 60px;
    }
    
    .dashboard-layout {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .dashboard-sidebar {
        width: 100%;
        display: block !important;
    }

    .dashboard-nav {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 10px;
    }

    .user-welcome-card {
        padding: 15px 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .welcome-label {
        margin-bottom: 0;
    }

    .logout-link {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .user-dashboard-page {
        padding: 20px 0 60px;
        overflow-x: hidden;
    }

    .user-dashboard-page .pl-container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .dashboard-layout {
        gap: 20px;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .dashboard-main {
        width: 100%;
        min-width: 0; /* Prevents flex items from overflowing */
    }

    .dash-content-card {
        padding: 20px 15px;
        border-radius: 10px;
        margin: 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        border: 1px solid #eee;
        width: 100%;
        box-sizing: border-box;
    }

    .dash-card-header {
        margin-bottom: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .new-request-btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
        text-align: center;
    }

    .dash-table-wrapper {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border: 1px solid #f0f0f0;
        border-radius: 6px;
    }

    .dash-table {
        min-width: 600px;
    }

    .dash-card-title {
        font-size: 18px;
    }
}

.cart-checkout-btn-main {
    width: 100%;
    background: #78B327;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(120, 179, 39, 0.2);
}

.cart-summary-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
}

.summary-row span:last-child {
    font-weight: 700;
    color: #000;
}

.summary-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 20px 0;
}

.total-row {
    font-size: 18px;
    color: #000 !important;
}

.total-row span {
    font-weight: 800 !important;
}

.financing-text {
    font-size: 13px;
    color: #78B327;
    margin-top: -5px;
    margin-bottom: 25px;
    text-align: right;
    font-weight: 600;
}

.promo-area {
    display: flex;
    gap: 10px;
    align-items: stretch;
    margin-top: 10px;
}

.promo-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.promo-input:focus {
    border-color: #78B327;
}

.promo-apply-btn {
    background: #f5f5f5;
    border: none;
    padding: 0 24px;
    border-radius: 8px;
    font-weight: 700;
    color: #78B327;
    cursor: pointer;
    transition: background 0.2s;
}

.promo-apply-btn:hover {
    background: #eee;
}

.recommended-section {
    margin-top: 100px;
}

.recommended-title {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

@media (max-width: 640px) {
    .cart-container-inner {
        display: flex;
        flex-direction: column;
    }

    .cart-layout {
        display: contents;
    }

    .cart-main {
        order: 1;
    }

    .cart-sidebar {
        order: 2;
    }

    .cart-header {
        order: 3;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding-bottom: 30px;
        border-bottom: none;
        border-top: 1px solid #f0f0f0;
        padding-top: 30px;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .recommended-section {
        order: 4;
    }

    .cart-main-title {
        font-size: 28px;
    }

    .cart-checkout-btn-top {
        width: 100%;
        padding: 14px;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
        padding: 20px 0;
    }

    .cart-item-img {
        grid-row: 1;
        grid-column: 1;
    }

    .cart-item-details {
        grid-row: 1;
        grid-column: 2;
    }

    .cart-item-qty-area {
        grid-row: 2;
        grid-column: 1 / span 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #f5f5f5;
        padding-top: 15px;
        margin-top: 5px;
    }

    .cart-qty-control {
        margin-bottom: 0;
    }

    .cart-item-price {
        grid-row: 3;
        grid-column: 1 / span 2;
        text-align: left;
        font-size: 20px;
        padding-top: 5px;
    }

    .cart-summary-card {
        padding: 20px;
    }

    .financing-text {
        text-align: right;
        margin-top: 5px;
    }
}

@media (max-width: 992px) {
    .floating-buttons {
        bottom: 85px;
        right: 25px;
    }
}

@media (max-width: 768px) {
    .floating-buttons {
        right: 18px;
        left: auto;
        bottom: 85px;
    }
}

@media (max-width: 640px) {
    .floating-buttons {
        right: 15px;
        bottom: 80px; /* Above mobile nav */
    }
    .floating-btn {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

/* Header Marquee */
.utility-marquee-container {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-item {
    color: #333;
    font-size: 13px;
    font-weight: 700;
    padding: 0 40px;
    text-transform: uppercase;
    font-family: monospace;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.cart-drawer.open {
    right: 0;
}

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

.cart-drawer-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.close-drawer {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
}

.close-drawer:hover {
    color: #333;
}

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

.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
}

.drawer-summary {
    margin-bottom: 20px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-line span:first-child {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.total-price {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
}

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

.btn-view-cart {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid #78B327;
    color: #78B327;
    transition: all 0.2s;
}

.btn-view-cart:hover {
    background: #f4faec;
}

.btn-checkout {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    background: #78B327;
    color: #fff;
    transition: all 0.2s;
}

.btn-checkout:hover {
    background: #669921;
}

.cart-drawer-overlay.active .cart-drawer {
    right: 0;
}

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

.cart-drawer-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #333;
}

.cart-drawer-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 5px;
}

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

.cart-drawer-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-drawer-item {
    display: flex;
    gap: 15px;
    position: relative;
    padding: 10px 0 20px;
    border-bottom: 1px solid #f5f5f5;
}

.cd-item-img {
    width: 80px;
    height: 80px;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cd-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.cd-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cd-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-right: 30px;
}

.cd-item-price {
    font-size: 15px;
    font-weight: 700;
    color: #78B327;
}

.cd-item-controls {
    margin-top: 5px;
}

.cd-qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 50px;
    width: fit-content;
    overflow: hidden;
    background: #fff;
    padding: 2px;
}

.cd-qty-btn {
    background: transparent;
    border: none;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    border-radius: 50%;
    transition: background 0.2s;
}

.cd-qty-btn:hover {
    background: #f5f5f5;
}

.cd-qty-selector input {
    width: 35px;
    height: 28px;
    border: none;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    outline: none;
    background: transparent;
}

.cd-item-remove {
    position: absolute;
    top: -5px;
    right: -5px;
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    padding: 10px;
    font-size: 16px;
    transition: all 0.2s;
}

.cd-item-remove:hover {
    color: #e60000;
    transform: scale(1.1);
}

.cart-drawer-empty {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    gap: 15px;
}

.cart-drawer-empty i {
    font-size: 50px;
    opacity: 0.3;
}

.btn-shop-now {
    margin-top: 10px;
    padding: 10px 25px;
    background: #78B327;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-shop-now:hover {
    background: #669921;
    color: #fff;
}

.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.cd-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cd-total-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.cd-total-value {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
}

.cd-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cd-btn {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.cd-btn-view {
    background: #fff;
    border: 2px solid #78B327;
    color: #78B327;
}

.cd-btn-view:hover {
    background: #f4faec;
}

.cd-btn-checkout {
    background: #78B327;
    border: 2px solid #78B327;
    color: #fff;
}

.cd-btn-checkout:hover {
    background: #669921;
    border-color: #669921;
}

@media (max-width: 450px) {
    .cart-drawer {
        max-width: 100%;
    }
}
