/* Base styles and variables - Red Meat Theme with Gold Accents */
:root {
    /* Red Meat Color Palette */
    --primary-color: #dc2626;
    --primary-hover: #b91c1c;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --background-color: #faf8f3;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Source Sans Pro', sans-serif;
    --h1-size: 3rem;
    --h2-size: 2.25rem;
    --h3-size: 1.3rem;
    --body-size: 1rem;
    
    /* Red Theme Colors */
    --red-primary: #dc2626;
    --red-dark: #991b1b;
    --red-light: #dc2626;
    --red-lighter: #dc2626;
    --burgundy: #7f1d1d;
    
    /* Gold & Beige Accent Colors */
    --gold-primary: #d4af37;
    --gold-dark: #b8941e;
    --gold-light: #e4c665;
    --gold-lighter: #f0d98d;
    --beige-primary: #e8dcc4;
    --beige-light: #f5f0e6;
    --beige-dark: #d4c4a8;
    --cream: #faf8f3;
    
    /* Background Colors */
    --bg-light: #f5f0e6;
    --bg-medium: #e8dcc4;
    --bg-card: rgba(248, 245, 235, 0.95);
    --bg-overlay: rgba(232, 220, 196, 0.9);
    --soft-bg: #f5f0e6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #f5f0e6, #e8dcc4, #d4c4a8);
    --gradient-secondary: linear-gradient(45deg, #dc2626, #d4af37, #e4c665);
    --gradient-hero: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(232, 220, 196, 0.12) 50%, rgba(220, 38, 38, 0.08) 100%);
    --gradient-text: linear-gradient(45deg, #dc2626, #d4af37);
    --gradient-gold: linear-gradient(135deg, #d4af37, #e4c665, #f0d98d);
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    
    /* Border Radius - Rounded Design */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Borders */
    --border-color: rgba(212, 175, 55, 0.3);
    --border-medium: 1px solid rgba(220, 38, 38, 0.2);
    --border-gold: 2px solid var(--gold-primary);
    
    /* Animation Variables */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Page Load Animation */
body {
    animation: pageLoad 0.4s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark Theme Variables */
[data-theme="dark"] {
    /* Primary Colors - Adjusted for dark mode */
    --primary-color: #ef4444;
    --primary-hover: #dc2626;
    --text-color: #f3f4f6;
    --text-light: #9ca3af;
    --background-color: #111827;
    
    /* Red Theme Colors - Brighter for dark mode */
    --red-primary: #ef4444;
    --red-dark: #dc2626;
    --red-light: #f87171;
    --red-lighter: #fca5a5;
    --burgundy: #991b1b;
    
    /* Gold & Beige - Warmer tones for dark */
    --gold-primary: #fbbf24;
    --gold-dark: #d4af37;
    --gold-light: #fcd34d;
    --gold-lighter: #fde68a;
    --beige-primary: #57534e;
    --beige-light: #44403c;
    --beige-dark: #292524;
    --cream: #1f2937;
    
    /* Background Colors - Dark variants */
    --bg-light: #1f2937;
    --bg-medium: #374151;
    --bg-card: rgba(31, 41, 55, 0.95);
    --bg-overlay: rgba(55, 65, 81, 0.9);
    --soft-bg: #111827;
    
    /* Gradients - Dark mode versions */
    --gradient-primary: linear-gradient(135deg, #1f2937, #374151, #4b5563);
    --gradient-secondary: linear-gradient(45deg, #ef4444, #fbbf24, #fcd34d);
    --gradient-hero: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(55, 65, 81, 0.15) 50%, rgba(239, 68, 68, 0.1) 100%);
    --gradient-text: linear-gradient(45deg, #ef4444, #fbbf24);
    --gradient-gold: linear-gradient(135deg, #fbbf24, #fcd34d, #fde68a);
    
    /* Shadows - Enhanced for dark mode */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.4);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.2);
    --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.15);
    
    /* Border Radius - Rounded Design */
    --radius-sm: 0.75rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
    
    /* Borders */
    --border-medium: 1px solid rgba(151, 27, 27, 0.4);
    --border-gold: 1px solid rgba(212, 175, 55, 0.3);
    
    /* Transitions */
    --transition-medium: 0.3s ease;
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: none;
}

.animate-on-scroll.animated {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation delay utilities */
[style*="animation-delay"] {
    animation-delay: inherit !important;
}

.animate-fade-in-up {
    animation-name: fadeInUp;
}

.animate-fade-in {
    animation-name: fadeIn;
}

.animate-slide-in-left {
    animation-name: slideInLeft;
}

.animate-slide-in-right {
    animation-name: slideInRight;
}

.animate-scale-in {
    animation-name: scaleIn;
}

/* Additional animation classes */
.animate-slide-up {
    animation-name: slideInUp;
}

.animate-slide-down {
    animation-name: slideInDown;
}

.animate-zoom-in {
    animation-name: zoomIn;
}

.animate-bounce-in {
    animation-name: bounceIn;
}

.animate-flip-in {
    animation-name: flipIn;
}

.animate-fade-left {
    animation-name: fadeInLeft;
}

.animate-fade-right {
    animation-name: fadeInRight;
}

/* Fast animation variant */
.animate-fast {
    animation-duration: 0.3s !important;
}

/* Slower animation variant */
.animate-slow {
    animation-duration: 0.8s !important;
}

/* Base body styles */
body {
    background: var(--gradient-primary);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    font-size: var(--body-size);
    line-height: 1.6;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(135deg, rgba(254, 226, 226, 0.3), rgba(252, 165, 165, 0.3));
    border-radius: var(--radius-md);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--red-primary), var(--red-light));
    border-radius: var(--radius-md);
    border: 2px solid rgba(254, 226, 226, 0.3);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--red-dark), var(--red-primary));
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--red-primary) rgba(254, 226, 226, 0.3);
}

/* Background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
    background-size: 100px 100px;
    z-index: -1;
    animation: softFloat 12s ease-in-out infinite alternate;
}

@keyframes softFloat {
    0% { opacity: 0.3; transform: translateY(0px); }
    100% { opacity: 0.6; transform: translateY(-10px); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--red-primary);
    text-shadow: var(--shadow-glow);
    letter-spacing: 0.5px;
}

h1 {
    font-size: var(--h1-size);
    margin-bottom: 1.25rem;
}

h2 {
    font-size: var(--h2-size);
    margin-bottom: 1rem;
}

h3 {
    font-size: var(--h3-size);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--red-primary);
    text-decoration: none;
    transition: var(--transition-medium);
}

a:hover {
    color: var(--red-dark);
    text-shadow: var(--shadow-glow);
}

/* Global button styles */
button {
    white-space: nowrap;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ==================== ANIMATIONS & HOVER EFFECTS ==================== */
/* Keyframe Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.6), 0 0 30px rgba(239, 68, 68, 0.3);
        transform: scale(1.02);
    }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotate-icon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Additional Fast Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes flipIn {
    from {
        opacity: 0;
        transform: perspective(400px) rotateX(-90deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateX(0deg);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Global Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

/* Enhanced Link Hover Effects */
a {
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red-primary), var(--gold-primary));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover::after {
    width: 100%;
}

/* Enhanced Button Hover Effects */
button, .btn {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

button:hover, .btn:hover {
    animation: pulse-glow 2s infinite;
    transform: translateY(-2px);
}

button::before, .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

button:active::before, .btn:active::before {
    width: 300px;
    height: 300px;
}

/* Icon Animations */
.icon, i, svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon:hover, i:hover, svg:hover {
    animation: float 2s ease-in-out infinite;
}

/* Card Hover Effects */
.product-card, .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover, .card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.2), 0 8px 20px rgba(251, 191, 36, 0.15);
}

/* Shopping Cart Shake Effect */
.cart-icon.added {
    animation: shake 0.5s ease-in-out;
}

/* Fade In Animation for Content */
.fade-in {
    animation: fade-in-up 0.6s ease-out forwards;
}

/* Scale In for Modals */
.modal-content {
    animation: scale-in 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Shimmer Effect for Loading States */
.shimmer {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0) 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
}

[data-theme="dark"] .navbar {
    background: rgba(31, 41, 55, 0.98);
    border-bottom-color: rgba(251, 191, 36, 0.2);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(31, 41, 55, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform var(--transition-normal);
}

.logo-link:hover {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(220, 38, 38, 0.3));
}

.logo-link:active {
    transform: scale(1.02);
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.logo-link:hover .logo-img {
    transform: rotate(-5deg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red-primary);
    text-shadow: var(--shadow-light);
    transition: color var(--transition-normal);
}

.logo-link:hover .logo-text {
    color: var(--gold-primary);
}

.nav-menu {
    display: none; /* Hidden by default on all devices - hamburger only */
    align-items: center;
    gap: 2rem;
}

/* Hide mobile menu by default on desktop */
@media (min-width: 769px) {
    .mobile-controls {
        display: none !important;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all var(--transition-normal);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red-primary), var(--gold-primary));
    transform: translateX(-50%);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--red-primary);
    background: var(--beige-light);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link i {
    transition: transform var(--transition-normal);
}

.nav-link:hover i {
    transform: scale(1.2) rotate(5deg);
}

.nav-link.active {
    color: var(--red-primary);
    background: var(--gold-lighter);
    border: 1px solid var(--gold-primary);
}

.nav-link.active::after {
    width: 80%;
}

/* Glovo Link Styling */
.nav-link.glovo-link {
    background: linear-gradient(135deg, #ffc244 0%, #ffaa00 100%);
    color: #000;
    font-weight: 600;
    border: 2px solid #ff9900;
    box-shadow: 0 2px 10px rgba(255, 194, 68, 0.3);
}

.nav-link.glovo-link:hover {
    background: linear-gradient(135deg, #ffaa00 0%, #ff9900 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 194, 68, 0.5);
}

.nav-link.glovo-link i {
    color: #000;
}

/* Products Link Styling */
.nav-link.products-link {
    background: linear-gradient(135deg, #ffffff 0%, #fff5e6 100%);
    color: #5d4037;
    font-weight: 600;
    border: 2px solid #ffcc80;
    box-shadow: 0 2px 8px rgba(255, 204, 128, 0.35);
    position: relative;
}

.nav-link.products-link:hover {
    background: linear-gradient(135deg, #fff2d9 0%, #ffe0b3 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(255, 204, 128, 0.55);
}

.nav-link.products-link i {
    color: #5d4037;
}

/* Preserve custom link styling in hamburger menu */
.nav-menu.active .nav-link.glovo-link {
    background: linear-gradient(135deg, #ffc244 0%, #ffaa00 100%);
    color: #000;
    font-weight: 600;
    border: 2px solid #ff9900;
    box-shadow: 0 2px 10px rgba(255, 194, 68, 0.3);
}

.nav-menu.active .nav-link.glovo-link:hover {
    background: linear-gradient(135deg, #ffaa00 0%, #ff9900 100%);
    box-shadow: 0 4px 15px rgba(255, 194, 68, 0.5);
}

.nav-menu.active .nav-link.glovo-link i {
    color: #000;
}

.nav-menu.active .nav-link.products-link {
    background: linear-gradient(135deg, #ffffff 0%, #fff5e6 100%);
    color: #5d4037;
    font-weight: 600;
    border: 2px solid #ffcc80;
    box-shadow: 0 2px 8px rgba(255, 204, 128, 0.35);
}

.nav-menu.active .nav-link.products-link:hover {
    background: linear-gradient(135deg, #fff2d9 0%, #ffe0b3 100%);
    box-shadow: 0 4px 14px rgba(255, 204, 128, 0.55);
}

.nav-menu.active .nav-link.products-link i {
    color: #5d4037;
}

/* Cart badge */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--red-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

/* Reviews gallery styling */
.reviews-grid {display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem;margin-top:1.5rem}
.review-card {position:relative;background:var(--bg-card);border:1px solid rgba(212,175,55,.25);border-radius:1rem;overflow:hidden;box-shadow:0 4px 14px rgba(0,0,0,.08);transition:.3s}
.review-card:hover {transform:translateY(-4px);box-shadow:0 6px 20px rgba(0,0,0,.15)}
.review-card figure {margin:0;aspect-ratio:3/5;display:flex;align-items:center;justify-content:center;background:#fff}
.review-card img {width:100%;height:100%;object-fit:contain;display:block;padding:.5rem;filter:drop-shadow(0 2px 4px rgba(0,0,0,.2))}
.review-meta {padding:.5rem .75rem .75rem;font-size:.75rem;display:flex;flex-direction:column;gap:4px}
.review-stars {color:#fbbf24;font-size:.85rem;letter-spacing:1px}
.review-author {font-weight:600;color:var(--red-primary)}
.review-caption {font-size:.7rem;color:var(--text-light);line-height:1.2}
.review-card.bad-bg figure {background:linear-gradient(135deg,#fff,#fdf7ee)}

/* Cart notification badge on button */
.cart-notification-badge {
    position: absolute;
    top: -10px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--burgundy);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.45rem;
    border-radius: 10px;
    min-width: 42px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.6);
    white-space: nowrap;
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Nav controls - hide theme/lang buttons, keep only hamburger */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-controls .theme-toggle,
.nav-controls .lang-toggle {
    display: none; /* Hidden - only in hamburger menu */
}

/* Shopping Cart Styles */
.cart-container {
    position: relative;
}

.cart-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(151, 27, 27, 0.4);
    border-radius: 0.5rem;
    color: var(--red-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-toggle:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--red-primary);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--red-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-dropdown {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    width: 380px;
    max-width: 90vw;
    background: white;
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-heavy);
    z-index: 1001;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-gold);
}

.cart-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--red-primary);
}

.cart-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s;
}

.cart-close:hover {
    color: var(--red-primary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    max-height: 400px;
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold-primary);
}

.empty-cart p {
    margin: 0;
    font-size: 1.1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    border: 1px solid var(--border-gold);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cart-item-name {
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    font-size: 0.95rem;
}

.cart-item-weight {
    font-size: 0.85rem;
    color: var(--text-light);
}

.cart-item-price {
    font-weight: 700;
    color: var(--red-primary);
    font-size: 1rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    background: var(--gold-primary);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.qty-btn:hover {
    background: var(--gold-dark);
}

.qty-value {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.remove-item {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1rem;
    transition: color 0.3s;
    margin-left: auto;
}

.remove-item:hover {
    color: var(--red-primary);
}

.cart-footer {
    padding: 1rem 1.25rem;
    border-top: 2px solid var(--border-gold);
    background: var(--bg-light);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cart-total strong {
    color: var(--red-primary);
    font-size: 1.4rem;
}

.checkout-btn {
    width: 100%;
    padding: 0.85rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.lang-toggle, .theme-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(212, 175, 55, 0.08));
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 0.5rem;
    color: var(--red-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.08);
}

.lang-toggle:hover, .theme-toggle:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(212, 175, 55, 0.15));
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2), 0 0 20px rgba(212, 175, 55, 0.15);
}

.theme-toggle #theme-icon {
    transition: transform var(--transition-normal);
}

.theme-toggle:hover #theme-icon {
    transform: rotate(20deg);
}

.control-text {
    font-size: 0.9rem;
}

/* Mobile toggle button - NOW VISIBLE ON ALL DEVICES */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--red-primary);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

/* Hamburger active state - transform to X */
.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-controls {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    margin-top: 1rem;
}

.mobile-lang-toggle, .mobile-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    border: 1px solid var(--red-primary);
    border-radius: 0.5rem;
    color: var(--red-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.mobile-lang-toggle:hover, .mobile-theme-toggle:hover {
    background: var(--gold-primary);
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* Mobile menu overlay */
.nav-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* No dark overlay */
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    pointer-events: none; /* Allow clicks through */
}

.nav-menu.active::before {
    opacity: 0; /* Keep transparent even when active */
    visibility: hidden;
}

/* ==================== BUTTONS - Responsive % na svim ekranima ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 2%;
    padding: 2.5% 4.5%;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-light);
    box-sizing: border-box;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-primary), var(--red-light));
    color: white;
}

.btn-primary i {
    color: white !important;
    transition: transform var(--transition-normal);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--red-dark), var(--red-primary));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    color: white;
}

.btn-primary:hover i {
    transform: scale(1.2) rotate(5deg);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--red-primary);
    border: 2px solid var(--red-primary);
}

.btn-secondary:hover {
    background: var(--red-primary);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
}

/* ==================== FORM ELEMENTS - Responsive % na svim ekranima ==================== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea,
select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 2.8% 3.5%;
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-md);
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-family: var(--body-font);
    background: var(--bg-card);
    color: var(--text-color);
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    appearance: none;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 2rem 60px;
    overflow: visible;
    background: #1a1a1a;
}

.hero-background {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    height: 150vh;
    z-index: 0;
    background-image: url('../images/hero-meat.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.75) 0%, 
        rgba(127, 29, 29, 0.60) 40%,
        rgba(212, 175, 55, 0.15) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 75%;
    margin: 0 auto;
    width: 100%;
    z-index: 2;
    position: relative;
    text-align: center;
}

.hero-text {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
}

.hero-greeting {
    display: block;
    font-size: 3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--body-font);
}

.hero-name {
    display: block;
    font-size: 5rem;
    font-weight: 700;
    color: var(--red-primary);
    font-family: var(--heading-font);
    margin-top: 0.25rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem 0;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-actions .btn-secondary {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
}

.hero-actions .btn-secondary:hover {
    background: var(--gold-primary);
    color: #000;
}

/* ==================== SECTIONS ==================== */
.about-section,
.skills-section,
.promo-cta-section {
    padding: 80px 2rem;
    max-width: 95%;
    margin: 0 auto;
}

.about-content,
.skills-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2,
.skills-content h2 {
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 3.5%;
    margin-top: 4%;
}

.skill-card {
    background: var(--bg-card);
    padding: 4.5%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold-primary);
}

.skill-card i {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--red-primary);
    margin-bottom: 3%;
}

.skill-card h3 {
    margin-bottom: 2.5%;
    color: var(--text-color);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.skill-card p {
    color: var(--text-light);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

@media (max-width: 600px) {
    .skills-grid { grid-template-columns: 1fr; gap: 4.5%; }
    .skill-card { padding: 6%; }
}

/* ==================== FEATURED PRODUCTS ==================== */
.featured-products-section {
    padding: 80px 2rem;
    max-width: 95%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    background: var(--gradient-primary);
}

.featured-products-content h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.featured-product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-gold);
    display: flex;
    flex-direction: column;
}

.featured-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold-primary);
}

.featured-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(153, 27, 27, 0.05) 100%);
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-product-card:hover .featured-product-image img {
    transform: scale(1.1);
}

.featured-product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-gold);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-gold);
}

.featured-product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.featured-product-name {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.featured-product-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    font-size: 0.95rem;
}

.featured-product-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.featured-product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.featured-product-price .price-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--red-primary);
}

.featured-product-price .price-unit {
    font-size: 1rem;
    color: var(--text-light);
}

.featured-product-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.featured-product-actions .quantity-selector {
    display: flex;
    align-items: center;
    background: var(--body-bg);
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.featured-product-actions .quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--red-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.featured-product-actions .quantity-btn:hover {
    background: rgba(212, 175, 55, 0.15);
}

.featured-product-actions .quantity-input {
    width: 80px; /* Dovoljno za 4 cifre npr 1500g */
    height: 40px;
    border: 2px solid var(--border-gold);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    background: var(--bg-card);
    color: var(--text-color);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.featured-product-actions .quantity-input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.featured-product-actions .add-to-cart-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Promo CTA Section */
.promo-cta-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.15));
    border-radius: 1rem;
    padding: 60px 2rem;
}

.promo-cta-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.promo-icon i {
    font-size: 3rem;
    color: var(--red-primary);
}

.promo-text h2 {
    margin-bottom: 1rem;
}

.promo-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ==================== FAQ SECTION ==================== */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--red-primary) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.faq-item summary {
    list-style: none;
    position: relative;
    padding-right: 2rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red-primary);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-item summary:hover {
    color: var(--red-primary);
}

/* ==================== BENEFITS GRID ==================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(185, 28, 28, 0.05));
    padding: 60px 2rem 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--red-primary);
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Make the footer logo + title sit on one line */
.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.footer-logo-link h3 {
    margin: 0;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px; /* Rounded footer logo */
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    color: var(--red-primary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--red-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-color);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--red-primary);
    padding-left: 5px;
}

/* Glovo footer link styling */
.glovo-footer-link:hover {
    background: linear-gradient(135deg, #ffaa00 0%, #ff9900 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 194, 68, 0.5) !important;
}

.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
}

.contact-info-item i {
    color: var(--red-primary);
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    padding-top: 2rem;
}

.footer-bottom-content {
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-copyright-link {
    color: var(--red-primary);
    font-weight: 600;
}

/* ==================== FLOATING CALL BUTTON ==================== */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-heavy);
    z-index: 999;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4);
}

.floating-call-text {
    display: none;
}

/* ==================== TOAST NOTIFICATIONS ==================== */
.sv-says-container {
    position: fixed;
    top: 100px;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 11000;
    pointer-events: none;
}

.sv-says {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    background: white;
    border: 1px solid rgba(220, 38, 38, 0.2);
    box-shadow: var(--shadow-medium);
    border-radius: var(--radius-sm);
    min-width: 260px;
    max-width: 420px;
    color: #1a1a1a;
    animation: slideInRight 0.35s ease forwards;
    pointer-events: auto;
}

.sv-says.success {
    border-left: 4px solid #10b981;
    background: linear-gradient(135deg, #ffffff, #f0fdf4);
}

.sv-says.error {
    border-left: 4px solid #dc2626;
    background: linear-gradient(135deg, #ffffff, #fef2f2);
}

.sv-says.info {
    border-left: 4px solid var(--red-primary);
    background: linear-gradient(135deg, #ffffff, #fffbeb);
}

.sv-says-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.sv-says.success .sv-says-icon {
    color: #10b981;
}

.sv-says.error .sv-says-icon {
    color: #dc2626;
}

.sv-says.info .sv-says-icon {
    color: var(--red-primary);
}

.sv-says-content {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
}

.sv-says-close {
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.4);
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.sv-says-close:hover {
    color: rgba(0, 0, 0, 0.7);
}

/* Dark Theme for Notifications */
[data-theme="dark"] .sv-says {
    background: #1f2937;
    border-color: rgba(239, 68, 68, 0.3);
    color: #f3f4f6;
}

[data-theme="dark"] .sv-says.success {
    background: linear-gradient(135deg, #1f2937, #064e3b);
    border-left-color: #10b981;
}

[data-theme="dark"] .sv-says.error {
    background: linear-gradient(135deg, #1f2937, #7f1d1d);
    border-left-color: #ef4444;
}

[data-theme="dark"] .sv-says.info {
    background: linear-gradient(135deg, #1f2937, #78350f);
    border-left-color: var(--red-primary);
}

[data-theme="dark"] .sv-says-close {
    color: rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .sv-says-close:hover {
    color: rgba(255, 255, 255, 0.7);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
/* Unified hamburger menu for all devices */
.nav-menu.active {
    display: flex;
}

/* Desktop hamburger menu */
@media (min-width: 769px) {
    .nav-menu.active {
        position: fixed;
        top: 70px;
        right: 20px;
        width: 320px;
        max-height: calc(100vh - 90px);
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        border-radius: 1rem;
        z-index: 999;
        overflow-y: auto;
        border: 2px solid rgba(220, 38, 38, 0.1);
    }
    
    .nav-menu.active .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .nav-menu.active .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        transition: all var(--transition-normal);
    }
    
    .nav-menu.active .mobile-controls {
        display: flex !important;
        flex-direction: row;
        gap: 0.75rem;
        width: 100%;
        padding-top: 1rem;
        margin-top: 1rem;
        border-top: 2px solid rgba(220, 38, 38, 0.1);
        justify-content: center;
    }
    
    /* Dark theme for desktop dropdown */
    [data-theme="dark"] .nav-menu.active {
        background: #1f2937;
        border-color: rgba(239, 68, 68, 0.3);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen to the right */
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: white; /* Clean white background */
        flex-direction: column;
        padding: 5rem 1.5rem 2rem;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
        gap: 1.5rem;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0; /* Slide in from right */
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        transition: all var(--transition-normal);
        font-size: 1rem;
    }
    
    .nav-link.active {
        color: var(--red-primary);
        background: var(--gold-lighter);
        border: 1px solid var(--gold-primary);
    }
    
    .nav-controls {
        display: flex; /* Keep nav-controls visible */
        gap: 0.5rem;
    }
    
    /* Hide theme and lang toggles on mobile - they're in mobile menu */
    .nav-controls .theme-toggle,
    .nav-controls .lang-toggle {
        display: none;
    }
    
    /* Cart dropdown on mobile */
    .cart-dropdown {
        position: fixed;
        top: 70px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
    }
    
    .cart-toggle {
        padding: 0.4rem 0.8rem;
    }
    
    .mobile-controls {
        display: flex;
        gap: 0.75rem;
        width: 100%;
        padding-top: 1.5rem;
        margin-top: 1rem;
        border-top: 2px solid rgba(220, 38, 38, 0.1);
        flex-direction: row;
        justify-content: center; /* Center theme/lang buttons */
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-products-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-product-actions {
        flex-direction: column;
    }
    
    .featured-product-actions .add-to-cart-btn {
        width: 100%;
    }
    
    .promo-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .promo-actions .btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .promo-cta-section {
        padding: 60px 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .footer-bottom-links span {
        display: none;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-greeting {
        font-size: 2rem;
    }
    
    .hero-name {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-actions {
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}

/* Dark Theme - Mobile Menu */
@media (max-width: 768px) {
    [data-theme="dark"] .nav-menu {
        background: #1f2937;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.6);
    }
    
    [data-theme="dark"] .nav-link {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(251, 191, 36, 0.1));
        border-color: rgba(239, 68, 68, 0.3);
        color: #f3f4f6;
    }
    
    [data-theme="dark"] .nav-link:hover {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(251, 191, 36, 0.2));
        border-color: rgba(251, 191, 36, 0.5);
    }
    
    [data-theme="dark"] .nav-link.active {
        background: linear-gradient(135deg, #ef4444, #f87171);
        color: white;
        border-color: #ef4444;
    }
    
    [data-theme="dark"] .hamburger {
        background: #f3f4f6;
    }
    
    [data-theme="dark"] .mobile-lang-toggle,
    [data-theme="dark"] .mobile-theme-toggle {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(251, 191, 36, 0.1));
        border-color: rgba(239, 68, 68, 0.4);
        color: #f3f4f6;
    }
    
    [data-theme="dark"] .mobile-lang-toggle:hover,
    [data-theme="dark"] .mobile-theme-toggle:hover {
        background: linear-gradient(135deg, #fbbf24, #fcd34d);
        color: #1f2937;
    }
}



/* All sections backgrounds - tamno sivo crvenkasto */




/* Cards and boxes - tamno sivo crvenkasto */




/* All white backgrounds → tamno sivo crvenkasto */


/* Inline styles with linear-gradient backgrounds */


/* Category filters */






/* Package items list */


/* Text colors - belo */




/* Buttons - crveno i zlatno ostaju */




/* Input fields - tamno sivo crvenkasto */




/* Modal backgrounds */


/* Shopping cart */




/* Hero and large sections */


/* Benefits section */


/* Footer */


/* Product images stay bright */


/* Sold out banner - crveno ostaje */


/* Icons and badges - zlatno ostaje */


/* Contact form */


/* Tables */






/* Navigation improvements */


/* Benefit cards styling */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

[data-theme="dark"] .benefit-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.95), rgba(55, 65, 81, 0.9));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

[data-theme="dark"] .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.25);
}

/* Package Cards Hover Effects */
.package-card {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-primary), var(--red-primary));
    opacity: 0;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}

.package-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.3), 0 0 0 2px var(--gold-primary) !important;
    border-color: var(--gold-primary) !important;
}

.package-card:hover::before {
    opacity: 0.05;
}

.package-card:hover .package-image img {
    transform: scale(1.1) rotate(2deg);
}

[data-theme="dark"] .package-card:hover {
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.4), 0 0 0 2px #fbbf24 !important;
}

/* Filter buttons */
.filter-btn {
    transition: all 0.3s ease !important;
}

.filter-btn:not(.active) {
    background: var(--card-bg) !important;
    color: var(--text-color) !important;
    border-color: var(--border-color) !important;
}

.filter-btn:hover {
    background: var(--beige-light) !important;
    border-color: var(--gold-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.filter-btn.active {
    background: var(--red-primary) !important;
    color: white !important;
    border-color: var(--gold-primary) !important;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

[data-theme="dark"] .filter-btn:not(.active) {
    background: var(--card-bg) !important;
    color: var(--text-color) !important;
    border-color: var(--border-color) !important;
}

[data-theme="dark"] .filter-btn:hover {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.9), rgba(75, 85, 99, 0.9)) !important;
    border-color: var(--gold-primary) !important;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

[data-theme="dark"] .filter-btn.active {
    background: var(--red-primary) !important;
    color: white !important;
    border-color: var(--gold-primary) !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.5), 0 0 20px rgba(239, 68, 68, 0.2);
}

/* Select and Option styling for dark theme */
select {
    background: var(--card-bg);
    color: var(--text-color);
}

select option {
    background: var(--card-bg);
    color: var(--text-color);
}

[data-theme="dark"] select {
    background: rgba(31, 41, 55, 0.95);
    color: #f3f4f6;
}

[data-theme="dark"] select option {
    background: #1f2937;
    color: #f3f4f6;
}

[data-theme="dark"] .weight-selector,
[data-theme="dark"] .cart-weight-selector {
    background: rgba(31, 41, 55, 0.95) !important;
    color: #f3f4f6 !important;
}

[data-theme="dark"] .weight-selector option,
[data-theme="dark"] .cart-weight-selector option {
    background: #1f2937;
    color: #f3f4f6;
}


/* Package Cards - Dark Theme Support */
[data-theme="dark"] .package-card {
    background: #1f2937 !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5) !important;
}

[data-theme="dark"] .package-card h3 {
    color: #ef4444 !important;
}

[data-theme="dark"] .package-card p {
    color: #9ca3af !important;
}

[data-theme="dark"] .package-items {
    background: #374151 !important;
}

[data-theme="dark"] .package-items h4 {
    color: #9ca3af !important;
}

[data-theme="dark"] .package-items li {
    color: #f3f4f6 !important;
}

[data-theme="dark"] .package-price-section {
    background: #374151 !important;
}

[data-theme="dark"] .package-price-section span {
    color: #9ca3af !important;
}


/* All divs with inline white background → tamno sivo crvenkasto */


/* Price displays - zlatno ostaje */
























