/* 
   TunFoods Custom Style Sheet
   Theme: Vibrant Purple & Warm Gold Accents (Derived from Logo)
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #8b00dd;
    --primary-rgb: 139, 0, 221;
    --primary-hover: #7500be;
    --secondary: #2b0057;
    --secondary-rgb: 43, 0, 87;
    --accent: #ff9f1c;
    --accent-rgb: 255, 159, 28;
    --light-lavender: #f9f5ff;
    --bg-white: #ffffff;
    --text-dark: #211333;
    --text-muted: #73648a;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(139, 0, 221, 0.08);
    --card-shadow: 0 10px 30px rgba(43, 0, 87, 0.04);
    --card-shadow-hover: 0 20px 40px rgba(43, 0, 87, 0.12);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

/* Global Reset & Base Styles */
body {
    font-family: var(--font-body);
    background-color: var(--light-lavender);
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-lavender);
}
::-webkit-scrollbar-thumb {
    background: rgba(139, 0, 221, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Base Layout Classes */
section {
    padding: 80px 0;
    position: relative;
}

/* Glassmorphism Classes */
.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.glass-nav.scrolled {
    background: rgba(43, 0, 87, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-nav.scrolled .nav-link,
.glass-nav.scrolled .navbar-brand {
    color: #ffffff !important;
}

.glass-nav.scrolled .navbar-toggler-icon {
    filter: invert(1);
}

.glass-nav.scrolled .btn-cart {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.glass-nav.scrolled .btn-cart:hover {
    background: var(--accent);
    color: var(--secondary);
}

/* Floating Shapes Background */
.bg-shape-1 {
    position: absolute;
    top: 5%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 0, 221, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    animation: floatShape 10s ease-in-out infinite alternate;
    pointer-events: none;
}

.bg-shape-2 {
    position: absolute;
    bottom: 15%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 159, 28, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    animation: floatShape 14s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

@keyframes floatShape {
    0% { transform: translate(0px, 0px) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.15) rotate(15deg); }
}

/* Typography Utility */
.text-gradient {
    background: linear-gradient(135deg, var(--secondary) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Interactive Navigation Links */
.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 16px !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.navbar-brand img {
    height: 45px;
    transition: transform 0.4s ease;
}

.navbar-brand:hover img {
    transform: rotate(10deg) scale(1.05);
}

/* Custom Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, #a015f5 100%);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(139, 0, 221, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(139, 0, 221, 0.35);
    color: #ffffff;
    background: linear-gradient(135deg, #a015f5 0%, var(--primary) 100%);
}

.btn-primary-custom:active {
    transform: translateY(-1px);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 10px 26px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: var(--secondary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-cart {
    background: rgba(139, 0, 221, 0.08);
    color: var(--primary);
    border: none;
    border-radius: 30px;
    padding: 8px 18px;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.btn-cart:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    padding: 4px 7px;
    line-height: 1;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* Cart Badge Pulse Animation Triggered by JS */
.cart-pulse {
    animation: cartPulse 0.4s ease-out;
}

@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: 90px;
    background: radial-gradient(circle at 80% 20%, rgba(243, 229, 255, 0.6) 0%, var(--light-lavender) 100%);
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-bg {
    position: absolute;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(139, 0, 221, 0.15) 0%, rgba(255, 159, 28, 0.1) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: morphingBg 12s ease-in-out infinite alternate;
}

@keyframes morphingBg {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%; }
    100% { border-radius: 60% 40% 60% 40% / 40% 50% 50% 60%; }
}

.hero-image {
    max-width: 100%;
    z-index: 2;
    animation: floatHero 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(43, 0, 87, 0.15));
    border-radius: 50%;
}

@keyframes floatHero {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.badge-delivery {
    background: rgba(255, 159, 28, 0.12);
    color: #e57e00;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(255, 159, 28, 0.05);
}

.badge-delivery i {
    animation: bounceRight 1.5s infinite;
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Feature Cards */
.feature-card {
    background: var(--bg-white);
    border: 1px solid rgba(139, 0, 221, 0.05);
    border-radius: 24px;
    padding: 35px 25px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(139, 0, 221, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary);
    color: #ffffff;
    transform: rotateY(180deg);
}

/* Category Filters */
.category-btn {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid rgba(139, 0, 221, 0.1);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(43, 0, 87, 0.02);
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    color: #ffffff !important;
    border-color: var(--primary);
    box-shadow: 0 8px 18px rgba(139, 0, 221, 0.2);
    transform: translateY(-2px);
}

.category-btn i {
    margin-right: 6px;
}

/* Search Bar styling */
.search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-input {
    border: 1px solid rgba(139, 0, 221, 0.12);
    border-radius: 30px;
    padding: 14px 24px 14px 50px;
    font-weight: 400;
    box-shadow: 0 4px 15px rgba(43, 0, 87, 0.02);
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(139, 0, 221, 0.1);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.15rem;
}

/* Food Cards & Grid */
.food-card {
    background: var(--bg-white);
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.food-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.food-img-container {
    position: relative;
    overflow: hidden;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    background-color: var(--light-lavender);
}

.food-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.food-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bg-purple-light {
    background-color: #bb6ffc !important;
    color: #ffffff !important;
}


.veg-icon-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: var(--bg-white);
    padding: 6px 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.veg-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #28a745;
}

.nonveg-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dc3545;
}

.veg-border {
    border: 2px solid #28a745;
    padding: 1px;
    border-radius: 2px;
    display: inline-block;
}

.nonveg-border {
    border: 2px solid #dc3545;
    padding: 1px;
    border-radius: 2px;
    display: inline-block;
}

.food-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.food-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.food-card:hover .food-title {
    color: var(--primary);
}

.food-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
    flex-grow: 1;
}

.rating-stars {
    color: var(--accent);
    font-size: 0.9rem;
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-left: 5px;
}

.food-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary);
}

.btn-add-cart {
    background: rgba(139, 0, 221, 0.06);
    color: var(--primary);
    border: none;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.25rem;
}

.btn-add-cart:hover {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.1);
}

.btn-add-cart:active {
    transform: scale(0.9);
}

/* Offcanvas Cart Sidebar */
.offcanvas-cart {
    width: 420px !important;
    border-left: 1px solid var(--glass-border);
    background: var(--bg-white);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(139, 0, 221, 0.08);
    padding: 24px;
}

.offcanvas-title {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offcanvas-body {
    padding: 24px;
}

/* Empty Cart State */
.empty-cart-state {
    text-align: center;
    padding: 50px 0;
}

.empty-cart-icon {
    font-size: 4rem;
    color: rgba(139, 0, 221, 0.15);
    margin-bottom: 20px;
    animation: floatHero 4s ease-in-out infinite;
}

/* Cart Item Card */
.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(139, 0, 221, 0.06);
    animation: fadeInUp 0.4s ease;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    object-fit: cover;
    background-color: var(--light-lavender);
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--secondary);
}

.cart-item-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(139, 0, 221, 0.15);
    background: #ffffff;
    color: var(--primary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.qty-val {
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 15px;
    text-align: center;
}

.btn-remove-item {
    color: #dc3545;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    padding: 0 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.btn-remove-item:hover {
    opacity: 1;
}

/* Cart Summary Card */
.cart-summary-box {
    background: var(--light-lavender);
    border-radius: 20px;
    padding: 20px;
    margin-top: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.summary-row.total-row {
    border-top: 1px dashed rgba(139, 0, 221, 0.2);
    padding-top: 12px;
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
}

/* Flying Add to Cart Animation */
.flying-particle {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 4px 10px rgba(255, 159, 28, 0.4);
}

/* Reviews and Testimonials */
.reviews-section {
    background-color: var(--bg-white);
}

.testimonial-card {
    background: var(--light-lavender);
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(43, 0, 87, 0.02);
    transition: transform 0.3s ease;
    border: 1px solid rgba(139, 0, 221, 0.02);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.user-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--secondary);
}

.user-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Footer Section */
.footer-section {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--accent);
    color: var(--secondary);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 30px;
    padding: 10px 20px;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent);
    box-shadow: none;
    color: #ffffff;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 40px 0 25px;
}

/* Success Animation inside Modal */
.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4CAF50;
}

.check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}

.check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
}

.check-icon::before, .check-icon::after {
    content: '';
    height: 100px;
    position: absolute;
    background: #FFFFFF;
    transform: rotate(-45deg);
}

.icon-line {
    height: 5px;
    background-color: #4CAF50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

.icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(76, 175, 80, 0.5);
    box-sizing: content-box;
    position: absolute;
}

.icon-fix {
    top: 8px;
    left: 28px;
    width: 5px;
    height: 85px;
    position: absolute;
    z-index: 1;
    background: #FFFFFF;
    transform: rotate(-45deg);
}

@keyframes icon-line-tip {
    0% { width: 0; left: 1px; top: 19px; }
    54% { width: 0; left: 1px; top: 19px; }
    70% { width: 50px; left: -8px; top: 37px; }
    84% { width: 17px; left: 21px; top: 48px; }
    100% { width: 25px; left: 14px; top: 46px; }
}

@keyframes icon-line-long {
    0% { width: 0; right: 46px; top: 54px; }
    65% { width: 0; right: 46px; top: 54px; }
    84% { width: 55px; right: 0px; top: 35px; }
    100% { width: 47px; right: 8px; top: 38px; }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Responsive adjustments */
@media (max-width: 991.98px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
        text-align: center;
    }
    
    .hero-image-wrapper {
        margin-top: 40px;
    }
    
    .badge-delivery {
        margin-bottom: 15px;
    }
    
    .offcanvas-cart {
        width: 100% !important;
    }
}

@media (max-width: 575.98px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .category-scroll {
        display: flex;
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 10px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    
    .category-scroll::-webkit-scrollbar {
        display: none;
    }
    
    .category-btn {
        scroll-snap-align: start;
        white-space: nowrap;
    }
    
    .btn-primary-custom {
        padding: 10px 22px;
        font-size: 0.95rem;
    }
    
    .btn-secondary-custom {
        padding: 8px 20px;
        font-size: 0.95rem;
    }
}
