/* 
 * Minimart Premium UI - Core Stylesheet
 * Inspired by modern eCommerce, glassmorphism, and minimal clean aesthetics.
 */

:root {
    /* Base Colors */
    --primary-color: #0d6efd; /* Blue */
    --secondary-color: #198754; /* Green */
    --accent-red: #dc3545;
    --accent-orange: #fd7e14;
    --dark-bg: #121212;
    --light-bg: #f8f9fa;
    --white: #ffffff;

    /* Text Colors */
    --text-main: #212529;
    --text-muted: #6c757d;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0d6efd, #0099ff);
    --gradient-sale: linear-gradient(135deg, #dc3545, #ff4d4d);

    /* Shadows & Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-base: 0.3s ease-in-out;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--light-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

.text-main {
    color: var(--text-main) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-base);
}

a:hover {
    color: #0056b3;
}

/* ==========================================================================
   HEADER & NAVBAR (Amazon-Style Premium Theme)
   ========================================================================== */
.site-header {
    background: #131921;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: var(--transition-base);
}

/* Amazon Top Bar Header */
.header-topbar-amazon {
    background: #131921;
    padding: 6px 0;
    min-height: 60px;
    display: flex;
    align-items: center;
}

/* Logo Style */
.navbar-brand-amazon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4px 8px;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: var(--transition-fast);
    text-decoration: none;
    margin-right: 10px;
}

.navbar-brand-amazon:hover {
    border-color: #ffffff;
}

.brand-logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.brand-logo-dot {
    color: #febd69;
    font-weight: 800;
}

.logo-smile-arrow {
    width: 60px;
    height: 12px;
    margin-top: -2px;
}

/* Deliver To */
.nav-delivery-amazon {
    padding: 6px 8px;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-fast);
    color: #ffffff;
}

.nav-delivery-amazon:hover {
    border-color: #ffffff;
}

.delivery-text-stacked {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.delivery-top-line {
    color: #ccc;
    font-size: 0.72rem;
    font-weight: 400;
}

.delivery-bottom-line {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Search Bar (Amazon Style) */
.header-search-amazon {
    position: relative;
}

.search-form-amazon {
    display: flex;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: box-shadow var(--transition-base);
}

.search-form-amazon:focus-within {
    box-shadow: 0 0 0 3px #f3a847;
}

.category-dropdown-amazon .btn-category-amazon {
    background: #f3f3f3;
    border: none;
    border-right: 1px solid #cdcdcd;
    color: #555555;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 4px 0 0 4px;
    height: 100%;
    transition: background 0.15s, color 0.15s;
}

.category-dropdown-amazon .btn-category-amazon:hover,
.category-dropdown-amazon .btn-category-amazon:focus {
    background: #dadada;
    color: #111111;
}

.search-input-amazon {
    border: none !important;
    border-radius: 0 !important;
    padding: 10px 15px !important;
    font-size: 0.95rem !important;
    box-shadow: none !important;
    color: #111111 !important;
    width: 100%;
}

.btn-search-amazon {
    background: #febd69;
    border: none;
    padding: 10px 22px;
    border-radius: 0 4px 4px 0;
    font-size: 1.1rem;
    color: #333333;
    transition: background var(--transition-fast);
}

.btn-search-amazon:hover {
    background: #f3a847;
}

/* Language and Flags */
.nav-lang-amazon {
    padding: 8px;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.nav-lang-amazon:hover {
    border-color: #ffffff;
}

.lang-caret {
    font-size: 0.65rem;
    color: #ccc;
    margin-left: 2px;
}

/* Account Dropdowns */
.nav-account-amazon {
    position: relative;
}

.nav-account-btn-amazon {
    border: 1px solid transparent !important;
    border-radius: 2px !important;
    padding: 6px 8px !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    transition: var(--transition-fast) !important;
}

.nav-account-btn-amazon:hover {
    border-color: #ffffff !important;
}

.dropdown-toggle-no-caret::after {
    display: none !important;
}

.account-top-line {
    color: #ccc;
    font-size: 0.72rem;
    font-weight: 400;
    display: block;
}

.account-bottom-line {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.account-caret {
    font-size: 0.65rem;
    color: #ccc;
}

/* Returns and Orders */
.nav-orders-amazon {
    padding: 6px 8px;
    border: 1px solid transparent;
    border-radius: 2px;
    color: #ffffff;
    line-height: 1.2;
    transition: var(--transition-fast);
}

.nav-orders-amazon:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.orders-top-line {
    color: #ccc;
    font-size: 0.72rem;
    font-weight: 400;
    display: block;
}

.orders-bottom-line {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Cart styling */
.nav-cart-amazon {
    padding: 6px 8px;
    border: 1px solid transparent;
    border-radius: 2px;
    color: #ffffff;
    transition: var(--transition-fast);
    gap: 5px;
}

.nav-cart-amazon:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.cart-icon-wrapper {
    position: relative;
    font-size: 1.6rem;
    line-height: 1;
}

.cart-badge-amazon {
    position: absolute;
    top: -4px;
    left: 12px;
    background: #f08804;
    color: #131921;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #131921;
}

.cart-text-amazon {
    font-size: 0.85rem;
    font-weight: 700;
    padding-bottom: 2px;
}

/* Mobile Toggler */
.navbar-toggler-amazon {
    padding: 4px 8px;
    border: 1px solid transparent !important;
    border-radius: 2px;
    transition: var(--transition-fast);
}

.navbar-toggler-amazon:hover {
    border-color: #ffffff !important;
}

/* Bottom categories bar */
.header-bottombar-amazon {
    background: #232f3e;
    padding: 5px 0;
    min-height: 38px;
}

.btn-all-menu-amazon {
    border: 1px solid transparent !important;
    border-radius: 2px !important;
    padding: 4px 6px !important;
    background: transparent !important;
    color: #ffffff !important;
    transition: var(--transition-fast) !important;
}

.btn-all-menu-amazon:hover {
    border-color: #ffffff !important;
}

.nav-link-amazon {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 8px;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.nav-link-amazon:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.hide-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.promotional-banner-amazon .badge {
    letter-spacing: 0.5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Sliding drawer sidebar styles */
.amazon-sidebar-drawer {
    width: 310px !important;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.25);
}

.amazon-sidebar-header {
    background: #232f3e;
    min-height: 50px;
    padding: 15px 20px;
}

.sidebar-link-amazon {
    color: #333333;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background var(--transition-fast), color var(--transition-fast);
    text-decoration: none;
}

.sidebar-link-amazon:hover {
    background: #eaeded;
    color: #111111;
}

.sidebar-section-amazon .fs-7 {
    font-size: 0.78rem !important;
    letter-spacing: 0.8px;
}

/* ==========================================================================
   PRODUCT CARDS (Hover Effects & Glassmorphism)
   ========================================================================== */
.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    transition: var(--transition-base);
    position: relative;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    padding-top: 100%; /* 1:1 Aspect ratio */
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gradient-sale);
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-title a {
    color: var(--text-main);
}

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

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
}

.product-price-old {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}

.add-to-cart-btn {
    width: 100%;
    background: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: auto;
    transition: var(--transition-fast);
}

.add-to-cart-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ==========================================================================
   BUTTONS & FORMS
   ========================================================================== */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--dark-bg);
    color: #fff;
    padding-top: 60px;
    margin-top: 60px;
}

.footer-main a {
    color: #aaa;
    transition: var(--transition-fast);
}

.footer-main a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    background: #000;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive */
@media (max-width: 991px) {
    .header-topbar { display: none; }
    .category-bar { display: none; }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal {
    transform: translateY(40px);
}
.reveal-left {
    transform: translateX(-50px);
}
.reveal-right {
    transform: translateX(50px);
}
.reveal-scale {
    transform: scale(0.9);
}

.reveal.active, .reveal-left.active, .reveal-right.active, .reveal-scale.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Add slight delays for grid items if needed */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ==========================================================================
   KEYFRAME ANIMATIONS — Micro UI Effects
   ========================================================================== */

/* Page-load hero text pop-in */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-anim-text { animation: fadeSlideUp 0.9s cubic-bezier(0.5,0,0,1) both; }
.hero-anim-text.delay-1 { animation-delay: 0.15s; }
.hero-anim-text.delay-2 { animation-delay: 0.3s; }
.hero-anim-text.delay-3 { animation-delay: 0.45s; }

/* Floating badge pulse */
@keyframes floatPulse {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
}
.animate-float { animation: floatPulse 2.8s ease-in-out infinite; }

/* Flash icon bounce */
@keyframes bouncePop {
    0%, 100% { transform: scale(1); }
    30%       { transform: scale(1.25); }
    60%       { transform: scale(0.95); }
}
.animate-bounce { animation: bouncePop 1.6s ease-in-out infinite; }

/* Skeleton shimmer for lazy-loading placeholders */
@keyframes shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 800px 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

/* Sticky header shrink on scroll */
.site-header.scrolled { padding-top: 0 !important; padding-bottom: 0 !important; }
.site-header { transition: padding 0.3s ease; }

/* Hover lift — reusable */
.hover-grow { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-grow:hover { transform: translateY(-4px) scale(1.015); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }

/* Product card hover image zoom (enhance existing) */
.product-card:hover .product-img-wrapper img,
.product-card:hover img {
    transform: scale(1.07);
}

/* Animated underline on section headings */
.section-heading-underline {
    display: inline-block;
    position: relative;
}
.section-heading-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    bottom: -6px;
    left: 0;
    border-radius: 2px;
    transition: width 0.6s ease 0.3s;
}
.section-heading-underline.active::after { width: 100%; }

/* Brand logos subtle hover colour pop */
.brand-spotlight span {
    transition: all 0.3s ease;
    cursor: default;
}
.brand-spotlight span:hover {
    opacity: 1 !important;
    color: var(--primary-color) !important;
    transform: scale(1.08);
}

/* Ripple effect on buttons */
.btn-ripple {
    position: relative;
    overflow: hidden;
}
.btn-ripple::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}
.btn-ripple:active::after {
    transform: translate(-50%,-50%) scale(1);
    opacity: 1;
    transition: 0s;
}

/* Accordion item hover feedback */
.accordion-item {
    transition: background 0.2s ease;
}
.accordion-item:hover {
    background: #fafafa;
}

/* Countdown badge pulse */
@keyframes timerTick {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
#hours, #minutes, #seconds { animation: timerTick 1s ease-in-out infinite; }

/* ─── PREMIUM THEME OVERLAYS & CUSTOM STYLES ─── */
:root {
  --white: #ffffff;
  --off-white: #f8f8f6;
  --light-gray: #f2f2ef;
  --mid-gray: #e4e4df;
  --text-dark: #0d0d0d;
  --text-mid: #5a5a58;
  --text-light: #9a9a96;
  --accent: #00c896;
  --accent-glow: rgba(0, 200, 150, 0.18);
  --accent-dark: #009e78;
  --blue: #0052ff;
  --blue-light: rgba(0, 82, 255, 0.08);
  --red: #ff3b30;
  --gold: #f5a623;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.font-heading {
  font-family: 'Syne', sans-serif !important;
}

.font-body {
  font-family: 'DM Sans', sans-serif !important;
}

/* ─── NAVBAR & MENU ─── */
.navbar-premium {
  position: sticky; top: 0; z-index: 1040;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--mid-gray);
  padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

/* Category pills secondary sticky header */
.cat-nav-premium {
  position: sticky; top: 68px; z-index: 1030;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--mid-gray);
  padding: 0 24px;
  display: flex; align-items: center; gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  height: 48px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}
.cat-nav-premium::-webkit-scrollbar { display: none; }

.cat-pill-premium {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 500;
  white-space: nowrap; cursor: pointer;
  transition: background 0.2s, color 0.2s;
  color: var(--text-mid); border: none; background: transparent;
  text-decoration: none;
}
.cat-pill-premium:hover { background: var(--light-gray); color: var(--text-dark); }
.cat-pill-premium.active {
  background: var(--text-dark); color: var(--white);
}

.nav-logo-premium {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 22px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-premium span {
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  padding: 1px 7px;
  font-size: 20px;
}

.nav-search-premium {
  flex: 1; max-width: 460px;
  display: flex; align-items: center;
  background: var(--light-gray);
  border-radius: 50px;
  padding: 0 16px;
  gap: 10px;
  border: 1.5px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.nav-search-premium:focus-within {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.nav-search-premium input {
  border: none; background: transparent;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--text-dark); width: 100%; outline: none;
  padding: 10px 0;
}
.nav-search-premium svg { color: var(--text-light); flex-shrink: 0; }

.nav-actions-premium { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-btn-premium {
  width: 42px; height: 42px;
  border-radius: 50%; border: none;
  background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  position: relative; color: var(--text-dark);
  text-decoration: none;
}
.nav-btn-premium:hover { background: var(--mid-gray); transform: scale(1.05); color: var(--text-dark); }
.nav-btn-premium .badge-premium {
  position: absolute; top: -2px; right: -2px;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}

.nav-cta-premium {
  background: var(--text-dark); color: var(--white);
  border: none; border-radius: 50px;
  padding: 10px 20px; font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex; align-items: center;
}
.nav-cta-premium:hover { background: var(--accent); transform: scale(1.02); color: var(--white); }

/* ─── CATEGORY NAV PILLS ─── */
.cat-nav-premium {
  background: rgba(244, 252, 248, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1.5px solid #d1eadf;
  padding: 0 24px;
  display: flex; align-items: center; gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  height: 52px;
  position: sticky; top: 68px; z-index: 1030;
  box-shadow: 0 4px 20px rgba(0, 200, 150, 0.04);
  transition: all 0.3s ease;
}
.cat-nav-premium::-webkit-scrollbar { display: none; }
.cat-pill-premium {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  white-space: nowrap; cursor: pointer;
  transition: background 0.2s, color 0.2s;
  color: #0d5c43; border: none; background: transparent;
  text-decoration: none;
}
.cat-pill-premium:hover { background: rgba(0, 200, 150, 0.08); color: var(--accent-dark); }
.cat-pill-premium.active {
  background: var(--accent-dark); color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 200, 150, 0.25);
}

/* ─── MARQUEE PROMO STRIP ─── */
.promo-strip-premium {
  background: linear-gradient(90deg, #059669, #0284c7, #7c3aed, #db2777, #ea580c);
  padding: 0 24px; overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}
.promo-inner-premium {
  display: flex; gap: 48px;
  animation: marquee-premium 25s linear infinite;
  width: max-content;
  padding: 14px 0;
}
@keyframes marquee-premium {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.promo-item-premium {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  white-space: nowrap; color: rgba(255,255,255,0.95);
}
.promo-item-premium span { color: #fffb00; font-weight: 800; }

/* ─── HERO SECTION ─── */
.hero-premium {
  padding: 64px 24px 48px;
  max-width: 100% !important; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 42px; align-items: center;
  background: radial-gradient(at 0% 0%, rgba(220, 252, 231, 0.7) 0, transparent 50%), 
              radial-gradient(at 100% 0%, rgba(224, 242, 254, 0.7) 0, transparent 50%), 
              radial-gradient(at 50% 100%, rgba(253, 244, 215, 0.7) 0, transparent 50%), #ffffff;
  border-bottom: 1px solid var(--mid-gray);
  box-shadow: inset 0 -30px 100px rgba(255,255,255,0.5);
}
.hero-text-premium { max-width: 580px; }
.hero-badge-premium {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-glow);
  color: var(--accent-dark);
  border: 1px solid rgba(0,200,150,0.3);
  border-radius: 50px; padding: 6px 14px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge-premium::before {
  content: ''; width: 7px; height: 7px;
  background: var(--accent); border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

.hero-premium h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800; letter-spacing: -1.5px;
  margin-bottom: 18px; color: var(--text-dark);
  line-height: 1.05;
}
.hero-premium h1 em {
  font-style: normal; color: var(--accent-dark);
  position: relative;
}
.hero-premium p {
  color: var(--text-mid); font-size: 16.5px;
  line-height: 1.75; margin-bottom: 32px;
  font-weight: 400;
}

/* ─── COSMIC ANIMATED HERO STYLING ─── */
.hero-premium-cosmic {
  position: relative;
  width: 100%;
  padding: 80px 24px 80px;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1.5px solid #d1eadf;
}

/* Background floating liquid glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.55;
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
  animation: orb-breathe 8s ease-in-out infinite alternate;
}
.orb-emerald {
  width: 450px; height: 450px;
  background: rgba(0, 200, 150, 0.45);
  top: -150px; left: -100px;
  animation-duration: 9s;
}
.orb-indigo {
  width: 500px; height: 500px;
  background: rgba(0, 82, 255, 0.35);
  bottom: -150px; right: -100px;
  animation-duration: 12s;
  animation-delay: 1s;
}
.orb-rose {
  width: 350px; height: 350px;
  background: rgba(255, 45, 85, 0.35);
  top: 40%; left: 45%;
  animation-duration: 8s;
  animation-delay: 2s;
}
.orb-gold {
  width: 400px; height: 400px;
  background: rgba(245, 166, 35, 0.3);
  top: -100px; right: 15%;
  animation-duration: 10s;
  animation-delay: 3s;
}

@keyframes orb-breathe {
  0% { transform: translate(0, 0) scale(1); opacity: 0.45; }
  50% { transform: translate(40px, -60px) scale(1.15); opacity: 0.65; }
  100% { transform: translate(-30px, 40px) scale(0.9); opacity: 0.4; }
}

.hero-container-premium {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

/* Cosmic Typography & Badges */
.hero-badge-premium-cosmic {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0, 200, 150, 0.15), rgba(0, 82, 255, 0.15));
  color: var(--accent-dark);
  border: 1.5px solid rgba(0, 200, 150, 0.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 200, 150, 0.05);
}

.hero-premium-cosmic h1 {
  font-size: clamp(42px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--text-dark);
  line-height: 1.05;
  margin-bottom: 20px;
}

/* Cosmic Color Shifting Text */
.gradient-text-cosmic {
  background: linear-gradient(90deg, #00c896, #0052ff, #ff2d55, #f5a623, #00c896);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cosmic-color-flow 8s linear infinite;
  font-weight: 800;
}

@keyframes cosmic-color-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 400% 50%; }
}

.hero-desc-cosmic {
  font-size: 17px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 36px;
  font-weight: 400;
  max-width: 580px;
}

/* Premium Cosmic CTA Buttons */
.btn-shop-cosmic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00c896 0%, #009e78 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 200, 150, 0.35);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.btn-shop-cosmic::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: all 0.6s;
}
.btn-shop-cosmic:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 200, 150, 0.5);
  filter: brightness(1.05);
}
.btn-shop-cosmic:hover::before {
  left: 100%;
}

.btn-deals-cosmic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--text-dark) !important;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  border: 2px solid var(--text-dark);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.btn-deals-cosmic:hover {
  transform: translateY(-4px);
  background: var(--text-dark);
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Glassmorphic Stats Capsules */
.hero-stats-cosmic {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.stat-capsule-cosmic {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(228, 228, 223, 0.7);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.3s;
}
.stat-capsule-cosmic:hover {
  transform: translateY(-3px);
  background: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(0, 200, 150, 0.08);
}
.stat-icon-cosmic {
  font-size: 24px;
}
.stat-label-cosmic {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── ULTIMATE COSMIC INTERACTIVE VORTEX ─── */
.hero-visual-premium-cosmic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 480px;
  width: 100%;
}
.cosmic-visual-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Concentric Neon Rings Rotating */
.vortex-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}
.vortex-ring-1 {
  width: 360px; height: 360px;
  border: 2px dashed rgba(0, 200, 150, 0.25);
  box-shadow: 0 0 30px rgba(0, 200, 150, 0.05);
  animation: spin-clockwise 25s linear infinite;
}
.vortex-ring-2 {
  width: 280px; height: 280px;
  border: 2px dashed rgba(0, 82, 255, 0.2);
  box-shadow: 0 0 25px rgba(0, 82, 255, 0.05);
  animation: spin-counter-clockwise 20s linear infinite;
}
.vortex-ring-3 {
  width: 200px; height: 200px;
  border: 2px dashed rgba(255, 45, 85, 0.15);
  box-shadow: 0 0 20px rgba(255, 45, 85, 0.05);
  animation: spin-clockwise 15s linear infinite;
}

@keyframes spin-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes spin-counter-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/* Central Neon Hub Core */
.cosmic-vortex-hub {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 20%, rgba(240, 253, 244, 0.85) 60%, rgba(0, 200, 150, 0.15) 100%);
  box-shadow: 0 10px 40px rgba(0, 200, 150, 0.25), 0 0 80px rgba(0, 200, 150, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.6);
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-glow 3s ease-in-out infinite alternate;
}
@keyframes pulse-glow {
  0% { transform: scale(1); box-shadow: 0 10px 40px rgba(0, 200, 150, 0.25), 0 0 60px rgba(0, 200, 150, 0.1); }
  100% { transform: scale(1.08); box-shadow: 0 10px 50px rgba(0, 200, 150, 0.4), 0 0 100px rgba(0, 200, 150, 0.3); }
}

/* Central 3D fruit element inside hub */
.golden-fruit-3d {
  font-size: 54px;
  filter: drop-shadow(0 8px 15px rgba(245, 166, 35, 0.35));
  animation: fruit-float 4s ease-in-out infinite alternate;
  z-index: 3;
}
@keyframes fruit-float {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  100% { transform: translateY(-8px) scale(1.06) rotate(5deg); }
}

/* Glassmorphic Cyber Hologram Panels */
.cosmic-glass-panel {
  position: absolute;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(25px);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05), inset 0 0 12px rgba(255, 255, 255, 0.4);
  padding: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  z-index: 15;
}

/* Advanced glossy reflect effect */
.cosmic-glass-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%, transparent 100%);
  pointer-events: none;
  border-radius: 24px;
}

.cosmic-glass-panel:hover {
  transform: translateY(-10px) scale(1.04) !important;
  box-shadow: 0 35px 70px rgba(0, 200, 150, 0.15), 0 0 30px rgba(0, 200, 150, 0.1);
  border-color: rgba(0, 200, 150, 0.4);
  z-index: 25 !important;
}

/* Glass Panel Placements */
.panel-beverage {
  width: 220px;
  top: 40px;
  right: -10px;
  animation: panel-float-beverage 7s ease-in-out infinite alternate;
}
.panel-avocado {
  width: 210px;
  bottom: 25px;
  left: -20px;
  animation: panel-float-avocado 6s ease-in-out infinite alternate;
}
.panel-chocolate {
  width: 215px;
  top: 190px;
  left: 10px;
  animation: panel-float-chocolate 8s ease-in-out infinite alternate;
}

@keyframes panel-float-beverage {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(1.5deg); }
}
@keyframes panel-float-avocado {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(14px) rotate(-2deg); }
}
@keyframes panel-float-chocolate {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(1deg); }
}

/* Capsule pod holding the item */
.panel-capsule-pod {
  aspect-ratio: 1.6;
  width: 100%;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
.panel-capsule-pod::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.4) 0%, transparent 80%);
}
.panel-capsule-emoji {
  font-size: 48px;
  z-index: 2;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}
.cosmic-glass-panel:hover .panel-capsule-emoji {
  transform: scale(1.22) rotate(6deg);
}

/* Pulse indicator neon light */
.pulse-light-container {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.neon-pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  position: relative;
}
.neon-pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  animation: neon-pulse 1.5s infinite;
}
.pulse-green { background: #00c896; }
.pulse-green::after { background: rgba(0, 200, 150, 0.4); }

.pulse-blue { background: #0052ff; }
.pulse-blue::after { background: rgba(0, 82, 255, 0.4); }

.pulse-orange { background: #ff7043; }
.pulse-orange::after { background: rgba(255, 112, 67, 0.4); }

@keyframes neon-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

.pulse-tag-label {
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.color-green { color: #009e78; }
.color-blue { color: #0052ff; }
.color-orange { color: #d84315; }

/* Panel textual tags */
.panel-h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

/* Progress bar inside glass panels */
.panel-progress-wrapper {
  width: 100%;
  margin-top: 8px;
}
.panel-progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.panel-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
}
.panel-progress-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 0.5s ease;
}
.fill-green {
  background: linear-gradient(90deg, #00c896, #009e78);
  width: 98%;
}
.fill-blue {
  background: linear-gradient(90deg, #0052ff, #0036a3);
  width: 92%;
}
.fill-orange {
  background: linear-gradient(90deg, #ff7043, #d84315);
  width: 85%;
}

/* Floating neon sparkles in visual col */
.neon-sparkle {
  position: absolute;
  color: var(--accent);
  filter: drop-shadow(0 0 10px rgba(0, 200, 150, 0.4));
  font-size: 18px;
  pointer-events: none;
  animation: sparkle-glow 3s infinite alternate;
}
.ns-1 { top: 30px; left: 180px; animation-duration: 2s; }
.ns-2 { bottom: 60px; right: 20px; animation-duration: 2.5s; animation-delay: 0.5s; }
.ns-3 { top: 220px; right: 220px; animation-duration: 3s; animation-delay: 1s; }

@keyframes sparkle-glow {
  0% { transform: scale(0.6) rotate(0deg); opacity: 0.3; }
  100% { transform: scale(1.2) rotate(180deg); opacity: 0.95; }
}

/* RESPONSIVE COSMIC HERO ADJUSTMENTS */
@media (max-width: 991px) {
  .hero-premium-cosmic {
    padding: 60px 16px 40px;
  }
  .hero-container-premium {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .hero-text-premium {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-text-premium p {
    text-align: center;
  }
  .hero-actions-premium {
    justify-content: center;
  }
  .hero-stats-cosmic {
    justify-content: center;
  }
  .hero-visual-premium-cosmic {
    height: 380px;
  }
  .cosmic-visual-wrapper {
    transform: scale(0.85);
  }
}
@media (max-width: 480px) {
  .hero-visual-premium-cosmic {
    height: 300px;
  }
  .cosmic-visual-wrapper {
    transform: scale(0.68);
  }
}

.ft-dot-premium { width: 8px; height: 8px; border-radius: 50%; }
.ft-dot-premium.green { background: var(--accent); }
.ft-dot-premium.blue { background: var(--blue); }

/* ─── PREMIUM PRODUCT CARDS ─── */
.deals-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.product-card-premium {
  background: var(--white);
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.28s var(--transition);
  cursor: pointer;
  position: relative;
  display: flex; flex-direction: column;
  height: 100%;
}
.product-card-premium:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.card-img-premium {
  aspect-ratio: 1;
  background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
  position: relative;
  overflow: hidden;
  padding: 18px;
}
.card-img-premium img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  transition: transform 0.5s ease;
}
.product-card-premium:hover .card-img-premium img {
  transform: scale(1.08);
}
.card-img-bg-premium {
  position: absolute; inset: 0;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.product-card-premium:hover .card-img-bg-premium {
  opacity: 0.7;
}

.bg-premium-green { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.bg-premium-blue  { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.bg-premium-yellow { background: linear-gradient(135deg, #fffde7, #fff9c4); }
.bg-premium-pink  { background: linear-gradient(135deg, #fce4ec, #f8bbd9); }
.bg-premium-purple { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }
.bg-premium-orange { background: linear-gradient(135deg, #fff3e0, #ffcc80); }

.card-badges-premium {
  position: absolute; top: 12px; left: 12px;
  display: flex; gap: 6px; flex-direction: column;
  z-index: 2;
}
.badge-tag-premium {
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; border-radius: 50px;
  padding: 4px 10px; line-height: 1.4;
  width: fit-content;
}
.badge-tag-premium.badge-sale { background: var(--red); color: #fff; }
.badge-tag-premium.badge-new  { background: var(--blue); color: #fff; }
.badge-tag-premium.badge-best { background: var(--gold); color: #fff; }
.badge-tag-premium.badge-eco  { background: var(--accent-dark); color: #fff; }

.card-fav-premium {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  transition: transform 0.15s, color 0.15s;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  color: var(--text-mid);
}
.card-fav-premium:hover { transform: scale(1.15); }
.card-fav-premium.active { color: var(--red); }

.card-body-premium { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.card-brand-premium {
  font-size: 11px; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;
}
.card-name-premium {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px; line-height: 1.3;
}
.card-name-premium a {
  color: var(--text-dark);
  text-decoration: none;
}
.card-name-premium a:hover {
  color: var(--accent-dark);
}
.card-meta-premium {
  font-size: 12px; color: var(--text-light); margin-bottom: 12px;
}
.card-rating-premium {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--text-mid); margin-bottom: 14px;
}
.stars-premium { color: var(--gold); letter-spacing: -1px; }

.card-footer-premium {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--light-gray);
}
.price-now-premium { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--text-dark); }
.price-old-premium { font-size: 12px; color: var(--text-light); text-decoration: line-through; margin-left: 4px; }

.add-btn-premium {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--text-dark); color: var(--white);
  border: none; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s var(--transition);
  flex-shrink: 0;
}
.add-btn-premium:hover { background: var(--accent); transform: scale(1.1) rotate(90deg); color: var(--white); }

/* ─── PREMIUM FEATURED BANNER ─── */
.featured-banner-premium {
  background: var(--text-dark);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: center;
  position: relative; overflow: hidden;
  margin: 0 24px;
}
.featured-banner-premium::before {
  content: '';
  position: absolute; top: -60px; right: 120px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,200,150,0.25), transparent 70%);
  border-radius: 50%;
}
.featured-banner-premium::after {
  content: '';
  position: absolute; bottom: -80px; left: 200px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(0,82,255,0.2), transparent 70%);
  border-radius: 50%;
}
.fb-label-premium {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.fb-title-premium {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800; color: var(--white);
  letter-spacing: -1px; margin-bottom: 12px;
  line-height: 1.15;
}
.fb-desc-premium { color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 28px; }
.fb-btn-premium {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  border: none; border-radius: 50px;
  padding: 14px 28px; font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.fb-btn-premium:hover { background: #00e6ad; transform: translateY(-2px); color: var(--white); }
.fb-visual-premium { font-size: 110px; z-index: 1; user-select: none; }

/* ─── CATEGORY CIRCLE CARDS ─── */
.cat-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
}
.cat-card-premium {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px 12px;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; cursor: pointer;
  transition: all 0.2s var(--transition);
  border: 1.5px solid transparent;
  text-align: center;
  text-decoration: none;
}
.cat-card-premium:hover {
  background: var(--white);
  border-color: var(--mid-gray);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.cat-icon-premium { font-size: 36px; }
.cat-name-premium { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
.cat-count-premium { font-size: 11px; color: var(--text-light); }

/* ─── REVIEWS / TESTIMONIALS ─── */
.reviews-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.review-card-premium {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--mid-gray);
  transition: all 0.25s ease;
}
.review-card-premium:hover { box-shadow: var(--shadow-md); border-color: var(--text-light); }
.review-top-premium {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.reviewer-avatar-premium {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.reviewer-avatar-premium.av-a { background: #e8f5e9; }
.reviewer-avatar-premium.av-b { background: #e3f2fd; }
.reviewer-avatar-premium.av-c { background: #fce4ec; }
.reviewer-name-premium { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--text-dark); }
.reviewer-date-premium { font-size: 12px; color: var(--text-light); }
.review-stars-premium { color: var(--gold); font-size: 13px; margin-bottom: 12px; }
.review-text-premium { font-size: 14.5px; color: var(--text-mid); line-height: 1.7; font-style: italic; }

/* ─── TRUST BADGES ROW ─── */
.trust-row-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin: 0 24px;
}
.trust-card-premium {
  background: var(--off-white);
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex; align-items: center; gap: 16px;
  transition: all 0.25s ease;
}
.trust-card-premium:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.trust-icon-premium { font-size: 32px; flex-shrink: 0; }
.trust-label-premium { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--text-dark); }
.trust-desc-premium { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* ─── BOTTOM CTA STRIP ─── */
.bottom-cta-premium {
  background: var(--off-white);
  border-top: 1px solid var(--mid-gray);
  padding: 72px 24px;
  text-align: center;
}
.bottom-cta-premium h2 { font-family: 'Syne', sans-serif; font-size: clamp(30px, 4vw, 48px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.bottom-cta-premium p { color: var(--text-mid); font-size: 16px; max-width: 520px; margin: 0 auto 36px; }
.cta-input-row-premium {
  display: flex; gap: 10px; max-width: 440px; margin: 0 auto;
  background: var(--white); border: 1.5px solid var(--mid-gray);
  border-radius: 50px; padding: 6px 6px 6px 22px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.cta-input-row-premium:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.cta-input-row-premium input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-dark);
}
.cta-input-row-premium button {
  background: var(--text-dark); color: var(--white);
  border: none; border-radius: 50px; padding: 12px 24px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
  white-space: nowrap;
}
.cta-input-row-premium button:hover { background: var(--accent); }

/* ─── FOOTER MODERN PREMIUM ─── */
.footer-premium {
  background: var(--text-dark); color: rgba(255,255,255,0.7);
  padding: 64px 24px 32px;
}
.footer-grid-premium {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-logo-area-premium .nav-logo-premium { color: var(--white); margin-bottom: 18px; }
.footer-tagline-premium { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 320px; }
.footer-socials-premium { display: flex; gap: 12px; margin-top: 24px; }
.social-btn-premium {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer;
  transition: all 0.2s;
  color: var(--white);
}
.social-btn-premium:hover { background: var(--accent); transform: translateY(-2px); }
.footer-col-premium h4 {
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--white); letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 20px;
}
.footer-col-premium a {
  display: block; color: rgba(255,255,255,0.55);
  text-decoration: none; font-size: 14.5px;
  margin-bottom: 12px; transition: color 0.2s, padding-left 0.2s;
}
.footer-col-premium a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom-premium {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer-bottom-premium p { font-size: 13.5px; }

/* ─── CART DRAWER & PORTALS ─── */
.cart-overlay-premium {
  position: fixed; inset: 0; z-index: 1040;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay-premium.open { opacity: 1; pointer-events: all; }
.cart-drawer-premium {
  position: fixed; top: 0; right: 0; z-index: 1050;
  width: min(420px, 100vw); height: 100vh;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.38s var(--transition);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 48px rgba(0,0,0,0.18);
}
.cart-drawer-premium.open { transform: translateX(0); }
.cart-head-premium {
  padding: 24px; border-bottom: 1px solid var(--mid-gray);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-head-premium h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--text-dark); }
.cart-close-premium {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--light-gray); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background 0.2s;
  color: var(--text-dark);
}
.cart-close-premium:hover { background: var(--mid-gray); }
.cart-items-premium { flex: 1; overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.cart-item-premium {
  display: flex; gap: 14px; align-items: center;
  padding: 16px; background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--mid-gray);
}
.cart-item-img-premium {
  width: 60px; height: 60px; border-radius: 12px;
  background: var(--light-gray); display: flex; align-items: center;
  justify-content: center; font-size: 28px; flex-shrink: 0;
  overflow: hidden;
}
.cart-item-img-premium img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cart-item-name-premium { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.cart-item-price-premium { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 800; color: var(--accent-dark); }
.cart-item-qty-premium {
  display: flex; align-items: center; gap: 8px; margin-top: 10px;
}
.qty-btn-premium {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--mid-gray); border: none; cursor: pointer;
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
  color: var(--text-dark);
}
.qty-btn-premium:hover { background: var(--text-dark); color: var(--white); }
.qty-num-premium { font-size: 14px; font-weight: 700; min-width: 22px; text-align: center; color: var(--text-dark); }

.cart-foot-premium { padding: 24px; border-top: 1px solid var(--mid-gray); background: var(--off-white); }
.cart-total-premium {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.cart-total-premium span { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--text-dark); }
.checkout-btn-premium {
  width: 100%; background: var(--text-dark); color: var(--white);
  border: none; border-radius: 50px;
  padding: 16px; font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 600; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
}
.checkout-btn-premium:hover { background: var(--accent); transform: translateY(-2px); color: var(--white); }

/* ─── STICKY MOBILE BOTTOM BAR ─── */
.mobile-nav-premium {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1030;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  border-top: 1px solid var(--mid-gray);
  padding: 10px 0 max(10px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}
.mobile-nav-inner-premium {
  display: flex; justify-content: space-around; align-items: center;
}
.mob-nav-btn-premium {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700; color: var(--text-light);
  cursor: pointer; padding: 4px 12px;
  border: none; background: none;
  transition: color 0.2s;
  text-decoration: none;
}
.mob-nav-btn-premium.active { color: var(--accent-dark); }
.mob-nav-btn-premium svg { width: 22px; height: 22px; }

/* ─── RESPONSIVE SCREEN ADJUSTMENTS ─── */
@media (max-width: 991px) {
  .hero-premium { grid-template-columns: 1fr; text-align: center; }
  .hero-text-premium { max-width: 100%; margin: 0 auto; }
  .hero-actions-premium { justify-content: center; }
  .hero-stats-premium { justify-content: center; }
  .hero-visual-premium { display: none; }
  .footer-grid-premium { grid-template-columns: 1fr 1fr; }
  .trust-row-premium { grid-template-columns: 1fr 1fr; }
  .featured-banner-premium { padding: 40px; margin: 0 16px; }
  .fb-visual-premium { font-size: 80px; }
}

@media (max-width: 767px) {
  .navbar-premium { padding: 0 16px; height: 60px; }
  .nav-search-premium { display: none; }
  .nav-cta-premium { display: none; }
  .hero-premium { padding: 32px 16px 24px; }
  .featured-banner-premium { margin: 0 16px; padding: 32px 24px; grid-template-columns: 1fr; text-align: center; }
  .fb-btn-premium { justify-content: center; }
  .fb-visual-premium { display: none; }
  .footer-grid-premium { grid-template-columns: 1fr 1fr; gap: 28px; }
  .trust-row-premium { grid-template-columns: 1fr; margin: 0 16px; }
  .mobile-nav-premium { display: block; }
  body { padding-bottom: 78px !important; }
  .deals-grid-premium { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-grid-premium { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .reviews-grid-premium { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .deals-grid-premium { grid-template-columns: 1fr; }
}

/* ─── HIGH-END VIBRANT COLOR OVERRIDES ─── */

/* Soft background pastel gradient for Vegetables & Fruits section */
.section-premium-green {
  background: linear-gradient(180deg, rgba(232, 245, 233, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
  border-top: 1px solid rgba(0, 200, 150, 0.08);
}
.section-premium-green .section-title-premium {
  color: #1b5e20;
}

/* Soft background pastel gradient for Dairy & Eggs section */
.section-premium-blue {
  background: linear-gradient(180deg, rgba(227, 242, 253, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
  border-top: 1px solid rgba(0, 82, 255, 0.08);
}
.section-premium-blue .section-title-premium {
  color: #0d47a1;
}

/* Soft background pastel gradient for Snacks section */
.section-premium-yellow {
  background: linear-gradient(180deg, rgba(255, 248, 225, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
  border-top: 1px solid rgba(245, 166, 35, 0.08);
}
.section-premium-yellow .section-title-premium {
  color: #e65100;
}

/* Soft background pastel gradient for Cold Drinks & Beverages section */
.section-premium-orange {
  background: linear-gradient(180deg, rgba(255, 243, 224, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
  border-top: 1px solid rgba(255, 112, 67, 0.08);
}
.section-premium-orange .section-title-premium {
  color: #d84315;
}

/* Soft background pastel gradient for Household section */
.section-premium-purple {
  background: linear-gradient(180deg, rgba(243, 229, 245, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
  border-top: 1px solid rgba(139, 92, 246, 0.08);
}
.section-premium-purple .section-title-premium {
  color: #4a148c;
}

/* Soft background pastel gradient for Personal Care section */
.section-premium-pink {
  background: linear-gradient(180deg, rgba(252, 228, 236, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
  border-top: 1px solid rgba(236, 72, 153, 0.08);
}
.section-premium-pink .section-title-premium {
  color: #880e4f;
}

/* Soft background pastel gradient for Sweets & Desserts section */
.section-premium-sweet {
  background: linear-gradient(180deg, rgba(248, 187, 208, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  border-top: 1px solid rgba(255, 45, 85, 0.08);
}
.section-premium-sweet .section-title-premium {
  color: #b71c1c;
}

/* Premium category circles grid styling (Department Cards) */
.cat-card-premium {
  background: var(--white) !important;
  border: 1.5px solid var(--mid-gray) !important;
  border-radius: var(--radius-md) !important;
  padding: 24px 16px !important;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-decoration: none !important;
  transition: all 0.3s var(--transition) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02) !important;
}

/* Dynamically colorize each department card */
.cat-card-premium:nth-child(1) { background: #f0fdf4 !important; border-color: #bbf7d0 !important; }
.cat-card-premium:nth-child(1):hover { box-shadow: 0 10px 25px rgba(34, 197, 94, 0.15) !important; border-color: #22c55e !important; transform: translateY(-4px); }

.cat-card-premium:nth-child(2) { background: #eff6ff !important; border-color: #bfdbfe !important; }
.cat-card-premium:nth-child(2):hover { box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15) !important; border-color: #3b82f6 !important; transform: translateY(-4px); }

.cat-card-premium:nth-child(3) { background: #fffbeb !important; border-color: #fde68a !important; }
.cat-card-premium:nth-child(3):hover { box-shadow: 0 10px 25px rgba(245, 158, 11, 0.15) !important; border-color: #eab308 !important; transform: translateY(-4px); }

.cat-card-premium:nth-child(4) { background: #fff7ed !important; border-color: #fed7aa !important; }
.cat-card-premium:nth-child(4):hover { box-shadow: 0 10px 25px rgba(249, 115, 22, 0.15) !important; border-color: #f97316 !important; transform: translateY(-4px); }

.cat-card-premium:nth-child(5) { background: #faf5ff !important; border-color: #e9d5ff !important; }
.cat-card-premium:nth-child(5):hover { box-shadow: 0 10px 25px rgba(168, 85, 247, 0.15) !important; border-color: #a855f7 !important; transform: translateY(-4px); }

.cat-card-premium:nth-child(6) { background: #fdf2f8 !important; border-color: #fbcfe8 !important; }
.cat-card-premium:nth-child(6):hover { box-shadow: 0 10px 25px rgba(236, 72, 153, 0.15) !important; border-color: #ec4899 !important; transform: translateY(-4px); }

.cat-card-premium:nth-child(7) { background: #fff1f2 !important; border-color: #fecdd3 !important; }
.cat-card-premium:nth-child(7):hover { box-shadow: 0 10px 25px rgba(244, 63, 94, 0.15) !important; border-color: #f43f5e !important; transform: translateY(-4px); }

/* Colorized rating tags and category labels for product cards */
.product-card-premium {
  border: 1.5px solid #eaeaea !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.product-card-premium:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 36px rgba(0,0,0,0.08) !important;
  border-color: rgba(0, 200, 150, 0.22) !important;
}
.product-card-premium:hover .card-img-bg-premium {
  opacity: 0.85 !important;
}
.product-card-premium:hover .card-name-premium a {
  color: var(--accent-dark) !important;
}
.add-btn-premium {
  background: var(--accent-dark) !important;
  box-shadow: 0 3px 8px rgba(0, 200, 150, 0.2) !important;
}
.add-btn-premium:hover {
  background: var(--text-dark) !important;
  transform: scale(1.1) rotate(90deg) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Rich colorization for the customer testimonial reviews section */
.reviews-section-premium {
  background: linear-gradient(135deg, #f3fcf9 0%, #f0f4ff 100%) !important;
  border-top: 1px solid #d1eadf;
  border-bottom: 1px solid #d0e7ff;
}
.review-card-premium {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(10px) !important;
  border: 1.5px solid #eaeaea !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03) !important;
  transition: all 0.3s ease !important;
}
.review-card-premium:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.1) !important;
  border-color: rgba(124, 58, 237, 0.2) !important;
}

/* Beautiful dynamic footer background gradient */
.footer-premium {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%) !important;
  border-top: 2px solid var(--accent-dark) !important;
}
.footer-col-premium h4::after {
  background: linear-gradient(90deg, var(--accent) 0%, var(--blue) 100%) !important;
}



