/* ==========================================
   COSMEERA MODERN MARKETPLACE DESIGN SYSTEM
   Mobile-First E-Commerce UI Stylesheet
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,600&display=swap');

:root {
    --primary-start: #E85D24;
    --primary-end: #D9480F;
    --primary-grad: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    --bg: #FAF7F2;
    --card-bg: #FFFFFF;
    --text: #2D221B;
    --muted: #7A6961;
    --accent: #E85D24;
    --accent-gold: #FF9E00;
    --accent-gold-light: #FFF8EB;
    --border-color: rgba(232, 93, 36, 0.08);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 10px;
    --shadow-sm: 0 4px 12px rgba(217, 72, 15, 0.04);
    --shadow-md: 0 8px 24px rgba(217, 72, 15, 0.06);
    --shadow-lg: 0 16px 36px rgba(217, 72, 15, 0.1);
    --font-sans: 'Outfit', 'Inter', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --header-height: 120px;
}

/* GENERAL RESETS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.5;
    padding-bottom: 74px; /* for fixed bottom nav */
}

/* App Wrapper for Desktop centering */
@media (min-width: 1025px) {
    body {
        max-width: 100%;
        background-color: #FAF7F2;
    }
}

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

/* SCROLLBARS */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(232, 93, 36, 0.2);
    border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(232, 93, 36, 0.4);
}

/* STICKY TOP HEADER & SEARCH */
header#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 16px 12px;
}

header#header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.logo-location-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: var(--border-radius-sm);
    background: var(--primary-grad);
    padding: 6px;
    box-shadow: 0 4px 10px rgba(232, 93, 36, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-tagline {
    display: none;
}

/* Location Selector Pill */
.location-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-gold-light);
    border: 1px solid rgba(255, 158, 0, 0.15);
    padding: 6px 12px;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.location-pill:hover {
    background: #FFEED2;
}

.location-pill i {
    color: var(--primary-start);
    font-size: 0.85rem;
}

.location-pill-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.location-pill-text strong {
    font-size: 0.72rem;
    color: var(--text);
    font-weight: 700;
    white-space: nowrap;
}

.location-pill-text small {
    font-size: 0.6rem;
    color: var(--muted);
    font-weight: 500;
}

.nav-links {
    display: none !important; /* Hide traditional nav links in desktop view for mobile-first app feel */
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-actions .icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-actions .icon-btn:hover {
    transform: scale(1.05);
    border-color: var(--primary-start);
}

.nav-actions .icon-btn i {
    color: var(--text);
    font-size: 0.95rem;
}

.nav-actions .icon-btn .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary-start);
    color: #FFF;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--card-bg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Auth Buttons */
.login-nav-btn, .user-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.login-nav-btn:hover, .user-nav-btn:hover {
    border-color: var(--primary-start);
    color: var(--primary-start);
}

.user-nav-btn i {
    font-size: 1rem;
    color: var(--primary-start);
}

.admin-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--primary-grad);
    color: #FFF;
    border-radius: 99px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.hamburger {
    display: none !important; /* Hide hamburger, using Bottom Navigation */
}

/* RESPONSIVE HEADER MEDIA QUERIES */
@media (max-width: 768px) {
    .login-nav-btn, .user-nav-btn {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .location-pill {
        padding: 4px 10px !important;
        gap: 4px !important;
    }
    .location-pill-text strong {
        font-size: 0.65rem !important;
    }
    .location-pill-text small {
        display: none !important;
    }
}

/* SEARCH BAR */
.header-search-row {
    max-width: 1200px;
    margin: 8px auto 0;
    display: block;
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: 1.5px solid rgba(232, 93, 36, 0.12);
    border-radius: 99px;
    padding: 4px 6px 4px 14px;
    gap: 8px;
    width: 100%;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.search-bar:focus-within {
    border-color: var(--primary-start);
    box-shadow: 0 4px 16px rgba(232, 93, 36, 0.1);
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--text);
    padding: 6px 0;
}

.search-bar input::placeholder {
    color: var(--muted);
    opacity: 0.8;
}

.search-bar .search-icon {
    color: var(--muted);
    font-size: 0.9rem;
}

.search-go-btn {
    border: none;
    outline: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary-grad);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 3px 8px rgba(232, 93, 36, 0.25);
}

.search-go-btn:active {
    transform: scale(0.92);
}

/* Hide duplicate mobile search wrap */
.mob-front-search-wrap, .mob-front-search {
    display: none !important;
}

/* QUICK CATEGORIES ROW (HORIZONTAL SCROLLABLE) */
.quick-categories-container {
    background-color: var(--card-bg);
    padding: 14px 0 10px;
    border-bottom: 1px solid var(--border-color);
}

.quick-categories-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 16px;
    scrollbar-width: none; /* Firefox */
}

.quick-categories-row::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    cursor: pointer;
    width: 62px;
}

.category-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 158, 0, 0.1);
}

.category-icon-wrap img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.category-item span {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.category-item:hover .category-icon-wrap {
    transform: translateY(-3px);
    background: var(--primary-grad);
    box-shadow: 0 6px 14px rgba(232, 93, 36, 0.2);
}
.category-item:hover span {
    color: var(--primary-start);
}

/* PREMIUM BANNER SLIDER */
.flip-banner {
    padding: 12px 16px;
    background: transparent;
}

.banner-carousel {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--primary-grad);
    height: 180px;
}

.banner-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FFF;
}

.banner-slide h3 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: var(--font-sans);
}

.banner-slide p {
    font-size: 0.82rem;
    max-width: 60%;
    opacity: 0.95;
    margin-bottom: 12px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.banner-slide-btn {
    align-self: flex-start;
    background: #FFF;
    color: var(--primary-start);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 99px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.banner-slide-btn:hover {
    transform: scale(1.05);
}

/* Dots indicator */
.banner-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.banner-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background: #FFF;
    width: 18px;
    border-radius: 5px;
}

/* DEALS OF THE DAY / DYNAMIC RECOMMENDATIONS CAROUSEL */
.trending-section {
    background: transparent !important;
    padding: 16px !important;
    color: var(--text) !important;
    margin: 0 !important;
}

.trending-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-wrap: nowrap !important;
}

.trending-title {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: var(--text) !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trending-slider-controls {
    display: flex;
    gap: 6px;
}

.trending-slider-controls button {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    border: 1px solid var(--border-color) !important;
    background: var(--card-bg) !important;
    color: var(--text) !important;
    box-shadow: var(--shadow-sm) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.trending-slider-controls button:hover {
    background: var(--primary-grad) !important;
    color: #FFF !important;
    border-color: transparent !important;
}

.trending-products {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 2px 12px !important;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.trending-products::-webkit-scrollbar {
    display: none;
}

/* PRODUCT CARD DESIGN */
.trending-product-card, .prod-card {
    background: var(--card-bg) !important;
    border-radius: var(--border-radius-md) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-sm) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
}

/* Sizes for Carousel vs Grid */
.trending-product-card {
    min-width: 156px !important;
    max-width: 156px !important;
    flex: 0 0 auto !important;
    scroll-snap-align: start;
}

.trending-product-card:hover, .prod-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--shadow-md) !important;
    border-color: rgba(232, 93, 36, 0.2) !important;
}

/* Badge (Discount label) */
.trending-badge, .prod-badge {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    background: var(--primary-grad) !important;
    color: #FFF !important;
    font-size: 0.62rem !important;
    font-weight: 700 !important;
    padding: 3px 6px !important;
    border-radius: 6px !important;
    z-index: 10 !important;
    box-shadow: 0 2px 5px rgba(232, 93, 36, 0.2);
    text-transform: uppercase;
}

/* Heart button (Wishlist) */
.wish-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.wish-btn:hover {
    transform: scale(1.1);
    background: #FFF;
}

.wish-btn i {
    color: var(--muted);
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.wish-btn.active i {
    color: #EF4444 !important;
    font-weight: 900;
}

/* Image */
.trending-img, .prod-img {
    width: 100% !important;
    height: 140px !important;
    background-size: cover !important;
    background-position: center !important;
    background-color: #FAF7F2 !important;
    position: relative !important;
}

.prod-img {
    height: 170px !important;
}

/* Info content */
.trending-info, .prod-body {
    padding: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    gap: 4px !important;
}

.prod-body {
    padding: 12px !important;
    gap: 6px !important;
}

.trending-name, .prod-name {
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: var(--text) !important;
    text-align: left !important;
    line-height: 1.3 !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    height: 32px !important;
}

.prod-name {
    font-size: 0.88rem !important;
    height: 36px !important;
}

.prod-brand {
    font-size: 0.7rem !important;
    color: var(--muted) !important;
    font-weight: 600;
}

.prod-cat {
    font-size: 0.68rem;
    color: var(--primary-start);
    font-weight: 700;
    text-transform: uppercase;
}

.prod-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prod-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.68rem;
    color: var(--muted);
}

.prod-rating-badge {
    background: #4CAF50;
    color: #FFF;
    padding: 1px 4px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.62rem;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

/* Prices */
.trending-price, .prod-price-wrap {
    display: flex !important;
    align-items: baseline !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    color: var(--primary-start) !important;
    margin-top: 2px;
}

.prod-price {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: var(--primary-start) !important;
}

.trending-old, .prod-old-price {
    font-size: 0.7rem !important;
    text-decoration: line-through !important;
    color: var(--muted) !important;
    font-weight: 500 !important;
    margin-left: 2px !important;
}

.prod-save {
    font-size: 0.68rem;
    color: #2E7D32;
    font-weight: 700;
}

.prod-delivery-chip {
    display: none; /* Hide delivery chip in cards to keep them clean */
}

/* Action button inside card body */
.trending-add, .add-to-cart {
    margin-top: auto !important;
    align-self: stretch !important;
    background: var(--primary-grad) !important;
    color: #FFF !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 8px 12px !important;
    font-weight: 700 !important;
    font-size: 0.72rem !important;
    cursor: pointer !important;
    box-shadow: 0 3px 8px rgba(232, 93, 36, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px;
    transition: all 0.2s ease !important;
    width: 100% !important;
    max-width: none !important;
}

.trending-add::after {
    content: "Add to Cart";
}

.trending-add i, .add-to-cart i {
    font-size: 0.75rem;
}

.trending-add:active, .add-to-cart:active {
    transform: scale(0.96) !important;
}

.prod-desc {
    display: none !important; /* Hide long descriptions on grid lists for app design */
}

/* QUICK CATEGORY BROWSE SECTION (CIRCULAR ICONS) */
.cat-section {
    background-color: var(--card-bg);
    padding: 24px 16px !important;
    border-radius: var(--border-radius-lg);
    margin: 12px 16px;
    border: 1px solid var(--border-color);
}

.cat-section .sec-header {
    margin-bottom: 16px;
    text-align: center;
}

.cat-section .sec-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-start);
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.cat-section .sec-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
}

.cat-section .sec-title span {
    color: var(--primary-start);
}

.cat-section .sec-line, .cat-section .sec-subtitle {
    display: none;
}

.cat-grid {
    display: flex !important;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 2px 8px;
    scrollbar-width: none;
}

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

.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    width: 68px;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
}

.cat-card .cat-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-card .cat-icon i {
    font-size: 1.1rem;
    color: var(--primary-start);
    transition: color 0.25s;
}

.cat-card .cat-name {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.cat-card .cat-count {
    display: none; /* Hide subtitle descriptions on circular row */
}

.cat-card:hover .cat-icon, .cat-card.active .cat-icon {
    background: var(--primary-grad);
    border-color: transparent;
    box-shadow: 0 6px 14px rgba(232, 93, 36, 0.2);
}

.cat-card:hover .cat-icon i, .cat-card.active .cat-icon i {
    color: #FFF;
}

.cat-card.active .cat-name {
    color: var(--primary-start);
    font-weight: 700;
}

/* BEST SELLING PRODUCTS GRID */
.products-bg {
    background: transparent !important;
    padding: 16px !important;
}

.products-bg .sec-header {
    margin-bottom: 12px;
}

.products-bg .sec-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-start);
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.products-bg .sec-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
}

.products-bg .sec-title span {
    color: var(--primary-start);
}

.filter-sort-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    gap: 8px;
}

.res-count {
    font-size: 0.72rem;
    color: var(--muted);
}

#deliveryOfferFilter {
    display: none !important; /* Hide redundant inline delivery text badges */
}

.sort-sel {
    padding: 6px 10px;
    border-radius: 99px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.prod-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* 2 products per row on mobile */
    gap: 12px !important;
}

@media (min-width: 769px) {
    .prod-grid {
        grid-template-columns: repeat(4, 1fr) !important; /* 4 per row on desktop */
        gap: 16px !important;
    }
}

/* TRUST SECTION */
.trust-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .trust-section {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    padding: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon i {
    color: var(--primary-start);
    font-size: 0.95rem;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 0.74rem;
    color: var(--text);
    font-weight: 700;
}

.trust-text span {
    font-size: 0.62rem;
    color: var(--muted);
}

/* BEAUTY PARLOUR SECTION */
#parlour-visit {
    padding: 16px !important;
}

.parlour-inner {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

@media (min-width: 769px) {
    .parlour-inner {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding: 32px;
    }
}

.parlour-text-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.parlour-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-start);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.parlour-heading {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

.parlour-heading strong {
    display: block;
    color: var(--primary-start);
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-style: italic;
    margin-top: 4px;
}

.parlour-desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
}

.parlour-services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 4px 0;
}

.parlour-tag {
    background: var(--bg);
    border: 1px solid var(--border-color);
    padding: 5px 10px;
    border-radius: 99px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text);
}

.parlour-cta-group {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.btn-parlour-main, .btn-parlour-call {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 99px;
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn-parlour-main {
    background: var(--primary-grad);
    color: #FFF;
}

.btn-parlour-call {
    background: var(--accent-gold-light);
    border: 1px solid rgba(255, 158, 0, 0.2);
    color: var(--text);
}

.parlour-image-side {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 200px;
}

@media (min-width: 769px) {
    .parlour-image-side {
        height: 280px;
    }
}

.parlour-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parlour-img-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-sm);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color);
}

.parlour-img-badge-icon i {
    color: var(--primary-start);
    font-size: 1.1rem;
}

.parlour-img-badge-text {
    display: flex;
    flex-direction: column;
}

.parlour-img-badge-text strong {
    font-size: 0.72rem;
    color: var(--text);
    font-weight: 700;
}

.parlour-img-badge-text span {
    font-size: 0.58rem;
    color: var(--muted);
}

/* TOP BRANDS SECTION */
#beauty-blog {
    padding: 16px !important;
}

.brands-grid {
    display: flex !important;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 2px 8px;
    scrollbar-width: none;
}

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

.brand-pill {
    flex: 0 0 auto;
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 99px !important;
    padding: 10px 18px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: var(--text) !important;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    cursor: pointer;
}

.brand-pill:hover {
    border-color: var(--primary-start) !important;
    color: var(--primary-start) !important;
    transform: translateY(-2px);
}

/* FIXED BOTTOM NAVIGATION BAR */
.bottom-nav {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 60px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-color) !important;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
    z-index: 5000 !important;
    padding: 0 8px !important;
}

.bottom-link {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    color: var(--muted) !important;
    background: none !important;
    border: none !important;
    height: 100% !important;
    cursor: pointer !important;
    padding: 0 !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    outline: none !important;
}

.bottom-link i {
    font-size: 1.15rem !important;
    transition: all 0.2s ease !important;
}

.bottom-link span {
    font-size: 0.65rem !important;
    font-weight: 600 !important;
}

.bottom-link.active {
    color: var(--primary-start) !important;
}

.bottom-link.active i {
    transform: scale(1.15);
}

/* Cart Badge in Bottom Nav */
.bottom-cart-count {
    position: absolute !important;
    top: 3px !important;
    right: 22% !important;
    background: var(--primary-start) !important;
    color: #FFF !important;
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    min-width: 15px !important;
    height: 15px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 3px !important;
    border: 1.5px solid #FFF !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* SKELETON LOADERS */
.skel-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 250px;
}

.skel-img {
    height: 130px;
    background: linear-gradient(90deg, #EFEFEF 25%, #E5E5E5 50%, #EFEFEF 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--border-radius-sm);
}

.skel-line {
    height: 12px;
    background: linear-gradient(90deg, #EFEFEF 25%, #E5E5E5 50%, #EFEFEF 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

.skel-line.short { width: 50%; }
.skel-line.tiny { width: 30%; }

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* PAGINATION & BUTTONS */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
}

.page-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text);
    font-weight: 600;
    font-size: 0.78rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.page-btn.active {
    background: var(--primary-grad);
    color: #FFF;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(232, 93, 36, 0.2);
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* MARQUEE RESET */
.marquee-bar {
    background: #1C0F08 !important;
    border-top: 1px solid rgba(212, 168, 67, 0.2) !important;
    border-bottom: 1px solid rgba(212, 168, 67, 0.2) !important;
    padding: 8px 0 !important;
}

.marquee-item {
    font-size: 0.72rem !important;
    color: #FFF8EB !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
}

.marquee-item i {
    color: #FF9E00 !important;
}

/* MODALS & DRAWERS RESET */
.cart-drawer, .profile-drawer, .auth-modal, .buy-modal, .pay-modal {
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0 !important;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12) !important;
    background: var(--card-bg) !important;
}

.cart-head, .buy-modal-head, .pay-modal-head, .profile-drawer-head {
    border-bottom: 1px solid var(--border-color) !important;
}

.checkout-btn, .btn-pay-main, .btn-pay-now {
    background: var(--primary-grad) !important;
    border-radius: 99px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(232, 93, 36, 0.2) !important;
    transition: all 0.2s ease !important;
}

.checkout-btn:active, .btn-pay-main:active, .btn-pay-now:active {
    transform: scale(0.96) !important;
}

/* DETAIL PAGE STYLING MATCH */
.detail {
    border-radius: var(--border-radius-lg) !important;
    border: 1px solid var(--border-color) !important;
    background: var(--card-bg) !important;
    box-shadow: var(--shadow-md) !important;
}

.pimg {
    border-radius: var(--border-radius-md) !important;
}

.price {
    color: var(--primary-start) !important;
}

.btn-main {
    background: var(--primary-grad) !important;
    border-radius: 99px !important;
    box-shadow: 0 4px 12px rgba(232, 93, 36, 0.2) !important;
}

.btn-soft {
    background: var(--accent-gold-light) !important;
    color: var(--text) !important;
    border: 1px solid rgba(255, 158, 0, 0.2) !important;
    border-radius: 99px !important;
}

/* CATEGORY PAGE STYLING MATCH */
.list .item {
    border-radius: var(--border-radius-lg) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-sm) !important;
    background: var(--card-bg) !important;
}

.list .item h2 {
    color: var(--text) !important;
}

.list .item::before {
    background: linear-gradient(135deg, rgba(232, 93, 36, 0.12), rgba(255, 158, 0, 0.08)) !important;
}

/* TOAST */
#toast {
    background: #2E7D32 !important;
    border-radius: 99px !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    padding: 10px 20px !important;
}
#toast.error {
    background: #C62828 !important;
}

/* Hide standard Call CTA bar on desktop/tablet, styled to fit */
.mob-cta {
    display: none !important;
}