/* Base Styles & Variables */
:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --yellow: #fbbf24;
    --yellow-dark: #f59e0b;
    --dark: #0f172a;
    --gray-900: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    --green: #22c55e;
    --orange: #f97316;
    --red: #ef4444;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
}

.icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.8125rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar .separator {
    opacity: 0.5;
}

.top-bar .icon {
    width: 0.875rem;
    height: 0.875rem;
}

/* Header */
.header {
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

.mobile-header {
    display: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon svg {
    width: 40px;
    height: 40px;
}

.logo-icon img {
    border-radius: 50%;
    object-fit: cover !important;
}

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

.logo-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
}

.logo-est {
    font-size: 0.625rem;
    color: var(--gray-500);
    letter-spacing: 0.1em;
}

.search-bar {
    position: relative;
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    background: var(--gray-100);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    gap: 0.75rem;
}

.search-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gray-400);
}

.search-bar input {
    flex: 1;
    border: none;
    background: none;
    font-size: 0.875rem;
    color: var(--gray-700);
    outline: none;
}

.search-bar input::placeholder {
    color: var(--gray-400);
}

.search-btn {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: background 0.2s;
}

.search-btn:hover {
    background: var(--primary-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-link {
    font-size: 0.875rem;
    color: var(--gray-600);
    transition: color 0.2s;
}

.header-link:hover {
    color: var(--primary);
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--yellow);
    color: var(--dark);
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.2s;
}

.call-btn:hover {
    background: var(--yellow-dark);
}

/* Navigation */
.nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    overflow-x: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    padding: 0.75rem 0;
    white-space: nowrap;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    border-radius: 0.375rem;
    transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
    background: var(--gray-100);
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
    min-height: 600px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--dark) 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--yellow);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 1.5rem;
}

.hero-badge .icon {
    width: 0.875rem;
    height: 0.875rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.text-yellow {
    color: var(--yellow);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--yellow);
    color: var(--dark);
    padding: 0.875rem 1.5rem;
}

.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

.btn-text {
    color: var(--white);
    padding: 0.875rem 0;
}

.btn-text:hover {
    color: var(--yellow);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.75rem 1.5rem;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: var(--yellow);
    border-radius: 50%;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.machine-card {
    position: relative;
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.machine-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.fresh-badge {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
}

.fresh-badge .icon {
    color: var(--yellow);
}

.stats-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.25rem 2rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--yellow);
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Section Styles */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.view-all {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.875rem;
}

.view-all:hover {
    text-decoration: underline;
}

/* Categories Section */
.categories {
    padding: 4rem 0;
    background: var(--gray-50);
}

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

.categories-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0;
}

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

.slider-btn {
    position: absolute;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.slider-prev {
    left: -20px;
}

.slider-next {
    right: -20px;
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.category-card {
    flex: 0 0 200px;
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.15);
}

.category-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.625rem;
    border-radius: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    z-index: 1;
}

.badge-blue {
    background: var(--primary);
    color: var(--white);
}

.badge-orange {
    background: var(--orange);
    color: var(--white);
}

.badge-green {
    background: var(--green);
    color: var(--white);
}

.category-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.category-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    padding: 1rem 1rem 0.25rem;
}

.category-card p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    padding: 0 1rem;
}

.category-card a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
}

.category-card a:hover {
    text-decoration: underline;
}

/* Specials Banner */
.specials-banner {
    background: var(--primary);
    padding: 1.5rem 0;
}

.specials-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.specials-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.specials-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specials-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--yellow);
}

.specials-left h3 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
}

.specials-left p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
}

.specials-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.specials-items span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--white);
    font-size: 0.875rem;
}

.specials-items .icon {
    color: var(--yellow);
}

/* Featured Products */
.featured {
    padding: 4rem 0;
}

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

.products-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0;
}

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

.product-card {
    flex: 0 0 220px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.625rem;
    border-radius: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    z-index: 1;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-info {
    padding: 1rem;
}

.product-category {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.product-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0.375rem 0;
}

.product-price {
    margin-bottom: 0.75rem;
}

.product-price .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.product-price .unit {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.add-to-cart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.add-to-cart:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Trust Badges */
.trust-badges {
    background: var(--gray-50);
    padding: 3rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.badge-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 0.5rem;
    border: 1px solid var(--gray-200);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.badge-item h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.badge-item p {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--gray-300);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.25fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about .logo-name {
    color: var(--white);
}

.footer-about .logo-est {
    color: var(--gray-500);
}

.footer-about p {
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--primary);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-links h4,
.footer-contact h4,
.footer-delivery h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--gray-400);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--gray-400);
}

.footer-contact .icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-delivery p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.delivery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.625rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    color: var(--gray-300);
}

.footer-seo {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-seo p {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-align: center;
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.8125rem;
    color: var(--gray-500);
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Floating Contact Wrapper & Trigger Button */
.floating-contact-wrapper {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
}

.floating-contact-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-contact-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(30, 64, 175, 0.5);
}

.floating-contact-trigger svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

/* Floating Contact Menu (Popup Modal) */
.floating-contact-menu {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 0.75rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    width: 190px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom right;
}

/* Active State */
.floating-contact-wrapper.active .floating-contact-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Menu Items */
.contact-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    background: var(--white);
}

.contact-menu-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-menu-item:hover {
    background: var(--bg-light);
}

.contact-menu-item.call-option:hover {
    color: var(--primary);
}

.contact-menu-item.whatsapp-option:hover {
    color: #25D366;
}

.contact-menu-item .icon {
    width: 18px;
    height: 18px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-desc {
        margin: 0 auto 2rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Show top bar as carousel on mobile view */
    .top-bar {
        display: block !important;
        height: 34px;
        position: relative;
        overflow: hidden;
        padding: 0;
    }

    .top-bar-content {
        display: block;
        height: 100%;
        position: relative;
    }

    .top-bar-left,
    .top-bar-right {
        display: contents;
    }

    .top-bar .separator {
        display: none !important;
    }

    .top-bar span:not(.separator) {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s ease;
        padding: 0 16px;
        box-sizing: border-box;
        font-size: 0.75rem;
    }

    .top-bar span.active-slide {
        opacity: 1;
        visibility: visible;
    }

    .top-bar span:not(.separator) svg {
        margin-right: 6px;
        display: inline-block;
        vertical-align: middle;
        width: 0.8125rem;
        height: 0.8125rem;
    }

    /* Hide desktop header entirely on mobile view */
    .desktop-header {
        display: none !important;
    }

    /* Show mobile-specific header */
    .mobile-header {
        display: block;
        background: var(--white);
        padding: 0.5rem 0.75rem;
        border-bottom: 1px solid var(--gray-200);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }

    .mobile-header-top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    /* Redesigned Location/Brand Selector Button */
    .mobile-location-btn {
        background: transparent;
        border: none;
        padding: 0;
        text-align: left;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    /* Tiny, clean company brand title above delivery time */
    .mobile-brand-title {
        display: block;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--primary); /* Deep blue brand color */
        letter-spacing: 0.75px;
        margin-bottom: 6px; /* Added spacing to resolve congested layout */
        line-height: 1;
    }

    .mobile-delivery-info {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-bottom: 4px; /* Added spacing between delivery time and address */
    }

    .mobile-delivery-time {
        font-size: 1.15rem; /* Spacious and bold, like Blinkit */
        font-weight: 800;
        color: var(--dark);
        line-height: 1;
    }

    .mobile-dropdown-icon {
        color: var(--dark);
        stroke-width: 2.5;
        margin-top: 1px;
    }

    /* Subtext showing current selected address */
    .mobile-address-text {
        font-size: 0.75rem;
        color: var(--gray-500);
        max-width: 190px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.2;
    }

    /* Right side circles */
    .mobile-actions-row {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Action circles for Cart and Profile */
    .mobile-action-circle {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--gray-100);
        border: 1px solid var(--gray-200);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        color: var(--dark);
        transition: all 0.2s ease;
        text-decoration: none;
    }

    .mobile-action-circle:hover {
        background: var(--gray-200);
    }

    .mobile-action-circle svg {
        width: 18px;
        height: 18px;
        color: var(--dark);
    }

    /* Red count badge on top of Cart circle */
    .mobile-cart-badge {
        position: absolute;
        top: -6px;
        right: -6px;
        background: var(--red);
        color: var(--white);
        font-size: 9px;
        font-weight: 700;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--white);
    }

    /* Initials Circle profile badge */
    .mobile-profile-circle {
        background: #e2e8f0;
        color: var(--primary-dark);
        font-weight: 700;
        font-size: 0.95rem;
    }

    .mobile-profile-circle.guest {
        background: var(--gray-100);
    }

    .mobile-profile-circle.guest svg {
        color: var(--gray-500);
    }

    /* Search Bar Row styling */
    .mobile-search-row {
        margin-top: 12px;
        width: 100%;
    }

    .mobile-search-bar {
        position: relative;
        display: flex;
        align-items: center;
        background: var(--gray-100);
        border: 1px solid var(--gray-200);
        border-radius: 12px;
        padding: 0.5rem 0.875rem;
        gap: 0.5rem;
        width: 100%;
    }

    .mobile-search-icon {
        width: 18px;
        height: 18px;
        color: var(--gray-400);
    }

    .mobile-search-bar input {
        flex: 1;
        border: none;
        background: none;
        font-size: 0.875rem;
        color: var(--gray-700);
        outline: none;
    }

    .mobile-search-bar input::placeholder {
        color: var(--gray-400);
    }

    .hero {
        padding: 2rem 0;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .specials-content {
        justify-content: center;
        text-align: center;
    }

    .specials-left {
        flex-direction: column;
    }

    .specials-items {
        justify-content: center;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .slider-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .stats-container {
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        padding: 1rem;
    }

    .category-card {
        flex: 0 0 160px;
    }

    .product-card {
        flex: 0 0 180px;
    }

}

/* Responsive Floating Contact Button */
@media (max-width: 576px) {
    .floating-contact-wrapper {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .floating-contact-trigger {
        width: 46px;
        height: 46px;
    }
    
    .floating-contact-menu {
        width: 175px;
    }
}


/* Cart Button & Badge Styles */
.header-actions .cart-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    position: relative;
    font-weight: 500;
}

.header-actions .cart-btn .icon {
    width: 1.15rem;
    height: 1.15rem;
}

.header-actions .cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: var(--white);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.6875rem;
    font-weight: 700;
    margin-left: 4px;
}

/* ========== Featured Products Section (matches products.css) ========== */
.featured {
    padding: 60px 0;
    background: #fff;
}

.featured .filters-wrapper {
    background: #fff;
    padding: 0 0 16px;
    border: none;
}

.featured .filters {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

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

.featured .filter-btn {
    flex-shrink: 0;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #e5e5e5;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.featured .filter-btn:hover {
    background: #f5f5f5;
}

.featured .filter-btn.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.featured .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.featured .add-btn .phone-icon,
.featured .add-btn svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.featured .product-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.featured .product-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.featured .product-image-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
    background: #f8f8f8;
    overflow: hidden;
}

.featured .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured .product-card:hover .product-image {
    transform: scale(1.05);
}

.featured .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: #1a1a1a;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.featured .product-badge.best-seller {
    background: #2563eb;
}

.featured .product-badge.new {
    background: #16a34a;
}

.featured .product-badge.festive {
    background: #ea580c;
}

.featured .product-badge.showroom-only {
    background: #1a1a1a;
}

.featured .product-info {
    padding: 10px 12px 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.featured .product-price {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.featured .product-price .unit {
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.featured .product-name {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 6px;
}

.featured .product-action {
    margin-top: auto;
    padding: 0 12px 12px;
}

.featured .add-btn {
    width: 100%;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.featured .add-btn.primary {
    background: #1a1a1a;
    color: #fff;
}

.featured .add-btn.primary:hover {
    background: #333;
}

.featured .add-btn.primary:active {
    transform: scale(0.98);
}

.featured .add-btn.outline {
    background: #fff;
    color: #1a1a1a;
    border: 1.5px solid #1a1a1a;
}

.featured .add-btn.outline:hover {
    background: #f5f5f5;
}

.featured .add-btn.disabled {
    background: #f5f5f5;
    color: #999;
    border: 1px solid #e5e5e5;
    cursor: not-allowed;
}

.featured .quantity-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1a1a1a;
    border-radius: 6px;
    padding: 2px;
}

.featured .qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.featured .qty-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.featured .qty-display {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    min-width: 30px;
    text-align: center;
}

.featured .empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
    color: #999;
}

.featured .empty-state p {
    margin-top: 16px;
    font-size: 16px;
}

.featured .toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1a1a1a;
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    white-space: nowrap;
}

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

@media (min-width: 480px) {
    .featured .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (min-width: 768px) {
    .featured .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .featured .products-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1280px) {
    .featured .products-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
    }
}

/* ========== LOCATION SELECTOR SYSTEM (Clean & Professional) ========== */

/* Location Header Button */
.location-selector-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.location-selector-btn:hover {
    background: #f3f4f6;
}

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

.loc-title {
    font-weight: 800;
    font-size: 15px;
    color: #111;
}

.loc-address {
    font-size: 13px;
    color: #6b7280;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Modal Overlay */
.loc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loc-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Content (PC Default) */
.loc-modal-content {
    background: #fff;
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    overflow: hidden;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.loc-modal-overlay.active .loc-modal-content {
    transform: scale(1);
}

/* Mobile Bottom Sheet Override */
@media (max-width: 768px) {
    .loc-modal-overlay {
        align-items: flex-end;
    }

    .loc-modal-content {
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .loc-modal-overlay.active .loc-modal-content {
        transform: translateY(0);
    }
}

/* Modal Interiors */
.loc-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

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

.loc-close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

.loc-modal-body {
    padding: 20px;
}

/* Detect Button (Blinkit Green Style) */
.detect-loc-btn {
    width: 100%;
    background: #0c831f;
    /* Blinkit Green */
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.detect-loc-btn:hover {
    background: #0a6b19;
}

.detect-loc-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Divider */
.loc-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.loc-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
    z-index: 1;
}

.loc-divider span {
    background: #fff;
    padding: 0 10px;
    color: #888;
    font-size: 12px;
    position: relative;
    z-index: 2;
}

/* Address Items */
.saved-title {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 12px;
}

.saved-addr-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: border-color 0.2s;
}

.saved-addr-item:hover {
    border-color: #0c831f;
    background: #f8fff9;
}

.saved-addr-item h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
}

.saved-addr-item p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.add-new-addr-btn {
    width: 100%;
    padding: 12px;
    background: none;
    border: 1px dashed #ccc;
    color: #0c831f;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}

/* Premium Toast Notification & Sparkle Burst Effects */
.toast, .featured .toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px) scale(0.8);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease, visibility 0.4s;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 
                0 0 20px rgba(30, 64, 175, 0.35),
                inset 0 1px 1px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.show, .featured .toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    animation: toast-glow 2s infinite alternate;
}

@keyframes toast-glow {
    0% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 15px rgba(30, 64, 175, 0.2); }
    100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 25px rgba(30, 64, 175, 0.5); }
}

.sparkle-particle {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    border-radius: 50%;
    animation: sparkle-fly 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes sparkle-fly {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0) rotate(var(--rot));
        opacity: 0;
    }
}

/* Mobile Live Order Floating Tracker styles */
.mobile-live-order-container {
    display: none; /* Hidden by default on desktop/tablet */
}

@media (max-width: 768px) {
    .mobile-live-order-container {
        display: block;
        position: fixed;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        width: 100%;
        max-width: calc(100% - 4rem);
        text-align: center;
        pointer-events: none;
    }

    .mobile-live-order-btn {
        pointer-events: auto;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: var(--white);
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.8125rem;
        text-decoration: none;
        box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4), 
                    0 0 10px rgba(16, 185, 129, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.15);
        letter-spacing: 0.5px;
        text-transform: uppercase;
        animation: floating-bounce 3s ease-in-out infinite, live-glow 2s infinite alternate;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .mobile-live-order-btn:active {
        transform: scale(0.95);
    }

    /* Pulsating Green/White Dot inside the button */
    .live-blink-dot {
        width: 8px;
        height: 8px;
        background-color: var(--white);
        border-radius: 50%;
        display: inline-block;
        position: relative;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        animation: dot-pulse 1.5s infinite;
    }

    @keyframes dot-pulse {
        0% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        }
        70% {
            transform: scale(1);
            box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
        }
        100% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        }
    }

    @keyframes floating-bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-4px); }
    }

    @keyframes live-glow {
        0% { box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4), 0 0 5px rgba(16, 185, 129, 0.2); }
        100% { box-shadow: 0 10px 25px rgba(16, 185, 129, 0.5), 0 0 15px rgba(16, 185, 129, 0.6); }
    }
}

/* Live Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 0, 0, 0.05);
    margin-top: 8px;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    animation: searchFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
    text-decoration: none;
    color: inherit;
    text-align: left;
}

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

.search-result-item:hover {
    background: #f8fafc;
}

.search-result-item:active {
    transform: scale(0.995);
}

.search-result-image {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    background: #f1f5f9;
    flex-shrink: 0;
    border: 1px solid #f1f5f9;
}

.search-result-no-image {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #94a3b8;
    font-weight: 500;
    flex-shrink: 0;
    border: 1px solid #f1f5f9;
}

.search-result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.search-result-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
}

.search-result-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
}

.search-result-category {
    background: #e2e8f0;
    color: #475569;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.search-result-price {
    font-weight: 700;
    color: #1e40af;
}

.search-result-badge {
    font-size: 9px;
    background: #fbbf24;
    color: #0f172a;
    padding: 1px 5px;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.search-result-action {
    font-size: 11px;
    color: #0c831f;
    font-weight: 700;
    border: 1.5px solid #0c831f;
    padding: 4px 10px;
    border-radius: 6px;
    background: transparent;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.search-result-action:hover {
    background: #0c831f;
    color: #ffffff;
}

.search-result-out-of-stock {
    font-size: 11px;
    color: #ef4444;
    font-weight: 600;
    white-space: nowrap;
}

.search-result-no-results {
    padding: 24px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.search-result-view-all {
    display: block;
    text-align: center;
    padding: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #1e40af;
    background: #f8fafc;
    border-top: 1px solid #cbd5e1;
    transition: background 0.15s ease;
    text-decoration: none;
}

.search-result-view-all:hover {
    background: #f1f5f9;
}