:root {
    --primary: #f59e0b;
    --primary-dark: #d97706;
    --secondary: #fffbeb;
    --text-main: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 0.75rem;
}

@font-face {
    font-family: 'Josefin Sans';
    src: url('../Josefin_Sans/JosefinSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}
@font-face {
    font-family: 'Josefin Sans';
    src: url('../Josefin_Sans/JosefinSans-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4rem 0;
    transition: transform 0.3s ease;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.nowrap-text {
    white-space: nowrap;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85); /* Increased opacity for better logo visibility */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    height: 6rem; /* Reduced back to 6rem to match smaller logo */
    display: flex;
    align-items: center;
}

/* Marketing Popup */
.marketing-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.marketing-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.marketing-popup-content {
    background: white;
    border-radius: 1rem;
    max-width: 90%;
    width: 450px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.marketing-popup-overlay.active .marketing-popup-content {
    transform: scale(1);
}

.marketing-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.marketing-popup-close:hover {
    background: white;
}

.marketing-popup-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

.marketing-popup-body {
    padding: 1.5rem;
    text-align: center;
}

.marketing-popup-btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: background-color 0.2s;
    margin-top: 1rem;
}

.marketing-popup-btn:hover {
    background-color: var(--primary-dark);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px; /* Little reduced from 80px */
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); /* Slight shadow to pop against light bg */
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 700;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-btn {
    position: relative;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-btn span {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hidden {
    display: none !important;
}

/* Bottom Navigation */
.bottom-nav {
    display: none; /* Hidden on desktop */
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    width: auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 0.5rem 1rem;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    gap: 0.5rem;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.65rem;
    padding: 0.4rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1;
}

.bottom-nav-item svg {
    width: 20px;
    height: 20px;
    margin-bottom: 0.15rem;
    transition: transform 0.3s ease;
}

.bottom-nav-item.active {
    color: var(--primary);
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
}

.bottom-nav-item.active svg {
    transform: scale(1.1);
}

.icon-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: white;
    font-size: 0.6rem;
    font-weight: bold;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .bottom-nav {
        display: flex;
    }

    .nav-container {
        position: relative;
        justify-content: center;
        min-height: 40px;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo img {
        height: 60px; /* Keep smaller logo on mobile */
    }

    .nav-actions {
        position: absolute;
        right: 0;
    }

    /* Hide desktop elements on mobile */
    .desktop-only {
        display: none !important;
    }

    /* Mobile: Remove Cart from Footer */
    .footer-link-list a[href="cart.html"] {
        display: none;
    }
    
    /* Mobile: Better Image Alignment & Gaps */
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .main-image-wrapper {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .product-gallery {
        align-items: center;
    }
}

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/chicken pickle.jpeg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 4rem;
    overflow: hidden;
    position: relative;
}

.page-contact .hero {
	background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../images/narrow-pathway-field-background-village.jpg') center/cover;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .hero-content {
        width: 100%;
        margin-bottom: 2rem;
    }
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Shop Hero Specifics */
.shop-hero {
    min-height: 40vh !important;
    padding-top: 6rem;
}

.shop-hero .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.shop-hero .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .shop-hero {
        min-height: 60vh !important;
    }
    .shop-hero .hero-content h1 {
        font-size: 1.75rem;
    }
}

/* Home Hero Specifics (Mobile) */
@media (max-width: 768px) {
    .home-hero {
        min-height: 65vh !important;
        padding-top: 4rem;
    }
    .home-hero .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    .home-hero .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    .home-hero .cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

.cta-btn {
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: transform 0.2s, background 0.2s;
}

.cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Tabs - Redesigned */
.tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    width: 100%;
}

.tabs-track {
    position: relative;
    display: inline-flex;
    background: var(--secondary);
    padding: 0.5rem;
    border-radius: 9999px;
    gap: 0.5rem;
    border: 1px solid rgba(245, 158, 11, 0.1);
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

.tabs-track::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    position: relative;
    z-index: 2;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    border-radius: 9999px;
    white-space: nowrap;
    transition: color 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.tab-btn.active {
    color: var(--white);
}

.active-pill {
    position: absolute;
    top: 0.5rem; /* Matches padding of track */
    left: 0;
    height: calc(100% - 1rem);
    background: var(--primary);
    border-radius: 9999px;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Category Circles */
.category-tabs-track {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	overflow-x: auto;
	padding: 0.75rem 0.5rem;
	min-height: 110px; /* Prevent layout shift before JS loads */
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE/Edge */
}
.category-tabs-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.category-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.25rem 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0; /* Prevent shrinking in flex container */
}

.category-circle-avatar {
    width: 64px;
    height: 64px;
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-circle-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-circle-label {
	font-size: 0.8rem;
	color: var(--text-main);
	white-space: nowrap;
}

/* Fine-tune spacing for Pick by Category section on shop page */
#shop .section-header {
	margin-bottom: 2rem;
}

#shop .category-tabs-track {
	margin-top: 0.25rem;
	margin-bottom: 1.75rem;
}

.category-circle.active .category-circle-avatar {
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.15);
}

@media (max-width: 768px) {
    .category-tabs-track {
        justify-content: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
        scroll-padding-left: 1rem;
    }

    .category-circle-avatar {
        width: 56px;
        height: 56px;
    }
    .category-circle-label {
        font-size: 0.75rem;
    }
}

.loading-spinner {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
    color: var(--text-light);
}

.jar-craft-section {
	background: white;
}

.jar-craft-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
	gap: 2.5rem;
	align-items: center;
}

.jar-craft-intro {
	max-width: 520px;
}

.jar-craft-kicker {
	font-size: 0.9rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--primary-dark);
	margin-bottom: 0.75rem;
}

.jar-craft-intro h2 {
	font-size: 2.25rem;
	margin-bottom: 0.75rem;
}

.jar-craft-intro p {
	color: var(--text-light);
	font-size: 1.02rem;
	margin-bottom: 1.5rem;
}

.jar-craft-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.jar-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.08);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(245, 158, 11, 0.22);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.jar-tag:hover {
    background: rgba(245, 158, 11, 0.16);
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.18);
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    .jar-tag {
        transition: none;
    }
    .jar-tag:hover {
        transform: none;
    }
}

.jar-craft-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	counter-reset: jar-counter;
}

.jar-step {
	background: white;
	border-radius: 1.2rem;
	padding: 1.5rem;
	box-shadow: var(--shadow);
	position: relative;
	border: none;
	opacity: 0;
	transform: translateY(30px) scale(0.98);
	transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease;
	counter-increment: jar-counter;
}

.jar-craft-section.reveal-on-scroll.active .jar-step:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.jar-step::after {
	content: '0' counter(jar-counter);
	position: absolute;
	right: 1.4rem;
	top: 0.9rem;
	font-size: 1.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: rgba(249, 115, 22, 0.14);
}

.jar-step h3 {
	font-size: 1.05rem;
	margin-bottom: 0.5rem;
}

.jar-step p {
	color: var(--text-light);
	font-size: 0.75rem;
}

@media (max-width: 768px) {
	.jar-step p {
		font-size: 0.7rem;
	}
}

.jar-craft-section.reveal-on-scroll.active .jar-step {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.jar-craft-section.reveal-on-scroll.active .jar-step:nth-child(1) {
	transition-delay: 0.05s;
}

.jar-craft-section.reveal-on-scroll.active .jar-step:nth-child(2) {
	transition-delay: 0.15s;
}

.jar-craft-section.reveal-on-scroll.active .jar-step:nth-child(3) {
	transition-delay: 0.25s;
}

.contact-prefer-section {
	background: radial-gradient(circle at top left, #fef3c7 0, #f9fafb 42%, #ffffff 100%);
}

.contact-prefer-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
	gap: 2.5rem;
	align-items: center;
}

.contact-prefer-intro h2 {
	font-size: 2.1rem;
	margin-bottom: 0.75rem;
}

.contact-prefer-intro p {
	color: var(--text-light);
	max-width: 520px;
	font-size: 1.02rem;
}

.contact-channel-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.contact-channel-card {
	background: white;
	border-radius: 1rem;
	padding: 1.4rem 1.3rem;
	box-shadow: var(--shadow);
	border: 1px solid rgba(148, 163, 184, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-channel-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 30px -18px rgba(15, 23, 42, 0.35);
	border-color: rgba(245, 158, 11, 0.6);
}

.contact-channel-icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.9rem;
	background: rgba(248, 250, 252, 0.9);
	color: var(--primary-dark);
}

.contact-channel-icon i {
	width: 1.35rem;
	height: 1.35rem;
}

.contact-channel-card h3 {
	font-size: 1.05rem;
	margin-bottom: 0.4rem;
}

.contact-channel-card p {
	color: var(--text-light);
	font-size: 0.95rem;
	margin-bottom: 0.6rem;
}

.contact-channel-note {
	display: inline-flex;
	margin-top: 0.1rem;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #6b7280;
}

.contact-prefer-section.reveal-on-scroll.active .contact-channel-card {
	animation: contact-card-pop 0.8s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.contact-prefer-section.reveal-on-scroll.active .contact-channel-card:nth-child(1) {
	animation-delay: 0.05s;
}

.contact-prefer-section.reveal-on-scroll.active .contact-channel-card:nth-child(2) {
	animation-delay: 0.15s;
}

.contact-prefer-section.reveal-on-scroll.active .contact-channel-card:nth-child(3) {
	animation-delay: 0.25s;
}

@keyframes contact-card-pop {
	0% {
		transform: translateY(24px) scale(0.96);
		opacity: 0;
	}
	60% {
		transform: translateY(-4px) scale(1.02);
		opacity: 1;
	}
	100% {
		transform: translateY(0) scale(1);
		opacity: 1;
	}
}

@media (max-width: 960px) {
	.jar-craft-layout {
		grid-template-columns: minmax(0, 1fr);
	}
	.jar-craft-intro {
		max-width: none;
	}
	.jar-craft-steps {
		grid-template-columns: minmax(0, 1fr);
	}
	.contact-prefer-layout {
		grid-template-columns: minmax(0, 1fr);
	}
	.contact-channel-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Scroll Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Adjustments */
.footer {
    background: var(--text-main);
    color: white;
    padding: 4rem 0 8rem 0; /* Added bottom padding to clear nav */
    margin-top: 4rem;
}

.radial-gallery-section + .footer {
    margin-top: 0;
}

/* Mobile Section Gaps */
@media (max-width: 768px) {
	#shop {
		margin-top: 2rem; /* Gap between Hero and Shop */
		padding-top: 2rem;
	}
    
    #about {
        margin-top: 2rem; /* Gap between Shop and About */
        padding-top: 2rem;
    }
}

/* Product Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem; /* Reduced gap for mobile */
}

@media (min-width: 640px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Product Card */
.product-reveal-card {
    position: relative;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s;
    height: auto;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-reveal-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

@media (max-width: 640px) {
    .image-container {
        height: 180px; /* Reduced height for mobile */
    }
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.type-icon-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.type-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.discount-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.rating-row {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    color: #facc15;
}

.star-icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.star-icon-filled {
    fill: currentColor;
}

.review-count {
    font-size: 0.8rem;
    color: var(--text-light);
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-top: auto;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.original-price {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
}

/* Add to Cart Button (Always Visible) */
.product-add-cart-btn {
    width: 100%;
    background: var(--text-main);
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    transition: background 0.2s;
    text-align: center;
}

.product-add-cart-btn:hover {
    background: var(--primary);
}

.feature-box {
    background: #f9fafb;
    padding: 0.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.feature-title {
    font-weight: 600;
    font-size: 0.8rem;
}

.feature-sub {
    font-size: 0.7rem;
    color: var(--text-light);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.add-cart-btn {
    background: var(--text-main);
    color: white;
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.add-cart-btn:hover {
    background: black;
}

.view-details-btn {
    border: 1px solid #e5e7eb;
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: background 0.2s;
}

.view-details-btn:hover {
    background: var(--bg-light);
}

/* Mobile Product Card Typography */
@media (max-width: 768px) {
    .product-title {
        font-size: 0.95rem;
    }
    .current-price {
        font-size: 1rem;
    }
    .original-price {
        font-size: 0.8rem;
    }
    .review-count {
        font-size: 0.65rem;
    }
    .star-icon {
        width: 12px;
        height: 12px;
    }
    .product-add-cart-btn {
        font-size: 0.85rem;
        padding: 0.6rem;
    }
    .card-content {
        padding: 1rem;
    }
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 900px;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    line-height: 1;
    z-index: 10;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr 1fr;
    }
}



.thumbnail-btn {
    width: 60px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    cursor: pointer;
    overflow: hidden;
}

.thumbnail-btn.active {
    border-color: var(--primary);
}

.thumbnail-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-option {
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.price-option-label-wrapper {
    display: flex;
    align-items: center;
}

.price-option-label {
    font-weight: 700;
}

.price-option-price-wrapper {
    text-align: right;
}

/* =========================================
   Testimonials Section (v2)
   ========================================= */
.testimonials-scroll-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    max-height: 740px;
    overflow: hidden;
}

.testimonials-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 280px;
    max-width: 320px;
}

.testimonials-scroll-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: scroll-up 40s linear infinite;
}

.testimonials-scroll-content.reverse {
    animation: scroll-down 45s linear infinite;
}

.testimonial-card-v2 {
    padding: 2rem;
    border-radius: 1.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.testimonial-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary);
}

.testimonial-card-v2 p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}



.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-info cite {
    font-weight: 600;
    font-style: normal;
    color: #111827;
    font-size: 0.9rem;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: #6b7280;
}

@keyframes scroll-up {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes scroll-down {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

@media (max-width: 1024px) {
    .hidden-tablet {
        display: none;
    }
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }
    .testimonials-column {
        max-width: 100%;
    }
}

/* =========================================
   Price Options
   ========================================= */
.price-option-original-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.price-option-selling-price {
    font-weight: 700;
}

.price-option-discount {
    display: block;
    font-size: 0.8rem;
    color: #16a34a;
}

.price-option.selected {
    border-color: var(--primary);
    background: var(--secondary);
}



/* Checkout Modal Specifics */
.checkout-modal-content {
    max-width: 500px;
}

.checkout-modal-body {
    grid-template-columns: 1fr;
    padding: 2rem;
}

.checkout-title {
    margin-bottom: 1.5rem;
    text-align: center;
}

.checkout-address {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-family: inherit;
}

.checkout-submit-btn {
    width: 100%;
}

.total-price {
    font-size: 1.25rem;
    font-weight: 700;
}

.add-to-cart-btn {
    background: var(--primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background 0.2s;
}

.add-to-cart-btn:hover {
    background: var(--primary-dark);
}

/* Cart Close Animation */
.close-cart-btn, .close-modal-btn {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s;
}

.close-cart-btn:hover, .close-modal-btn:hover {
    transform: rotate(90deg) scale(1.1);
    color: #ef4444;
}


#cart-page.section {
	min-height: calc(100vh - 6rem - 5rem);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-top: 6rem;
	padding-bottom: 4rem;
}

@media (max-width: 768px) {
	#cart-page.section {
		min-height: calc(100vh - 5rem - 5rem);
		padding-top: 5rem;
		padding-bottom: 4rem;
	}
}


.cart-items {
	flex: 1;
	overflow-y: auto;
	padding: 1.5rem 1.5rem 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 100%;
}

.cart-item {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cart-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* Cart Items - Redesigned Alignment */
.cart-item-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    object-fit: cover;
}

.cart-item-info-col {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.cart-item-variant {
    font-size: 0.8rem;
    color: var(--text-light);
}

.cart-item-qty-col {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3f4f6;
    padding: 0.25rem;
    border-radius: 0.5rem;
}

.qty-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--text-main);
    border-radius: 4px;
}

.qty-btn:hover {
    background: white;
}

.cart-item-price-col {
    text-align: right;
    min-width: 70px;
}

.cart-item-price {
    font-weight: 700;
}

.cart-item-price-mobile {
    display: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Mobile Add to Cart Button in Grid */
.mobile-add-cart-btn {
    display: none;
    width: 100%;
    background: var(--text-main);
    color: white;
    padding: 0.6rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.75rem;
    transition: background 0.2s;
    text-align: center;
}

.mobile-add-cart-btn:hover {
    background: black;
}

@media (max-width: 768px) {
    .cart-items {
        padding: 0.5rem;
    }

    .cart-item {
        padding: 1rem;
    }

    .cart-item-row {
        position: relative;
        padding-right: 2rem; /* Space for remove btn */
    }

    .cart-item-price-col {
        display: none;
    }
    
    .cart-item-price-mobile {
        display: block;
    }

    .cart-item-remove-col {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
    }

    .mobile-add-cart-btn {
        display: block;
    }
}

.cart-footer {
	padding: 1.25rem 1.5rem 1.5rem;
	background: white;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	border: 1px solid #e5e7eb;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.checkout-btn {
    width: 100%;
    background: var(--text-main);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

/* Forms */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-family: inherit;
}

.submit-btn {
    background: var(--primary);
    color: white;
    padding: 1rem 3rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    text-align: left;
}

.about-text-wrapper {
    max-width: 100%;
}

.about-image-wrapper {
    display: none;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-cta-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .about-image-wrapper {
        display: block;
        width: 50%; /* Reduced size by 2x (approx half of column width) */
        margin: 0 auto; /* Center in the column */
    }
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1rem 0.5rem 2rem 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -webkit-overflow-scrolling: touch;
}

.testimonials-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

@media (min-width: 768px) {
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: visible;
        padding: 0;
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    flex: 0 0 85%; /* Mobile card width */
    scroll-snap-align: center;
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: unset; /* Reset flex on desktop */
        width: auto;
    }
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--text-main);
}

/* Footer */
.footer {
    background: var(--text-main);
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

/* Footer Layout */
.footer-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .footer-layout {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
	/* Resetting previous flex styles */
	display: block;
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .footer-brand {
        grid-column: auto;
    }
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links-group {
    display: block;
}

/* Connect Section Full Width on Mobile */
.footer-links-group:last-child {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .footer-links-group:last-child {
        grid-column: auto;
    }
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-list a,
.footer-link-list button {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    text-align: left;
    font-size: 0.95rem;
}

.footer-link-list span {
    color: #d1d5db;
    font-size: 0.95rem;
}

.footer-link-list a:hover,
.footer-link-list button:hover {
    color: var(--primary);
}

.social-links {
    flex-direction: row;
    gap: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    transition: color 0.2s, transform 0.2s;
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.social-icon {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
    /* Grid handles layout, just ensuring alignment */
    .footer-brand,
    .footer-links-group {
        width: 100%;
        text-align: left;
    }
    
    .footer-tagline {
        max-width: 100%;
    }

    /* Ensure footer content isn’t obscured by fixed bottom nav */
    .footer {
        padding-bottom: 6.5rem;
    }
}

/* Policy Modal */
.modal-overlay {
    z-index: 10001; /* Higher than mandatory popup */
}

.policy-modal-content {
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.policy-modal-body {
    padding: 3rem 2.5rem;
    overflow-y: auto;
    display: flex !important; /* Force single column */
    flex-direction: column;
    gap: 1rem;
}

.policy-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--secondary);
    line-height: 1.2;
}

.policy-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
}

.policy-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.policy-text h3:first-child {
    margin-top: 0;
}

.policy-text p {
    margin-bottom: 1rem;
    color: #4b5563;
}

/* Refined Close Button */
.policy-modal-content .close-modal-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-light);
    background: var(--bg-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    border: 1px solid transparent;
}

.policy-modal-content .close-modal-btn:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
    border-color: #fca5a5;
}

/* Mandatory Acceptance Popup */
.acceptance-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.acceptance-popup-overlay.active {
    display: flex;
}

.acceptance-popup-content {
    background: white;
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: popupScaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupScaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.popup-logo {
    height: 50px;
    width: auto;
    margin-bottom: 0.5rem;
}

.acceptance-popup-content h2 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin: 0;
}

.acceptance-popup-content p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

.acceptance-popup-content a {
    color: var(--primary);
    font-weight: 600;
}

.accept-btn {
    background: var(--primary);
    color: white;
    padding: 0.75rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.4);
    margin-top: 0.5rem;
}

.accept-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.5);
}

/* -----------------------------
   Product Details Page Styles
   ----------------------------- */

/* Main Layout Grid */
.product-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .product-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Gallery Section */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image-wrapper {
    width: 100%;
    background: #f9fafb;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1; /* Keeps it square */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
}

.pd-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply; /* Helps blend white backgrounds */
}

.pd-thumbnails {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
}

.thumbnail-btn {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.thumbnail-btn.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.thumbnail-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Desktop Gallery Layout */
@media (min-width: 768px) {
    .product-gallery {
        position: sticky;
        top: 6rem; /* Stays fixed while scrolling */
        height: fit-content;
        flex-direction: row; /* Side by side */
        align-items: flex-start;
    }

    .main-image-wrapper {
        flex: 1; /* Take remaining width */
    }

    .pd-thumbnails {
        flex-direction: column; /* Vertical stack */
        width: 80px; /* Fixed width column */
        overflow-x: hidden;
        overflow-y: auto;
        max-height: 500px;
        padding-bottom: 0;
    }
}

/* Info Column */
.product-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pd-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pd-category-badge {
    background: #e5e7eb;
    color: var(--text-light);
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    font-weight: 600;
}

.pd-veg-badge {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pd-veg-badge.veg {
    background: #dcfce7;
    color: #166534;
}

.pd-veg-badge.veg::before {
    content: '●';
    color: #166534;
}

.pd-veg-badge.non-veg {
    background: #fee2e2;
    color: #991b1b;
}

.pd-veg-badge.non-veg::before {
    content: '▲';
    color: #991b1b;
}

.pd-title {
    font-size: 2rem;
    line-height: 1.2;
    color: var(--text-main);
    font-weight: 800;
}

.pd-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pd-price-section {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-top: 0.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.pd-current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.pd-original-price {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: var(--text-light);
}

.pd-discount-badge {
    background: #fee2e2;
    color: #ef4444;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.pd-description h3, .pd-ingredients h3, .pd-features h3, .pd-options h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    font-weight: 700;
}

.pd-description p, .pd-ingredients p {
    color: #4b5563;
    line-height: 1.6;
}

.pd-features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .pd-features ul {
        grid-template-columns: 1fr 1fr;
    }
}

.pd-features li {
    position: relative;
    padding-left: 1.5rem;
    color: #4b5563;
    font-size: 0.95rem;
}

.pd-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.pd-pricing-grid {
    display: grid;
    gap: 0.75rem;
}

.pd-actions {
    margin-top: 2rem;
}

.pd-actions .quantity-selector {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 8px 18px -12px rgba(0, 0, 0, 0.25);
}

.pd-actions .qty-btn {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: #f3f4f6;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.pd-actions .qty-btn:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-1px);
}

.pd-actions .qty-input {
    width: 52px;
    height: 38px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
    appearance: textfield;
}

.pd-actions .qty-input:focus {
    outline: none;
}

.cta-btn.full-width {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
    display: block;
}

/* Lightbox */
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-wrapper {
    max-width: 100%;
    max-height: 80vh;
    overflow: hidden;
    border-radius: 0.5rem;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    user-select: none;
}

.close-lightbox-btn {
    position: absolute;
    top: -3rem;
    right: 0;
    font-size: 2.5rem;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}

#sourcing-overview {
    background: url('../image.png') no-repeat center center/cover;
    position: relative;
}

.sourcing-orbit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0 2rem 0;
    background: transparent;
}

.orbit-wrap {
    position: relative;
    width: 460px;
    height: 460px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .orbit-wrap {
        width: 320px;
        height: 320px;
    }
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    border: 1px solid rgba(245,158,11,0.2);
}

.orbit-logo {
    width: 64px;
    height: auto;
}

.orbit-popup {
    position: absolute;
    width: 300px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    z-index: 100;
    overflow: hidden;
    animation: orbitPopupIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: top center;
    left: 50%;
    top: 65px;
    transform: translateX(-50%);
    padding: 0;
    text-align: left;
}

.orbit-popup::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 25px;
    background: linear-gradient(to bottom, transparent, var(--primary));
    opacity: 0.8;
}

.orbit-node {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Start centered, JS will move them */
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px; /* Fixed width for better centering */
    height: 40px;
    text-align: center;
    z-index: 10;
    transition: z-index 0s;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

.orbit-node.active {
    z-index: 50;
}

.orbit-node .node-label {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%) translateZ(0);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    transition: opacity 0.3s;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    pointer-events: none;
    backface-visibility: hidden;
}

.orbit-node.active .node-label {
    opacity: 0;
}

.orbit-node .node-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 2;
}

.orbit-node:hover .node-icon, .orbit-node.active .node-icon {
    background: var(--primary);
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
    transform: scale(1.2);
}

/* Pulse Effect for Active Node */
.orbit-node.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: nodePulse 2s infinite;
    z-index: 1;
}

@keyframes nodePulse {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 250%;
        height: 250%;
        opacity: 0;
    }
}

/* Header */
.orbit-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 1.25rem 0.5rem 1.25rem;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

.orbit-popup-header-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.orbit-popup-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

.orbit-popup-subtitle-text {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.orbit-popup-close {
    background: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.05);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.orbit-popup-close:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

/* Body */
.orbit-popup-body {
    padding: 0.5rem 1.25rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Orbit Popup Card Styles */
.orbit-popup-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    width: 100%;
}

.orbit-popup-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 0.4rem 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: default;
    opacity: 0;
    animation: slideInItem 0.4s ease-out forwards;
    text-align: center;
    min-height: 40px;
}

.orbit-popup-card:hover {
    transform: translateY(-2px);
    background: white;
    border-color: var(--primary);
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.1);
}

.card-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.2;
}

.orbit-popup-footer {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

@keyframes slideInItem {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sourcing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .sourcing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .sourcing-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.sourcing-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: var(--white);
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.sourcing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.sourcing-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.sourcing-icon {
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    background: var(--secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.sourcing-icon-svg {
    width: 24px;
    height: 24px;
}

.sourcing-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
}

.sourcing-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
}

.sourcing-body {
    margin-top: 0.75rem;
}

.sourcing-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.sourcing-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.sourcing-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    background: var(--secondary);
    color: var(--text-main);
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.sourcing-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 0.5rem;
}

.sourcing-list li {
    position: relative;
    padding-left: 1.25rem;
    color: #4b5563;
    font-size: 0.95rem;
}

.sourcing-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.lightbox-arrow {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
    left: -4rem;
}

/* -----------------------------
   Payment Pages (Success/Failure)
   ----------------------------- */
.page-center {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    max-width: 32rem;
    width: 100%;
    text-align: center;
}

.icon-success {
    width: 5rem;
    height: 5rem;
    color: #22c55e;
}

.icon-failure {
    width: 5rem;
    height: 5rem;
    color: #ef4444;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: #e5e7eb;
    color: #374151;
}

.btn-secondary:hover {
    background: #d1d5db;
}

.page-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.page-text {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.page-text.lg {
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.btn-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.mt-2rem {
    margin-top: 2rem;
}

.lightbox-next {
    right: -4rem;
}

@media (max-width: 768px) {
    .lightbox-arrow {
        background: rgba(0, 0, 0, 0.5);
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 0.5rem;
    }
    
    .lightbox-next {
        right: 0.5rem;
    }
    
    .close-lightbox-btn {
        top: -3rem;
        right: 0.5rem;
    }
}

#toast-container {
    position: fixed;
    top: 7rem; /* Below the 6rem header */
    right: 1.5rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 380px;
    pointer-events: none;
}

.toast {
    background: white;
    color: var(--text-main);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    pointer-events: auto;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.success {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #1f2937;
}

.toast.error {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #1f2937;
}

.toast.info {
    background-color: #eff6ff;
    border-color: #bfdbfe;
    color: #1f2937;
}

.toast-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.toast.success .toast-icon {
    color: #16a34a;
}

.toast.error .toast-icon {
    color: #dc2626;
}

.toast.info .toast-icon {
    color: #2563eb;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    line-height: 1.5;
}

.toast-close {
    color: var(--text-light);
    opacity: 0.6;
    transition: opacity 0.2s, color 0.2s;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 4px;
}

.toast-close:hover {
    opacity: 1;
    color: var(--text-main);
    background-color: rgba(0, 0, 0, 0.05);
}

/* Responsive Notification Bar */
@media (max-width: 768px) {
    #toast-container {
        top: auto;
        bottom: 5rem; /* Above bottom nav */
        right: 1rem;
        left: 1rem;
        width: auto;
        max-width: none;
        align-items: center;
    }

    .toast {
        width: 100%;
        max-width: 400px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        transform: translateY(20px);
    }

    .toast.show {
        transform: translateY(0);
    }
}

/* Shop Filters */
.filters-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2.5rem;
    justify-content: center;
    align-items: flex-start;
}

.filter-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.filter-section h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    font-weight: 700;
}

.tabs-track-container {
    background: var(--bg-light);
    border-radius: 999px;
    padding: 0.35rem;
    display: inline-flex;
    position: relative;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    overflow-x: auto;
    max-width: 100vw;
    scrollbar-width: none;
}

.category-tabs {
    display: flex;
    position: relative;
    min-width: max-content;
}

.tab-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    z-index: 10;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}

.tab-btn.active {
    color: var(--text-main);
}

.active-pill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--white);
    border-radius: 999px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

/* Type Tabs */
.type-tabs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.type-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
    border: 1px solid var(--bg-light);
    background: var(--bg-light);
    transition: all 0.2s ease;
}

.type-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.type-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.2);
}

@media (max-width: 768px) {
    .filters-wrapper {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .tabs-track-container {
        border-radius: 1rem;
        width: 100%;
        overflow-x: auto;
    }
}

/* Shop Filters Redesign */
.filters-wrapper {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

.filter-controls {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid #f3f4f6;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.select-wrapper {
    position: relative;
    width: 200px;
}

.select-wrapper select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: var(--bg-light);
    border: 1px solid #e5e7eb;
    padding: 0.65rem 1rem;
    padding-right: 2.5rem;
    border-radius: 0.5rem;
    font-family: inherit;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

.select-wrapper select:hover {
    border-color: var(--primary);
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.select-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: var(--text-light);
    pointer-events: none;
}

.reset-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: var(--bg-light);
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    height: 42px; /* Match select height */
}

.reset-btn:hover {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fca5a5;
}

.reset-btn svg {
    width: 1.1rem;
    height: 1.1rem;
}

/* Veg/Non-Veg Dot Indicator */
.product-type-dot {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: 20;
    background-color: white;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-type-dot::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.product-type-dot.veg {
    border-color: #22c55e; /* Green */
}

.product-type-dot.veg::after {
    background-color: #22c55e;
}

.product-type-dot.non-veg {
    border-color: #ef4444; /* Red */
}

.product-type-dot.non-veg::after {
    background-color: #ef4444;
}

/* Product Tags */
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.product-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: var(--bg-light);
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
        width: 100%;
    }
    
    .select-wrapper {
        width: 100%;
    }
    
    .reset-btn {
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .product-type-dot {
        top: 0.75rem;
        right: 0.75rem;
        width: 10px;
        height: 10px;
    }
}

/* Animated Marquee Hero */
.hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    padding-top: 4rem; /* Adjusted navbar offset */
}

.shop-hero {
    height: 60vh;
    min-height: 400px;
}

.hero-content-overlay {
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 35vh; /* Lift text higher up */
}

.shop-hero .hero-content-overlay {
    margin-bottom: 15vh;
}

.hero-text-container {
    max-width: 1000px; /* Increased from 800px to fit text in one line */
    width: 100%;
    animation: fadeIn 0.8s ease-out;
    padding: 0 1rem;
}

.tagline {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    backdrop-filter: blur(4px);
}

.hero-text-container h1 {
    font-size: 3.5rem; /* Increased back for web interface */
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    white-space: nowrap; /* Force single line */
}

.hero-text-container p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 999px;
    background: #ef4444; /* Red color from reference */
    color: white;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.3);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #dc2626;
    transform: scale(1.05);
}

/* Marquee Animation */
.marquee-container {
    position: absolute;
    bottom: 4rem;
    left: 0;
    width: 100%;
    height: 40vh;
    min-height: 350px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
    pointer-events: none;
    /* Ensure padding for shadow/rotation */
    padding-bottom: 20px; 
}

.marquee-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: marquee-scroll 60s linear infinite;
    height: 100%;
    align-items: center; /* Center items vertically if container is taller */
}

.marquee-item {
    position: relative;
    width: 220px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 18px 35px -12px rgba(0, 0, 0, 0.35);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Zig-zag rotation */
.marquee-item:nth-child(even) {
    transform: rotate(3deg) translateY(-20px);
}

.marquee-item:nth-child(odd) {
    transform: rotate(-3deg) translateY(0px);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Assumes track content is duplicated once */
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-text-container h1 {
        font-size: 1.8rem; /* Smaller for mobile */
        white-space: normal; /* Allow wrapping on mobile */
    }
    
    .hero-text-container p {
        font-size: 1rem;
    }
    
    .marquee-container {
        height: 30vh;
    }
    
    .hero-content-overlay {
        margin-bottom: 40vh; /* Lift text higher on mobile */
    }
}

/* Floating Food Hero */
.floating-hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--white);
    padding: 5rem 1rem;
    padding-top: 8rem; /* Navbar offset */
}

.floating-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.swirl-left {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-33%, -33%);
    color: #fce7f3; /* pink-100 equivalent */
    width: 600px;
    height: 600px;
}

.swirl-right {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(25%, 25%);
    color: #fce7f3; /* pink-100 equivalent */
    width: 700px;
    height: 700px;
}

.floating-images-container {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
}

.floating-img {
    position: absolute;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Specific Positions for Floating Images - Redistributed for better spacing */
.img-1 {
    width: 150px;
    top: 5%;
    left: 3%;
}

.img-2 {
    width: 130px;
    top: 8%;
    right: 3%;
}

.img-3 {
    width: 140px;
    bottom: 8%;
    right: 3%;
}

.img-4 {
    width: 60px;
    top: 22%;
    left: 22%;
}

.img-5 {
    width: 50px;
    top: 45%;
    right: 20%;
}

.img-6 {
    width: 55px;
    bottom: 25%;
    left: 8%;
}

.img-7 {
    width: 110px;
    top: 50%;
    left: 4%;
}

.img-8 {
    width: 90px;
    top: 8%;
    left: 30%;
}

.img-9 {
    width: 85px;
    bottom: 10%;
    left: 25%;
}

.img-10 {
    width: 80px;
    top: 38%;
    right: 6%;
}

.img-11 {
    width: 65px;
    bottom: 30%;
    left: 40%;
}

.img-12 {
    width: 50px;
    top: 65%;
    right: 5%;
}

.img-13 {
    width: 95px;
    top: 20%;
    right: 25%;
}

.img-14 {
    width: 120px;
    bottom: 5%;
    left: 55%;
}

.img-15 {
    width: 75px;
    bottom: 25%;
    right: 25%;
}

.img-17 {
    width: 60px;
    top: 35%;
    left: 15%;
}

.img-18 {
    width: 100px;
    bottom: 15%;
    right: 45%;
}

.hero-content-center {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 800px;
}

.hero-content-center h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content-center p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-content-center h1 {
        font-size: 2.5rem;
    }
    
    .floating-img {
        opacity: 0.8;
    }
    
    .img-1 { width: 70px; top: 2%; left: -5px; }
    .img-2 { width: 65px; top: 5%; right: -5px; }
    .img-3 { width: 70px; bottom: 5%; right: 0; }
    .img-4 { width: 35px; top: 18%; left: 5%; }
    .img-5 { width: 30px; top: 40%; right: 5%; }
    .img-6 { width: 35px; bottom: 20%; left: 5%; }
    .img-7 { width: 55px; top: 50%; left: 0; }
    .img-8 { width: 45px; top: 2%; left: 30%; }
    .img-9 { width: 45px; bottom: 12%; left: 15%; }
    .img-10 { width: 40px; top: 30%; right: 10%; }
    .img-11 { width: 35px; bottom: 28%; left: 35%; }
    .img-12 { width: 30px; top: 60%; right: 2%; }
    .img-13 { width: 50px; top: 15%; right: 20%; }
    .img-14 { width: 60px; bottom: 2%; left: 50%; }
    .img-15 { width: 40px; bottom: 20%; right: 25%; }
    .img-17 { width: 35px; top: 30%; left: 10%; }
    .img-18 { width: 50px; bottom: 10%; right: 35%; }
}

/* New About Section Design */
.about-featured-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease-in-out;
}

.about-featured-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.about-featured-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.about-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.about-featured-card:hover .about-featured-img {
    transform: scale(1.05);
}

.about-featured-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .about-featured-card {
        flex-direction: row;
    }
    .about-featured-image-wrapper {
        width: 50%;
        min-height: auto;
    }
    .about-featured-content {
        padding: 2rem;
    }
}

.about-meta {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
}

.about-tag {
    background: rgba(245, 158, 11, 0.1); /* Primary with opacity */
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.about-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    line-height: 1.25;
}

@media (min-width: 1024px) {
    .about-title {
        font-size: 1.5rem;
    }
}

.about-title-underline {
    background-image: linear-gradient(to right, var(--primary), var(--primary));
    background-size: 0% 2px;
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.5s;
}

.about-featured-card:hover .about-title-underline,
.about-card:hover .about-title-underline {
    background-size: 100% 2px;
}

.about-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.about-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.875rem;
    transition: background 0.3s;
}

.about-btn:hover {
    background: var(--primary-dark);
}

.max-w-600 { max-width: 600px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Grid Cards */
.about-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.about-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.about-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* =========================================
   About Page Specific Styles
   ========================================= */

/* Hero / Story Section */
.about-hero-section {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-story-grid {
        grid-template-columns: 1.2fr 0.8fr; /* Gives less space to image column */
        gap: 5rem;
    }
}

.about-story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    margin-top: 4rem; /* Added gap */
    color: var(--text-main);
    line-height: 1.2;
}

.about-story-text {
    font-size: 0.85rem; /* Reduced from 1rem */
    color: var(--text-light);
    line-height: 1.7; /* Slightly tighter */
    margin-bottom: 1.5rem;
}

.about-story-image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
    max-width: 250px; /* Further reduced */
    margin: 0 auto;
}

.hero-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    background: var(--bg-light);
    color: var(--text-main);
    border-radius: 9999px;
    font-weight: 600;
    border: 1px solid rgba(245, 158, 11, 0.3);
    cursor: default;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.hero-badge:hover {
	background: #fef3c7;
	border-color: rgba(245, 158, 11, 0.8);
	color: #92400e;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px -10px rgba(15, 23, 42, 0.4);
}

.about-story-image-wrapper:hover {
    transform: rotate(0deg);
}

.about-story-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-story-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-story-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

/* Timeline Polish */
.timeline-line {
    background: linear-gradient(to bottom, transparent 0%, #fed7aa 10%, #fed7aa 90%, transparent 100%); /* Light orange base */
}

.timeline-progress {
    background: linear-gradient(to bottom, var(--primary) 0%, #ea580c 100%); /* Strong orange gradient */
}

.timeline-marker {
    background: white;
    border: 2px solid #fed7aa; /* Light orange border */
    color: var(--primary);
    font-weight: 800;
    width: 40px; /* Slightly larger */
    height: 40px;
    font-size: 1.1rem;
}

.timeline-item.active .timeline-marker {
    background: white;
    border-color: var(--primary);
    color: var(--primary-dark);
    box-shadow: 0 0 0 4px #ffedd5; /* Ring effect */
}

.timeline-title {
    font-weight: 800;
    color: #0f172a; /* Darker text */
}


/* Values Section (Differentiation) */
.values-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.value-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.value-desc {
    color: var(--text-light);
    font-style: italic;
}

/* Timeline Section (Journey of a Jar) */
.timeline-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Vertical Line Base */
.timeline-line {
    position: absolute;
    z-index: 0;
    left: 20px; /* Mobile alignment */
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, #e5e7eb 10%, #e5e7eb 90%, transparent 100%);
}

/* Progress Line */
.timeline-progress {
    position: absolute;
    z-index: 0;
    left: 20px;
    top: 0;
    width: 2px;
    height: 0; /* JS will update this */
    background: linear-gradient(to bottom, var(--primary) 0%, var(--primary-dark) 100%);
    transition: height 0.1s linear;
    max-height: 100%;
}

@media (min-width: 768px) {
    .timeline-line, .timeline-progress {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .timeline-item:nth-child(even) {
        justify-content: flex-end;
    }
}

.timeline-content {
    position: relative;
    width: calc(100% - 60px);
    margin-left: 60px;
    padding: 0;
}

@media (min-width: 768px) {
    .timeline-content {
        width: 45%;
        margin-left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 50px;
        text-align: right;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        text-align: left;
    }
}

/* Marker */
.timeline-marker {
    position: absolute;
    left: 4px; /* (20 - 32/2) + line width? No. Line is at 20px. Marker center at 21px. 32px wide -> left: 21 - 16 = 5px */
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .timeline-marker {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-item.active .timeline-marker {
    border-color: var(--primary);
    background: #FEF5E6; /* Opaque to hide line behind */
    color: var(--primary);
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .timeline-item.active .timeline-marker {
        transform: translateX(-50%) scale(1.2);
    }
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.timeline-desc {
    color: var(--text-light);
    line-height: 1.6;
}

/* Roots Section (New 1) */
.roots-section {
    padding: 6rem 0;
    background-color: #fff8f1; /* Very light orange tint */
    text-align: center;
}

.roots-content {
    max-width: 800px;
    margin: 0 auto;
}

.roots-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
}

.roots-quote::before {
    content: '"';
    font-size: 5rem;
    color: rgba(245, 158, 11, 0.2);
    position: absolute;
    top: -40px;
    left: -20px;
    font-family: serif;
}

.roots-author {
    font-weight: 700;
    color: var(--primary);
}

/* CTA Section (New 2) */
.cta-section-large {
    padding: 8rem 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/chicken pickle.jpeg') center/cover fixed;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content-large h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-content-large p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    border-radius: 9999px;
    background: var(--primary);
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-large:hover {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.05);
}

/* Footer Slogan - Dot Matrix Effect */
.footer-slogan-wrapper {
    text-align: center;
    padding-bottom: 3rem;
    padding-top: 1rem;
    position: relative;
    z-index: 10;
}

.footer-slogan-text {
    font-family: 'Josefin Sans', sans-serif; /* Ensure font matches or is geometric */
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 2px;
    
    /* Dot Matrix Effect */
    color: rgba(255, 255, 255, 0.1); /* Fallback / faint text outline if needed, or transparent */
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    
    /* Create dots */
    background-image: radial-gradient(circle, var(--primary) 25%, transparent 28%);
    background-size: 5px 5px; /* Adjust for dot density */
    background-repeat: repeat;
    
    /* Blinking Animation */
    animation: dots-pulse 3s infinite ease-in-out;
    transition: transform 0.3s ease, background-image 0.3s ease;
    cursor: default;
}

@keyframes dots-pulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.5; }
}

.footer-slogan-text:hover {
    /* Hover effect: Dots become white and brighter */
    background-image: radial-gradient(circle, #ffffff 25%, transparent 28%);
    opacity: 1;
    animation: none;
    transform: scale(1.02);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2); /* Subtle glow */
}

@media (max-width: 768px) {
    .footer-slogan-text {
        font-size: 2.2rem;
        background-size: 4px 4px;
    }
}
 .footer-slogan-plain {
     text-align: center;
     margin-bottom: 1.5rem;
 }
 
.footer-slogan-plain-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.1;
}
 
 /* FSSAI Certification in Footer */
.footer-cert {
    text-align: left;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
 
.fssai-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 0.25rem 0.4rem;
    box-shadow: 0 12px 24px -12px rgba(0,0,0,0.45);
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

 .fssai-logo {
     width: 96px;
     height: auto;
     display: block;
     image-rendering: auto;
 }
 
 .fssai-number {
     margin-top: 0.25rem;
     font-weight: 700;
     font-size: 1rem;
     color: #ffffff;
     letter-spacing: 0.06em;
 }
 
@media (max-width: 768px) {
    .fssai-card {
        padding: 0.2rem 0.35rem;
    }
    .fssai-logo {
        width: 84px;
    }
}
