:root {
    --primary-green: #27ae60;
    --primary-green-dark: #219a52;
    --primary-green-light: #e8f5e9;
    --accent-gold: #f1c40f;
    --accent-orange: #e67e22;
    --dark-text: #2c3e50;
    --muted-text: #6c757d;
    --bg-light: #f8f9fa;
    --bg-body: #f4f7f6;
    --border-light: #eee;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

body {
    background-color: var(--bg-body);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
    padding-bottom: 70px;
}

@media (min-width: 992px) {
    body { padding-bottom: 0; }
}

/* TOP BAR */
.top-bar {
    background: var(--dark-text);
    color: #fff;
    padding: 8px 0;
    font-size: 0.8rem;
}
.top-bar-link { color: rgba(255,255,255,0.8); text-decoration: none; transition: 0.3s; }
.top-bar-link:hover { color: #fff; }

/* HEADER */
.site-header { box-shadow: var(--shadow-sm); z-index: 1040; }
.navbar-brand { font-size: 1.3rem; letter-spacing: -0.5px; white-space: nowrap; }
.brand-u { color: var(--primary-green); font-weight: 800; }
.brand-rest { color: var(--dark-text); font-weight: 700; font-size: 0.85em; }

@media (max-width: 991px) {
    .navbar-brand { font-size: 1.1rem; }
    .brand-rest { font-size: 0.75em; }
}

/* SEARCH */
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border-radius: 50px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: 0.3s;
}
.search-wrapper:focus-within { border-color: var(--primary-green); box-shadow: 0 0 0 3px rgba(39,174,96,0.1); background: #fff; }
.search-wrapper i.bi-search { position: absolute; left: 16px; color: var(--muted-text); z-index: 2; }
.search-wrapper input { background: transparent; padding: 10px 20px 10px 44px; flex: 1; font-size: 0.9rem; }
.search-wrapper input:focus { box-shadow: none; outline: none; }

.header-search-mobile .search-wrapper { margin-top: 8px; }

/* HEADER ACTIONS */
.cart-icon-btn {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: var(--radius-md);
    background: var(--primary-green-light); color: var(--primary-green);
    text-decoration: none; font-size: 1.2rem; transition: 0.3s; position: relative;
}
.cart-icon-btn:hover { background: var(--primary-green); color: #fff; }
.cart-badge {
    position: absolute; top: -4px; right: -4px;
    background: #e74c3c; color: #fff; font-size: 0.65rem; font-weight: 700;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.user-btn {
    background: var(--bg-light); padding: 6px 14px; border-radius: 50px;
    border: 1px solid var(--border-light); transition: 0.3s; color: var(--dark-text);
}
.user-btn:hover { background: var(--primary-green-light); border-color: var(--primary-green); }

/* NAV PILLS */
.main-nav .nav-pill {
    padding: 6px 14px; border-radius: 50px; text-decoration: none;
    color: var(--dark-text); font-weight: 500; font-size: 0.85rem; transition: 0.3s;
}
.main-nav .nav-pill:hover, .main-nav .nav-pill.active {
    background: var(--primary-green); color: #fff;
}
.nav-link-sm {
    color: var(--muted-text); text-decoration: none; font-size: 0.85rem;
    font-weight: 500; padding: 4px 10px; border-radius: 50px; transition: 0.3s;
}
.nav-link-sm:hover, .nav-link-sm.active { color: var(--primary-green); }

/* CATEGORY DROPDOWN */
.category-dropdown {
    min-width: 280px;
    max-height: 500px;
    overflow-y: auto;
    padding: 0.5rem 0;
}
.category-dropdown .dropdown-header {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    letter-spacing: 0.5px;
}
.category-dropdown .dropdown-item {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    transition: 0.2s;
    border-radius: 0;
}
.category-dropdown .dropdown-item:hover {
    background: var(--primary-green-light);
    color: var(--primary-green-dark);
    padding-left: 1.25rem;
}
.category-dropdown .dropdown-item i {
    font-size: 0.85rem;
}

/* BOTTOM NAV */
.bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0; background: #fff;
    display: flex; justify-content: space-around; padding: 8px 0 10px;
    border-top: 1px solid var(--border-light); z-index: 1050;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}
.nav-item-m {
    text-align: center; color: var(--muted-text); text-decoration: none;
    font-size: 0.65rem; display: flex; flex-direction: column; align-items: center; gap: 2px;
    position: relative;
}
.nav-item-m i { font-size: 1.3rem; }
.nav-item-m.active { color: var(--primary-green); font-weight: 600; }
.mobile-cart-badge {
    position: absolute; top: -2px; right: 8px;
    background: #e74c3c; color: #fff; font-size: 0.55rem; font-weight: 700;
    width: 16px; height: 16px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* FADE-UP ANIMATION FOR PRODUCT CARDS */
.product-card-animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.product-card-animate.fade-ready {
    opacity: 0;
    transform: translateY(20px);
}
.product-card-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Safety: visible by default if JS never initializes/IntersectionObserver fails */
.product-card-animate:not(.fade-ready):not(.visible) {
    opacity: 1;
    transform: translateY(0);
}

/* PRODUCT CARDS */
.product-card {
    background: #fff; border: none; border-radius: var(--radius-lg);
    overflow: hidden; transition: 0.3s; box-shadow: var(--shadow-sm);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card .product-img-wrap {
    height: 180px; display: flex; align-items: center; justify-content: center;
    background: #fff; padding: 15px; position: relative; overflow: hidden;
}
.product-card .product-img-wrap img {
    max-height: 100%; max-width: 100%; object-fit: contain; transition: 0.3s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-card .discount-badge {
    position: absolute; top: 10px; left: 10px;
    background: #e74c3c; color: #fff; font-size: 0.7rem; font-weight: 700;
    padding: 3px 8px; border-radius: 50px; z-index: 2;
}
.product-card .stock-badge {
    position: absolute; top: 10px; right: 10px;
    font-size: 0.65rem; font-weight: 600; padding: 3px 8px; border-radius: 50px; z-index: 2;
}
.product-card .stock-badge.in-stock { background: var(--primary-green-light); color: var(--primary-green); }
.product-card .stock-badge.out-of-stock { background: #ffebee; color: #c62828; }
.product-card .card-body { padding: 12px 14px 14px; }
.product-card .product-name {
    font-size: 0.85rem; font-weight: 600; color: var(--dark-text);
    height: 40px; overflow: hidden; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-bottom: 6px;
}
.product-card .price-our { font-size: 1.1rem; font-weight: 700; color: var(--primary-green); }
.product-card .price-market {
    font-size: 0.8rem; color: var(--muted-text); text-decoration: line-through; margin-left: 6px;
}
.product-card .add-cart-btn {
    width: 100%; border: none; border-radius: 50px; padding: 8px;
    font-weight: 600; font-size: 0.8rem; background: var(--primary-green);
    color: #fff; transition: 0.3s; display: flex; align-items: center;
    justify-content: center; gap: 5px; margin-top: 8px;
}
.product-card .add-cart-btn:hover { background: var(--primary-green-dark); }
.product-card .add-cart-btn:disabled { background: #ccc; cursor: not-allowed; }

.qty-control {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--bg-light); border-radius: 50px; padding: 3px;
    border: 1px solid var(--border-light); margin-top: 8px;
}
.qty-control .qty-btn {
    width: 30px; height: 30px; border-radius: 50%; border: none;
    background: #fff; color: var(--primary-green); font-weight: bold;
    display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.qty-control .qty-val { font-weight: 700; font-size: 0.9rem; min-width: 24px; text-align: center; }

/* CATEGORY SECTION */
.cat-circle-wrap { text-align: center; }
.cat-circle {
    width: 80px; height: 80px; background: var(--bg-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff; transition: 0.3s; margin: 0 auto 8px;
    box-shadow: var(--shadow-sm);
}
.cat-circle:hover { border-color: var(--primary-green); background: var(--primary-green-light); transform: scale(1.05); }
.cat-circle i { font-size: 1.8rem; color: var(--primary-green); }
.cat-circle-wrap .cat-name {
    font-size: 0.75rem; font-weight: 600; color: var(--dark-text);
    text-decoration: none; display: block;
}

/* MODERN CATEGORY CARDS */
.cat-card-modern {
    background: #fff; border-radius: var(--radius-lg); padding: 20px 15px;
    display: flex; align-items: center; gap: 15px;
    transition: 0.3s; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    height: 100%;
}
.cat-card-modern:hover {
    transform: translateY(-3px); box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}
.cat-icon-circle {
    width: 50px; height: 50px; min-width: 50px;
    background: var(--primary-green-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
}
.cat-card-modern:hover .cat-icon-circle {
    background: var(--primary-green);
}
.cat-icon-circle i {
    font-size: 1.4rem; color: var(--primary-green);
    transition: 0.3s;
}
.cat-card-modern:hover .cat-icon-circle i {
    color: #fff;
}
.cat-info {
    display: flex; flex-direction: column; gap: 2px;
    overflow: hidden;
}
.cat-name-modern {
    font-size: 0.85rem; font-weight: 600; color: var(--dark-text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cat-shop-now {
    font-size: 0.7rem; color: var(--primary-green); font-weight: 500;
    opacity: 0; transition: 0.3s;
}
.cat-card-modern:hover .cat-shop-now {
    opacity: 1;
}

@media (max-width: 767px) {
    .cat-card-modern { padding: 15px 12px; gap: 12px; }
    .cat-icon-circle { width: 40px; height: 40px; min-width: 40px; }
    .cat-icon-circle i { font-size: 1.1rem; }
    .cat-name-modern { font-size: 0.8rem; }
}

/* SECTION TITLES */
.section-title {
    font-weight: 800; color: var(--dark-text); position: relative;
    padding-bottom: 12px; margin-bottom: 24px;
}
.section-title::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 50px; height: 4px; background: var(--primary-green); border-radius: 2px;
}
.section-title.text-center::after { left: 50%; transform: translateX(-50%); }

/* FEATURE BOXES */
.feature-box {
    text-align: center; padding: 20px; transition: 0.3s;
    border-radius: var(--radius-lg); border: 1px solid var(--border-light); background: #fff;
}
.feature-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-box i { font-size: 2rem; color: var(--primary-green); }
.feature-box h6 { font-weight: 600; font-size: 0.85rem; margin-top: 8px; }
.feature-box p { font-size: 0.75rem; color: var(--muted-text); margin: 0; }

/* BANNER CARDS */
.promo-banner {
    border-radius: var(--radius-lg); overflow: hidden; position: relative;
    height: 200px; display: flex; align-items: center;
    background: linear-gradient(135deg, var(--primary-green), #2ecc71);
    color: #fff; padding: 30px; transition: 0.3s;
}
.promo-banner:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.promo-banner h4 { font-weight: 800; margin-bottom: 8px; }
.promo-banner p { font-size: 0.9rem; opacity: 0.9; margin-bottom: 15px; }
.promo-banner.nepal-banner { background: linear-gradient(135deg, #003893, #dc143c); }
.promo-banner.korea-banner { background: linear-gradient(135deg, #003478, #c60c30); }
.promo-banner.spice-banner { background: linear-gradient(135deg, #e67e22, #f39c12); }

/* TRUST BADGES */
.trust-badge {
    display: flex; align-items: center; gap: 10px; padding: 12px;
    background: #fff; border-radius: var(--radius-md); border: 1px solid var(--border-light);
}
.trust-badge i { font-size: 1.5rem; color: var(--primary-green); }
.trust-badge .badge-text { font-size: 0.8rem; font-weight: 600; color: var(--dark-text); }
.trust-badge .badge-sub { font-size: 0.7rem; color: var(--muted-text); }

/* FOOTER */
.site-footer {
    background: var(--dark-text); color: #fff; margin-top: 40px;
}
.site-footer h5,
.site-footer h6 { color: #fff; }
.site-footer p,
.site-footer li,
.site-footer span,
.site-footer .text-muted { color: rgba(255,255,255,0.8) !important; }
.site-footer .footer-links li { margin-bottom: 8px; }
.site-footer .footer-links a {
    color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.85rem; transition: 0.3s;
}
.site-footer .footer-links a:hover { color: var(--accent-gold); }
.site-footer .border-top { border-color: rgba(255,255,255,0.15) !important; }
.site-footer .badge { color: #333 !important; }
.social-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.15); display: flex;
    align-items: center; justify-content: center;
    color: #fff; text-decoration: none; transition: 0.3s;
}
.social-icon:hover { background: var(--primary-green); color: #fff; }
.site-footer .contact-info i { color: var(--primary-green); }

/* FLOATING CONTACT */
.floating-contact {
    position: fixed; bottom: 30px; right: 30px; z-index: 1050;
    display: flex; flex-direction: column; gap: 10px;
}
.float-btn {
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.4rem; text-decoration: none;
    box-shadow: var(--shadow-md); transition: 0.3s;
}
.float-btn:hover { transform: scale(1.1); }
.whatsapp-btn { background: #25D366; animation: whatsapp-pulse 2s infinite; }
.whatsapp-btn:hover { animation: none; transform: scale(1.15); }
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.kakao-btn { background: #FEE500; color: #3C1E1E; }

.mobile-floating-bar {
    position: fixed; bottom: 80px; right: 15px; z-index: 1050;
    display: flex; flex-direction: column; gap: 8px;
}
.mobile-float-btn {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.2rem; text-decoration: none;
    box-shadow: var(--shadow-md);
}
.mobile-float-btn.whatsapp { background: #25D366; animation: whatsapp-pulse 2s infinite; }
.mobile-float-btn.kakao { background: #FEE500; color: #3C1E1E; }

/* AUTH PAGES */
.auth-container { max-width: 420px; margin: 40px auto; padding: 20px; }
.auth-card {
    background: #fff; border-radius: var(--radius-xl); padding: 35px 28px;
    box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,0.02);
}
.auth-card .form-control {
    background: var(--bg-light); border: none; padding: 12px 18px;
    border-radius: var(--radius-md); font-size: 0.9rem;
}
.auth-card .form-control:focus {
    background: #fff; box-shadow: 0 0 0 3px rgba(39,174,96,0.1);
    border-color: var(--primary-green);
}
.auth-card .input-group-text {
    background: var(--bg-light); border: none; border-radius: var(--radius-md) 0 0 var(--radius-md);
}
.btn-uone {
    background: var(--primary-green); color: #fff; border: none;
    padding: 12px; border-radius: var(--radius-md); font-weight: 600;
    width: 100%; transition: 0.3s;
}
.btn-uone:hover { background: var(--primary-green-dark); transform: translateY(-1px); }

/* SIDEBAR CATEGORIES (Shop Page) */
.sidebar-category {
    background: #fff; border-radius: var(--radius-lg); padding: 20px;
    position: sticky; top: 90px; box-shadow: var(--shadow-sm);
    max-height: calc(100vh - 120px); display: flex; flex-direction: column;
}
.sidebar-link {
    display: flex; align-items: center; padding: 10px 14px; border-radius: var(--radius-sm);
    color: #555; text-decoration: none; transition: 0.3s;
    margin-bottom: 4px; font-weight: 500; cursor: pointer; font-size: 0.85rem;
}
.sidebar-link i { margin-right: 10px; color: var(--primary-green); }
.sidebar-link:hover, .sidebar-link.active { background: var(--primary-green); color: #fff; }
.sidebar-link:hover i, .sidebar-link.active i { color: #fff; }

/* MOBILE CATEGORY PILLS */
.mobile-cat-wrapper {
    overflow-x: auto; white-space: nowrap; padding: 10px 0;
    scrollbar-width: none;
}
.mobile-cat-wrapper::-webkit-scrollbar { display: none; }
.mobile-cat-btn {
    display: inline-block; padding: 8px 18px; background: #fff;
    border-radius: 50px; border: 1px solid var(--border-light); margin-right: 8px;
    color: #666; text-decoration: none; font-size: 0.8rem; font-weight: 600;
    cursor: pointer; transition: 0.3s;
}
.mobile-cat-btn.active { background: var(--primary-green); color: #fff; border-color: var(--primary-green); }

/* CHECKOUT STYLES */
.checkout-card {
    background: #fff; border: none; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.payment-box {
    border: 2px solid var(--border-light); border-radius: var(--radius-md);
    padding: 14px; cursor: pointer; transition: 0.3s; position: relative;
}
.payment-box.active { border-color: var(--primary-green); background: var(--primary-green-light); }
.payment-box input[type="radio"] { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); }

/* ADMIN STYLES */
.admin-sidebar {
    height: 100vh; background: var(--dark-text); color: #fff;
    position: fixed; width: 260px; z-index: 1000; transition: 0.3s;
}
.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.7); padding: 10px 18px; border-radius: var(--radius-sm);
    margin: 3px 12px; transition: 0.3s; font-size: 0.9rem;
}
.admin-sidebar .nav-link:hover, .admin-sidebar .nav-link.active {
    background: var(--primary-green); color: #fff;
}
.admin-main { margin-left: 260px; padding: 25px; transition: 0.3s; }
.stat-card {
    border: none; border-radius: var(--radius-lg); padding: 22px;
    transition: 0.3s; background: #fff; box-shadow: var(--shadow-sm);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-icon {
    width: 48px; height: 48px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}

@media (max-width: 991px) {
    .admin-sidebar { transform: translateX(-100%); }
    .admin-main { margin-left: 0; padding: 15px; padding-bottom: 90px; }
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, var(--dark-text) 0%, #1a252f 100%);
    border-radius: var(--radius-xl); overflow: hidden; position: relative;
    min-height: 400px; display: flex; align-items: center;
}
.hero-section .hero-content { position: relative; z-index: 2; padding: 40px; color: #fff; }
.hero-section .hero-bg {
    position: absolute; top: 0; right: 0; width: 50%; height: 100%;
    background-size: cover; background-position: center; opacity: 0.3;
}

/* HOMEPAGE SLIDER */
#homepageSlider .carousel-item {
    transition: transform 0.6s ease-in-out;
}
#homepageSlider .carousel-caption {
    animation: fadeInUp 0.8s ease-out;
}
#homepageSlider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border: none;
}
#homepageSlider .carousel-indicators button.active {
    background-color: var(--primary-green);
}
#homepageSlider .carousel-control-prev,
#homepageSlider .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}
#homepageSlider:hover .carousel-control-prev,
#homepageSlider:hover .carousel-control-next {
    opacity: 1;
}
#homepageSlider .carousel-control-prev { left: 20px; }
#homepageSlider .carousel-control-next { right: 20px; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    #homepageSlider .carousel-item img {
        height: 250px !important;
    }
    #homepageSlider .carousel-caption h2 {
        font-size: 1.5rem;
    }
    #homepageSlider .carousel-caption p {
        font-size: 0.9rem;
    }
    #homepageSlider .carousel-caption .btn {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
}

.admin-mobile-nav {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: #fff; box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
    z-index: 2000; justify-content: space-around; padding: 8px 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.admin-mobile-item {
    text-align: center; color: var(--dark-text); text-decoration: none;
    font-size: 11px; padding: 4px 8px;
}
.admin-mobile-item i { font-size: 20px; display: block; }
.admin-mobile-item.active { color: var(--primary-green); }

@media (max-width: 991px) {
    .admin-mobile-nav { display: flex !important; }
}

@media (max-width: 767px) {
    .hero-section { min-height: 280px; }
    .hero-section .hero-content { padding: 25px; }
    .hero-section h1 { font-size: 1.5rem; }
}

/* SCROLL ANIMATIONS */
.fade-in-up {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* LOADING SPINNER */
.spinner-green { color: var(--primary-green) !important; }

/* OFFCANVAS */
.offcanvas { max-width: 300px; }

/* MISC */
.dropdown-toggle::after { display: none; }
.text-primary-green { color: var(--primary-green) !important; }
.bg-primary-green { background-color: var(--primary-green) !important; }
.btn-green { background: var(--primary-green); color: #fff; border: none; }
.btn-green:hover { background: var(--primary-green-dark); color: #fff; }

/* PROMOTION BADGES */
.promo-badge {
    position: absolute; top: 10px; left: 10px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: #fff; font-size: 0.7rem; font-weight: 700;
    padding: 4px 10px; border-radius: 50px; z-index: 2;
    box-shadow: 0 2px 8px rgba(220,53,69,0.3);
    animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* REVIEW STARS */
.review-stars { color: #f1c40f; }
.review-stars .bi-star { color: #ddd; }

/* PRODUCT CARD VIEW DETAILS */
.product-card .view-details-btn {
    font-size: 0.7rem; padding: 4px 10px;
    border-radius: 50px; border: 1px solid #ddd;
    color: #666; text-decoration: none;
    transition: 0.3s;
}
.product-card .view-details-btn:hover {
    background: var(--primary-green); color: #fff;
    border-color: var(--primary-green);
}

/* SAVINGS DISPLAY */
.savings-tag {
    font-size: 0.7rem; color: var(--primary-green);
    font-weight: 600; margin-bottom: 4px;
}

/* FILTER BUTTONS */
.filter-btn { transition: 0.3s; }
.filter-btn.active { transform: scale(1.02); }

/* HOMEPAGE REVIEW CARDS */
.review-card {
    transition: 0.3s;
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* SOCIAL FOLLOW SECTION */
.social-follow-btn {
    transition: 0.3s;
}
.social-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
