/* Glavni paket stilova */



/* ===== CORE ===== */

/* ./components/variables.css */
/**
 * CSS Variables - Premium Design System 2025
 * Centralizovane varijable za ceo sajt
 */

:root {
    /* ===== FONTS - Modern Clean Typography ===== */
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Inter', sans-serif;

    /* ===== PRIMARY COLORS - Vibrant Orange/Red ===== */
    --primary: #ff6b35;
    --primary-light: #ff8f5c;
    --primary-dark: #e85a2a;
    --primary-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffb347 100%);
    --primary-gradient-hover: linear-gradient(135deg, #ff8f5c 0%, #ffa64d 50%, #ffc77d 100%);

    /* ===== SECONDARY / Accent - Golden Yellow ===== */
    --secondary: #ffd700;
    --secondary-light: #ffed4a;
    --secondary-dark: #e6c200;

    /* ===== ACCENT COLORS - Warm Orange/Yellow Theme ===== */
    --accent-gold: #ffc107;
    --accent-amber: #ff9800;
    --accent-orange-light: #ffb347;
    --accent-ember: #ff5722;

    /* ===== PREMIUM DARK THEME - Not Pure Black ===== */
    --bg-dark: #0c0c14;
    --bg-darker: #08080e;
    --bg-primary: #0e0e16;
    --bg-secondary: #121218;
    --bg-tertiary: #18181f;
    --bg-card: rgba(22, 22, 30, 0.8);
    --bg-card-solid: #16161e;
    --bg-card-hover: #1c1c26;
    --bg-input: rgba(28, 28, 38, 0.9);
    --bg-modal: rgba(8, 8, 14, 0.95);

    /* ===== PREMIUM GRADIENTS - Warm Tones ===== */
    --gradient-body: linear-gradient(180deg,
        #0c0c12 0%,
        #0e0e14 20%,
        #101016 40%,
        #0e0e14 60%,
        #0c0c12 80%,
        #08080c 100%);
    --gradient-dark: linear-gradient(135deg, #0c0c12 0%, #141418 50%, #0c0c12 100%);
    --gradient-mesh:
        radial-gradient(at 40% 20%, rgba(255, 107, 53, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(255, 152, 0, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(255, 193, 7, 0.08) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(255, 215, 0, 0.08) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(255, 140, 0, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(255, 107, 53, 0.12) 0px, transparent 50%);
    --gradient-hero: linear-gradient(90deg,
        rgba(255, 107, 53, 0.15) 0%,
        rgba(247, 147, 30, 0.1) 25%,
        rgba(255, 193, 7, 0.08) 50%,
        rgba(255, 152, 0, 0.05) 75%,
        transparent 100%);
    --gradient-card: linear-gradient(145deg, rgba(28, 28, 38, 0.9) 0%, rgba(18, 18, 24, 0.95) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);

    /* ===== GLASSMORPHISM ===== */
    --glass-bg: rgba(22, 22, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shine: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);

    /* ===== TEXT COLORS ===== */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);
    --text-dark: #0c0c14;

    /* ===== BORDER COLORS ===== */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.05);
    --border-glow: rgba(255, 107, 53, 0.4);

    /* ===== STATUS COLORS ===== */
    --success: #22c55e;
    --success-bg: rgba(34, 197, 94, 0.15);
    --warning: #f59e0b;
    --warning-bg: rgba(245, 158, 11, 0.15);
    --danger: #ef4444;
    --danger-bg: rgba(239, 68, 68, 0.15);
    --info: #3b82f6;
    --info-bg: rgba(59, 130, 246, 0.15);

    /* ===== PREMIUM SHADOWS ===== */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 32px 64px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.4);
    --shadow-glow-lg: 0 0 80px rgba(255, 107, 53, 0.3);
    --shadow-glow-amber: 0 0 40px rgba(255, 152, 0, 0.3);
    --shadow-glow-gold: 0 0 40px rgba(255, 215, 0, 0.3);
    --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.1);

    /* ===== SPACING ===== */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    --spacing-4xl: 96px;

    /* ===== BORDER RADIUS ===== */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 36px;
    --radius-full: 9999px;

    /* ===== TRANSITIONS ===== */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* ===== 2025 ULTRA MODERN TYPOGRAPHY ===== */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --font-accent: 'Inter', sans-serif;

    /* ===== CONTAINER ===== */
    --container-width: 1400px;
    --container-padding: 1.5rem;

    /* ===== Z-INDEX ===== */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    --z-toast: 800;
    --z-header: 1000;
}

/* ===== RESPONSIVE VARIABLES ===== */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 0.75rem;
    }
}


/* ./components/base.css */
/* =====================================================
   BASE STYLES - Reset i osnovni stilovi
   ===================================================== */

/* Box Sizing */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Root Setup */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* iOS Safari 100vh fix - use custom property */
:root {
    --vh: 1vh;
}

/* Body - 2025 Premium Gradient Background (Not Pure Black) */
body {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary, #fff);
    background: var(--bg-dark, #0c0c14);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Gradient Background Mesh - Dark with warm tones */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 85% 15%, rgba(255, 152, 0, 0.06) 0%, transparent 45%),
        radial-gradient(ellipse 70% 60% at 10% 80%, rgba(255, 193, 7, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse 50% 50% at 90% 85%, rgba(255, 140, 0, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse 100% 80% at 50% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 60%),
        linear-gradient(180deg,
            #0c0c12 0%,
            #0e0e14 15%,
            #101016 30%,
            #121218 50%,
            #101016 70%,
            #0e0e14 85%,
            #0c0c12 100%);
    pointer-events: none;
    z-index: -2;
}

/* Subtle Noise Texture */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.012;
    pointer-events: none;
    z-index: -1;
}

/* Focus Styles */
:focus {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--primary, #ff6b35);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: rgba(255, 107, 53, 0.3);
    color: var(--text-primary, #fff);
}

::-moz-selection {
    background: rgba(255, 107, 53, 0.3);
    color: var(--text-primary, #fff);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary, #0a0a0f);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast, 0.15s ease);
}

a:hover {
    color: var(--primary, #ff6b35);
}

/* Images */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary, #fff);
    margin: 0 0 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin: 0 0 1rem;
    color: var(--text-secondary, rgba(255,255,255,0.7));
}

strong, b {
    font-weight: 600;
}

small {
    font-size: 0.875rem;
}

/* Lists */
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Horizontal Rule */
hr {
    border: 0;
    height: 1px;
    background: var(--glass-border, rgba(255,255,255,0.1));
    margin: 2rem 0;
}

/* Table Reset */
table {
    border-collapse: collapse;
    width: 100%;
}

/* Button Reset */
button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

/* Input Reset */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted, rgba(255,255,255,0.5));
}

/* Fieldset Reset */
fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

/* Remove autofill background */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text-primary, #fff);
    -webkit-box-shadow: 0 0 0px 1000px var(--bg-secondary, #12121a) inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Remove number input arrows */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Remove search input X */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

/* Blockquote */
blockquote {
    margin: 0;
    padding: 1.5rem;
    border-left: 4px solid var(--primary, #ff6b35);
    background: var(--glass-bg, rgba(255,255,255,0.05));
    border-radius: 0 var(--radius-md, 10px) var(--radius-md, 10px) 0;
    font-style: italic;
    color: var(--text-secondary);
}

/* Code */
code, pre {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

code {
    padding: 0.2rem 0.4rem;
    background: var(--glass-bg);
    border-radius: var(--radius-sm, 6px);
    font-size: 0.875em;
    color: var(--primary);
}

pre {
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg, 14px);
    overflow-x: auto;
}

pre code {
    padding: 0;
    background: none;
    border-radius: 0;
}

/* Media Embeds */
iframe, embed, object, video {
    max-width: 100%;
}

/* Address */
address {
    font-style: normal;
}

/* Mark */
mark {
    background: rgba(255, 107, 53, 0.3);
    color: inherit;
    padding: 0.1em 0.2em;
    border-radius: 2px;
}

/* Abbreviation */
abbr[title] {
    text-decoration: underline dotted;
    cursor: help;
}

/* Summary */
summary {
    cursor: pointer;
    display: list-item;
}

/* Details */
details {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1rem;
}

details[open] summary {
    margin-bottom: 1rem;
}

/* Dialog Reset */
dialog {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    color: var(--text-primary);
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

/* App Wrapper */
#app,
.app-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main Content */
main {
    flex: 1;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =====================================================
   RESPONSIVE & DEVICE OPTIMIZATIONS
   ===================================================== */

/* Landscape Mode - Mobile Phones */
@media (orientation: landscape) and (max-height: 500px) {
    :root {
        --section-padding: 2rem 0;
        --header-height: 60px;
    }

    .section {
        padding: 2rem 0;
    }

    .section--lg {
        padding: 3rem 0;
    }

    h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
    h2 { font-size: clamp(1.25rem, 3vw, 2rem); }

    /* Hide decorative elements in landscape */
    .hide-landscape {
        display: none !important;
    }
}

/* Tablet Portrait */
@media (max-width: 992px) and (orientation: portrait) {
    :root {
        --section-padding: 3.5rem 0;
    }

    .section {
        padding: 3.5rem 0;
    }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    :root {
        --container-padding: 2rem;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    :root {
        --container-padding: 1rem;
    }

    body {
        font-size: 0.9375rem;
    }
}

/* Foldable/Small devices */
@media (max-width: 320px) {
    :root {
        --container-padding: 0.75rem;
    }

    body {
        font-size: 0.875rem;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.375rem; }
    h3 { font-size: 1.25rem; }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body::after {
        opacity: 0.008; /* Less noise on retina */
    }
}

/* Safe area for notched devices (iPhone X, etc.) */
@supports (padding: max(0px)) {
    .container {
        padding-left: max(var(--container-padding, 1.5rem), env(safe-area-inset-left));
        padding-right: max(var(--container-padding, 1.5rem), env(safe-area-inset-right));
    }

    .footer {
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }
}

/* Touch devices - larger tap targets */
@media (hover: none) and (pointer: coarse) {
    button,
    a,
    input[type="submit"],
    .btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Exclude small indicator dots from tap target sizing */
    .hero__slider-dot,
    .carousel-indicator,
    [class*="slider-dot"],
    [class*="-indicator"] {
        min-height: unset;
        min-width: unset;
    }

    /* Disable hover effects on touch */
    .product-card:hover {
        transform: none;
    }
}


/* ./components/animations.css */
/* Animacije interfejsa */

/* ==========================================
   KEYFRAME ANIMATIONS
   ========================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.3),
                    0 0 40px rgba(255, 107, 53, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.5),
                    0 0 80px rgba(255, 107, 53, 0.2);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(255, 107, 53, 0.3);
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.1);
    }
    50% {
        border-color: rgba(255, 107, 53, 0.6);
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.2);
    }
}

@keyframes textShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

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

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.6;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes expandCard {
    from {
        max-height: 0;
        opacity: 0;
        padding: 0 16px;
    }
    to {
        max-height: 500px;
        opacity: 1;
        padding: 16px;
    }
}

@keyframes collapseCard {
    from {
        max-height: 500px;
        opacity: 1;
        padding: 16px;
    }
    to {
        max-height: 0;
        opacity: 0;
        padding: 0 16px;
    }
}

/* ==========================================
   ANIMATION CLASSES
   ========================================== */
.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-down {
    animation: fadeInDown 0.6s ease forwards;
}

.animate-scale {
    animation: scaleIn 0.5s ease forwards;
}

.animate-bounce {
    animation: bounceIn 0.6s ease forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.animate-on-scroll {
    opacity: 1;
    transform: none;
}

.animate-on-scroll.is-visible {
    animation: revealUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0s !important;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }


/* ./components/layout.css */
/* =====================================================
   LAYOUT STYLES - Grid, container, section layout
   ===================================================== */

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width, 1400px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 1.5rem);
}

.container--sm {
    max-width: 800px;
}

.container--md {
    max-width: 1000px;
}

.container--lg {
    max-width: 1200px;
}

.container--xl {
    max-width: 1600px;
}

.container--full {
    max-width: 100%;
}

/* Sections */
.section {
    padding: var(--section-padding, 5rem 0);
    position: relative;
}

.section--sm {
    padding: 3rem 0;
}

.section--lg {
    padding: 7rem 0;
}

.section--no-top {
    padding-top: 0;
}

.section--no-bottom {
    padding-bottom: 0;
}

/* Section Header */
.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    background: var(--glass-bg, rgba(255,255,255,0.05));
    border: 1px solid var(--glass-border, rgba(255,255,255,0.1));
    color: var(--primary, #ff6b35);
    font-family: var(--font-body, 'Outfit', sans-serif);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section__title {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--text-primary, #fff);
    margin: 0 0 1rem;
}

.section__title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section__subtitle {
    color: var(--text-muted, rgba(255,255,255,0.5));
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--grid-gap, 1.5rem);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
.grid--6 { grid-template-columns: repeat(6, 1fr); }

.grid--auto-fit {
    grid-template-columns: repeat(auto-fit, minmax(var(--grid-min, 280px), 1fr));
}

.grid--auto-fill {
    grid-template-columns: repeat(auto-fill, minmax(var(--grid-min, 280px), 1fr));
}

/* Responsive Grid */
@media (max-width: 1199px) {
    .grid--4 { grid-template-columns: repeat(3, 1fr); }
    .grid--5 { grid-template-columns: repeat(4, 1fr); }
    .grid--6 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 991px) {
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .grid--5 { grid-template-columns: repeat(3, 1fr); }
    .grid--6 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
    .grid--2 { grid-template-columns: 1fr; }
    .grid--3 { grid-template-columns: 1fr; }
    .grid--4 { grid-template-columns: 1fr; }
    .grid--5 { grid-template-columns: repeat(2, 1fr); }
    .grid--6 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .grid--5 { grid-template-columns: 1fr; }
    .grid--6 { grid-template-columns: 1fr; }
}

/* Flex Utilities */
.flex { display: flex; }
.flex-inline { display: inline-flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-1 { flex: 1; }
.flex-auto { flex: auto; }
.flex-none { flex: none; }

/* Flex Alignment */
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.items-baseline { align-items: baseline; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

.self-start { align-self: flex-start; }
.self-center { align-self: center; }
.self-end { align-self: flex-end; }
.self-stretch { align-self: stretch; }

/* Gap */
.gap-0 { gap: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

/* Main Content Area */
.main {
    flex: 1;
    min-height: 100vh;
    padding-top: var(--header-height, 80px);
}

/* Page Header */
.page-header {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.08) 0%, transparent 100%);
    border-bottom: 1px solid var(--glass-border, rgba(255,255,255,0.1));
    margin-bottom: 2rem;
}

.page-header__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--text-primary, #fff);
    margin: 0 0 0.5rem;
}

.page-header__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.page-header__breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-header__breadcrumb a:hover {
    color: var(--primary, #ff6b35);
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.two-col--reverse {
    direction: rtl;
}

.two-col--reverse > * {
    direction: ltr;
}

@media (max-width: 991px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .two-col--reverse {
        direction: ltr;
    }
}

/* Sidebar Layout */
.with-sidebar {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

.with-sidebar--right {
    grid-template-columns: 1fr 280px;
}

@media (max-width: 991px) {
    .with-sidebar,
    .with-sidebar--right {
        grid-template-columns: 1fr;
    }
}

/* Sticky Sidebar */
.sidebar--sticky {
    position: sticky;
    top: calc(var(--header-height, 80px) + 1rem);
    height: fit-content;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Masonry */
.masonry {
    columns: 3;
    column-gap: 1.5rem;
}

.masonry > * {
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .masonry { columns: 2; }
}

@media (max-width: 575px) {
    .masonry { columns: 1; }
}

/* Content Wrapper */
.content {
    padding: 2rem;
    background: var(--card-bg, rgba(255,255,255,0.02));
    border: 1px solid var(--glass-border, rgba(255,255,255,0.1));
    border-radius: var(--radius-xl, 20px);
}

.content--glass {
    background: var(--glass-bg, rgba(255,255,255,0.05));
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}


/* ./components/utilities.css */
/* =====================================================
   UTILITY CLASSES - Helper klase
   ===================================================== */

/* Display */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.d-grid { display: grid !important; }

/* Responsive Display */
@media (max-width: 575px) {
    .d-sm-none { display: none !important; }
    .d-sm-block { display: block !important; }
    .d-sm-flex { display: flex !important; }
}

@media (max-width: 767px) {
    .d-md-none { display: none !important; }
    .d-md-block { display: block !important; }
    .d-md-flex { display: flex !important; }
}

@media (max-width: 991px) {
    .d-lg-none { display: none !important; }
    .d-lg-block { display: block !important; }
    .d-lg-flex { display: flex !important; }
}

@media (min-width: 992px) {
    .d-desktop-none { display: none !important; }
}

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.static { position: static; }

/* Z-Index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-auto { z-index: auto; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }
.overflow-visible { overflow: visible; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* Text Transform */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

/* Font Weight */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Font Size */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

/* Line Height */
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

/* Text Colors */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--primary); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-info { color: var(--info); }

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 30%, #ffb347 60%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Static Gradient Text (no animation) */
.text-gradient-static {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Background Colors */
.bg-transparent { background-color: transparent; }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-accent { background: var(--gradient-primary); }
.bg-glass {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Width */
.w-full { width: 100%; }
.w-screen { width: 100vw; }
.w-auto { width: auto; }
.w-fit { width: fit-content; }
.w-min { width: min-content; }
.w-max { width: max-content; }

/* Height */
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-auto { height: auto; }
.h-fit { height: fit-content; }

/* Min/Max */
.min-h-screen { min-height: 100vh; }
.max-w-full { max-width: 100%; }
.max-h-full { max-height: 100%; }

/* Margin */
.m-0 { margin: 0; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

/* Padding */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

.px-0 { padding-left: 0; padding-right: 0; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }

/* Border Radius */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: var(--radius-sm, 6px); }
.rounded { border-radius: var(--radius-md, 10px); }
.rounded-lg { border-radius: var(--radius-lg, 14px); }
.rounded-xl { border-radius: var(--radius-xl, 20px); }
.rounded-2xl { border-radius: var(--radius-2xl, 28px); }
.rounded-full { border-radius: 9999px; }

/* Shadows */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-glow { box-shadow: var(--shadow-glow); }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }
.cursor-wait { cursor: wait; }

/* Pointer Events */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* User Select */
.select-none { -webkit-user-select: none; user-select: none; }
.select-text { -webkit-user-select: text; user-select: text; }
.select-all { -webkit-user-select: all; user-select: all; }

/* Visibility */
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Truncate Text */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Aspect Ratio */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-4-3 { aspect-ratio: 4 / 3; }

/* Object Fit */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-fill { object-fit: fill; }
.object-none { object-fit: none; }

/* Transitions */
.transition-none { transition: none; }
.transition-all { transition: all var(--transition-normal, 0.3s ease); }
.transition-transform { transition: transform var(--transition-normal, 0.3s ease); }
.transition-opacity { transition: opacity var(--transition-normal, 0.3s ease); }
.transition-colors { transition: color var(--transition-normal, 0.3s ease), background-color var(--transition-normal, 0.3s ease), border-color var(--transition-normal, 0.3s ease); }

/* Hover Effects */
.hover-lift:hover { transform: translateY(-4px); }
.hover-scale:hover { transform: scale(1.02); }
.hover-glow:hover { box-shadow: var(--shadow-glow); }
.hover-bright:hover { filter: brightness(1.1); }

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background: var(--glass-border);
    margin: 1.5rem 0;
}

.divider--gradient {
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge--primary {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary);
}

.badge--success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.badge--warning {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.badge--danger {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

.badge--info {
    background: rgba(59, 130, 246, 0.15);
    color: var(--info);
}

/* Avatar */
.avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--text-primary);
    font-weight: 600;
    overflow: hidden;
}

.avatar--sm { width: 32px; height: 32px; font-size: 0.75rem; }
.avatar--md { width: 40px; height: 40px; font-size: 0.875rem; }
.avatar--lg { width: 48px; height: 48px; font-size: 1rem; }
.avatar--xl { width: 64px; height: 64px; font-size: 1.25rem; }

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Skeleton Loader */
.skeleton {
    background: linear-gradient(90deg,
        rgba(255,255,255,0.05) 25%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0.05) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Loading Spinner */
.spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--glass-border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.spinner--sm { width: 16px; height: 16px; }
.spinner--lg { width: 32px; height: 32px; }
.spinner--xl { width: 48px; height: 48px; }

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* ===== UI COMPONENTS ===== */

/* ./components/buttons.css */
/**
 * Buttons - Premium Dugmad 2025
 */

/* ==========================================
   BASE BUTTON
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    /* iOS Safari fixes */
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    touch-action: manipulation;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Ripple Effect */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

/* ==========================================
   PRIMARY BUTTON - Always white text
   ========================================== */
.btn--primary {
    background: var(--primary-gradient);
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.45);
    color: #ffffff !important;
}

.btn--primary:active {
    transform: translateY(-1px);
    color: #ffffff !important;
}

/* ==========================================
   SECONDARY BUTTON
   ========================================== */
.btn--secondary {
    background: var(--gradient-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn--secondary:hover {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.15);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================
   OUTLINE BUTTON - Readable on hover
   ========================================== */
.btn--outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* ==========================================
   GHOST BUTTON
   ========================================== */
.btn--ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 12px 20px;
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

/* ==========================================
   DANGER BUTTON
   ========================================== */
.btn--danger {
    background: linear-gradient(135deg, var(--danger), #dc2626);
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.35);
}

.btn--danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.45);
    color: #ffffff !important;
}

/* ==========================================
   SUCCESS BUTTON
   ========================================== */
.btn--success {
    background: linear-gradient(135deg, var(--success), #16a34a);
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.35);
}

.btn--success:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.45);
    color: #ffffff !important;
}

/* ==========================================
   BUTTON SIZES
   ========================================== */
.btn--sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn--xl {
    padding: 22px 48px;
    font-size: 1.25rem;
}

.btn--block {
    width: 100%;
}

/* ==========================================
   ICON BUTTON
   ========================================== */
.btn--icon {
    padding: 12px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.btn--icon.btn--sm {
    width: 40px;
    height: 40px;
    padding: 10px;
}

.btn--icon.btn--lg {
    width: 56px;
    height: 56px;
    padding: 14px;
}

/* ==========================================
   ADDON SELECT BUTTON (za kartice)
   ========================================== */
.btn--addon-select {
    background: var(--gradient-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: space-between;
}

.btn--addon-select:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.btn--addon-select i {
    transition: transform 0.3s ease;
}

.btn--addon-select.is-expanded i {
    transform: rotate(180deg);
}

/* ==========================================
   LOADING STATE
   ========================================== */
.btn--loading {
    pointer-events: none;
    position: relative;
    color: transparent !important;
}

.btn--loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: rotate 0.8s linear infinite;
}

/* ==========================================
   RESPONSIVE BUTTONS
   ========================================== */
@media (max-width: 768px) {
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        gap: 8px;
        min-height: 44px;
    }

    .btn--sm {
        padding: 8px 14px;
        font-size: 0.8rem;
        min-height: 36px;
    }

    .btn--lg {
        padding: 14px 24px;
        font-size: 1rem;
        min-height: 48px;
    }

    .btn--xl {
        padding: 16px 32px;
        font-size: 1.05rem;
    }

    .btn--icon {
        width: 44px;
        height: 44px;
        padding: 10px;
    }

    .btn--icon.btn--sm {
        width: 36px;
        height: 36px;
    }

    .btn--icon.btn--lg {
        width: 50px;
        height: 50px;
    }

    /* Remove transform on hover for mobile */
    .btn--primary:hover,
    .btn--secondary:hover,
    .btn--outline:hover,
    .btn--danger:hover,
    .btn--success:hover {
        transform: none;
    }

    /* Center icons in buttons */
    .btn i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .btn--lg {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}


/* ./components/forms.css */
/**
 * Forms - Forme i input elementi
 */

/* ==========================================
   FORM INPUT BASE
   ========================================== */
.form-input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-size: 16px; /* iOS Safari - prevents zoom on focus */
    color: var(--text-primary);
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    -webkit-border-radius: var(--radius-md);
    border-radius: var(--radius-md);
    outline: none;
    transition: all var(--transition-normal);
    /* iOS Safari fixes */
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Error state */
.form-input--error {
    border-color: var(--danger);
}

.form-input--error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Success state */
.form-input--success {
    border-color: var(--success);
}

/* ==========================================
   TEXTAREA
   ========================================== */
textarea.form-input {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

/* ==========================================
   SELECT
   ========================================== */
select.form-input {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ff6b35' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 16px 16px !important;
    padding-right: 48px !important;
    cursor: pointer;
}

select.form-input:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ff8c00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

/* Remove default dropdown arrow in IE/Edge */
select.form-input::-ms-expand {
    display: none;
}

/* Style select dropdown options - limited browser support */
select.form-input option {
    background: #1a1a1a !important;
    background-image: none !important;
    color: #ffffff;
    padding: 12px;
}

/* Remove arrow from options in Firefox */
select.form-input option:checked,
select.form-input option:hover {
    background-image: none !important;
}

/* ==========================================
   CASH AMOUNT SECTION
   ========================================== */
.cash-only-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 0.95rem;
}

.cash-only-notice i {
    font-size: 1.2rem;
}

.cash-amount-section {
    margin-top: 20px;
}

.cash-amount-section .form-label {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cash-amount-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.cash-amount-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cash-amount-option:hover {
    border-color: var(--primary);
}

.cash-amount-option:has(input:checked) {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary);
}

.cash-amount-option input {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}

.cash-amount-option span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cash-amount-option:has(input:checked) span {
    color: var(--text-primary);
}

.custom-amount-input {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 250px;
}

.custom-amount-input .form-input {
    flex: 1;
}

.input-suffix {
    color: var(--text-muted);
    font-weight: 600;
}

/* ==========================================
   INPUT WITH ICON
   ========================================== */
.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper .form-input {
    padding-left: 48px;
}

.input-icon-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: color 0.3s ease;
    pointer-events: none;
}

.input-icon-wrapper:has(.form-input:focus) i {
    color: var(--primary);
}

/* ==========================================
   FORM GROUP
   ========================================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-label--required::after {
    content: ' *';
    color: var(--danger);
}

.form-hint {
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.form-error {
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--danger);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-error::before {
    content: '!';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: var(--danger);
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
}

/* ==========================================
   CHECKBOX & RADIO
   ========================================== */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.form-check input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.form-check__box {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.form-check input:checked + .form-check__box {
    background: var(--primary-gradient);
    border-color: transparent;
}

.form-check input:checked + .form-check__box::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.form-check input:focus + .form-check__box {
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

/* Radio */
.form-check--radio .form-check__box {
    border-radius: 50%;
}

.form-check--radio input:checked + .form-check__box::after {
    content: '';
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

.form-check__label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.form-check__label a {
    color: var(--primary);
}

/* ==========================================
   SWITCH TOGGLE
   ========================================== */
.form-switch {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.form-switch input {
    position: absolute;
    opacity: 0;
}

.form-switch__track {
    width: 50px;
    height: 28px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    position: relative;
    transition: all 0.3s ease;
}

.form-switch__track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.form-switch input:checked + .form-switch__track {
    background: var(--primary);
    border-color: var(--primary);
}

.form-switch input:checked + .form-switch__track::after {
    left: calc(100% - 23px);
    background: white;
}

.form-switch__label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ==========================================
   SEARCH INPUT
   ========================================== */
.search-input {
    position: relative;
}

.search-input .form-input {
    padding-left: 48px;
    padding-right: 48px;
    border-radius: var(--radius-full);
}

.search-input__icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.search-input__clear {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.search-input:has(.form-input:not(:placeholder-shown)) .search-input__clear {
    opacity: 1;
}

.search-input__clear:hover {
    background: var(--danger);
    color: white;
}

/* ==========================================
   RESPONSIVE FORMS
   ========================================== */
@media (max-width: 768px) {
    .form-input {
        padding: 12px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 10px;
    }

    textarea.form-input {
        min-height: 100px;
    }

    select.form-input {
        padding-right: 42px !important;
        background-position: right 12px center !important;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .input-icon-wrapper .form-input {
        padding-left: 42px;
    }

    .input-icon-wrapper i {
        left: 14px;
    }

    /* Cash amount options */
    .cash-amount-options {
        gap: 10px;
    }

    .cash-amount-option {
        padding: 10px 16px;
        flex: 1;
        min-width: calc(50% - 10px);
        justify-content: center;
    }

    .custom-amount-input {
        max-width: 100%;
    }

    /* Checkbox and radio */
    .checkbox-wrapper,
    .radio-wrapper {
        gap: 10px;
    }

    .checkbox-wrapper input,
    .radio-wrapper input {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .form-input {
        padding: 10px 12px;
    }

    .cash-amount-option {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}


/* ./components/modals.css */
/**
 * Modals - Modalni prozori
 */

/* ==========================================
   MODAL BACKDROP
   ========================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   MODAL CONTENT
   ========================================== */
.modal__content {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.modal.is-open .modal__content {
    transform: scale(1) translateY(0);
}

.modal__content--lg {
    max-width: 700px;
}

.modal__content--xl {
    max-width: 900px;
}

.modal__content--fullscreen {
    max-width: none;
    max-height: none;
    height: 100%;
    border-radius: 0;
}

/* ==========================================
   MODAL HEADER
   ========================================== */
.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
}

.modal__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal__title i {
    color: var(--primary);
}

.modal__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal__close:hover {
    background: var(--danger);
    border-color: var(--danger);
    color: white;
    transform: rotate(90deg);
}

/* ==========================================
   MODAL BODY
   ========================================== */
.modal__body {
    padding: 24px;
    max-height: calc(90vh - 150px);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.modal__body::-webkit-scrollbar {
    width: 6px;
}

.modal__body::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.modal__body::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.modal__body::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================
   MODAL FOOTER
   ========================================== */
.modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    background: rgba(10, 10, 15, 0.5);
}

/* ==========================================
   PRODUCT MODAL (za izbor priloga)
   ========================================== */
.product-modal__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

.product-modal__info {
    margin-bottom: 24px;
}

.product-modal__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-modal__desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.product-modal__price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-modal__addons {
    margin-bottom: 24px;
}

.product-modal__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.product-modal__total-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.product-modal__total-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   CONFIRMATION MODAL
   ========================================== */
.confirm-modal__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.confirm-modal__icon--warning {
    background: var(--warning-bg);
    color: var(--warning);
}

.confirm-modal__icon--danger {
    background: var(--danger-bg);
    color: var(--danger);
}

.confirm-modal__icon--success {
    background: var(--success-bg);
    color: var(--success);
}

.confirm-modal__text {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   RESPONSIVE MODALS
   ========================================== */
@media (max-width: 768px) {
    .modal {
        padding: 12px;
        align-items: flex-end;
    }

    .modal__content {
        max-width: 100%;
        max-height: 90vh;
        border-radius: 20px 20px 0 0;
        margin-bottom: 0;
    }

    .modal__content--lg,
    .modal__content--xl {
        max-width: 100%;
    }

    .modal__header {
        padding: 16px 18px;
    }

    .modal__title {
        font-size: 1.1rem;
        gap: 10px;
    }

    .modal__title i {
        font-size: 1rem;
    }

    .modal__close {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .modal__body {
        padding: 18px;
        max-height: calc(90vh - 130px);
    }

    .modal__footer {
        padding: 14px 18px;
        gap: 10px;
    }

    .modal__footer .btn {
        flex: 1;
        min-width: 0;
    }

    /* Product modal */
    .product-modal__image {
        height: 160px;
        margin-bottom: 16px;
    }

    .product-modal__name {
        font-size: 1.25rem;
    }

    .product-modal__desc {
        font-size: 0.9rem;
    }

    .product-modal__price {
        font-size: 1.3rem;
    }

    .product-modal__total {
        padding: 14px 16px;
    }

    .product-modal__total-price {
        font-size: 1.3rem;
    }

    /* Confirm modal */
    .confirm-modal__icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .confirm-modal__text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .modal__header {
        padding: 14px 16px;
    }

    .modal__body {
        padding: 16px;
    }

    .modal__footer {
        padding: 12px 16px;
        flex-direction: column;
    }

    .modal__footer .btn {
        width: 100%;
    }
}


/* ./components/toasts.css */
/**
 * Toast Notifications - Obaveštenja
 */

/* ==========================================
   TOAST CONTAINER
   ========================================== */
.toast-container {
    position: fixed;
    top: 100px;
    top: calc(100px + env(safe-area-inset-top, 0px));
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    pointer-events: none;
}

@media (max-width: 480px) {
    .toast-container {
        left: 16px;
        right: 16px;
        top: 90px;
        top: calc(90px + env(safe-area-inset-top, 0px));
        max-width: none;
    }
}

/* ==========================================
   TOAST
   ========================================== */
.toast {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
    animation: slideInFromRight 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.3s ease;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast i:first-child {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.toast span {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.toast__close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    margin: -4px;
    transition: color 0.3s ease;
}

.toast__close:hover {
    color: var(--text-primary);
}

/* ==========================================
   TOAST TYPES
   ========================================== */
.toast--success {
    border-left: 4px solid var(--success);
}

.toast--success i:first-child {
    color: var(--success);
}

.toast--error {
    border-left: 4px solid var(--danger);
}

.toast--error i:first-child {
    color: var(--danger);
}

.toast--warning {
    border-left: 4px solid var(--warning);
}

.toast--warning i:first-child {
    color: var(--warning);
}

.toast--info {
    border-left: 4px solid var(--info);
}

.toast--info i:first-child {
    color: var(--info);
}

/* ==========================================
   TOAST WITH ACTION
   ========================================== */
.toast--with-action {
    flex-direction: column;
}

.toast__actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.toast__action {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.toast__action--primary {
    background: var(--primary);
    color: white;
    border: none;
}

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

.toast__action--secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.toast__action--secondary:hover {
    background: var(--bg-secondary);
}


/* ./cookie-banner.css */
.cb-wrap{position:fixed;left:1rem;right:1rem;bottom:1rem;max-width:520px;margin-left:auto;margin-right:auto;background:#0f1626;color:#e6eaf2;padding:1.25rem 1.4rem;border:1px solid #c9a84c40;border-radius:14px;box-shadow:0 22px 60px rgba(0,0,0,.55);z-index:9999;font-family:'Outfit',system-ui,sans-serif;font-size:.95rem;line-height:1.5}
.cb-wrap[hidden]{display:none}
.cb-wrap h3{margin:0 0 .35rem;font-size:1.05rem;color:#c9a84c;letter-spacing:.05em;text-transform:uppercase}
.cb-wrap p{margin:0 0 1rem;color:#aab2c2}
.cb-wrap a{color:#c9a84c;text-decoration:underline;text-underline-offset:2px}
.cb-actions{display:flex;flex-direction:column;gap:.5rem}
@media(min-width:480px){.cb-actions{flex-direction:row}}
.cb-actions button{flex:1;padding:.6rem 1rem;border-radius:8px;font-size:.9rem;font-weight:600;cursor:pointer;font-family:inherit;letter-spacing:.04em;text-transform:uppercase;transition:transform .15s,opacity .15s}
.cb-actions button:hover{transform:translateY(-1px)}
.cb-essential{background:transparent;color:#e6eaf2;border:1px solid #ffffff30}
.cb-all{background:#c9a84c;color:#0f1626;border:1px solid #c9a84c}


/* ./pwa-install-banner.css */
        .pwa-install-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, var(--bg-card) 0%, #1a1a1a 100%);
            border-top: 2px solid var(--primary);
            padding: 16px 20px;
            display: none;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            z-index: 9999;
            box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
            animation: slideUpBanner 0.4s ease-out;
        }

        @keyframes slideUpBanner {
            from { transform: translateY(100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .pwa-install-banner.show {
            display: flex;
        }

        .pwa-install-banner__content {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .pwa-install-banner__icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
        }

        .pwa-install-banner__icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .pwa-install-banner__text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .pwa-install-banner__text strong {
            font-size: 1rem;
            color: var(--text-primary);
        }

        .pwa-install-banner__text span {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .pwa-install-banner__actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pwa-install-banner__btn {
            padding: 12px 24px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .pwa-install-banner__btn--install {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
        }

        .pwa-install-banner__btn--install:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
        }

        .pwa-install-banner__btn--close {
            background: transparent;
            color: var(--text-muted);
            padding: 12px;
        }

        .pwa-install-banner__btn--close:hover {
            color: var(--text-primary);
            background: rgba(255,255,255,0.05);
        }

        @media (max-width: 480px) {
            .pwa-install-banner {
                flex-direction: column;
                text-align: center;
            }

            .pwa-install-banner__content {
                flex-direction: column;
            }

            .pwa-install-banner__actions {
                width: 100%;
                justify-content: center;
            }

            .pwa-install-banner__btn--install {
                flex: 1;
            }
        }


/* ===== LAYOUT COMPONENTS ===== */

/* ./components/header.css */
/* =====================================================
   HEADER STYLES - Navigacija i header elementi
   ===================================================== */

/* Main Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header, 1000);
    padding: 1rem 0;
    padding-bottom: 1.5rem;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: all var(--transition-normal, 0.3s ease);
    overflow: visible;
}

.header--scrolled {
    padding: 0.75rem 0;
    background: rgba(10, 10, 15, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Header Inner - Main Layout */
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo - Burger Icon Style */
.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.header__logo:hover .header__logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(255, 107, 53, 0.5));
}

.header__logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.header__logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary, #ff6b35), var(--primary-dark, #e55a2b));
    border-radius: 14px;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header__logo:hover .header__logo-icon {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.header__logo-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.header__logo-text {
    font-family: var(--font-display, 'Clash Display', sans-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-primary, #fff);
    letter-spacing: -0.02em;
}

.header__logo-text strong {
    font-weight: 700;
    background: var(--gradient-primary, linear-gradient(135deg, #ff6b35, #ff8f5a));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .header__logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .header__logo-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .header__logo-text {
        display: none;
    }
}

/* Navigation */
.header__nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header__nav a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-family: var(--font-body, 'Outfit', sans-serif);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header__nav a:hover,
.header__nav a.active {
    color: #fff;
    background: rgba(255, 107, 53, 0.15);
}

/* App Link in Navigation - Special Styling */
.header__nav-app {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 107, 0, 0.08)) !important;
    border: 1px solid rgba(255, 107, 0, 0.25);
    color: #ff6b00 !important;
    font-weight: 600 !important;
}

.header__nav-app:hover {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.3), rgba(255, 107, 0, 0.15)) !important;
    border-color: rgba(255, 107, 0, 0.4);
    color: #ff8c00 !important;
}

.header__nav-app i {
    font-size: 0.9rem;
}

/* Header Actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    overflow: visible;
    padding-bottom: 20px;
    margin-bottom: -20px;
}

/* Cart Button */
.header__cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--glass-bg, rgba(255,255,255,0.05));
    border: 1px solid var(--glass-border, rgba(255,255,255,0.1));
    color: var(--text-primary, #fff);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header__cart:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.header__cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    background: var(--gradient-primary);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* Cart Price Badge */
.header__cart-price {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 4px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    animation: pricePopIn 0.3s ease;
    z-index: 10;
}

@keyframes pricePopIn {
    from {
        transform: translateX(-50%) scale(0.5);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
}

/* Ensure cart button doesn't clip price badge */
.header__cart {
    overflow: visible;
}

.header__actions {
    overflow: visible;
}

/* Mobile Menu Toggle - Hamburger Icon */
.header__menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    /* iOS Safari touch fix */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    position: relative;
    z-index: 1001;
}

.header__menu-toggle:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.header__menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary, #fff);
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 2px 0;
}

.header__menu-toggle.is-active {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary);
}

.header__menu-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.header__menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header__menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .header__menu-toggle {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 100%;
        height: 100vh;
        height: -webkit-fill-available;
        height: calc(var(--vh, 1vh) * 100);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.5rem;
        padding: 100px 2rem 2rem;
        padding-bottom: env(safe-area-inset-bottom, 2rem);
        background: rgba(15, 15, 20, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255,255,255,0.1);
        -webkit-transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        /* iOS Safari fix */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .header__nav.is-open {
        right: 0;
    }

    .header__nav a {
        padding: 1rem 1.25rem;
        font-size: 1.1rem;
        border-radius: 12px;
        /* iOS touch fix */
        -webkit-tap-highlight-color: transparent;
    }
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: calc(var(--z-header, 1000) - 1);
}

.nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* User Menu Dropdown */
.header__user-menu {
    position: relative;
}

.header__user-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.header__user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.header__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    padding: 0.5rem;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.header__user-menu:hover .header__dropdown,
.header__dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.header__dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.header__dropdown-item--danger {
    color: var(--danger);
}

.header__dropdown-item--danger:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}
/* =====================================================
   LANDSCAPE & ADDITIONAL RESPONSIVE STYLES
   ===================================================== */

/* Landscape mode - reduce header height */
@media (orientation: landscape) and (max-height: 500px) {
    .header {
        padding: 0.5rem 0;
    }

    .header__logo-img {
        width: 36px;
        height: 36px;
    }

    .header__logo-text {
        font-size: 1rem;
    }

    .header__cart-btn {
        padding: 0.5rem;
    }

    .header__nav.is-open {
        padding-top: 70px;
    }
}

/* Small screens - compact header */
@media (max-width: 375px) {
    .header__container {
        padding: 0 0.75rem;
    }

    .header__logo-text {
        font-size: 1rem;
    }

    .header__logo-img {
        width: 38px;
        height: 38px;
    }

    .header__cart-count {
        font-size: 0.65rem;
        min-width: 16px;
        height: 16px;
    }
}


/* ./components/footer.css */
/* =====================================================
   FOOTER STYLES - Footer komponenta
   ===================================================== */

.footer {
    position: relative;
    background: linear-gradient(180deg, var(--bg-secondary, #0a0a0f) 0%, #050508 100%);
    padding: 4rem 0 0;
    margin-top: auto;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
}

.footer__container {
    max-width: var(--container-width, 1400px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 1.5rem);
}

/* Footer Grid */
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
}

@media (max-width: 991px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer__brand {
        align-items: center;
    }

    .footer__logo {
        justify-content: center;
    }

    .footer__desc {
        max-width: 100%;
        text-align: center;
    }

    .footer__description {
        max-width: 100%;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__column {
        align-items: center;
        text-align: center;
    }

    .footer__title {
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer__list {
        align-items: center;
    }

    .footer__link {
        justify-content: center;
    }

    .footer__link:hover {
        transform: none;
    }

    /* Links centriranje */
    .footer__links {
        align-items: center;
    }

    .footer__links a {
        justify-content: center;
        text-align: center;
    }

    .footer__links a::before {
        display: none;
    }

    .footer__links a:hover {
        transform: none;
    }

    /* Kontakt info centriranje */
    .footer__links span,
    .footer__info-item {
        justify-content: center !important;
        text-align: center;
    }
}

/* Footer Brand */
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary, #fff);
}

.footer__logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer__logo:hover .footer__logo-img {
    transform: scale(1.05);
}

.footer__logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary, #ff6b35), var(--primary-dark, #e55a2b));
    border-radius: 12px;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.footer__logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__description {
    color: var(--text-muted, rgba(255,255,255,0.5));
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
}

/* Footer Social */
.footer__social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--glass-bg, rgba(255,255,255,0.05));
    border: 1px solid var(--glass-border, rgba(255,255,255,0.1));
    color: var(--text-secondary, rgba(255,255,255,0.7));
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-primary, #fff);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Social Link Brand Colors */
.footer__social-link--facebook:hover {
    background: linear-gradient(135deg, #1877F2, #0d65d9);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.footer__social-link--instagram:hover {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.4);
}

.footer__social-link--tiktok:hover {
    background: linear-gradient(135deg, #000000, #25F4EE, #FE2C55);
    box-shadow: 0 8px 20px rgba(37, 244, 238, 0.3);
}

/* Footer Column */
.footer__column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer__title {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary, #fff);
    margin: 0;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted, rgba(255,255,255,0.5));
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer__link:hover {
    color: var(--primary, #ff6b35);
    transform: translateX(4px);
}

.footer__link i {
    font-size: 0.85rem;
    width: 16px;
}

/* Footer Links Container - za direktne a elemente */
.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted, rgba(255,255,255,0.55));
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.footer__links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: var(--primary, #ff6b35);
    font-weight: bold;
}

.footer__links a:hover {
    color: var(--primary, #ff6b35);
    transform: translateX(8px);
}

.footer__links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer__links a i {
    color: var(--primary, #ff6b35);
    opacity: 0.7;
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer__links a:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Footer Info Items (za kontakt info) */
.footer__info-item {
    color: var(--text-secondary, rgba(255,255,255,0.7));
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    font-size: 0.95rem;
}

.footer__info-item i {
    color: var(--primary, #ff6b35);
}

.footer__info-item--muted {
    color: var(--text-muted, rgba(255,255,255,0.5));
    font-size: 0.9rem;
    margin-top: 5px;
}

.footer__links small {
    opacity: 0.7;
}

/* Footer Contact */
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer__contact-item i {
    color: var(--primary, #ff6b35);
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

/* Footer Bottom */
.footer__bottom {
    border-top: 1px solid var(--glass-border, rgba(255,255,255,0.1));
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright {
    color: var(--text-muted, rgba(255,255,255,0.5));
    font-size: 0.9rem;
    margin: 0;
}

.footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer__bottom-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer__bottom-link:hover {
    color: var(--primary, #ff6b35);
}

/* App Download Badges */
.footer__apps {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer__app-badge {
    height: 40px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.footer__app-badge:hover {
    transform: scale(1.05);
}

/* Newsletter */
.footer__newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.footer__newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.footer__newsletter-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.footer__newsletter-btn {
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    background: var(--gradient-primary);
    border: none;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer__newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* =====================================================
   PRIJATELJI SAJTA - Site Friends Section
   ===================================================== */

@media (max-width: 768px) {

}

@media (max-width: 480px) {











}

/* =====================================================
   SITEMAP SECTION
   ===================================================== */

.footer__sitemap {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color, rgba(255,255,255,0.1));
}

.footer__sitemap .footer__title {
    text-align: center;
    margin-bottom: 30px;
}

.footer__sitemap .footer__title i {
    margin-right: 8px;
    color: var(--primary);
}

.footer__sitemap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer__sitemap-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__sitemap-heading {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary, rgba(255,255,255,0.7));
    margin: 0 0 8px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color, rgba(255,255,255,0.1));
}

.footer__sitemap-column a {
    color: var(--text-muted, rgba(255,255,255,0.5));
    text-decoration: none;
    font-size: 0.85rem;
    padding: 4px 0;
    transition: all 0.3s ease;
}

.footer__sitemap-column a:hover {
    color: var(--primary, #ff6b35);
    padding-left: 8px;
}

@media (max-width: 992px) {
    .footer__sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer__sitemap-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer__sitemap-column {
        text-align: center;
    }

    .footer__sitemap-column a:hover {
        padding-left: 0;
    }
}

/* =====================================================
   LANDSCAPE & ADDITIONAL RESPONSIVE STYLES
   ===================================================== */

/* Landscape mode */
@media (orientation: landscape) and (max-height: 500px) {
    .footer {
        padding: 2rem 0 0;
    }

    .footer__grid {
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .footer__title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer__links a {
        padding: 0.35rem 0;
        font-size: 0.85rem;
    }


}

/* Small mobile */
@media (max-width: 375px) {
    .footer {
        padding: 2.5rem 0 0;
    }

    .footer__title {
        font-size: 1rem;
    }

    .footer__links a {
        font-size: 0.9rem;
    }

    .footer__social-link {
        width: 40px;
        height: 40px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer__bottom p {
        font-size: 0.85rem;
    }
}

/* Decorative Elements */
.footer__decoration {
    position: absolute;
    pointer-events: none;
    opacity: 0.03;
}

.footer__decoration--1 {
    top: 20%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    filter: blur(100px);
    border-radius: 50%;
}

.footer__decoration--2 {
    bottom: -100px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    filter: blur(80px);
    border-radius: 50%;
}


/* ===== PAGE SECTIONS ===== */

/* ./components/sections.css */
/* =====================================================
   SECTION COMPONENTS - Zajedničke sekcije
   ===================================================== */

/* Section Base */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section--dark {
    background: linear-gradient(180deg,
        rgba(8, 8, 14, 1) 0%,
        rgba(12, 12, 20, 1) 50%,
        rgba(8, 8, 14, 1) 100%
    );
}

.section--gradient {
    background: linear-gradient(180deg,
        rgba(255, 107, 53, 0.03) 0%,
        transparent 30%,
        transparent 70%,
        rgba(255, 152, 0, 0.02) 100%
    );
}

/* Section Header */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
    gap: 12px;
}

.section-header.text-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-header.text-left {
    align-items: flex-start;
    text-align: left;
}

/* Section header sa dugmetom pored naslova */
.section-header.with-action {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    gap: 24px;
}

.section-header.with-action > div {
    text-align: left;
}

.section-header.with-action .section-title {
    justify-content: flex-start;
    text-align: left;
}

.section-header.with-action .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 768px) {
    .section-header.with-action {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .section-header.with-action > div {
        text-align: center;
    }

    .section-header.with-action .section-title {
        justify-content: center;
        text-align: center;
    }

    .section-header.with-action .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(255,140,0,0.08));
    color: var(--primary);
    padding: 12px 24px;
    border-radius: var(--radius-full, 9999px);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,107,53,0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}

.section-badge i {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

/* Section Title */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 16px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 0;
}

/* Section Subtitle */
.section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.15rem;
    margin-top: 16px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.7;
}

/* =====================================================
   SECTION RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 0 8px;
    }

    .section-badge {
        margin: 0 auto 14px;
        padding: 8px 16px;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .section-badge i {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
        gap: 10px;
        flex-wrap: wrap;
        padding: 0 8px;
    }

    .section-title i {
        font-size: 1.25rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-top: 12px;
        padding: 0 8px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-badge {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

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

    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* =====================================================
   APP PROMO SECTION
   ===================================================== */
.app-promo-section {
    background: linear-gradient(180deg,
        rgba(255, 107, 53, 0.05) 0%,
        transparent 100%
    );
}

.app-promo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-promo__content {
    text-align: left;
}

.app-promo__content .section-badge {
    margin: 0 0 20px 0;
}

.app-promo__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.app-promo__text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.app-promo__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.app-promo__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.app-promo__features i {
    color: var(--primary);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .app-promo__features {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: left;
        max-width: 250px;
        margin: 0 auto 24px;
    }

    .app-promo__features li {
        font-size: 0.9rem;
        justify-content: flex-start;
    }
}

.app-promo__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-promo__phone {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a2e 0%, #0a0a0f 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 107, 53, 0.1);
    position: relative;
}

.app-promo__phone::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #0a0a0f;
    border-radius: 12px;
}

.app-promo__phone-screen {
    width: 100%;
    height: 100%;
    background: #0c0c14;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-promo__phone-header {
    padding: 50px 16px 16px;
    background: #0c0c14;
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-promo__phone-logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.app-promo__phone-logo {
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
}

.app-promo__phone-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #0c0c14;
    flex: 1;
}

.app-promo__phone-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #16161e;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.app-promo__card-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.app-promo__card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.app-promo__card-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.app-promo__card-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}

.app-promo__phone-nav {
    display: flex;
    justify-content: space-around;
    padding: 12px 16px;
    background: #16161e;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.app-promo__nav-item {
    font-size: 1.1rem;
    opacity: 0.5;
}

.app-promo__nav-item.active {
    opacity: 1;
}

@media (max-width: 992px) {
    .app-promo {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .app-promo__content {
        text-align: center;
    }

    .app-promo__content .section-badge {
        margin: 0 auto 20px;
    }

    .app-promo__features {
        justify-content: center;
    }

    .app-promo__visual {
        order: -1;
    }

    .app-promo__phone {
        width: 240px;
        height: 480px;
    }

    .app-promo__card-img {
        width: 50px;
        height: 50px;
    }

    .app-promo__card-name {
        font-size: 0.75rem;
    }

    .app-promo__card-price {
        font-size: 0.7rem;
    }
}

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

    .app-promo__phone {
        width: 200px;
        height: 400px;
        border-radius: 30px;
    }

    .app-promo__phone::before {
        width: 60px;
        height: 18px;
        top: 14px;
    }

    .app-promo__phone-screen {
        border-radius: 24px;
    }

    .app-promo__phone-header {
        padding: 40px 12px 12px;
    }

    .app-promo__phone-logo-img {
        width: 22px;
        height: 22px;
    }

    .app-promo__phone-logo {
        font-size: 0.8rem;
    }

    .app-promo__phone-content {
        padding: 10px;
        gap: 8px;
    }

    .app-promo__phone-card {
        padding: 8px;
        gap: 8px;
    }

    .app-promo__card-img {
        width: 40px;
        height: 40px;
    }

    .app-promo__card-name {
        font-size: 0.65rem;
    }

    .app-promo__card-price {
        font-size: 0.6rem;
    }

    .app-promo__phone-nav {
        padding: 10px 12px;
    }

    .app-promo__nav-item {
        font-size: 0.9rem;
}
}


/* ./components/hero.css */
/* =====================================================
   HERO SECTION - Full width image with left overlay
   ===================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    min-height: calc(var(--vh, 1vh) * 100);
    padding-top: 80px; /* Space for fixed header */
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Dark background as fallback */
    background: #0a0a0a;
}

/* =====================================================
   BACKGROUND IMAGE SLIDER - Full width
   ===================================================== */
.hero__bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    z-index: 1;
}

.hero__bg-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Prepare next slide behind current for seamless transition */
.hero__bg-slide.next {
    visibility: visible;
    z-index: 1;
}

.hero__bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right; /* Focus on right side of images */
}

/* =====================================================
   GRADIENT OVERLAY - Dark left fading to warm colors into image
   ===================================================== */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Black on left, warm tones appearing as it fades into image */
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 1) 0%,
        rgba(10, 10, 10, 1) 20%,
        rgba(10, 10, 10, 0.98) 25%,
        rgba(15, 10, 8, 0.95) 30%,
        rgba(25, 15, 10, 0.9) 33%,
        rgba(40, 22, 12, 0.8) 36%,
        rgba(60, 30, 15, 0.65) 40%,
        rgba(80, 40, 18, 0.5) 44%,
        rgba(100, 50, 20, 0.35) 48%,
        rgba(120, 60, 25, 0.2) 52%,
        rgba(140, 70, 30, 0.1) 56%,
        rgba(160, 80, 35, 0.05) 60%,
        transparent 65%
    );
    pointer-events: none;
}

/* Bottom gradient for smooth transition to next section */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    z-index: 3;
    pointer-events: none;
}

/* Subtle warm glow accent on left */
.hero::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 120, 50, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 2;
}

/* =====================================================
   HERO CONTAINER & CONTENT
   ===================================================== */
.hero__container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero__content {
    max-width: 600px;
    animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hero Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255,107,53,0.25), rgba(255,140,0,0.15));
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,107,53,0.4);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 24px rgba(255, 107, 53, 0.2);
}

.hero__badge i {
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Title */
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__title .text-gradient {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 30%, #ffb347 60%, #ffd700 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerGradient 4s ease infinite;
}

@keyframes shimmerGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hero Text */
.hero__text {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Buttons */
.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 50px;
}

.hero__buttons .btn {
    padding: 18px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 14px;
}

.hero__buttons .btn--primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    color: #ffffff;
}

.hero__buttons .btn--primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.5);
    color: #ffffff;
}

/* Hero Stats */
.hero__stats {
    display: flex;
    gap: 50px;
}

.hero__stat {
    text-align: left;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.hero__stat-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* =====================================================
   SLIDER DOTS - Positioned on right side
   ===================================================== */
.hero__slider-dots {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 4;
}

.hero__slider-dot {
    /* Fixed size - using all methods to ensure iOS Safari compliance */
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    max-width: 10px;
    max-height: 10px;

    /* Appearance */
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;

    /* Reset all browser defaults */
    border: none;
    padding: 0;
    margin: 0;
    outline: none;

    /* iOS Safari fixes */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;

    /* Box model */
    box-sizing: border-box;
    display: block;

    /* Prevent flex from stretching */
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 10px;

    /* Text reset (in case any inherited) */
    line-height: 0;
    font-size: 0;
    text-indent: -9999px;
    overflow: hidden;

    /* Force GPU layer for consistent rendering */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform, background;

    /* Prevent text selection */
    -webkit-user-select: none;
    user-select: none;
}

.hero__slider-dot.active {
    background: var(--primary) !important;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    -webkit-transform: translateZ(0) scale(1.2);
    transform: translateZ(0) scale(1.2);
}

.hero__slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* =====================================================
   SCROLL INDICATOR
   ===================================================== */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 4;
}

.hero__scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    position: relative;
}

.hero__scroll-mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 10px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 4px;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* =====================================================
   HERO RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
    .hero__content {
        max-width: 500px;
    }

    .hero__bg-slider {
        width: 60%;
    }

    .hero__overlay {
        background: linear-gradient(
            to right,
            #0c0c14 0%,
            #0c0c14 30%,
            rgba(12, 12, 20, 0.95) 35%,
            rgba(14, 14, 22, 0.7) 45%,
            rgba(14, 14, 22, 0.4) 55%,
            rgba(12, 12, 20, 0.15) 70%,
            transparent 85%
        );
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: 100vh;
    }

    .hero__bg-slider {
        width: 55%;
    }

    .hero__overlay {
        background: linear-gradient(
            to right,
            #0c0c14 0%,
            #0c0c14 35%,
            rgba(12, 12, 20, 0.9) 42%,
            rgba(14, 14, 22, 0.6) 52%,
            rgba(14, 14, 22, 0.3) 65%,
            transparent 85%
        );
    }

    .hero__content {
        max-width: 50%;
    }

    .hero__scroll {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile */
        align-items: flex-start;
        padding-top: 120px;
    }

    /* Full width image on mobile */
    .hero__bg-slider {
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .hero__bg-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        /* Ensure image always covers viewport */
        min-height: 100vh;
        min-height: 100dvh;
    }

    /* Vertical gradient on mobile - uses site colors */
    .hero__overlay {
        background: linear-gradient(
            to bottom,
            rgba(12, 12, 20, 0.92) 0%,
            rgba(12, 12, 20, 0.8) 30%,
            rgba(14, 14, 22, 0.55) 60%,
            rgba(14, 14, 22, 0.3) 100%
        );
    }

    .hero__content {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero__title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero__text {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }

    .hero__buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .hero__stat-number {
        font-size: 2rem;
    }

    .hero__slider-dots {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 20px;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 6px;
    }

    .hero__slider-dot {
        width: 6px;
        height: 6px;
        min-width: 6px;
        min-height: 6px;
        max-width: 6px;
        max-height: 6px;
        flex: 0 0 6px;
    }

    .hero__slider-dot.active {
        transform: scale(1.2);
        width: 6px;
        height: 6px;
        min-width: 6px;
        min-height: 6px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
    }

    .hero__slider-dots {
        bottom: 14px;
        gap: 5px;
    }

    .hero__slider-dot {
        width: 6px;
        height: 6px;
        min-width: 6px;
        min-height: 6px;
        max-width: 6px;
        max-height: 6px;
        flex: 0 0 6px;
    }

    .hero__slider-dot.active {
        width: 6px;
        height: 6px;
        min-width: 6px;
        min-height: 6px;
    }

    .hero__badge {
        padding: 10px 20px;
        font-size: 0.75rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__text {
        font-size: 1rem;
    }

    .hero__stat {
        text-align: center;
    }
}
/* Landscape mode */
@media (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: 0;
        padding: 80px 0 40px;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__text {
        font-size: 0.95rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero__stats {
        margin-top: 1rem;
    }

    .hero__stat-number {
        font-size: 1.5rem;
    }

    .hero__actions {
        margin-top: 1rem;
    }

    .hero__slider-dots {
        display: none;
    }
}

/* Small mobile */
@media (max-width: 375px) {
    .hero__title {
        font-size: 1.75rem;
    }

    .hero__text {
        font-size: 0.95rem;
    }

    .hero__badge {
        font-size: 0.7rem;
        padding: 8px 16px;
    }
}

/* =====================================================
   iOS SAFARI SPECIFIC FIXES
   ===================================================== */
@supports (-webkit-touch-callout: none) {
    /* iOS Safari only - comprehensive dot fixes */
    .hero__slider-dots {
        gap: 8px !important;
    }

    .hero__slider-dot {
        /* Force exact dimensions */
        width: 10px !important;
        height: 10px !important;
        min-width: 10px !important;
        min-height: 10px !important;
        max-width: 10px !important;
        max-height: 10px !important;

        /* Reset Safari button styling */
        -webkit-appearance: none !important;
        appearance: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;

        /* Force circular shape */
        border-radius: 50% !important;

        /* Ensure it doesn't grow */
        flex: 0 0 10px !important;

        /* No text content effects */
        font-size: 0 !important;
        line-height: 0 !important;
        text-indent: -9999px !important;

        /* Prevent touch effects */
        -webkit-touch-callout: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }

    /* Mobile sizes for iOS */
    @media (max-width: 768px) {
        .hero__slider-dot {
            width: 6px !important;
            height: 6px !important;
            min-width: 6px !important;
            min-height: 6px !important;
            max-width: 6px !important;
            max-height: 6px !important;
            flex: 0 0 6px !important;
        }
    }
}

/* =====================================================
   STATS BANNER - Below Hero Section
   ===================================================== */
.stats-banner {
    background:
        linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 0, 0.05) 50%, transparent 100%),
        linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 100%);
    padding: 50px 0;
    position: relative;
    border-top: 1px solid rgba(255, 107, 53, 0.15);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 30%),
        radial-gradient(circle at 80% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 30%);
    pointer-events: none;
}

.stats-banner__grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    position: relative;
    z-index: 1;
}

.stats-banner__item {
    text-align: center;
}

.stats-banner__number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-banner__label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-banner {
        padding: 40px 0;
    }

    .stats-banner__grid {
        gap: 50px;
    }

    .stats-banner__number {
        font-size: 2.5rem;
    }

    .stats-banner__label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stats-banner__grid {
        gap: 30px;
    }

    .stats-banner__number {
        font-size: 2rem;
    }

    .stats-banner__label {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
}


/* ./components/categories.css */
/* =====================================================
   CATEGORIES SECTION - 2025 Premium Card Design
   "Šta želite danas?" - Grid Cards on Desktop, List on Mobile
   ===================================================== */

.categories-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,
        rgba(12, 12, 20, 0) 0%,
        rgba(16, 16, 32, 0.4) 50%,
        rgba(12, 12, 20, 0) 100%);
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 30% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 70% 80%, rgba(255, 152, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Categories Header */
.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.categories-header__content {
    max-width: 550px;
}

.categories-header__content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.categories-header__content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Categories Grid - Desktop: 3-4 columns, Tablet: 2, Mobile: List */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

/* Category Card - Desktop Version (Vertical Cards) */
.category-card {
    position: relative;
    background: linear-gradient(145deg,
        rgba(30, 30, 45, 0.7),
        rgba(18, 18, 28, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    min-height: 220px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Gradient border effect on hover */
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        var(--primary),
        var(--secondary, #ff9800),
        transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Subtle background glow */
.category-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 107, 53, 0.1) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 107, 53, 0.1);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover::after {
    opacity: 1;
}

/* Featured card - Special styling for first item */
.category-card--featured {
    grid-column: span 1;
    background: linear-gradient(145deg,
        rgba(40, 30, 35, 0.8),
        rgba(25, 18, 22, 0.95));
    border-color: rgba(255, 107, 53, 0.15);
}

/* Category Icon - Large centered icon */
.category-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.2),
        rgba(255, 140, 0, 0.1));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    z-index: 2;
}

/* Icon inner glow */
.category-card__icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 28px;
    background: radial-gradient(
        circle,
        rgba(255, 107, 53, 0.2) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.category-card:hover .category-card__icon {
    transform: scale(1.1) rotate(-3deg);
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.35),
        rgba(255, 140, 0, 0.25));
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.category-card:hover .category-card__icon::after {
    opacity: 1;
}

/* Category Content */
.category-card__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.category-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: white;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.category-card:hover .category-card__title {
    color: inherit;
}

.category-card--featured .category-card__title {
    font-size: 1.35rem;
}

.category-card__count {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.category-card__count span {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

.category-card__description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Category Arrow - Desktop shows as "explore" button */
.category-card__arrow {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    font-size: 0.9rem;
    margin-top: 8px;
    position: relative;
    z-index: 2;
}

.category-card:hover .category-card__arrow {
    background: linear-gradient(135deg, var(--primary), var(--secondary, #ff9800));
    border-color: transparent;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* =====================================================
   DESKTOP SPECIFIC - 992px+ (Card Grid)
   ===================================================== */
@media (min-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }

    .category-card {
        padding: 36px 28px;
        min-height: 260px;
    }

    .category-card__icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
        border-radius: 28px;
    }

    .category-card__title {
        font-size: 1.3rem;
    }

    /* Dostupan poziv na otvaranje kategorije. */
    .category-card__arrow {
        opacity: 1;
        transform: none;
    }

    .category-card:hover .category-card__arrow {
        opacity: 1;
        transform: translateY(0) scale(1.1);
    }
}

/* =====================================================
   TABLET - 768px to 991px (2 Column Grid)
   ===================================================== */
@media (min-width: 768px) and (max-width: 991px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .category-card {
        padding: 28px 24px;
        min-height: 200px;
    }

    .category-card__icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .category-card__arrow {
        opacity: 1;
    }

    .category-card:hover .category-card__arrow {
        opacity: 1;
    }
}

/* =====================================================
   MOBILE - Under 768px (Compact List)
   ===================================================== */
@media (max-width: 767px) {
    .categories-section {
        padding: 60px 0;
    }

    .categories-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        margin-bottom: 30px;
    }

    .categories-header__content {
        text-align: center;
    }

    .categories-header__content h2 {
        font-size: 1.6rem;
    }

    .categories-header__content p {
        font-size: 0.9rem;
    }

    /* Switch to horizontal list layout */
    .categories-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .category-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 14px 16px;
        gap: 14px;
        border-radius: 16px;
        min-height: 0;
    }

    .category-card::before,
    .category-card::after {
        display: none;
    }

    /* Add left accent line on mobile */
    .category-card {
        border-left: 3px solid transparent;
        transition: all 0.3s ease, border-color 0.3s ease;
    }

    .category-card:hover {
        transform: translateX(6px);
        border-left-color: var(--primary);
    }

    .category-card__icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.3rem;
        border-radius: 14px;
        flex-shrink: 0;
    }

    .category-card:hover .category-card__icon {
        transform: scale(1.05);
    }

    .category-card__content {
        flex: 1;
        min-width: 0;
        gap: 2px;
        align-items: flex-start;
    }

    .category-card__title {
        font-size: 1rem;
    }

    .category-card__count {
        font-size: 0.8rem;
        justify-content: flex-start;
    }

    .category-card__count span {
        font-size: 0.85rem;
    }

    .category-card__description {
        display: none;
    }

    /* Show arrow on mobile list */
    .category-card__arrow {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 0.8rem;
        margin-top: 0;
        opacity: 1;
        transform: none;
    }

    .category-card:hover .category-card__arrow {
        transform: translateX(3px);
    }
}

/* Small mobile - 480px and below */
@media (max-width: 480px) {
    .categories-section {
        padding: 50px 0;
    }

    .categories-header {
        margin-bottom: 24px;
    }

    .categories-header__content h2 {
        font-size: 1.4rem;
    }

    .categories-header__content p {
        font-size: 0.85rem;
    }

    .categories-grid {
        gap: 8px;
    }

    .category-card {
        padding: 12px 14px;
        gap: 12px;
        border-radius: 14px;
    }

    .category-card__icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1.15rem;
        border-radius: 12px;
    }

    .category-card__title {
        font-size: 0.95rem;
    }

    .category-card__count {
        font-size: 0.75rem;
    }

    .category-card__count span {
        font-size: 0.8rem;
    }

    .category-card__arrow {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 0.75rem;
    }

    .category-card:hover {
        transform: translateX(4px);
    }
}

/* =====================================================
   CATEGORIES PRODUCTS PREVIEW (if needed)
   ===================================================== */
.categories-products {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.categories-products__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.categories-products__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.categories-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}


/* ./components/featured-products.css */
/* =====================================================
   FEATURED PRODUCTS SECTION - Preporučujemo
   ===================================================== */

.featured-products-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg,
        rgba(15, 15, 20, 1) 0%,
        rgba(18, 18, 25, 1) 50%,
        rgba(15, 15, 20, 1) 100%
    );
    overflow: hidden;
}

.featured-products-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.featured-products-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,140,0,0.06) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* Featured Products Grid */
.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* Featured Product Card */
.featured-product-card {
    position: relative;
    background: linear-gradient(145deg, rgba(26,26,40,0.8), rgba(18,18,28,0.9));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    display: block;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.featured-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,0,0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.featured-product-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255,107,0,0.4);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,107,0,0.2),
        0 0 40px rgba(255,107,0,0.15);
}

.featured-product-card:hover::before {
    opacity: 1;
}

/* Product Image */
.featured-product-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20,20,30,1), rgba(15,15,25,1));
}

.featured-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-product-card:hover .featured-product-card__image img {
    transform: scale(1.1);
}

/* Image Overlay */
.featured-product-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.8) 0%,
        rgba(0,0,0,0.4) 50%,
        transparent 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.featured-product-card:hover .featured-product-card__overlay {
    opacity: 1;
}

.featured-product-card__view {
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255,107,0,0.4);
}

.featured-product-card:hover .featured-product-card__view {
    transform: translateY(0);
}

/* Product Content */
.featured-product-card__content {
    padding: 24px;
    position: relative;
    z-index: 1;
}

.featured-product-card__category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    background: rgba(255,107,0,0.15);
    padding: 4px 12px;
    border-radius: 50px;
}

.featured-product-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.featured-product-card:hover .featured-product-card__title {
    color: var(--primary);
}

.featured-product-card__desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Footer */
.featured-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.featured-product-card__price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-product-card__weight {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-product-card__weight i {
    color: var(--primary);
    font-size: 0.75rem;
}

/* Product Badge */
.featured-product-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 8px 24px rgba(255,107,0,0.4);
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(255,107,0,0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 12px 32px rgba(255,107,0,0.6);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .featured-products-section {
        padding: 60px 0;
    }

    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .featured-product-card__title {
        font-size: 1.2rem;
    }

    .featured-product-card__price {
        font-size: 1.3rem;
    }

    .featured-product-card__badge {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .featured-product-card__content {
        padding: 20px;
    }

    .featured-product-card__desc {
        font-size: 0.85rem;
    }
}


/* ./components/locations.css */
/* =====================================================
   LOCATIONS SECTION - Naše lokacije
   ===================================================== */

.locations-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.locations-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,107,0,0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

/* Location Card */
.location-card {
    background: linear-gradient(145deg, rgba(26,26,40,0.9), rgba(18,18,28,0.95));
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.4),
        0 0 50px rgba(255,107,0,0.1);
    border-color: rgba(255,107,0,0.3);
}

.location-card:hover::before {
    opacity: 1;
}

/* Location Card Header */
.location-card__header {
    position: relative;
    padding: 28px;
    background: linear-gradient(135deg, rgba(255,107,0,0.12), rgba(0,0,0,0.4));
}

.location-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.location-card__badge--open {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

.location-card__badge--closed {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

.location-card__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    padding-right: 120px; /* Space for badge */
}

.location-card__desc {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-right: 120px; /* Space for badge */
}

/* Google Rating */
.location-card__google-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(255,193,7,0.2), rgba(255,193,7,0.1));
    color: #ffc107;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,193,7,0.3);
    margin-bottom: 10px;
}

.location-card__google-rating:hover {
    background: linear-gradient(135deg, rgba(255,193,7,0.3), rgba(255,193,7,0.2));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,193,7,0.2);
}

.location-card__google-rating i {
    color: #ffc107;
}

.location-card__google-rating span {
    font-weight: 700;
    color: #fff;
}

.location-card__reviews-count {
    font-weight: 400 !important;
    color: rgba(255,255,255,0.7) !important;
}

/* Location Card Body */
.location-card__body {
    padding: 24px;
}

.location-card__info {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
}

.location-card__info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(255,255,255,0.03);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.location-card__info-item:hover {
    background: rgba(255,107,0,0.08);
    border-color: rgba(255,107,0,0.2);
}

.location-card__info-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(255,140,0,0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.location-card__info-text {
    flex: 1;
}

.location-card__info-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.location-card__info-value {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

/* Location Card Actions */
.location-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* =====================================================
   LOCATIONS RESPONSIVE
   ===================================================== */
@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .locations-section {
        padding: 60px 0;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-card {
        border-radius: 18px;
    }

    .location-card:hover {
        transform: none;
    }

    .location-card__header {
        padding: 20px;
    }

    .location-card__badge {
        top: 14px;
        right: 14px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .location-card__name {
        font-size: 1.2rem;
        padding-right: 90px;
    }

    .location-card__desc {
        padding-right: 0;
        font-size: 0.9rem;
    }

    .location-card__body {
        padding: 18px;
    }

    .location-card__info {
        gap: 10px;
        margin-bottom: 18px;
    }

    .location-card__info-item {
        padding: 12px;
        gap: 12px;
    }

    .location-card__info-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .location-card__info-label {
        font-size: 0.7rem;
    }

    .location-card__info-value {
        font-size: 0.9rem;
    }

    .location-card__actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .locations-section {
        padding: 40px 0;
    }

    .location-card__header {
        padding: 16px;
    }

    .location-card__name {
        font-size: 1.1rem;
    }

    .location-card__body {
        padding: 14px;
    }

    .location-card__info-icon {
        width: 32px;
        height: 32px;
    }
}


/* ./components/products.css */
/* =====================================================
   PRODUCTS SECTION - Grid proizvoda
   ===================================================== */

.products-section {
    padding: 100px 0;
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

/* =====================================================
   PRODUCTS RESPONSIVE
   ===================================================== */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-section {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .products-grid {
        gap: 20px;
    }
}


/* ./components/features.css */
/* =====================================================
   FEATURES SECTION - Kako funkcioniše
   ===================================================== */

.features-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255,107,0,0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255,152,0,0.04) 0%, transparent 40%);
    pointer-events: none;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 1;
}

/* Feature Card */
.feature-card {
    text-align: center;
    padding: 40px 28px;
    background: linear-gradient(145deg, rgba(26,26,40,0.8), rgba(18,18,28,0.9));
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,107,0,0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,107,0,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Feature Icon */
.feature-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(255,140,0,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--primary);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Feature Number */
.feature-card__number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 107, 53, 0.35);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.2);
}

/* Feature Title */
.feature-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Feature Text */
.feature-card__text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* =====================================================
   FEATURES RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px 20px;
        border-radius: 18px;
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

    .feature-card:hover {
        transform: none;
    }

    .feature-card__icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin: 0;
        flex-shrink: 0;
    }

    .feature-card__content {
        flex: 1;
        min-width: 0;
    }

    .feature-card__number {
        display: none;
    }

    .feature-card__title {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .feature-card__text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 40px 0;
    }

    .feature-card {
        padding: 18px 16px;
        gap: 14px;
    }

    .feature-card__icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .feature-card__title {
        font-size: 1rem;
    }

    .feature-card__text {
        font-size: 0.85rem;
    }
}


/* ./components/cta.css */
/* =====================================================
   CTA SECTION - Call to Action
   ===================================================== */

.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg,
        rgba(255,107,0,0.1) 0%,
        rgba(12,12,20,0.95) 50%,
        rgba(255,152,0,0.05) 100%
    );
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.15), transparent);
    animation: ctaFloat 8s ease-in-out infinite;
}

.cta-section::before {
    top: -250px;
    left: -250px;
}

.cta-section::after {
    bottom: -250px;
    right: -250px;
    animation-delay: -4s;
}

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* CTA Content */
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* =====================================================
   CTA RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-section::before,
    .cta-section::after {
        width: 200px;
        height: 200px;
    }

    .cta-content {
        padding: 0 16px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .cta-buttons .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 0;
    }

    .cta-content h2 {
        font-size: 1.3rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    .cta-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}


/* ===== SPECIAL COMPONENTS ===== */

/* ./components/product-cards.css */
/**
 * Product Cards - Kartice proizvoda sa proširivim dodacima
 */

/* ==========================================
   PRODUCT CARD BASE
   ========================================== */
.product-card {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-smooth);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 53, 0.2);
}

/* ==========================================
   PRODUCT IMAGE
   ========================================== */
.product-card__image {
    position: relative;
    /* Fallback for Safari < 15 that doesn't support aspect-ratio */
    padding-bottom: 66.67%; /* 3:2 ratio fallback */
    height: 0;
    overflow: hidden;
}

@supports (aspect-ratio: 3/2) {
    .product-card__image {
        aspect-ratio: 3 / 2;
        padding-bottom: 0;
        height: auto;
    }
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: var(--bg-card);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(15, 15, 25, 0.9), transparent);
    pointer-events: none;
}

/* ==========================================
   BADGES
   ========================================== */
.product-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
}

.product-card__badge {
    background: var(--primary-gradient);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.product-card__badge--new {
    background: linear-gradient(135deg, var(--success), #16a34a);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.product-card__badge--sale {
    background: linear-gradient(135deg, var(--danger), #dc2626);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.product-card__badge--popular {
    background: linear-gradient(135deg, var(--accent-gold, #ffc107), #ff9800);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* ==========================================
   PRODUCT BODY
   ========================================== */
.product-card__body {
    padding: 20px;
}

.product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.product-card__shop {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.product-card__category {
    color: var(--text-muted);
    font-size: 0.8rem;
    padding-left: 12px;
    border-left: 1px solid var(--border-color);
}

.product-card__weight {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.product-card__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.product-card__name a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.product-card__desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* ==========================================
   PRODUCT FOOTER
   ========================================== */
.product-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.product-card__price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ==========================================
   ADDON SELECT BUTTON
   ========================================== */
.product-card__select-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--gradient-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-card__select-btn:hover {
    border-color: var(--primary);
    background: var(--primary-gradient);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
}

.product-card__select-btn i {
    transition: transform 0.3s ease;
}

.product-card.is-expanded .product-card__select-btn i {
    transform: rotate(180deg);
}

.product-card.is-expanded .product-card__select-btn {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
}

/* ==========================================
   ADDONS PANEL (Proširivi deo)
   ========================================== */
.product-card__addons {
    max-height: 0;
    overflow: hidden;
    background: rgba(10, 10, 15, 0.5);
    border-top: 0 solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card.is-expanded .product-card__addons {
    max-height: 600px;
    border-top-width: 1px;
}

.product-card__addons-inner {
    padding: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease 0.1s;
}

.product-card.is-expanded .product-card__addons-inner {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   ADDON CATEGORIES
   ========================================== */
.addon-category {
    margin-bottom: 20px;
}

.addon-category:last-child {
    margin-bottom: 0;
}

.addon-category__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.addon-category__title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.addon-category__badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary);
    font-weight: 600;
}

.addon-category__badge--required {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

/* ==========================================
   ADDON ITEMS
   ========================================== */
.addon-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-user-select: none;
    user-select: none;
}

.addon-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
}

.addon-item.is-selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.08) 100%);
}

.addon-item__checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.addon-item.is-selected .addon-item__checkbox {
    background: var(--primary-gradient);
    border-color: transparent;
}

.addon-item.is-selected .addon-item__checkbox::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.addon-item__radio {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.addon-item.is-selected .addon-item__radio {
    border-color: var(--primary);
}

.addon-item.is-selected .addon-item__radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--primary-gradient);
    border-radius: 50%;
}

.addon-item__name {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.addon-item.is-selected .addon-item__name {
    color: var(--text-primary);
}

.addon-item__price {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-left: auto;
}

/* ==========================================
   QUANTITY SELECTOR
   ========================================== */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.quantity-selector__btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-selector__btn:hover {
    background: var(--primary);
    color: white;
}

.quantity-selector__value {
    width: 50px;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

/* ==========================================
   ADD TO CART SECTION
   ========================================== */
.product-card__cart-section {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.product-card__total {
    flex: 1;
}

.product-card__total-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.product-card__total-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card__add-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}

.product-card__add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.45);
}

.product-card__add-btn:active {
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .product-card__image {
        aspect-ratio: 3 / 2;
    }

    .product-card__body {
        padding: 16px;
    }

    .product-card__meta {
        margin-bottom: 8px;
    }

    .product-card__name {
        font-size: 1.05rem;
    }

    .product-card__price {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .product-card__image {
        aspect-ratio: 3 / 2;
    }

    .product-card__body {
        padding: 14px;
        overflow: hidden;
    }

    .product-card__meta {
        flex-wrap: wrap;
        gap: 6px;
    }

    .product-card__category {
        font-size: 0.75rem;
        padding-left: 0;
        border-left: none;
    }

    .product-card__weight {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .product-card__name {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
        word-break: break-word;
    }

    .product-card__description,
    .product-card__desc {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-card__price {
        font-size: 1rem;
    }

    .addon-items {
        gap: 6px;
    }

    .addon-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .product-card__cart-section {
        flex-direction: column;
        align-items: stretch;
    }

    .product-card__add-btn {
        width: 100%;
        justify-content: center;
    }
}
/* Landscape mode */
@media (orientation: landscape) and (max-height: 500px) {
    .product-card__image {
        aspect-ratio: 16 / 9;
    }

    .product-card__body {
        padding: 12px;
    }

    .product-card__name {
        font-size: 0.95rem;
        -webkit-line-clamp: 1;
    }

    .product-card__description {
        -webkit-line-clamp: 1;
        min-height: 0;
        margin-bottom: 8px;
    }
}

/* Small mobile */
@media (max-width: 375px) {
    .product-card__body {
        padding: 10px;
        overflow: hidden;
    }

    .product-card__name {
        font-size: 0.85rem;
        word-break: break-word;
        -webkit-line-clamp: 2;
    }

    .product-card__price {
        font-size: 0.95rem;
    }

    .product-card__desc,
    .product-card__description {
        font-size: 0.75rem;
    }

    .product-card__add {
        width: 36px;
        height: 36px;
    }
}

/* ==========================================
   PRODUCT WITHOUT IMAGE - tekst umesto slike
   ========================================== */
.product-card--no-image {
    display: flex;
    flex-direction: column;
}

.product-card--no-image .product-card__text-top {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 193, 7, 0.06));
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    aspect-ratio: 3 / 2;
    position: relative;
    overflow: hidden;
}

.product-card--no-image .product-card__text-top .product-card__name {
    font-size: 1.4rem;
    margin-bottom: 8px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    padding: 0 10px;
}

@media (max-width: 576px) {
    .product-card--no-image .product-card__text-top {
        padding: 20px 15px;
    }

    .product-card--no-image .product-card__text-top .product-card__name {
        font-size: 1rem;
        -webkit-line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width: 375px) {
    .product-card--no-image .product-card__text-top .product-card__name {
        font-size: 0.9rem;
    }
}

.product-card--no-image .product-card__text-top .product-card__weight {
    margin-top: 8px;
}

.product-card--no-image .product-card__text-top .product-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
}

/* ==========================================
   TEXT-ONLY PRODUCT (drinks, etc)
   ========================================== */
.product-card--text-only {
    min-height: 0;
}

.product-card--text-only .product-card__image {
    display: none;
}

.product-card--text-only .product-card__body {
    padding: 24px;
}

.product-card--text-only .product-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 193, 7, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 1.5rem;
}


/* ./components/carousel.css */
/**
 * Product Image Carousel Styles
 * Leskovački Kutak
 */

/* Base Carousel Container */
.product-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg, 12px);
    background: var(--gray-100, #f3f4f6);
}

.carousel-inner {
    position: relative;
    width: 100%;
    /* Fallback for Safari < 15 that doesn't support aspect-ratio */
    padding-bottom: 75%; /* 4:3 ratio fallback */
    height: 0;
}

@supports (aspect-ratio: 4/3) {
    .carousel-inner {
        aspect-ratio: 4/3;
        padding-bottom: 0;
        height: auto;
    }
}

/* Slides */
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Vertical image support */
.product-carousel.vertical .carousel-inner {
    aspect-ratio: 3/4;
}

.product-carousel.vertical .carousel-slide img {
    object-fit: contain;
    background: var(--gray-50, #f9fafb);
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-700, #374151);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-carousel:hover .carousel-arrow {
    opacity: 1;
}

.carousel-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

/* Indicators/Dots */
.carousel-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    max-width: 8px;
    max-height: 8px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
    /* iOS Safari fixes */
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    box-sizing: border-box;
    flex: 0 0 8px;
    display: block;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
    overflow: hidden;
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-indicator.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

/* Product Card Carousel (smaller version) */
.product-card .product-carousel {
    border-radius: var(--radius-lg, 12px) var(--radius-lg, 12px) 0 0;
}

.product-card .carousel-inner {
    aspect-ratio: 1/1;
}

.product-card .carousel-arrow {
    width: 32px;
    height: 32px;
}

.product-card .carousel-arrow svg {
    width: 16px;
    height: 16px;
}

.product-card .carousel-indicators {
    bottom: 8px;
    padding: 4px 8px;
    gap: 6px;
}

.product-card .carousel-indicator {
    width: 6px;
    height: 6px;
}

.product-card .carousel-indicator.active {
    width: 18px;
}

/* Touch device optimizations */
@media (hover: none) {
    .carousel-arrow {
        opacity: 1;
        width: 36px;
        height: 36px;
    }

    .product-card .carousel-arrow {
        width: 28px;
        height: 28px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .carousel-prev {
        left: 8px;
    }

    .carousel-next {
        right: 8px;
    }

    .carousel-indicators {
        bottom: 8px;
        padding: 4px 8px;
    }

    /* Use vertical images on mobile */
    .product-carousel.responsive .carousel-inner {
        aspect-ratio: 3/4;
    }
}

/* Hero Section Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.hero-carousel .carousel-inner {
    aspect-ratio: auto;
    height: 100%;
}

.hero-carousel .carousel-slide img {
    object-fit: cover;
    object-position: center;
}

.hero-carousel .carousel-arrow {
    width: 48px;
    height: 48px;
}

.hero-carousel .carousel-prev {
    left: 24px;
}

.hero-carousel .carousel-next {
    right: 24px;
}

@media (max-width: 768px) {
    .hero-carousel {
        min-height: 300px;
    }

    .hero-carousel .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-carousel .carousel-prev {
        left: 12px;
    }

    .hero-carousel .carousel-next {
        right: 12px;
    }
}

/* Loading state */
.product-carousel.loading .carousel-inner {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Image counter badge */
.carousel-counter {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 12px;
    font-weight: 500;
    border-radius: 12px;
}

.product-card .carousel-counter {
    top: 8px;
    right: 8px;
    padding: 2px 8px;
    font-size: 11px;
}


/* ./components/install-app.css */
/* =====================================================
   INSTALL APP SECTION - PWA install CTA on homepage
   Moved from inline <style> in includes/install-app-section.php
   for W3C-valid HTML (style elements should live in <head>).
   ===================================================== */

.install-app{margin:4rem 0;padding:2.5rem 1.5rem;background:linear-gradient(135deg,#0f1626 0%,#1a2440 100%);border-radius:24px;border:1px solid rgba(201,168,76,.15);position:relative;overflow:hidden}
.install-app::before{content:"";position:absolute;top:-40%;right:-20%;width:60%;height:160%;background:radial-gradient(circle,rgba(255,107,53,.18) 0%,transparent 60%);pointer-events:none}
.install-app__inner{position:relative;z-index:1;display:grid;grid-template-columns:1.4fr 1fr;gap:2rem;align-items:center;max-width:1100px;margin:0 auto}
@media(max-width:780px){.install-app__inner{grid-template-columns:1fr;text-align:center}}
.install-app__title{font-size:clamp(1.6rem,3.5vw,2.4rem);color:#fff;margin:0 0 .6rem;letter-spacing:-.02em}
.install-app__sub{color:rgba(255,255,255,.78);margin:0 0 1.4rem;font-size:1.05rem;line-height:1.55}
.install-app__features{list-style:none;padding:0;margin:0;display:grid;gap:.7rem}
.install-app__features li{display:flex;align-items:center;gap:.7rem;color:rgba(255,255,255,.85);font-size:.95rem}
@media(max-width:780px){.install-app__features li{justify-content:center}}
.install-app__features i{color:#c9a84c;font-size:1.1rem;flex-shrink:0}
.install-app__cta{display:flex;flex-direction:column;align-items:center;gap:1rem}
.install-app__btn{display:inline-flex;align-items:center;gap:.7rem;background:linear-gradient(135deg,#ac2e00,#d13f00);color:#fff;padding:1rem 2rem;border-radius:12px;font-size:1.05rem;font-weight:700;text-decoration:none;box-shadow:0 16px 32px -10px rgba(255,107,53,.55);transition:transform .15s,box-shadow .15s;border:none;cursor:pointer;font-family:inherit}
.install-app__btn:hover{transform:translateY(-2px);box-shadow:0 22px 42px -12px rgba(255,107,53,.7)}
.install-app__btn i{font-size:1.2rem}
.install-app__link{color:rgba(255,255,255,.6);text-decoration:underline;text-underline-offset:3px;font-size:.9rem}
.install-app__link:hover{color:#fff}
.install-app__platform{display:flex;gap:.5rem;flex-wrap:wrap;justify-content:center;margin-top:.4rem}
.install-app__platform span{background:rgba(255,255,255,.08);color:rgba(255,255,255,.7);padding:.3rem .7rem;border-radius:99px;font-size:.78rem;border:1px solid rgba(255,255,255,.12)}
.install-app__modal{position:fixed;inset:0;background:rgba(0,0,0,.85);z-index:99999;display:flex;align-items:center;justify-content:center;padding:1rem;backdrop-filter:blur(4px)}
.install-app__modal[hidden]{display:none}
.install-app__modal-card{background:#0f1626;color:#fff;padding:2rem;border-radius:20px;max-width:480px;width:100%;position:relative;border:1px solid rgba(255,255,255,.1)}
.install-app__modal-card h3{margin:0 0 1.2rem;font-size:1.4rem;color:#c9a84c}
.install-app__modal-close{position:absolute;top:1rem;right:1rem;background:transparent;border:none;color:#fff;font-size:1.8rem;cursor:pointer;line-height:1;padding:.2rem .6rem}
.install-app__steps{margin:0;padding-left:1.2rem;color:rgba(255,255,255,.85);line-height:1.7}
.install-app__steps li{margin-bottom:.6rem}
.install-app__steps i{color:#ff6b35;margin-right:.4rem}
.install-app__note{margin:1rem 0 0;font-size:.85rem;color:rgba(255,255,255,.55);background:rgba(255,107,53,.08);padding:.7rem .9rem;border-radius:8px;border-left:3px solid #ff6b35}

/* seo-pages.css is now loaded directly from pages, not imported here */

/* ./components/cart.css */
/* =====================================================
   CART PAGE - Stilovi za korpu i checkout
   ===================================================== */

/* Force no internal scrolling on cart items - SUPER AGGRESSIVE OVERRIDE */
#cartItemsSection,
#cartItems,
.cart-section,
.cart-section__body,
.cart-main,
.cart-main > * {
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
    overflow-y: visible !important;
    overflow-x: visible !important;
}

/* Cart Page Layout */
.cart-page {
    padding: 50px 0;
    position: relative;
}

.cart-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 35px;
    align-items: start;
}

@media (max-width: 992px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   CART SECTION
   ========================================== */
.cart-section {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    overflow: visible;
    transition: all var(--transition-smooth);
}

.cart-section:hover {
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cart-section__header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.cart-section__title {
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-section__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cart-total-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cart-total-badge i {
    font-size: 0.85rem;
}

.cart-section__body {
    padding: 24px;
    overflow: visible;
    max-height: none;
}

/* ==========================================
   CART ITEM
   ========================================== */
.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.cart-item__image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cart item without image */
.cart-item--no-image .cart-item__info {
    padding-left: 0;
}

.cart-item__info {
    flex: 1;
}

.cart-item__name {
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item__shop {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.cart-item__extras {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cart-item__modify {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.cart-item__edit-btn,
.cart-item__add-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cart-item__edit-btn {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

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

.cart-item__add-btn {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.cart-item__add-btn:hover {
    background: #8b5cf6;
    color: white;
}

.cart-item__price {
    font-weight: 600;
    color: var(--primary);
}

.cart-item__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.cart-item__remove {
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-normal);
    padding: 4px;
}

.cart-item__remove:hover {
    color: var(--danger);
}

.cart-item__addons {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 100%;
}

.cart-item__addons span {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.cart-item__addons span::before {
    content: '+';
    margin-right: 4px;
    color: var(--primary);
    font-weight: 600;
}

/* ==========================================
   QUANTITY CONTROL
   ========================================== */
.quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.quantity-control button {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-normal);
}

.quantity-control button:hover {
    background: var(--primary);
    color: white;
}

.quantity-control span {
    width: 40px;
    text-align: center;
    font-weight: 600;
}

/* ==========================================
   GRAMS CONTROL (for kg products)
   ========================================== */
.grams-control {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.grams-control button {
    width: 32px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.grams-control button:hover {
    background: var(--primary);
    color: white;
}

.grams-control .grams-input {
    width: 55px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    -moz-appearance: textfield;
    appearance: textfield;
}

.grams-control .grams-input::-webkit-outer-spin-button,
.grams-control .grams-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.grams-control .grams-suffix {
    font-weight: 500;
    color: var(--text-secondary);
    padding-right: 4px;
    font-size: 0.85rem;
}

/* ==========================================
   SHOP SELECTION CARDS
   ========================================== */
.shop-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-card:hover {
    border-color: var(--primary);
    background: rgba(255, 107, 0, 0.05);
}

.shop-card.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 140, 0, 0.05));
}

.shop-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.shop-card__info {
    flex: 1;
}

.shop-card__name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.shop-card__address {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.shop-card__phone {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.shop-card__phone i {
    color: var(--primary);
    margin-right: 5px;
}

.shop-card__check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.shop-card.selected .shop-card__check {
    opacity: 1;
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ==========================================
   EMPTY CART
   ========================================== */
.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty__icon {
    font-size: 5rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.cart-empty__title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cart-empty__text {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* ==========================================
   CHECKOUT SUMMARY
   ========================================== */
.checkout-summary {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: all var(--transition-smooth);
    overflow: hidden;
}

.checkout-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
}

.checkout-summary:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.checkout-summary__header {
    padding: 24px 28px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
}

.checkout-summary__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-summary__title i {
    color: var(--primary);
}

.checkout-summary__body {
    padding: 28px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    color: var(--text-secondary);
    font-family: var(--font-body);
}

.summary-row--total {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    font-family: var(--font-display);
}

.summary-row--total span:last-child {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-summary__footer {
    padding: 0 28px 28px;
}

.checkout-summary__btn {
    width: 100%;
    padding: 18px;
    font-size: 1.15rem;
    font-family: var(--font-display);
    font-weight: 600;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.checkout-summary__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkout-summary__btn:hover::before {
    opacity: 1;
}

.checkout-summary__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.checkout-summary__note {
    text-align: center;
    margin-top: 18px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================
   MINIMUM ORDER WARNING
   ========================================== */
.min-order-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: var(--radius-md);
    color: #e65100;
    font-size: 0.9rem;
    margin-top: 15px;
    border: 1px solid #ffcc80;
}

.min-order-warning i {
    font-size: 1.1rem;
}

.min-order-warning strong {
    color: #d84315;
}

/* Free Delivery Badge */
.free-delivery-badge {
    color: #43a047;
    font-weight: 600;
}

/* ==========================================
   DELIVERY SECTION
   ========================================== */
.delivery-section {
    margin-top: 24px;
}

.delivery-section__title {
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-cards {
    display: grid;
    gap: 12px;
}

.address-card {
    padding: 16px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
}

.address-card:hover {
    border-color: var(--primary-light);
}

.address-card.selected {
    border-color: var(--primary);
    background: rgba(255,107,0,0.1);
}

.address-card__label {
    font-weight: 600;
    margin-bottom: 4px;
}

.address-card__text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.add-address-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-normal);
}

.add-address-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ==========================================
   DELIVERY TIME OPTIONS
   ========================================== */
.delivery-time-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.delivery-time-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.delivery-time-option:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: var(--bg-tertiary);
}

.delivery-time-option.selected,
.delivery-time-option:has(input:checked) {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
}

.delivery-time-option input {
    display: none;
}

.delivery-time-option__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 140, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.delivery-time-option__name {
    font-weight: 600;
    margin-bottom: 2px;
}

.delivery-time-option__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.schedule-options {
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.schedule-options .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 12px;
}

.schedule-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.schedule-note i {
    color: var(--primary);
}

@media (max-width: 576px) {
    .delivery-time-options {
        grid-template-columns: 1fr;
    }

    .schedule-options .form-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   PAYMENT SECTION
   ========================================== */
.payment-section {
    margin-top: 24px;
}

.payment-options {
    display: grid;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
}

.payment-option:hover {
    border-color: var(--primary-light);
}

.payment-option.selected {
    border-color: var(--primary);
    background: rgba(255,107,0,0.1);
}

.payment-option input {
    display: none;
}

.payment-option__icon {
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.payment-option__info {
    flex: 1;
}

.payment-option__name {
    font-weight: 600;
}

.payment-option__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================
   NOTES SECTION
   ========================================== */
.notes-section {
    margin-top: 24px;
}

.notes-section textarea {
    width: 100%;
    resize: vertical;
    min-height: 80px;
}

/* ==========================================
   RECOMMENDATIONS SECTION
   ========================================== */
.recommendations-section {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255,107,0,0.08), rgba(255,140,0,0.04));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,107,0,0.2);
}

.recommendations-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.recommendations-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.recommendations-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.recommendations-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.recommendation-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.recommendation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.recommendation-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

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

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

.recommendation-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.recommendation-body {
    padding: 14px;
}

.recommendation-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 6px;
    line-height: 1.3;
}

.recommendation-message {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.4;
}

.recommendation-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recommendation-price {
    font-weight: 700;
    color: var(--primary);
}

.recommendation-add {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.recommendation-add:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* Recommendation card without image */
.recommendation-card--no-image .recommendation-text-top {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 193, 7, 0.06));
    padding: 20px;
    text-align: center;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.recommendation-card--no-image .recommendation-text-top .recommendation-badge {
    position: absolute;
    top: 10px;
    left: 10px;
}

.recommendation-card--no-image .recommendation-text-top .recommendation-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.ai-sparkle {
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ==========================================
   CART HERO SECTION
   ========================================== */
.cart-hero {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    padding-top: 80px;
}

.cart-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,107,0,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,140,0,0.1) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.cart-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.cart-hero__content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

.cart-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(255,140,0,0.1));
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,107,0,0.3);
}

.cart-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.cart-hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}
/* ==========================================
   DELIVERY TYPE SELECTION
   ========================================== */
.delivery-type-section {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    padding: 24px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.delivery-type-section:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.delivery-type-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

.delivery-type-section h3 i {
    color: var(--primary);
    font-size: 1.2rem;
}

.delivery-type-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.delivery-type-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delivery-type-option:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.delivery-type-option.selected {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 140, 0, 0.1));
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.delivery-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.delivery-type-option__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.delivery-type-option.selected .delivery-type-option__icon {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    transform: scale(1.1);
}

.delivery-type-option__content {
    flex: 1;
}

.delivery-type-option__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.delivery-type-option.selected .delivery-type-option__title {
    color: var(--primary);
}

.delivery-type-option__desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.delivery-type-option__check {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.delivery-type-option.selected .delivery-type-option__check {
    border-color: var(--primary);
    background: var(--primary);
}

.delivery-type-option.selected .delivery-type-option__check::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

@media (max-width: 576px) {
    .delivery-type-options {
        grid-template-columns: 1fr;
    }

    .delivery-type-option {
        padding: 16px;
    }
}

/* ==========================================
   SELECT BOX STYLING (Remove default arrows)
   ========================================== */
select.form-input,
.checkout-section select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ff6b35' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 16px 16px !important;
    padding-right: 48px !important;
}

select.form-input:focus,
.checkout-section select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ff8c00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

/* Ensure no multiple arrows appear */
select.form-input::-ms-expand,
.checkout-section select::-ms-expand {
    display: none !important;
}

/* Remove background from option elements */
select.form-input option,
.checkout-section select option {
    background: #1a1a1a !important;
    background-image: none !important;
    color: #ffffff;
}

/* ==========================================
   COMPREHENSIVE RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .cart-page {
        padding: 30px 0;
    }

    .cart-section {
        border-radius: var(--radius-lg);
    }

    .cart-section:hover {
        transform: none;
    }

    .cart-section__header {
        padding: 15px 16px;
    }

    .cart-section__title {
        font-size: 1.1rem;
        gap: 8px;
    }

    .cart-section__body {
        padding: 16px;
    }

    .cart-total-badge {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    /* Cart Item */
    .cart-item {
        padding: 14px;
        gap: 12px;
    }

    .cart-item__image {
        width: 70px;
        height: 70px;
    }

    .cart-item__name {
        font-size: 0.95rem;
    }

    .cart-item__price {
        font-size: 0.9rem;
    }

    .cart-item__addons-toggle {
        font-size: 0.8rem;
    }

    /* Quantity Controls */
    .quantity-control {
        height: 36px;
        min-width: 100px;
    }

    .quantity-control__btn {
        width: 32px;
        font-size: 0.9rem;
    }

    .quantity-control__input {
        font-size: 0.9rem;
    }

    /* Payment Options */
    .payment-option {
        padding: 14px;
    }

    .payment-option__icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .payment-option__name {
        font-size: 0.95rem;
    }

    .payment-option__desc {
        font-size: 0.8rem;
    }

    /* Checkout Summary */
    .checkout-summary {
        padding: 16px;
    }

    .summary-row {
        font-size: 0.9rem;
    }

    .summary-row--total {
        font-size: 1.1rem;
        padding-top: 12px;
    }

    /* Recommended Section */
    .recommendation-card {
        padding: 12px;
    }

    .recommendation-card__image {
        width: 50px;
        height: 50px;
    }

    .recommendation-card__name {
        font-size: 0.85rem;
    }

    .recommendation-card__price {
        font-size: 0.9rem;
    }

    /* Delivery Type Options */
    .delivery-type-option__icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .delivery-type-option__title {
        font-size: 0.9rem;
    }

    .delivery-type-option__desc {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .cart-page {
        padding: 20px 0;
    }

    .cart-section__header {
        padding: 12px 14px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-section__title {
        font-size: 1rem;
    }

    .cart-section__actions {
        width: 100%;
        justify-content: space-between;
    }

    .cart-section__body {
        padding: 14px;
    }

    /* Cart Item Compact */
    .cart-item {
        padding: 12px;
        flex-direction: column;
        gap: 12px;
    }

    .cart-item__main {
        display: flex;
        gap: 12px;
        width: 100%;
    }

    .cart-item__image {
        width: 60px;
        height: 60px;
    }

    .cart-item__actions {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cart-item__name {
        font-size: 0.9rem;
    }

    .cart-item__addons-toggle {
        font-size: 0.75rem;
    }

    /* Quantity Controls */
    .quantity-control {
        height: 34px;
        min-width: 90px;
    }

    .quantity-control__btn {
        width: 30px;
    }

    /* Payment */
    .payment-option {
        padding: 12px;
        gap: 10px;
    }

    .payment-option__icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    /* Summary */
    .checkout-summary {
        padding: 14px;
    }

    .summary-row {
        font-size: 0.85rem;
    }

    .summary-row--total {
        font-size: 1rem;
    }

    /* Delivery Time */
    .delivery-time-option {
        padding: 12px 14px;
    }

    .delivery-time-option__icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .delivery-time-option__title {
        font-size: 0.85rem;
    }

    .delivery-time-option__time {
        font-size: 0.8rem;
    }

    /* Recommendations */
    .recommendation-card__image {
        width: 45px;
        height: 45px;
    }

    .recommendation-card__add {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

@media (max-width: 375px) {
    .cart-section__header {
        padding: 10px 12px;
    }

    .cart-section__body {
        padding: 12px;
    }

    .cart-item {
        padding: 10px;
    }

    .cart-item__image {
        width: 55px;
        height: 55px;
    }

    .cart-item__name {
        font-size: 0.85rem;
    }
}


/* ./components/menu.css */
/* =====================================================
   MENU PAGE - Stilovi za stranicu jelovnika
   ===================================================== */

/* ==========================================
   MENU HERO
   ========================================== */
.menu-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.menu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,107,0,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,140,0,0.1) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.menu-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.menu-hero__content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.menu-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(255,140,0,0.1));
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255,107,0,0.3);
    animation: fadeInUp 0.6s ease-out;
}

.menu-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.menu-hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* ==========================================
   CATEGORY NAVIGATION - Sticky
   ========================================== */
.category-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    z-index: 100;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,107,0,0.1);
    padding: 16px 0;
    margin-bottom: 40px;
    /* iOS Safari fix */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.category-nav__inner {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 8px 20px;
    -ms-overflow-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

.category-nav__inner::-webkit-scrollbar {
    display: none;
}

.category-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(145deg, rgba(40,40,40,0.8), rgba(25,25,25,0.9));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.category-pill:hover {
    background: linear-gradient(145deg, rgba(255,107,0,0.2), rgba(255,107,0,0.1));
    border-color: rgba(255,107,0,0.5);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,0,0.15);
}

.category-pill.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.4);
}

.category-pill i {
    font-size: 1.1rem;
    opacity: 0.9;
}

.category-pill.active i {
    opacity: 1;
}

/* ==========================================
   SEARCH BAR
   ========================================== */
.search-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-bar__input {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-bar__input i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-bar__input input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
}

.search-bar__input input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.search-bar__select {
    min-width: 200px;
}

.search-bar__select select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
}

/* ==========================================
   CATEGORY SECTION
   ========================================== */
.category-section {
    margin-bottom: 60px;
    scroll-margin-top: 150px;
}

.category-section__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.category-section__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(255,140,0,0.1));
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.25rem;
}

.category-section__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.category-section__count {
    margin-left: auto;
    background: var(--bg-card);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================
   MENU PAGE PRODUCT CARD OVERRIDES
   ========================================== */
.product-card__logo-fallback {
    object-fit: contain !important;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, rgba(255,107,53,0.08) 100%);
}

/* Addon Toggle Button */
.product-card__toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 10px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-card__toggle-btn:hover {
    background: var(--primary);
    color: white;
    text-decoration: none;
}

/* ==========================================
   EMPTY STATE
   ========================================== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state__icon {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.empty-state__title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.empty-state__text {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* ==========================================
   MENU PAGE RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
    .menu-hero {
        min-height: 280px;
    }

    .menu-hero__content {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .menu-hero {
        min-height: 220px;
    }

    .menu-hero__title {
        font-size: 1.75rem;
    }

    .menu-hero__subtitle {
        font-size: 0.95rem;
    }

    .category-nav {
        top: 60px;
        padding: 10px 0;
    }

    .category-nav__inner {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-left: 16px;
        padding-right: 16px;
        gap: 8px;
    }

    .category-pill {
        padding: 10px 16px;
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .category-pill i {
        font-size: 0.9rem;
    }

    .category-section {
        padding: 30px 0;
    }

    .category-section__header {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .category-section__title {
        font-size: 1.25rem;
    }

    .category-section__count {
        margin-left: 0;
        margin-top: 10px;
        font-size: 0.8rem;
    }

    .search-bar {
        padding: 12px;
        gap: 10px;
    }

    .search-bar__input {
        font-size: 0.9rem;
    }

    .search-bar__select {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

@media (max-width: 576px) {
    .menu-hero {
        min-height: 160px;
        padding-top: 80px;
    }

    .menu-hero__title {
        font-size: 1.4rem;
    }

    .menu-hero__subtitle {
        font-size: 0.8rem;
        display: none;
    }

    .category-nav {
        padding: 8px 0;
        top: 60px;
        position: sticky;
    }

    .category-nav__inner {
        padding-left: 12px;
        padding-right: 12px;
        gap: 6px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .category-pill {
        padding: 8px 12px;
        font-size: 0.75rem;
        border-radius: 20px;
        flex-shrink: 0;
    }

    .category-section {
        padding: 20px 0;
    }

    .category-section__title {
        font-size: 1.1rem;
    }

    .search-bar {
        flex-direction: column;
        padding: 10px;
        gap: 8px;
        margin-bottom: 15px;
        background: var(--bg-card);
        border-radius: var(--radius-md);
        border: 1px solid var(--border-color);
    }

    .search-bar__input {
        min-width: 100%;
    }

    .search-bar__input input {
        padding: 12px 12px 12px 40px;
        font-size: 0.9rem;
    }

    .search-bar__select {
        width: 100%;
    }

    .search-bar__select select {
        padding: 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .menu-hero {
        min-height: 150px;
    }

    .menu-hero__title {
        font-size: 1.35rem;
    }

    .category-pill {
        padding: 7px 10px;
        font-size: 0.75rem;
    }

    .category-section__title {
        font-size: 1.1rem;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .menu-hero {
        min-height: 150px;
    }

    .menu-hero__title {
        font-size: 1.5rem;
    }

    .menu-hero__subtitle {
        display: none;
    }
}


/* ./components/product.css */
/**
 * Product Page Styles
 * Full-width modern design
 */

/* ========================================
   PRODUCT PAGE BASE
   ======================================== */

.product-page {
    background: var(--bg-dark);
    min-height: 100vh;
    padding-bottom: 80px;
}

/* ========================================
   PRODUCT HERO (Full-width header image)
   ======================================== */



/* ========================================
   PRODUCT DETAILS SECTION
   ======================================== */

.product-details {
    position: relative;
    padding-top: 120px;
    z-index: 2;
}

.product-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ========================================
   PRODUCT IMAGE SECTION
   ======================================== */

.product-image-section {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.product-main-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background: linear-gradient(145deg, #1a1a24, #12121a);
}

.product-discount-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.product-featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

@media (max-width: 992px) {
    .product-image-section {
        position: relative;
        top: 0;
    }

    .product-main-image {
        aspect-ratio: 16 / 10;
    }
}

/* ========================================
   PRODUCT INFO SECTION
   ======================================== */

.product-info-section {
    padding: 20px 0;
}

.product-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(255,140,0,0.08));
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.product-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.product-meta__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.product-meta__item i {
    color: var(--primary);
}

.product-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Price Box */
.product-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    padding: 28px 32px;
    background: linear-gradient(145deg, rgba(26,26,40,0.9), rgba(18,18,28,0.95));
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.product-price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,0,0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-price-box:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.product-price-box:hover::before {
    opacity: 1;
}

.product-price-box__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.product-price-box__label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.product-price-box__icon {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.product-price-box:hover .product-price-box__icon {
    transform: scale(1.1) rotate(5deg);
}

.product-price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.product-price-old {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ========================================
   PRODUCT ADDONS
   ======================================== */

.product-addons {
    margin-bottom: 30px;
}

.product-addons__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-addons__title i {
    color: var(--primary);
}

.addon-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    transition: border-color 0.3s;
}

.addon-category.shake {
    animation: shake 0.5s ease-in-out;
    border-color: var(--danger) !important;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.addon-category__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.addon-category__name {
    font-weight: 600;
    color: var(--text-primary);
}

.addon-category__badge {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.addon-category__badge--required {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.addon-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(160px, 100%), 1fr));
    gap: 16px;
}

.addon-item {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    overflow: hidden;
}

.addon-item:hover {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
}

.addon-item.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.addon-item__check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2;
}

.addon-item__check i {
    font-size: 14px;
    color: white;
    opacity: 0;
    transition: opacity 0.2s;
}

.addon-item.selected .addon-item__check {
    background: var(--primary);
    border-color: var(--primary);
}

.addon-item.selected .addon-item__check i {
    opacity: 1;
}

.addon-item__image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(145deg, #1a1a24, #12121a);
}

.addon-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.addon-item__weight {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 107, 53, 0.9);
    color: white;
    font-weight: 600;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 12px;
    z-index: 2;
}

.addon-item--no-image .addon-item__weight {
    position: static;
    margin-left: auto;
    margin-right: 12px;
}

.addon-item:hover .addon-item__image img {
    transform: scale(1.05);
}

.addon-item__name {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.3s;
    padding: 12px;
    text-align: center;
    font-weight: 500;
}

.addon-item.selected .addon-item__name {
    color: var(--text-primary);
    font-weight: 600;
}

.addon-item__price {
    display: none;
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 600;
}

/* ========================================
   ADDON ITEM WITHOUT IMAGE
   ======================================== */
.addon-item--no-image {
    flex-direction: row;
    align-items: center;
    padding: 16px 20px;
}

.addon-item--no-image .addon-item__check {
    position: relative;
    top: auto;
    right: auto;
    width: 24px;
    height: 24px;
    min-width: 24px;
    margin-right: 12px;
}

.addon-item--no-image .addon-item__name {
    padding: 0;
    text-align: left;
    flex: 1;
}

/* ========================================
   PRODUCT NOTE
   ======================================== */ */

.product-note {
    margin-bottom: 30px;
}

.product-note label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.product-note label i {
    color: var(--primary);
    margin-right: 8px;
}

.product-note textarea {
    width: 100%;
    min-height: 80px;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.product-note textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.product-note textarea::placeholder {
    color: var(--text-muted);
}

/* ========================================
   PRODUCT ACTIONS
   ======================================== */

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-actions__row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.product-actions__secondary {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .product-actions__row {
        flex-direction: column;
    }

    .product-actions__secondary {
        flex-direction: column;
    }
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.quantity-btn {
    width: 50px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
}

.quantity-input {
    width: 70px;
    height: 56px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.quantity-input:focus {
    outline: none;
}

/* Add to Cart Button */
.add-to-cart-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    font-size: 1.05rem;
    font-weight: 600;
}

/* In Cart State */
.add-to-cart-btn.in-cart {
    background: linear-gradient(135deg, var(--success), #16a34a);
    pointer-events: none;
}

.add-to-cart-btn.in-cart:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

/* Add Another Button */
.add-another-btn {
    display: none;
    flex: 1;
    min-height: 50px;
    font-size: 0.95rem;
    font-weight: 600;
}

.add-another-btn.visible {
    display: flex;
}

/* Back to Menu Button */
.back-to-menu-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 768px) {
    .add-to-cart-btn,
    .add-another-btn,
    .back-to-menu-btn {
        width: 100%;
        flex: none;
    }
}

/* ========================================
   RELATED PRODUCTS
   ======================================== */

.related-products {
    padding: 80px 0;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
}

.related-products .section-title {
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.related-grid .product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--gradient-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-grid .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 53, 0.4);
}

.related-grid .product-card__link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-grid .product-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-secondary);
}

.related-grid .product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-grid .product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.related-grid .product-card__body {
    padding: 16px;
    flex: 1;
}

.related-grid .product-card__category {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.related-grid .product-card__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.related-grid .product-card__footer {
    margin-top: auto;
}

.related-grid .product-card__price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Quick Add Button */
.product-card__quick-add {
    width: 100%;
    padding: 12px 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-card__quick-add:hover {
    background: linear-gradient(135deg, #ff8c00, var(--primary));
    box-shadow: inset 0 -3px 10px rgba(0, 0, 0, 0.2);
}

.product-card__quick-add:active {
    transform: scale(0.98);
}

@media (max-width: 1200px) {
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   RESPONSIVE
   ======================================== */

/* Addon grid responsiveness - 1 column mobile, up to 8-10 on desktop */
@media (max-width: 480px) {
    .addon-list {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 481px) and (max-width: 640px) {
    .addon-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 641px) and (max-width: 768px) {
    .addon-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .addon-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .addon-list {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1281px) and (max-width: 1536px) {
    .addon-list {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 1537px) and (max-width: 1920px) {
    .addon-list {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media (min-width: 1921px) {
    .addon-list {
        grid-template-columns: repeat(10, 1fr);
    }
}

@media (max-width: 768px) {
    .product-details {
        padding-top: 100px;
    }

    .product-price-box {
        flex-wrap: wrap;
        gap: 10px;
    }

    .product-price {
        font-size: 2rem;
    }

    .addon-item__name {
        font-size: 0.8rem;
        padding: 10px 8px;
    }

    .addon-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .addon-category {
        padding: 18px;
    }

    .addon-category__name {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .addon-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .addon-item__image {
        aspect-ratio: 1;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 1.75rem;
    }

    .product-main-image {
        border-radius: 16px;
    }

    .product-grid {
        gap: 30px;
    }

    .addon-category {
        padding: 14px;
        border-radius: 14px;
    }

    .addon-category__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .addon-category__name {
        font-size: 0.9rem;
    }

    .addon-category__badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .addon-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .addon-item {
        border-radius: 12px;
    }

    .addon-item:hover {
        transform: none;
    }

    .addon-item__check {
        width: 22px;
        height: 22px;
        top: 6px;
        right: 6px;
    }

    .addon-item__check i {
        font-size: 10px;
    }

    .addon-item__name {
        font-size: 0.7rem;
        padding: 8px 6px;
    }

    .addon-item--no-image {
        padding: 10px 12px;
    }

    .addon-item--no-image .addon-item__check {
        width: 20px;
        height: 20px;
        min-width: 20px;
        margin-right: 8px;
    }

    .addon-item--no-image .addon-item__name {
        font-size: 0.8rem;
    }

    /* Product note */
    .product-note textarea {
        min-height: 60px;
        padding: 12px;
        font-size: 0.9rem;
    }

    /* Quantity selector */
    .quantity-selector {
        border-radius: 10px;
    }

    .quantity-btn {
        width: 44px;
        height: 48px;
    }

    .quantity-input {
        width: 55px;
        height: 48px;
        font-size: 1.1rem;
    }

    /* Add to cart */
    .add-to-cart-btn {
        min-height: 50px;
        font-size: 0.95rem;
    }
}

/* ========================================
   PRODUCT MAIN IMAGE - NO IMAGE VARIANT
   ======================================== */
.product-main-image--no-image {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 193, 7, 0.06));
    aspect-ratio: 3 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image__text {
    text-align: center;
    padding: 40px;
}

.product-main-image__text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.product-main-image__weight {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 20px;
    border-radius: 50px;
}


/* ./components/locations-page.css */
/* =====================================================
   LOCATIONS PAGE - Stilovi za stranicu lokacija
   ===================================================== */

/* ==========================================
   LOCATIONS HERO
   ========================================== */
.locations-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.locations-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,107,0,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,140,0,0.1) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.locations-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.locations-hero__content {
    position: relative;
    z-index: 1;
}

.locations-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(255,140,0,0.1));
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255,107,0,0.3);
    animation: fadeInUp 0.6s ease-out;
}

.locations-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.locations-hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* ==========================================
   LOCATIONS GRID
   ========================================== */
.locations-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   LOCATION CARD
   ========================================== */
.location-card {
    background: linear-gradient(145deg, #1a1a1a, #141414);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out both;
}

.location-card:nth-child(2) {
    animation-delay: 0.15s;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.4),
        0 0 40px rgba(255,107,0,0.1);
    border-color: rgba(255,107,0,0.3);
}

.location-card__map {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.location-card__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(30%) contrast(1.1);
    transition: filter 0.3s ease;
    pointer-events: none;
}

.location-card:hover .location-card__map iframe {
    filter: grayscale(0%) contrast(1);
}

.location-card__map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
    cursor: pointer;
}

.location-card__map-overlay i {
    font-size: 2.5rem;
}

.location-card__map-overlay span {
    font-weight: 600;
    font-size: 1.1rem;
}

.location-card__map:hover .location-card__map-overlay {
    opacity: 1;
}

.location-card__status {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

.location-card__status--open {
    background: rgba(16, 185, 129, 0.9);
    color: white;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.location-card__status--closed {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.location-card__body {
    padding: 32px;
}

.location-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.location-card__info {
    flex: 1;
}

.location-card__name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,140,0,0.1));
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.location-card__badges-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.location-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(255,193,7,0.2), rgba(255,193,7,0.1));
    color: #ffc107;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,193,7,0.3);
}

.location-card__rating:hover {
    background: linear-gradient(135deg, rgba(255,193,7,0.3), rgba(255,193,7,0.2));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,193,7,0.2);
}

.location-card__rating i {
    color: #ffc107;
}

.location-card__rating-value {
    font-weight: 700;
    color: #fff;
}

.location-card__rating-count {
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

.location-card__number {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(255,107,0,0.3);
}

.location-card__details {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

.location-card__detail {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.location-card__detail:hover {
    background: rgba(255,107,0,0.05);
    border-color: rgba(255,107,0,0.2);
}

.location-card__detail-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(255,140,0,0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
}

.location-card__detail-content {
    flex: 1;
}

.location-card__detail-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.location-card__detail-value {
    font-weight: 600;
    color: var(--text-primary);
}

.location-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.location-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.location-card__btn--primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(255,107,0,0.3);
}

.location-card__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,0,0.4);
}

.location-card__btn--secondary {
    background: rgba(255,255,255,0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.location-card__btn--secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
    color: var(--primary);
}

/* ==========================================
   DELIVERY INFO SECTION
   ========================================== */
.delivery-info {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.delivery-info::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,107,0,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.delivery-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.delivery-card:nth-child(1) { animation-delay: 0s; }
.delivery-card:nth-child(2) { animation-delay: 0.1s; }
.delivery-card:nth-child(3) { animation-delay: 0.2s; }

.delivery-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,107,0,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.delivery-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(255,140,0,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    position: relative;
}

.delivery-card__icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(255,107,0,0.3);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.delivery-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.delivery-card__text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.delivery-card__highlight {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 16px;
    background: var(--primary-gradient);
    border-radius: 50px;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
    .locations-grid {
        gap: 30px;
    }

    .locations-hero {
        min-height: 300px;
    }

    .locations-hero__title {
        font-size: 2.25rem;
    }

    .locations-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .locations-hero {
        min-height: 250px;
    }

    .locations-hero__content {
        padding: 0 20px;
    }

    .locations-hero__badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .locations-hero__title {
        font-size: 1.75rem;
    }

    .locations-hero__subtitle {
        font-size: 0.95rem;
    }

    .locations-section {
        padding: 50px 0;
    }

    .location-card {
        border-radius: 16px;
    }

    .location-card:hover {
        transform: none;
    }

    .location-card__map {
        height: 200px;
    }

    .location-card__body {
        padding: 20px;
    }

    .location-card__name {
        font-size: 1.3rem;
    }

    .location-card__badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .location-card__desc {
        font-size: 0.9rem;
    }

    .location-card__info-item {
        font-size: 0.9rem;
        padding: 10px 0;
    }

    .location-card__info-item i {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .location-card__actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .delivery-info {
        padding: 50px 0;
    }

    .delivery-info__title {
        font-size: 1.5rem;
    }

    .delivery-info__grid {
        gap: 20px;
    }

    .delivery-card {
        padding: 25px 20px;
    }

    .delivery-card__icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .delivery-card__title {
        font-size: 1rem;
    }

    .delivery-card__text {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .locations-hero {
        min-height: 200px;
    }

    .locations-hero__badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .locations-hero__title {
        font-size: 1.5rem;
    }

    .locations-hero__subtitle {
        font-size: 0.85rem;
    }

    .locations-section {
        padding: 40px 0;
    }

    .location-card__map {
        height: 180px;
    }

    .location-card__body {
        padding: 16px;
    }

    .location-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .location-card__name {
        font-size: 1.2rem;
    }

    .location-card__desc {
        font-size: 0.85rem;
    }

    .location-card__info-item {
        font-size: 0.85rem;
        padding: 8px 0;
    }

    .location-card__info-item i {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .delivery-info {
        padding: 40px 0;
    }

    .delivery-info__badge {
        font-size: 0.7rem;
    }

    .delivery-info__title {
        font-size: 1.3rem;
    }

    .delivery-card {
        padding: 20px 15px;
    }

    .delivery-card__icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .delivery-card__title {
        font-size: 0.95rem;
    }
}

@media (max-width: 375px) {
    .locations-hero__title {
        font-size: 1.35rem;
    }

    .location-card__name {
        font-size: 1.1rem;
    }

    .location-card__body {
        padding: 14px;
    }
}


/* ./components/auth.css */
/* =====================================================
   AUTH PAGES - Stilovi za stranice prijave i registracije
   ===================================================== */

/* ==========================================
   AUTH HERO
   ========================================== */
.auth-hero {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    padding-top: 100px;
    margin-top: 0;
}

.auth-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,107,0,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,140,0,0.1) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.auth-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.auth-hero__content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

.auth-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(255,140,0,0.1));
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,107,0,0.3);
    animation: fadeInUp 0.6s ease-out;
}

.auth-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 10px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.auth-hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* ==========================================
   AUTH SECTION & CONTAINER
   ========================================== */
.auth-section {
    padding: 40px 0 80px;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.auth-container-single {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

@media (max-width: 968px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .auth-image {
        display: none;
    }
}

/* ==========================================
   AUTH BOX
   ========================================== */
.auth-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    max-width: 480px;
    margin: 0 auto;
}

.auth-box--wide {
    max-width: 700px;
}

@media (min-width: 768px) {
    .auth-box--wide .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .auth-box--wide .form-row .form-group {
        margin-bottom: 0;
    }
}

.auth-box__header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-box__logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.auth-box__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-box__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.auth-box__subtitle {
    color: var(--text-secondary);
}

/* ==========================================
   AUTH FORM
   ========================================== */
.auth-form .form-group {
    margin-bottom: 20px;
}

.form-section {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.form-section__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section__title i {
    color: var(--primary);
}

.form-section__subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.input-wrapper {
    position: relative;
}

.input-wrapper .form-input {
    padding-left: 50px;
    padding-right: 50px;
}

.input-wrapper__icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.input-wrapper__toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s;
    background: transparent;
    border: none;
}

.input-wrapper__toggle:hover {
    color: var(--primary);
    background: rgba(255, 107, 0, 0.1);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.auth-form .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* ==========================================
   AUTH MESSAGES
   ========================================== */
.auth-error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.auth-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* ==========================================
   AUTH DIVIDER & LINKS
   ========================================== */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    padding: 0 15px;
}

.auth-links {
    text-align: center;
    margin-top: 24px;
    color: var(--text-secondary);
}

.auth-links a {
    color: var(--primary);
    font-weight: 500;
    transition: opacity 0.3s;
}

.auth-links a:hover {
    opacity: 0.8;
}

/* ==========================================
   AUTH IMAGE SIDE
   ========================================== */
.auth-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
}

.auth-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,107,0,0.3) 0%, transparent 60%);
    z-index: 1;
}

.auth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-image__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 2;
}

.auth-image__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.auth-image__text {
    color: var(--text-secondary);
}

/* ==========================================
   FORM ELEMENTS
   ========================================== */
.required {
    color: #ef4444;
    margin-left: 2px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.form-checkbox__box {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    background: var(--bg-secondary);
}

.form-checkbox__box i {
    font-size: 12px;
    color: white;
    opacity: 0;
    transition: opacity 0.2s;
}

.form-checkbox input:checked + .form-checkbox__box {
    background: var(--primary);
    border-color: var(--primary);
}

.form-checkbox input:checked + .form-checkbox__box i {
    opacity: 1;
}

.form-checkbox__text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-checkbox__text a {
    color: var(--primary);
    text-decoration: none;
}

.form-checkbox__text a:hover {
    text-decoration: underline;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
    .auth-page {
        padding: 80px 0 40px;
    }

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

    .auth-box {
        padding: 35px 25px;
    }

    .auth-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .auth-page {
        padding: 70px 0 30px;
    }

    .auth-box {
        padding: 30px 20px;
        border-radius: var(--radius-lg);
    }

    .auth-hero__badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        gap: 6px;
    }

    .auth-hero__badge i {
        font-size: 0.75rem;
    }

    .auth-hero__title {
        font-size: 1.75rem;
    }

    .auth-hero__subtitle {
        font-size: 0.9rem;
    }

    .auth-box__title {
        font-size: 1.25rem;
    }

    .auth-box__subtitle {
        font-size: 0.9rem;
    }

    .auth-tabs {
        gap: 5px;
    }

    .auth-tabs__btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}

@media (max-width: 576px) {
    .auth-page {
        padding: 60px 0 20px;
    }

    .auth-container {
        padding: 0 15px;
    }

    .auth-box {
        padding: 25px 15px;
        border-radius: var(--radius-md);
    }

    .auth-hero__title {
        font-size: 1.5rem;
    }

    .auth-hero__subtitle {
        font-size: 0.85rem;
    }

    .auth-box__title {
        font-size: 1.15rem;
    }

    .auth-tabs__btn {
        font-size: 0.85rem;
        padding: 10px 16px;
    }

    .auth-social {
        flex-direction: column;
    }

    .auth-social__btn {
        width: 100%;
        justify-content: center;
    }

    .auth-divider {
        margin: 20px 0;
    }

    .form-checkbox {
        gap: 10px;
    }

    .form-checkbox__box {
        width: 20px;
        height: 20px;
    }

    .form-checkbox__text {
        font-size: 0.85rem;
    }

    .auth-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 375px) {
    .auth-box {
        padding: 20px 12px;
    }

    .auth-hero__title {
        font-size: 1.35rem;
    }

    .auth-tabs__btn {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}


/* ./components/orders.css */
/**
 * Orders Page Styles
 * Client orders list and single order view
 */

/* ========================================
   ORDERS PAGE LAYOUT
   ======================================== */

.orders-page {
    padding: 50px 0;
    position: relative;
}

.orders-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ========================================
   ORDERS HERO
   ======================================== */

.orders-hero {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.orders-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,107,0,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,140,0,0.1) 0%, transparent 50%);
    animation: ordersHeroGlow 4s ease-in-out infinite alternate;
}

@keyframes ordersHeroGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.orders-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.orders-hero__content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

.orders-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(255,140,0,0.1));
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,107,0,0.3);
}

.orders-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.orders-hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    margin-bottom: 35px;
}

.page-header h1 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-display);
    font-weight: 700;
    flex-wrap: wrap;
}

.page-header h1 i {
    color: var(--primary);
}

/* ========================================
   ORDERS LIST
   ======================================== */

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ========================================
   ORDER CARD
   ======================================== */

.order-card {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.order-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.order-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 15px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
}

.order-card__info h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.order-card__meta {
    display: flex;
    gap: 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.order-card__body {
    padding: 22px 24px;
}

.order-card__items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.order-card__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.order-card__item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

.order-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: var(--bg-secondary);
}

.order-card__total {
    font-weight: 600;
}

.order-card__total span {
    color: var(--primary);
    font-size: 1.25rem;
}

/* ========================================
   ORDER STATUS BADGES
   ======================================== */

.order-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.order-status--pending {
    background: rgba(255,193,7,0.15);
    color: #ffc107;
}

.order-status--accepted {
    background: rgba(0,123,255,0.15);
    color: #007bff;
}

.order-status--preparing {
    background: rgba(255,107,0,0.15);
    color: var(--primary);
}

.order-status--ready {
    background: rgba(23,162,184,0.15);
    color: #17a2b8;
}

.order-status--picked_up {
    background: rgba(108,117,125,0.15);
    color: #6c757d;
}

.order-status--delivering {
    background: rgba(255,140,0,0.15);
    color: #ff8c00;
}

.order-status--delivered {
    background: rgba(40,167,69,0.15);
    color: #28a745;
}

.order-status--cancelled {
    background: rgba(220,53,69,0.15);
    color: #dc3545;
}

/* ========================================
   SINGLE ORDER VIEW
   ======================================== */

.order-detail {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

@media (max-width: 992px) {
    .order-detail {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ORDER SECTION (Card Component)
   ======================================== */

.order-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.order-section__header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.order-section__title {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-section__body {
    padding: 20px;
}

/* ========================================
   ORDER TIMELINE
   ======================================== */

.order-timeline {
    position: relative;
    padding-left: 30px;
}

.order-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 25px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item__dot {
    position: absolute;
    left: -25px;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.timeline-item--completed .timeline-item__dot {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.timeline-item--active .timeline-item__dot {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    animation: timelinePulse 2s infinite;
}

@keyframes timelinePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255,107,0,0); }
}

.timeline-item__content {
    margin-left: 10px;
}

.timeline-item__title {
    font-weight: 600;
    margin-bottom: 2px;
}

.timeline-item__time {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   ORDER ITEMS LIST
   ======================================== */

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.order-item__image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.order-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item__info {
    flex: 1;
}

.order-item__name {
    font-weight: 500;
    margin-bottom: 4px;
}

.order-item__qty {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.order-item__price {
    font-weight: 600;
    color: var(--primary);
}

/* ========================================
   INFO CARD
   ======================================== */

.info-card {
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.info-card:last-child {
    margin-bottom: 0;
}

.info-card__label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.info-card__value {
    font-weight: 500;
}

.info-card__value a {
    color: var(--primary);
}

/* ========================================
   EMPTY STATE
   ======================================== */

.empty-orders {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.empty-orders__icon {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.empty-orders__title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.empty-orders__text {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .orders-page {
        padding: 30px 0;
    }

    .orders-hero {
        min-height: 150px;
    }

    .orders-hero__content {
        padding: 30px 15px;
    }

    .orders-hero__badge {
        font-size: 0.8rem;
        padding: 8px 16px;
        gap: 8px;
    }

    .orders-hero__title {
        font-size: 1.5rem;
    }

    .orders-hero__subtitle {
        font-size: 0.95rem;
    }

    /* Orders Grid */
    .orders-grid {
        gap: 15px;
    }

    /* Order Card */
    .order-card {
        border-radius: var(--radius-md);
    }

    .order-card__header {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .order-card__id {
        font-size: 1rem;
    }

    .order-card__body {
        padding: 15px;
    }

    .order-card__footer {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }

    .order-card__total {
        font-size: 1.1rem;
        width: 100%;
    }

    .order-card__actions {
        width: 100%;
    }

    .order-card__actions .btn {
        flex: 1;
    }

    /* Order Detail */
    .order-section__header,
    .order-section__body {
        padding: 15px;
    }

    .order-section__title {
        font-size: 1rem;
    }

    /* Timeline */
    .order-timeline {
        padding-left: 25px;
    }

    .timeline-item__time {
        font-size: 0.75rem;
    }

    .timeline-item__content h4 {
        font-size: 0.9rem;
    }

    /* Order Item */
    .order-item {
        gap: 12px;
        padding: 10px;
    }

    .order-item__image {
        width: 50px;
        height: 50px;
    }

    .order-item__name {
        font-size: 0.9rem;
    }

    .order-item__qty {
        font-size: 0.8rem;
    }

    .order-item__price {
        font-size: 0.9rem;
    }

    /* Info Card */
    .info-card {
        padding: 12px;
        margin-bottom: 12px;
    }

    .info-card__label {
        font-size: 0.8rem;
    }

    .info-card__value {
        font-size: 0.9rem;
    }

    /* Empty State */
    .empty-orders {
        padding: 50px 20px;
    }

    .empty-orders__icon {
        font-size: 3rem;
    }

    .empty-orders__title {
        font-size: 1.25rem;
    }

    .empty-orders__text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .orders-page {
        padding: 20px 0;
    }

    .orders-hero {
        min-height: 120px;
    }

    .orders-hero__content {
        padding: 25px 15px;
    }

    .orders-hero__badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .orders-hero__title {
        font-size: 1.3rem;
    }

    .orders-hero__subtitle {
        font-size: 0.85rem;
    }

    /* Order Card */
    .order-card__header,
    .order-card__body,
    .order-card__footer {
        padding: 12px;
    }

    .order-card__meta {
        flex-direction: column;
        gap: 8px;
    }

    .order-card__total {
        font-size: 1rem;
    }

    /* Order Section */
    .order-section__header,
    .order-section__body {
        padding: 12px;
    }

    /* Timeline */
    .order-timeline {
        padding-left: 22px;
    }

    .timeline-item {
        padding-bottom: 20px;
    }

    /* Order Item */
    .order-item__image {
        width: 45px;
        height: 45px;
    }

    /* Empty State */
    .empty-orders {
        padding: 40px 15px;
    }

    .empty-orders__icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .empty-orders__title {
        font-size: 1.15rem;
    }

    .empty-orders__text {
        margin-bottom: 20px;
    }
}

@media (max-width: 375px) {
    .orders-hero__title {
        font-size: 1.2rem;
    }

    .order-card__id {
        font-size: 0.95rem;
    }

    .order-item__name {
        font-size: 0.85rem;
    }
}


/* ===== RESPONSIVE - Load Last for Override Priority ===== */

/* ./components/responsive-mobile.css */
/* =====================================================
   RESPONSIVE MOBILE - Comprehensive Mobile Optimizations
   Leskovački Kutak - 2025 Mobile-First Redesign
   ===================================================== */

/* =====================================================
   GLOBAL MOBILE IMPROVEMENTS
   ===================================================== */

/* Smoother touch interactions */
@media (max-width: 991px) {
    * {
        -webkit-tap-highlight-color: rgba(255, 107, 53, 0.15);
    }

    /* Prevent zoom on input focus */
    input, select, textarea {
        font-size: 16px !important;
    }

    /* Better scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* Improve readability */
    body {
        font-size: 16px;
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* CRITICAL: Prevent horizontal overflow */
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
    }

    /* Hide all horizontal scrollbars on mobile */
    *::-webkit-scrollbar:horizontal {
        display: none;
        height: 0;
    }

    /* Ensure sections don't overflow */
    section, .section, main, article, aside, footer, header {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Global text overflow prevention */
    h1, h2, h3, h4, h5, h6, p, span, a, li, td, th {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Ensure all icons are centered properly */
    i, .fa, .fas, .far, .fab, [class^="fa-"] {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        vertical-align: middle;
    }

    /* Prevent images from breaking layout */
    img {
        max-width: 100%;
        height: auto;
    }

    /* All flex icon containers should center */
    [class*="__icon"] {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    /* Hide ALL scrollbars on mobile for better UX */
    * {
        -ms-overflow-style: none;  /* IE and Edge */
    }

    *::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }
}

/* =====================================================
   CONTAINER & LAYOUT - Mobile Padding
   ===================================================== */
@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Prevent any element from causing horizontal scroll */
    section, div, article, aside, main {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Additional overflow prevention for common problem areas */
    .row, .grid, [class*="row"], [class*="grid"] {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    /* Force all fixed widths to be responsive */
    table {
        display: block;
        width: 100% !important;
        overflow-x: auto;
        -ms-overflow-style: none;
    }

    table::-webkit-scrollbar {
        display: none;
    }

    /* Ensure images don't break layout */
    img, video, iframe, canvas, svg {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* =====================================================
   HEADER - Mobile Enhancements
   ===================================================== */
@media (max-width: 991px) {
    .header {
        padding: 10px 0;
    }

    .header__container {
        padding: 0 12px;
    }

    .header__inner {
        gap: 12px;
    }

    .header__logo {
        gap: 8px;
    }

    .header__logo-img {
        width: 38px;
        height: 38px;
    }

    .header__logo-text {
        font-size: 1rem;
    }

    /* Mobile cart button - make larger touch target */
    .header__cart-btn {
        padding: 8px 12px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header__cart-btn i {
        font-size: 1.1rem;
    }

    .header__cart-count {
        top: -4px;
        right: -4px;
        min-width: 18px;
        height: 18px;
        font-size: 0.65rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile menu improvements */
    .header__nav {
        width: 80%;
        max-width: 300px;
    }

    .header__nav a {
        padding: 14px 18px;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .header__nav a i {
        width: 20px;
        text-align: center;
        color: var(--primary);
        font-size: 1rem;
    }

    .header__actions {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .header__logo-text {
        font-size: 0.9rem;
        max-width: 100px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header__logo-img {
        width: 34px;
        height: 34px;
    }

    .header__cart-btn {
        padding: 6px 10px;
        min-width: 40px;
        min-height: 40px;
    }

    .header__cart-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    .header__logo-text {
        display: none;
    }

    .header__logo-img {
        width: 36px;
        height: 36px;
    }
}

/* =====================================================
   HERO SECTION - Mobile Optimizations
   ===================================================== */
@media (max-width: 768px) {
    .hero {
        min-height: calc(100vh - 60px);
        min-height: calc(100dvh - 60px);
        padding-top: 70px;
        padding-bottom: 30px;
    }

    .hero__container {
        padding: 0 16px;
    }

    .hero__content {
        padding: 20px 0;
    }

    .hero__badge {
        padding: 10px 18px;
        font-size: 0.75rem;
        gap: 8px;
        margin-bottom: 20px;
    }

    .hero__badge i {
        font-size: 0.9rem;
    }

    .hero__title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 16px;
        line-height: 1.15;
    }

    .hero__text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 24px;
        opacity: 0.9;
    }

    .hero__buttons {
        gap: 12px;
        margin-bottom: 30px;
    }

    .hero__buttons .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .hero__buttons .btn i {
        font-size: 1rem;
    }

    .hero__stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero__stat {
        min-width: 80px;
        text-align: center;
    }

    .hero__stat-number {
        font-size: 1.6rem;
    }

    .hero__stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 70px;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__text {
        font-size: 0.95rem;
    }

    .hero__buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .hero__stats {
        gap: 16px;
    }

    .hero__stat-number {
        font-size: 1.4rem;
    }
}

/* =====================================================
   SECTIONS - Mobile Spacing
   ===================================================== */
@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 30px;
        padding: 0 8px;
    }

    .section-badge {
        padding: 8px 16px;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        gap: 10px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-top: 12px;
        padding: 0 8px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 24px;
    }

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

    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* =====================================================
   GRID SYSTEM - Mobile Improvements
   ===================================================== */
@media (max-width: 768px) {
    .grid--2,
    .grid--3,
    .grid--4,
    .grid--5,
    .grid--6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .grid--2,
    .grid--3,
    .grid--4,
    .grid--5,
    .grid--6 {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* For product grids - keep 2 columns on small mobile */
    .products-grid,
    .grid--products {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 375px) {
    .products-grid,
    .grid--products {
        gap: 10px;
    }
}

/* =====================================================
   PRODUCT CARDS - Mobile Horizontal Layout
   ===================================================== */
@media (max-width: 768px) {
    .product-card {
        border-radius: 16px;
        display: flex;
        flex-direction: row;
        height: auto;
    }

    .product-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .product-card__image {
        flex: 0 0 120px;
        width: 120px;
        height: auto;
        min-height: 120px;
        aspect-ratio: 1 / 1;
        padding-bottom: 0;
        border-radius: 16px 0 0 16px;
    }

    .product-card__image img {
        border-radius: 16px 0 0 16px;
        height: 100%;
        object-fit: cover;
    }

    .product-card__image::after {
        display: none;
    }

    .product-card__body {
        flex: 1;
        padding: 12px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-width: 0;
    }

    .product-card__badges {
        top: 8px;
        left: 8px;
        gap: 4px;
    }

    .product-card__badge {
        padding: 3px 8px;
        font-size: 0.6rem;
    }

    .product-card__meta {
        margin-bottom: 4px;
        gap: 8px;
    }

    .product-card__shop {
        font-size: 0.7rem;
    }

    .product-card__category {
        font-size: 0.65rem;
        display: none;
    }

    .product-card__weight {
        font-size: 0.6rem;
        padding: 2px 6px;
    }

    .product-card__name {
        font-size: 0.9rem;
        margin-bottom: 4px;
        -webkit-line-clamp: 2;
    }

    .product-card__desc {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
        margin-bottom: 8px;
        min-height: 0;
        display: -webkit-box;
        color: var(--text-muted);
    }

    .product-card__footer {
        padding-top: 8px;
        border-top: none;
        margin-top: auto;
    }

    .product-card__price {
        font-size: 1rem;
    }

    /* Add button on mobile */
    .product-card__add,
    .product-card__select-btn {
        min-width: 36px;
        min-height: 36px;
        padding: 8px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .product-card__image {
        flex: 0 0 100px;
        width: 100px;
        min-height: 100px;
    }

    .product-card__body {
        padding: 10px;
    }

    .product-card__name {
        font-size: 0.85rem;
    }

    .product-card__desc {
        font-size: 0.7rem;
        -webkit-line-clamp: 2;
    }

    .product-card__price {
        font-size: 0.95rem;
    }

    .product-card__select-btn {
        padding: 6px 12px;
        gap: 4px;
    }

    .product-card__select-btn span {
        display: none;
    }
}

@media (max-width: 375px) {
    .product-card {
        border-radius: 12px;
    }

    .product-card__body {
        padding: 10px;
    }

    .product-card__name {
        font-size: 0.8rem;
    }

    .product-card__price {
        font-size: 0.9rem;
    }
}

/* =====================================================
   ADDONS PANEL - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .product-card__addons-inner {
        padding: 14px;
    }

    .addon-category {
        margin-bottom: 14px;
    }

    .addon-category__title {
        font-size: 0.85rem;
    }

    .addon-items {
        gap: 6px;
    }

    .addon-item {
        padding: 8px 12px;
        gap: 6px;
        flex: 0 1 auto;
    }

    .addon-item__checkbox,
    .addon-item__radio {
        width: 16px;
        height: 16px;
    }

    .addon-item__name {
        font-size: 0.8rem;
    }

    .addon-item__price {
        font-size: 0.75rem;
    }

    /* Cart section in addons */
    .product-card__cart-section {
        flex-direction: column;
        gap: 10px;
        margin-top: 14px;
        padding-top: 14px;
    }

    .product-card__total-price {
        font-size: 1.1rem;
    }

    .product-card__add-btn {
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
    }
}

/* =====================================================
   MENU PAGE - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .menu-hero {
        min-height: 220px;
        padding-top: 70px;
    }

    .menu-hero__content {
        padding: 20px 16px;
    }

    .menu-hero__badge {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: 16px;
    }

    .menu-hero__title {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }

    .menu-hero__subtitle {
        font-size: 1rem;
        display: none;
    }

    /* Category Navigation - Horizontal scroll */
    .category-nav {
        top: 58px;
        padding: 10px 0;
        margin-bottom: 24px;
    }

    .category-nav__inner {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 8px;
        padding: 4px 12px;
        scroll-snap-type: x mandatory;
    }

    .category-pill {
        padding: 10px 14px;
        font-size: 0.8rem;
        gap: 6px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .category-pill i {
        font-size: 1rem;
    }

    /* Category sections */
    .category-section {
        margin-bottom: 40px;
        scroll-margin-top: 120px;
    }

    .category-section__header {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .category-section__icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .category-section__title {
        font-size: 1.3rem;
    }

    .category-section__count {
        margin-left: auto;
        font-size: 0.8rem;
        padding: 4px 10px;
    }

    /* Search bar */
    .search-bar {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .search-bar__input {
        min-width: 100%;
    }

    .search-bar__input input {
        padding: 12px 14px 12px 42px;
    }

    .search-bar__select {
        width: 100%;
    }

    .search-bar__select select {
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .menu-hero {
        min-height: 180px;
    }

    .menu-hero__title {
        font-size: 1.5rem;
    }

    .category-nav {
        top: 54px;
    }

    .category-pill {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .category-section__title {
        font-size: 1.15rem;
    }
}

/* =====================================================
   CART PAGE - Mobile
   ===================================================== */
@media (max-width: 992px) {
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .checkout-summary {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .cart-page {
        padding: 30px 0;
    }

    .cart-hero {
        min-height: 150px;
        padding-top: 70px;
    }

    .cart-hero__content {
        padding: 24px 16px;
    }

    .cart-hero__badge {
        padding: 6px 14px;
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .cart-hero__title {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }

    .cart-hero__subtitle {
        font-size: 0.95rem;
    }

    /* Cart sections */
    .cart-section {
        border-radius: 16px;
    }

    .cart-section__header {
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cart-section__title {
        font-size: 1.1rem;
    }

    .cart-section__body {
        padding: 16px;
    }

    /* Cart items */
    .cart-item {
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px 0;
    }

    .cart-item__image {
        width: 70px;
        height: 70px;
    }

    .cart-item__info {
        flex: 1;
        min-width: 0;
    }

    .cart-item__name {
        font-size: 0.95rem;
    }

    .cart-item__shop {
        font-size: 0.8rem;
    }

    .cart-item__addons span {
        padding: 3px 8px;
        font-size: 0.7rem;
    }

    .cart-item__actions {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px dashed rgba(255, 255, 255, 0.1);
    }

    .cart-item__price {
        font-size: 1rem;
    }

    /* Quantity control */
    .quantity-control button {
        width: 32px;
        height: 32px;
    }

    .quantity-control span {
        width: 36px;
        font-size: 0.9rem;
    }

    /* Checkout summary */
    .checkout-summary {
        border-radius: 16px;
    }

    .checkout-summary__header {
        padding: 18px 20px;
    }

    .checkout-summary__title {
        font-size: 1.15rem;
    }

    .checkout-summary__body {
        padding: 20px;
    }

    .summary-row {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .summary-row--total {
        font-size: 1.15rem;
        padding-top: 16px;
        margin-top: 16px;
    }

    .checkout-summary__footer {
        padding: 0 20px 20px;
    }

    .checkout-summary__btn {
        padding: 16px;
        font-size: 1rem;
    }

    /* Delivery type */
    .delivery-type-section {
        padding: 18px;
        margin-bottom: 18px;
    }

    .delivery-type-section h3 {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .delivery-type-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .delivery-type-option {
        padding: 14px 16px;
    }

    .delivery-type-option__icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .delivery-type-option__title {
        font-size: 0.95rem;
    }

    .delivery-type-option__desc {
        font-size: 0.8rem;
    }

    /* Shop selection */
    .shop-card {
        padding: 14px 16px;
        gap: 12px;
    }

    .shop-card__icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .shop-card__name {
        font-size: 1rem;
    }

    .shop-card__address {
        font-size: 0.85rem;
    }

    .shop-card__phone {
        font-size: 0.8rem;
    }

    /* Delivery time options */
    .delivery-time-options {
        grid-template-columns: 1fr;
    }

    .delivery-time-option {
        padding: 14px;
    }

    .delivery-time-option__icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    /* Empty cart */
    .cart-empty {
        padding: 40px 16px;
    }

    .cart-empty__icon {
        font-size: 4rem;
    }

    .cart-empty__title {
        font-size: 1.25rem;
    }

    .cart-empty__text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cart-hero__title {
        font-size: 1.3rem;
    }

    .cart-section__header {
        padding: 14px;
    }

    .cart-section__body {
        padding: 14px;
    }

    .cart-item__image {
        width: 60px;
        height: 60px;
    }

    .cart-item__name {
        font-size: 0.9rem;
    }
}

/* =====================================================
   FOOTER - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer__brand {
        align-items: center;
    }

    .footer__logo {
        justify-content: center;
    }

    .footer__description {
        max-width: 100%;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__column {
        align-items: center;
    }

    .footer__list {
        align-items: center;
    }

    .footer__link:hover {
        transform: none;
    }

    /* Footer bottom */
    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 0;
    }

    .footer__bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

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

    .footer__grid {
        gap: 1.5rem;
    }

    .footer__title {
        font-size: 1rem;
    }

    .footer__link {
        font-size: 0.9rem;
    }

    .footer__social-link {
        width: 40px;
        height: 40px;
    }
}

/* =====================================================
   BUTTONS - Mobile Touch Targets
   ===================================================== */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .btn--sm {
        min-height: 36px;
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .btn--lg {
        min-height: 50px;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .btn i {
        font-size: inherit;
    }
}

/* =====================================================
   FORMS - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 16px;
    }

    .form-label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 12px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 10px;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }
}

/* =====================================================
   MODALS - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .modal__content {
        width: 95%;
        max-width: 400px;
        max-height: 90vh;
        margin: auto;
        border-radius: 20px;
    }

    .modal__header {
        padding: 16px 20px;
    }

    .modal__title {
        font-size: 1.15rem;
    }

    .modal__body {
        padding: 16px 20px;
    }

    .modal__footer {
        padding: 16px 20px;
        gap: 10px;
    }

    .modal__footer .btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .modal__content {
        width: 100%;
        max-width: none;
        max-height: 100vh;
        border-radius: 0;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateY(0);
    }
}

/* =====================================================
   TOASTS - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .toast-container {
        left: 12px;
        right: 12px;
        bottom: 80px;
    }

    .toast {
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: 12px;
    }
}

/* =====================================================
   CTA SECTION - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .cta-section {
        padding: 50px 0;
    }

    .cta-content {
        padding: 30px 20px;
        text-align: center;
    }

    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .cta-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* =====================================================
   FEATURES SECTION - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .feature-card {
        padding: 24px 20px;
        text-align: center;
    }

    .feature-card__icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        margin: 0 auto 16px;
    }

    .feature-card__title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .feature-card__desc {
        font-size: 0.9rem;
    }
}

/* =====================================================
   APP PROMO SECTION - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .app-promo {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .app-promo__content {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .app-promo__content .section-badge {
        margin: 0 auto 16px;
    }

    .app-promo__visual {
        order: 2;
    }

    .app-promo__title {
        font-size: 1.5rem;
        text-align: center;
    }

    .app-promo__text {
        font-size: 0.95rem;
        text-align: center;
    }

    .app-promo__features {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        list-style: none;
    }

    .app-promo__features li {
        text-align: center;
        justify-content: center;
    }

    .app-promo__buttons {
        justify-content: center;
    }

    #installAppBtn {
        width: 100%;
        max-width: 280px;
    }
}

/* =====================================================
   LOCATIONS PAGE - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .location-card {
        padding: 20px;
    }

    .location-card__icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .location-card__name {
        font-size: 1.15rem;
    }

    .location-card__address {
        font-size: 0.9rem;
    }

    .location-card__hours {
        font-size: 0.85rem;
    }
}

/* =====================================================
   FEATURED PRODUCTS - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .featured-products {
        padding: 50px 0;
    }

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

@media (max-width: 480px) {
    .featured-products .grid--3 {
        gap: 12px;
    }
}

/* =====================================================
   CATEGORIES GRID - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        padding: 20px 16px;
    }

    .category-card__icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .category-card__name {
        font-size: 0.95rem;
    }

    .category-card__count {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        gap: 10px;
    }

    .category-card {
        padding: 16px 12px;
    }

    .category-card__icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .category-card__name {
        font-size: 0.85rem;
    }
}

/* =====================================================
   ORDERS PAGE - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .order-card {
        padding: 16px;
        border-radius: 14px;
    }

    .order-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .order-card__id {
        font-size: 0.9rem;
    }

    .order-card__status {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .order-card__items {
        font-size: 0.85rem;
    }

    .order-card__footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .order-card__total {
        font-size: 1.1rem;
    }

    .order-card__actions {
        display: flex;
        gap: 8px;
    }

    .order-card__actions .btn {
        flex: 1;
    }
}

/* =====================================================
   LANDSCAPE MODE OPTIMIZATIONS
   ===================================================== */
@media (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: 0;
        padding: 80px 0 40px;
    }

    .hero__title {
        font-size: 1.6rem;
    }

    .hero__text {
        display: none;
    }

    .hero__buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero__buttons .btn {
        width: auto;
        flex: 1;
        min-width: 150px;
    }

    .hero__stats {
        margin-top: 20px;
    }

    .section {
        padding: 30px 0;
    }

    .menu-hero {
        min-height: 120px;
    }

    .cart-hero {
        min-height: 100px;
    }
}

/* =====================================================
   SAFE AREAS FOR NOTCHED DEVICES
   ===================================================== */
@supports (padding: max(0px)) {
    .header {
        padding-top: max(12px, env(safe-area-inset-top));
    }

    .footer__bottom {
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }

    .modal__content {
        padding-bottom: max(16px, env(safe-area-inset-bottom));
    }

    .toast-container {
        bottom: max(80px, calc(env(safe-area-inset-bottom) + 60px));
    }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =====================================================
   HIGH CONTRAST MODE
   ===================================================== */
@media (prefers-contrast: high) {
    .product-card,
    .cart-section,
    .checkout-summary {
        border-width: 2px;
    }

    .btn {
        border-width: 2px;
    }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
    .header,
    .footer,
    .hero__buttons,
    .category-nav,
    .toast-container {
        display: none !important;
    }

    .hero {
        min-height: 0;
        padding: 20px 0;
    }

    .section {
        padding: 20px 0;
    }

    .product-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* =====================================================
   CART PAGE - Force no internal scroll (FINAL OVERRIDE)
   ===================================================== */
#cartItemsSection,
#cartItems,
.cart-section,
.cart-section__body,
.cart-main {
    overflow: visible !important;
    overflow-y: visible !important;
    max-height: none !important;
    height: auto !important;
}
/* =====================================================
   AUTH PAGES - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .auth-hero {
        min-height: 150px;
        padding-top: 80px;
    }

    .auth-hero__content {
        padding: 24px 16px;
    }

    .auth-hero__badge {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: 14px;
    }

    .auth-hero__title {
        font-size: 1.5rem;
    }

    .auth-hero__subtitle {
        font-size: 0.95rem;
    }

    .auth-section {
        padding: 30px 0 50px;
    }

    .auth-box {
        padding: 24px 20px;
        border-radius: 16px;
        margin: 0 auto;
        max-width: 100%;
    }

    .auth-box__header {
        margin-bottom: 24px;
    }

    .auth-box__logo {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .auth-box__title {
        font-size: 1.4rem;
    }

    .auth-box__subtitle {
        font-size: 0.9rem;
    }

    .auth-form .form-group {
        margin-bottom: 16px;
    }

    .auth-form .btn {
        width: 100%;
        padding: 14px;
    }

    .auth-divider {
        margin: 20px 0;
    }

    .social-login {
        flex-direction: column;
        gap: 10px;
    }

    .social-login .btn {
        width: 100%;
    }

    .auth-footer {
        margin-top: 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .auth-box {
        padding: 20px 16px;
    }

    .auth-box__title {
        font-size: 1.25rem;
    }
}

/* =====================================================
   ORDERS PAGES - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .orders-hero {
        min-height: 150px;
        padding-top: 70px;
    }

    .orders-hero__content {
        padding: 24px 16px;
    }

    .orders-hero__badge {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: 14px;
    }

    .orders-hero__title {
        font-size: 1.5rem;
    }

    .orders-hero__subtitle {
        font-size: 0.95rem;
    }

    .orders-page {
        padding: 30px 0;
    }

    .page-header {
        margin-bottom: 24px;
    }

    .page-header h1 {
        font-size: 1.3rem;
        gap: 10px;
    }

    .orders-list {
        gap: 14px;
    }

    .order-card {
        border-radius: 14px;
    }

    .order-card:hover {
        transform: none;
    }

    .order-card__header {
        padding: 16px;
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .order-card__info h3 {
        font-size: 1rem;
    }

    .order-card__meta {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 0.8rem;
    }

    .order-card__body {
        padding: 16px;
    }

    .order-card__items {
        gap: 8px;
        margin-bottom: 14px;
    }

    .order-card__item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .order-card__footer {
        padding: 14px 16px;
        flex-direction: column;
        gap: 12px;
    }

    .order-card__total {
        font-size: 1.1rem;
    }

    .order-card__actions {
        width: 100%;
        display: flex;
        gap: 10px;
    }

    .order-card__actions .btn {
        flex: 1;
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    /* Order Status Badge */
    .order-status {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    /* Order Detail Page */
    .order-detail {
        padding: 20px;
    }

    .order-detail__header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .order-detail__items {
        gap: 12px;
    }

    .order-detail__item {
        padding: 14px;
        gap: 12px;
    }

    .order-detail__item-image {
        width: 60px;
        height: 60px;
    }

    .order-detail__item-name {
        font-size: 0.95rem;
    }

    .order-detail__summary {
        padding: 16px;
    }

    /* Track Order */
    .order-track {
        padding: 16px;
    }

    .order-track__step {
        padding-left: 40px;
        padding-bottom: 24px;
    }

    .order-track__step::before {
        left: 12px;
        width: 24px;
        height: 24px;
    }

    .order-track__step-title {
        font-size: 0.95rem;
    }

    .order-track__step-time {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .orders-hero__title {
        font-size: 1.3rem;
    }

    .order-card__header {
        padding: 14px;
    }

    .order-card__body {
        padding: 14px;
    }
}

/* =====================================================
   PROFILE PAGE - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .profile-section {
        padding: 30px 0;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .profile-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .profile-info h2 {
        font-size: 1.3rem;
    }

    .profile-info p {
        font-size: 0.9rem;
    }

    .profile-stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .profile-stat {
        min-width: 80px;
        text-align: center;
    }

    .profile-tabs {
        overflow-x: auto;


        -ms-overflow-style: none;
    }

    .profile-tabs::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .profile-tab {
        padding: 12px 16px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .profile-card {
        padding: 20px;
        border-radius: 14px;
    }

    .profile-card__title {
        font-size: 1.1rem;
    }

    /* Addresses */
    .address-list {
        gap: 12px;
    }

    .address-item {
        padding: 14px;
    }

    .address-item__actions {
        flex-direction: row;
        gap: 8px;
    }

    .address-item__actions .btn {
        flex: 1;
        padding: 8px;
        font-size: 0.8rem;
    }
}

/* =====================================================
   SINGLE PRODUCT PAGE - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .product-page {
        padding: 30px 0;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-gallery {
        max-width: 100%;
    }

    .product-gallery__main {
        aspect-ratio: 4 / 3;
        border-radius: 16px;
    }

    .product-gallery__thumbs {
        gap: 8px;
    }

    .product-gallery__thumb {
        width: 60px;
        height: 60px;
    }

    .product-info {
        padding: 0;
    }

    .product-info__category {
        font-size: 0.8rem;
    }

    .product-info__name {
        font-size: 1.5rem;
    }

    .product-info__price {
        font-size: 1.8rem;
    }

    .product-info__desc {
        font-size: 0.95rem;
    }

    /* Addon Selection */
    .product-addons {
        margin-top: 20px;
    }

    .addon-group {
        margin-bottom: 20px;
    }

    .addon-group__title {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .addon-options {
        gap: 8px;
    }

    .addon-option {
        padding: 10px 14px;
    }

    .addon-option__name {
        font-size: 0.85rem;
    }

    .addon-option__price {
        font-size: 0.8rem;
    }

    /* Add to Cart Section */
    .product-actions {
        position: sticky;
        bottom: 0;
        background: var(--bg-dark);
        padding: 16px;
        margin: 0 -16px -30px;
        border-top: 1px solid var(--border-color);
        z-index: 10;
    }

    .product-actions__quantity {
        margin-bottom: 12px;
    }

    .product-actions__btn {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .product-info__name {
        font-size: 1.3rem;
    }

    .product-info__price {
        font-size: 1.5rem;
    }
}

/* =====================================================
   LOCATIONS PAGE - Mobile
   ===================================================== */
@media (max-width: 768px) {
    .locations-hero {
        min-height: 250px;
        padding-top: 70px;
    }

    .locations-hero__content {
        padding: 24px 16px;
    }

    .locations-hero__badge {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: 16px;
    }

    .locations-hero__title {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }

    .locations-hero__subtitle {
        font-size: 1rem;
    }

    .locations-section {
        padding: 50px 0;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .location-card {
        border-radius: 18px;
    }

    .location-card:hover {
        transform: none;
    }

    .location-card__map {
        height: 200px;
    }

    .location-card__status {
        top: 12px;
        right: 12px;
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .location-card__content {
        padding: 20px;
    }

    .location-card__header {
        margin-bottom: 16px;
    }

    .location-card__icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .location-card__name {
        font-size: 1.25rem;
    }

    .location-card__badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .location-card__info {
        gap: 12px;
    }

    .location-card__info-item {
        font-size: 0.9rem;
    }

    .location-card__info-item i {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .location-card__hours {
        padding: 14px;
    }

    .location-card__hours-title {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .location-card__hours-row {
        font-size: 0.85rem;
    }

    .location-card__actions {
        flex-direction: column;
        gap: 10px;
    }

    .location-card__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .locations-hero {
        min-height: 200px;
    }

    .locations-hero__title {
        font-size: 1.5rem;
    }

    .location-card__content {
        padding: 16px;
    }

    .location-card__icon {
        width: 44px;
        height: 44px;
    }

    .location-card__name {
        font-size: 1.15rem;
    }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
    .header,
    .footer,
    .hero__buttons,
    .category-nav,
    .toast-container {
        display: none !important;
    }

    .hero {
        min-height: 0;
        padding: 20px 0;
    }

    .section {
        padding: 20px 0;
    }

    .product-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}


/* Vizuelni identitet učitava se poslednji. */

/* ./components/brand.css */
/* Leskovački Kutak — javni interfejs */

:root {
    --font-display: 'Fjalla One', 'Arial Narrow', sans-serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    --font-accent: 'Source Sans 3', 'Segoe UI', sans-serif;

    --primary: #b62b21;
    --primary-light: #d94a3c;
    --primary-dark: #7f1d18;
    --primary-gradient: linear-gradient(135deg, #c83227 0%, #a51f18 100%);
    --primary-gradient-hover: linear-gradient(135deg, #d23a2e 0%, #8f1b15 100%);
    --secondary: #e4ad2f;
    --secondary-light: #f1ca6a;
    --secondary-dark: #a8700e;
    --accent-gold: #c58b1a;
    --accent-amber: #d89420;
    --accent-ember: #b62b21;

    --paper: #f5ede0;
    --paper-light: #fffaf2;
    --paper-deep: #eadcca;
    --charcoal: #241d19;
    --charcoal-soft: #342823;
    --ink: #241d19;
    --ink-soft: #5f5148;

    --bg-dark: var(--paper);
    --bg-darker: var(--paper-deep);
    --bg-primary: var(--paper);
    --bg-secondary: var(--paper-light);
    --bg-tertiary: #ecdfcf;
    --bg-card: rgba(255, 250, 242, 0.96);
    --bg-card-solid: var(--paper-light);
    --bg-card-hover: #ffffff;
    --bg-input: #fffdf8;
    --bg-modal: rgba(36, 29, 25, 0.94);

    --gradient-body: linear-gradient(180deg, var(--paper-light), var(--paper));
    --gradient-dark: linear-gradient(140deg, #2c221e 0%, #181310 100%);
    --gradient-card: linear-gradient(145deg, #fffdf8 0%, #f5ecde 100%);
    --gradient-glass: linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,250,242,.72));
    --glass-bg: rgba(255, 250, 242, 0.82);
    --glass-border: rgba(78, 55, 40, 0.18);
    --glass-shine: none;

    --text-primary: var(--ink);
    --text-secondary: #574a42;
    --text-muted: #716158;
    --text-dark: var(--ink);
    --border-color: #d8c8b6;
    --border-light: #e9ddcf;
    --border-glow: rgba(182, 43, 33, 0.42);

    --shadow-sm: 0 2px 8px rgba(66, 45, 31, 0.08);
    --shadow-md: 0 12px 28px rgba(66, 45, 31, 0.11);
    --shadow-lg: 0 24px 55px rgba(66, 45, 31, 0.15);
    --shadow-xl: 0 34px 70px rgba(36, 29, 25, 0.2);
    --shadow-glow: 0 12px 35px rgba(182, 43, 33, 0.22);
    --shadow-glow-lg: 0 18px 55px rgba(182, 43, 33, 0.18);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 18px;
    --radius-2xl: 26px;
    --container-width: 1260px;
    --container-padding: clamp(1rem, 3vw, 2rem);
    --header-height: 78px;
}

html {
    scroll-padding-top: calc(var(--header-height) + 28px);
    background: var(--paper);
}

body {
    color: var(--ink);
    background:
        radial-gradient(circle at 9% 9%, rgba(228, 173, 47, .12), transparent 22rem),
        linear-gradient(180deg, var(--paper-light), var(--paper));
    overflow-x: clip;
}

body::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(95, 68, 48, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(95, 68, 48, .035) 1px, transparent 1px);
    background-size: 34px 34px;
}

body::after {
    display: none;
}

::selection {
    color: #fff;
    background: var(--primary);
}

:focus-visible {
    outline: 3px solid #8f2019;
    outline-offset: 3px;
}

a,
button,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ink);
    letter-spacing: .005em;
}

h1,
h2,
.section-title,
.categories-header__content h2,
.app-promo__title {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.02;
}

p {
    color: var(--text-secondary);
}

a {
    transition: color .18s ease;
}

img {
    color: transparent;
}

input,
textarea,
select {
    accent-color: var(--primary);
}

input::placeholder,
textarea::placeholder {
    color: #796a61;
    opacity: 1;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-text-fill-color: var(--ink);
    -webkit-box-shadow: 0 0 0 1000px #fffdf8 inset;
}

::-webkit-scrollbar-track {
    background: var(--paper-deep);
}

::-webkit-scrollbar-thumb {
    background: #9e8a7a;
    border: 2px solid var(--paper-deep);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.container {
    width: min(100%, var(--container-width));
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 12px;
    z-index: 1300;
    padding: 11px 16px;
    color: #fff;
    background: var(--charcoal);
    border: 2px solid var(--secondary);
    transform: translateY(-160%);
    transition: transform .18s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1200;
    height: 4px;
    transform: scaleX(var(--page-progress, 0));
    transform-origin: left;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    pointer-events: none;
}

.back-to-top {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 260;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #fff;
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .18s ease, transform .18s ease, background-color .18s ease, visibility .18s;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    color: #fff;
    background: var(--primary);
}

/* Zaglavlje */
.header,
.header.header--scrolled {
    min-height: var(--header-height);
    padding: 9px 0 !important;
    background: rgba(255, 250, 242, .94) !important;
    border-bottom: 1px solid rgba(102, 73, 52, .18);
    box-shadow: 0 7px 24px rgba(52, 35, 24, .07) !important;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transition: padding .18s ease, box-shadow .18s ease;
}

.header__inner {
    min-height: 58px;
    gap: clamp(1rem, 2vw, 2rem);
}

.header__logo {
    gap: 10px;
    color: var(--ink);
}

.header__logo-img {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 5px 8px rgba(69, 43, 26, .18));
}

.header__logo:hover .header__logo-img {
    transform: rotate(-3deg) scale(1.03);
    filter: drop-shadow(0 6px 10px rgba(117, 36, 25, .22));
}

.header__logo-text {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.header__logo-text strong,
.text-gradient,
.text-gradient-static {
    color: var(--primary);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.header__nav {
    gap: 2px;
}

.header__nav a {
    position: relative;
    min-height: 44px;
    padding: 11px 10px;
    color: #493c34;
    border-radius: 4px;
    font-size: .94rem;
    font-weight: 650;
    transition: color .18s ease, background-color .18s ease;
}

.header__nav a::after {
    content: '';
    position: absolute;
    right: 10px;
    bottom: 5px;
    left: 10px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease;
}

.header__nav a:hover,
.header__nav a.active,
.header__nav a[aria-current='page'] {
    color: var(--primary-dark);
    background: rgba(182, 43, 33, .06);
}

.header__nav a:hover::after,
.header__nav a.active::after,
.header__nav a[aria-current='page']::after {
    transform: scaleX(1);
}

.header__nav-app {
    color: var(--primary-dark) !important;
    border: 1px solid rgba(182, 43, 33, .28);
}

.header__actions {
    gap: 8px;
}

.header__actions .btn,
.header__menu-toggle {
    min-width: 46px;
    min-height: 46px;
}

.header__actions .btn--ghost,
.header__actions .btn--outline {
    color: var(--ink);
    background: transparent;
    border-color: #cdbba8;
}

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

.header__cart-count {
    color: #fff;
    background: var(--primary);
}

.header__menu-toggle span {
    background: var(--ink);
}

.nav-overlay {
    background: rgba(28, 20, 16, .58);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

/* Dugmad i forme */
.btn,
.product-card__add-btn,
.product-card__toggle-btn,
.location-card__btn,
.add-to-cart-btn,
.auth-submit {
    min-height: 46px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: .01em;
    box-shadow: none;
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.btn--primary,
.product-card__add-btn,
.product-card__toggle-btn,
.location-card__btn--primary,
.add-to-cart-btn,
.auth-submit {
    color: #fff !important;
    background: var(--primary-gradient) !important;
    border: 1px solid var(--primary-dark);
    box-shadow: 0 9px 22px rgba(126, 29, 24, .18);
}

.btn--primary:hover,
.product-card__add-btn:hover,
.product-card__toggle-btn:hover,
.location-card__btn--primary:hover,
.add-to-cart-btn:hover,
.auth-submit:hover {
    color: #fff;
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 12px 28px rgba(126, 29, 24, .23);
    transform: translateY(-2px);
}

.btn--outline,
.btn--ghost,
.btn--glass,
.location-card__btn--secondary {
    color: var(--ink);
    background: transparent;
    border: 1px solid #9f8876;
}

.btn--outline:hover,
.btn--ghost:hover,
.btn--glass:hover,
.location-card__btn--secondary:hover {
    color: #fff;
    background: var(--charcoal);
    border-color: var(--charcoal);
    transform: translateY(-2px);
}

.form-input,
.form-control,
.search-bar input,
.search-bar select,
.product-note textarea,
.quantity-input,
.kg-input,
input[type='text'],
input[type='email'],
input[type='tel'],
input[type='password'],
input[type='search'],
input[type='number'],
textarea,
select {
    color: var(--ink);
    background: #fffdf8;
    border-color: #bca896;
    border-radius: 6px;
}

.form-input:hover,
.form-control:hover,
input:hover,
textarea:hover,
select:hover {
    border-color: #8e7766;
}

.form-input:focus,
.form-control:focus,
input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(182, 43, 33, .14);
}

.form-label,
.form-group label,
.product-note label {
    color: var(--ink);
    font-weight: 700;
}

/* Zajednički ritam sekcija */
.section,
.seo-section,
.contact-section,
.locations-section,
.delivery-info,
.related-products {
    position: relative;
    padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.section-header,
.categories-header__content,
.seo-section__header {
    position: relative;
}

.section-header::before,
.categories-header__content::before,
.seo-section__header::before {
    content: '';
    display: block;
    width: 52px;
    height: 4px;
    margin: 0 auto 20px;
    background: linear-gradient(90deg, var(--primary) 0 72%, var(--secondary) 72%);
}

.categories-header__content::before {
    margin-inline: 0;
}

.section-title,
.categories-header__content h2,
.seo-section__title {
    color: var(--ink);
    font-size: clamp(2.35rem, 5vw, 4.6rem);
    letter-spacing: .015em;
}

.section-subtitle,
.categories-header__content p,
.seo-section__text {
    max-width: 680px;
    margin-inline: auto;
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.7vw, 1.17rem);
}

.section-badge,
.hero__badge,
.menu-hero__badge,
.locations-hero__badge,
.auth-hero__badge,
.seo-hero__badge,
.product-category {
    color: var(--primary-dark);
    background: rgba(228, 173, 47, .17);
    border: 1px solid rgba(156, 104, 10, .35);
    border-radius: 4px;
    font-size: .76rem;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
    box-shadow: none;
}

.bg-dark {
    color: #fff8ec;
    background:
        radial-gradient(circle at 90% 10%, rgba(182, 43, 33, .23), transparent 26rem),
        var(--charcoal) !important;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark p,
.bg-dark li,
.bg-dark .section-title,
.bg-dark .section-subtitle {
    color: #fff8ec;
}

/* Glavni hero */
.hero {
    min-height: min(860px, 100svh);
    padding-top: var(--header-height);
    color: #fff8ec;
    background: var(--charcoal);
    isolation: isolate;
}

.hero__bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
    filter: saturate(.92) contrast(1.03);
}

.hero__overlay {
    background:
        linear-gradient(90deg, rgba(26, 18, 14, .97) 0%, rgba(31, 20, 15, .88) 38%, rgba(35, 22, 16, .36) 72%, rgba(22, 15, 12, .23) 100%),
        linear-gradient(0deg, rgba(25, 17, 13, .7), transparent 46%);
}

.hero::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: 5;
    height: clamp(28px, 4.5vw, 66px);
    background: var(--paper);
    clip-path: polygon(0 68%, 14% 36%, 29% 63%, 47% 24%, 65% 61%, 82% 30%, 100% 56%, 100% 100%, 0 100%);
    pointer-events: none;
}

.hero__container {
    min-height: calc(min(860px, 100svh) - var(--header-height));
    display: flex;
    align-items: center;
    padding-block: 5rem 7rem;
}

.hero__content {
    width: min(690px, 100%);
    padding: 0;
    animation: none;
}

.hero__badge {
    color: #fff6e7;
    background: rgba(174, 42, 31, .76);
    border-color: rgba(255, 235, 205, .35);
}

.hero__title,
.hero__title span {
    color: #fff8ec;
    font-family: var(--font-display);
    font-size: clamp(3.6rem, 7.2vw, 7rem);
    font-weight: 400;
    line-height: .96;
    letter-spacing: .015em;
    text-transform: uppercase;
    text-wrap: balance;
    text-shadow: 0 8px 32px rgba(0,0,0,.28);
}

.hero__title .text-gradient {
    color: #f3c555;
    background: none;
    -webkit-text-fill-color: currentColor;
    animation: none;
}

.hero__text {
    max-width: 610px;
    color: #f5e9da;
    font-size: clamp(1.05rem, 1.65vw, 1.25rem);
    line-height: 1.65;
}

.hero .btn--outline {
    color: #fff8ec;
    border-color: rgba(255,248,236,.66);
}

.hero .btn--outline:hover {
    color: var(--ink);
    background: #fff8ec;
}

.hero__scroll {
    color: rgba(255,248,236,.8);
}

/* Početna */
.stats-banner {
    position: relative;
    z-index: 6;
    margin-top: -1px;
    padding: 34px 0 42px;
    color: var(--ink);
    background: var(--paper);
    border: 0;
}

.stats-banner::before {
    opacity: .08;
}

.stats-banner__grid {
    width: min(760px, 100%);
    margin-inline: auto;
    border-top: 1px solid #cdb9a4;
    border-bottom: 1px solid #cdb9a4;
}

.stats-banner__item {
    position: relative;
    padding: 22px 16px;
}

.stats-banner__item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24%;
    right: 0;
    width: 1px;
    height: 52%;
    background: #cdb9a4;
}

.stats-banner__number {
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 400;
}

.stats-banner__label {
    color: var(--ink-soft);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.locations-section {
    background:
        linear-gradient(150deg, rgba(228,173,47,.11), transparent 38%),
        var(--paper-light);
}

.categories-section {
    background:
        radial-gradient(circle at 95% 15%, rgba(182,43,33,.1), transparent 24rem),
        linear-gradient(180deg, var(--paper) 0%, #eadbc8 100%);
}

.categories-section::before {
    opacity: .22;
}

.categories-grid {
    gap: 18px;
}

.category-card {
    min-height: 238px;
    color: var(--ink);
    background: rgba(255,250,242,.88);
    border: 1px solid #cdb9a4;
    border-radius: 10px 10px 28px 10px;
    box-shadow: 0 10px 22px rgba(67,45,29,.07);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.category-card::before {
    right: auto;
    width: 5px;
    height: 100%;
    background: linear-gradient(var(--primary), var(--secondary));
    opacity: 1;
}

.category-card::after {
    display: none;
}

.category-card:hover,
.category-card:focus-visible {
    color: var(--ink);
    border-color: rgba(182,43,33,.55);
    box-shadow: 0 18px 34px rgba(67,45,29,.13);
    transform: translateY(-5px);
}

.category-card__icon {
    color: #fff;
    background: var(--primary);
    border: 0;
    border-radius: 50% 50% 50% 14px;
    box-shadow: 0 10px 22px rgba(126,29,24,.18);
}

.category-card:hover .category-card__icon {
    background: var(--primary-dark);
    box-shadow: 0 12px 26px rgba(126,29,24,.22);
    transform: rotate(-3deg) scale(1.04);
}

.category-card__title,
.categories-header__content h2,
.categories-header__content p {
    color: var(--ink);
    -webkit-text-fill-color: currentColor;
}

.category-card:hover .category-card__title,
.category-card:focus-visible .category-card__title,
.category-card__title {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase;
}

.category-card__count,
.category-card__description {
    color: var(--ink-soft);
}

.category-card__arrow {
    opacity: 1;
    transform: none;
    color: var(--primary-dark);
    background: transparent;
    border-color: #bda793;
}

.category-card:hover .category-card__arrow {
    color: #fff;
    background: var(--primary);
}

.featured-products-section {
    background: var(--paper-light);
}

.featured-products-grid,
.products-grid,
.related-grid,
.seo-products-grid {
    gap: clamp(16px, 2.2vw, 28px);
}

.featured-product-card,
.product-card,
.seo-product-card {
    color: var(--ink);
    background: #fffdf8;
    border: 1px solid #d4c1ad;
    border-radius: 8px 8px 22px 8px;
    box-shadow: 0 10px 26px rgba(66,45,31,.09);
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.featured-product-card:hover,
.product-card:hover,
.seo-product-card:hover {
    color: var(--ink);
    border-color: rgba(182,43,33,.55);
    box-shadow: 0 18px 38px rgba(66,45,31,.14);
    transform: translateY(-5px);
}

.featured-product-card__image,
.product-card__image,
.seo-product-card__image {
    background: #e9ddce;
    overflow: hidden;
}

.featured-product-card__image img,
.product-card__image img,
.seo-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.featured-product-card:hover img,
.product-card:hover .product-card__image img,
.seo-product-card:hover img {
    transform: scale(1.035);
}

.featured-product-card__overlay {
    background: linear-gradient(0deg, rgba(36,29,25,.72), transparent 64%);
}

.featured-product-card__content,
.product-card__body,
.seo-product-card__body {
    color: var(--ink);
    background: #fffdf8;
}

.featured-product-card__title,
.product-card__name,
.seo-product-card__title {
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
}

.featured-product-card__category,
.product-card__category,
.seo-product-card__weight,
.featured-product-card__weight,
.product-card__desc,
.featured-product-card__desc,
.seo-product-card__desc {
    color: var(--ink-soft);
}

.featured-product-card__price,
.product-card__price,
.seo-product-card__price {
    color: var(--primary-dark);
    background: none;
    -webkit-text-fill-color: currentColor;
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: .02em;
}

.featured-product-card__badge,
.product-card__badge,
.product-featured-badge,
.product-discount-badge {
    color: #fff;
    background: var(--primary);
    border-radius: 4px;
    box-shadow: none;
}

.features-section {
    color: #fff8ec;
    background:
        linear-gradient(110deg, rgba(182,43,33,.24), transparent 42%),
        var(--charcoal);
}

.features-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: max(2rem, calc((100vw - var(--container-width)) / 2));
    width: 1px;
    height: 100%;
    background: rgba(255,248,236,.14);
}

.features-section .section-title,
.features-section .section-subtitle {
    color: #fff8ec;
}

.features-section .section-header::before {
    background: linear-gradient(90deg, var(--secondary) 0 72%, #fff8ec 72%);
}

.feature-card {
    position: relative;
    color: #fff8ec;
    background: rgba(255,248,236,.055);
    border: 1px solid rgba(255,248,236,.17);
    border-radius: 6px 6px 20px 6px;
    box-shadow: none;
    overflow: hidden;
}

.feature-card:hover {
    background: rgba(255,248,236,.09);
    border-color: rgba(228,173,47,.65);
    transform: translateY(-4px);
}

.feature-card__number {
    color: rgba(255,248,236,.13);
    font-family: var(--font-display);
    font-weight: 400;
}

.feature-card__icon {
    color: var(--charcoal);
    background: var(--secondary);
    border-radius: 50% 50% 50% 12px;
    box-shadow: none;
}

.feature-card__title,
.feature-card__text {
    color: #fff8ec;
}

.app-promo-section {
    background:
        radial-gradient(circle at 12% 90%, rgba(228,173,47,.14), transparent 25rem),
        var(--paper);
}

.app-promo {
    color: #fff8ec;
    background:
        radial-gradient(circle at 90% 20%, rgba(228,173,47,.18), transparent 24rem),
        var(--primary-dark);
    border: 0;
    border-radius: 10px 10px 34px 10px;
    box-shadow: 0 28px 62px rgba(83,25,20,.2);
}

.app-promo__title,
.app-promo__text,
.app-promo__features li {
    color: #fff8ec;
}

.app-promo .section-badge {
    color: #fff8ec;
    background: rgba(255,255,255,.11);
    border-color: rgba(255,255,255,.28);
}

.app-promo .btn--primary {
    color: var(--charcoal);
    background: var(--secondary) !important;
    border-color: #f0cb70;
}

.app-promo .btn--glass {
    color: #fff8ec;
    border-color: rgba(255,248,236,.55);
}

.app-promo__phone {
    background: #17110f;
    border-color: rgba(255,248,236,.38);
    box-shadow: 0 25px 55px rgba(28,13,10,.34);
}

.cta-section {
    background:
        linear-gradient(100deg, rgba(0,0,0,.2), transparent 55%),
        var(--primary);
}

.cta-content {
    border-radius: 0;
}

.cta-content h2,
.cta-content p,
.cta-content .text-gradient {
    color: #fff8ec;
}

.cta-content .btn--primary {
    /* .btn--primary iznad forsira #fff sa !important, pa je zlatno dugme
       ostajalo na 2:1. Tamni ink je i bio predviden za ovu povrsinu. */
    color: var(--ink) !important;
    background: var(--secondary) !important;
    border-color: var(--secondary-light);
}

.cta-content .btn--outline {
    color: #fff8ec;
    border-color: rgba(255,248,236,.72);
}

.cta-content .btn--outline:hover {
    color: var(--ink);
    background: #fff8ec;
}

/* Jelovnik i proizvod */
.menu-hero,
.locations-hero,
.auth-hero {
    min-height: 360px;
    padding: calc(var(--header-height) + 78px) var(--container-padding) 78px;
    color: #fff8ec;
    background:
        radial-gradient(circle at 80% 30%, rgba(228,173,47,.2), transparent 21rem),
        linear-gradient(125deg, #3a211a 0%, var(--charcoal) 58%, #17110f 100%);
}

.menu-hero::before,
.locations-hero::before,
.auth-hero::before {
    opacity: .25;
}

.menu-hero::after,
.locations-hero::after,
.auth-hero::after {
    height: 18px;
    background: var(--paper);
    clip-path: polygon(0 58%, 4% 24%, 9% 62%, 14% 32%, 20% 68%, 26% 28%, 33% 60%, 40% 34%, 47% 66%, 54% 26%, 61% 62%, 68% 30%, 75% 67%, 82% 28%, 89% 60%, 95% 35%, 100% 56%, 100% 100%, 0 100%);
    opacity: 1;
    pointer-events: none;
}

.menu-hero__title .text-gradient,
.locations-hero__title .text-gradient,
.auth-hero__title .text-gradient {
    color: #f3c555;
}

.menu-hero__title,
.locations-hero__title,
.auth-hero__title,
.menu-hero__subtitle,
.locations-hero__subtitle,
.auth-hero__subtitle {
    color: #fff8ec;
}

.menu-hero__title,
.locations-hero__title,
.auth-hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.1rem, 6vw, 5.6rem);
    font-weight: 400;
    text-transform: uppercase;
}

.menu-hero__badge,
.locations-hero__badge,
.auth-hero__badge {
    color: #fff8ec;
    background: rgba(182,43,33,.5);
    border-color: rgba(255,248,236,.25);
}

.menu-page,
.product-page {
    color: var(--ink);
    background: var(--paper);
}

.menu-page {
    padding-top: 38px;
}

.category-nav {
    top: calc(var(--header-height) + 8px);
    z-index: 170;
    padding: 9px;
    background: rgba(255,250,242,.94);
    border: 1px solid #d1bdA8;
    border-radius: 7px;
    box-shadow: 0 9px 24px rgba(66,45,31,.09);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.category-nav__inner {
    scrollbar-width: thin;
}

.category-pill {
    min-height: 42px;
    color: var(--ink-soft);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    white-space: nowrap;
}

.category-pill:hover,
.category-pill.active {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary-dark);
    box-shadow: none;
    transform: none;
}

.search-bar {
    gap: 12px;
    padding: 18px;
    background: #eadcca;
    border: 1px solid #d1bda8;
    border-radius: 8px;
}

.search-bar__input,
.search-bar__select {
    background: #fffdf8;
    border: 1px solid #bda996;
    border-radius: 6px;
}

.search-bar__input i {
    color: var(--primary);
}

.category-section {
    margin-bottom: clamp(4rem, 8vw, 7rem);
}

.category-section__header {
    padding-bottom: 18px;
    border-bottom: 2px solid #cdb9a4;
}

.category-section__header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: min(150px, 42%);
    height: 4px;
    background: var(--primary);
}

.category-section__icon {
    color: #fff;
    background: var(--primary);
    border-radius: 50% 50% 50% 10px;
}

.category-section__title {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 400;
    text-transform: uppercase;
}

.category-section__count {
    color: var(--ink-soft);
    background: #e9dccd;
    border: 1px solid #cfbaa6;
    border-radius: 4px;
}

.product-card__text-top,
.product-card--no-image .product-card__text-top,
.product-card--text-only .product-card__icon {
    color: #fff8ec;
    background:
        radial-gradient(circle at 90% 15%, rgba(228,173,47,.24), transparent 10rem),
        var(--charcoal);
}

.product-card__text-top .product-card__name,
.product-card--text-only .product-card__icon {
    color: #fff8ec;
}

.product-card__weight,
.kg-info-mini {
    color: var(--primary-dark);
    background: rgba(182,43,33,.08);
    border-color: rgba(182,43,33,.24);
}

.kg-input-wrapper {
    background: #fffdf8 !important;
    border-color: #bda996 !important;
}

.kg-calc-price {
    color: var(--primary-dark) !important;
}

.product-page {
    padding-top: calc(var(--header-height) + 42px);
}

.product-grid {
    align-items: start;
    gap: clamp(28px, 5vw, 70px);
}

.product-main-image {
    background: #ede1d3;
    border: 1px solid #d3c0ac;
    border-radius: 8px 8px 30px 8px;
    box-shadow: var(--shadow-md);
}

.product-main-image img {
    object-fit: cover;
}

.product-title {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.6rem);
    font-weight: 400;
    text-transform: uppercase;
}

.product-description,
.product-meta__item {
    color: var(--text-secondary);
}

.product-price-box {
    color: #fff8ec;
    background: var(--charcoal);
    border: 0;
    border-radius: 7px 7px 22px 7px;
    box-shadow: var(--shadow-md);
}

.product-price-box:hover {
    color: #fff8ec;
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.product-price-box__label,
.product-price-box__icon {
    color: #f3e5d5;
}

.product-price-box .product-price {
    color: var(--secondary);
}

.product-addons,
.product-note,
.auth-box,
.contact-form,
.contact-card,
.delivery-card {
    color: var(--ink);
    background: #fffdf8;
    border: 1px solid #d4c1ad;
    border-radius: 8px 8px 22px 8px;
    box-shadow: 0 12px 28px rgba(66,45,31,.08);
}

.addon-category {
    background: #f4ebdf;
    border-color: #d6c3af;
    border-radius: 7px;
}

.addon-item {
    color: var(--ink);
    background: #fffdf8;
    border-color: #cbb6a2;
    border-radius: 5px;
}

.addon-item:hover,
.addon-item.selected {
    color: var(--ink);
    background: rgba(182,43,33,.07);
    border-color: var(--primary);
}

.quantity-selector {
    background: #fffdf8;
    border-color: #bca895;
    border-radius: 6px;
}

.quantity-btn {
    color: var(--ink);
}

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

.related-products {
    background: #eadcca;
}

/* Lokacije, kontakt, prijava i pravne strane */
body .about-hero,
body .contact-hero,
body .career-hero,
body .delivery-hero,
body .faq-hero,
body .credits-hero,
body .legal-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    padding: calc(var(--header-height) + 58px) var(--container-padding) 68px;
    overflow: hidden;
    color: #fff8ec;
    text-align: center;
    background:
        radial-gradient(circle at 80% 30%, rgba(228,173,47,.2), transparent 21rem),
        linear-gradient(125deg, #3a211a 0%, var(--charcoal) 58%, #17110f 100%) !important;
}

body .about-hero::before,
body .contact-hero::before,
body .career-hero::before,
body .delivery-hero::before,
body .faq-hero::before,
body .credits-hero::before,
body .legal-hero::before {
    opacity: .25;
}

body .about-hero::after,
body .contact-hero::after,
body .career-hero::after,
body .delivery-hero::after,
body .faq-hero::after,
body .credits-hero::after,
body .legal-hero::after {
    height: 18px;
    background: var(--paper);
    clip-path: polygon(0 58%, 4% 24%, 9% 62%, 14% 32%, 20% 68%, 26% 28%, 33% 60%, 40% 34%, 47% 66%, 54% 26%, 61% 62%, 68% 30%, 75% 67%, 82% 28%, 89% 60%, 95% 35%, 100% 56%, 100% 100%, 0 100%);
    opacity: 1;
    pointer-events: none;
}

body .about-hero > .container,
body .contact-hero > .container,
body .career-hero > .container,
body .delivery-hero > .container,
body .faq-hero > .container,
body .credits-hero > .container,
body .legal-hero > .container,
body .about-hero__content,
body .contact-hero__content,
body .credits-hero__content {
    position: relative;
    z-index: 1;
}

body .about-hero h1,
body .contact-hero h1,
body .career-hero h1,
body .delivery-hero h1,
body .faq-hero h1,
body .credits-hero h1,
body .legal-hero h1 {
    color: #fff8ec !important;
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.6rem);
    font-weight: 400;
    line-height: .98;
    text-transform: uppercase;
}

body .about-hero p,
body .contact-hero p,
body .career-hero p,
body .delivery-hero p,
body .faq-hero p,
body .credits-hero p,
body .legal-hero p,
body .about-hero .section-subtitle,
body .contact-hero .section-subtitle,
body .career-hero .section-subtitle,
body .delivery-hero .section-subtitle,
body .faq-hero .section-subtitle,
body .credits-hero .section-subtitle,
body .legal-hero .section-subtitle {
    color: #f4e8d8 !important;
}

body .about-hero .section-badge,
body .contact-hero .section-badge,
body .career-hero .section-badge,
body .delivery-hero .section-badge,
body .faq-hero .section-badge,
body .credits-hero .section-badge,
body .legal-hero .section-badge {
    color: #fff8ec;
    background: rgba(182,43,33,.62);
    border-color: rgba(255,248,236,.28);
}

body .about-hero .text-gradient,
body .contact-hero .text-gradient,
body .career-hero .text-gradient,
body .delivery-hero .text-gradient,
body .faq-hero .text-gradient,
body .credits-hero .text-gradient,
body .legal-hero .text-gradient {
    color: #f3c555;
}

.locations-grid {
    gap: clamp(18px, 3vw, 32px);
}

.location-card,
.location-box {
    color: var(--ink);
    background: #fffdf8 !important;
    border: 1px solid #d1bca7 !important;
    border-radius: 8px 8px 26px 8px !important;
    box-shadow: 0 14px 30px rgba(66,45,31,.1);
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.location-card:hover,
.location-box:hover {
    border-color: rgba(182,43,33,.58) !important;
    box-shadow: 0 22px 44px rgba(66,45,31,.15);
    transform: translateY(-4px);
}

.location-card__header,
.location-card__body,
.location-box__info {
    color: var(--ink);
    background: #fffdf8;
}

.location-card__name,
.location-card__detail-value,
.location-card__info-value,
.location-box__name,
.delivery-card__title {
    color: var(--ink);
}

.location-card__name {
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: currentColor;
}

.location-card__rating {
    color: #684500;
    background: #fff2c8;
    border-color: #cfaa43;
}

.location-card__rating i,
.location-card__rating-value {
    color: #684500;
}

.location-card__rating-count {
    color: #55483f;
}

#lokacije .location-card__google-rating {
    color: #684500;
    background: #fff2c8;
    border-color: #cfaa43;
}

#lokacije .location-card__google-rating i,
#lokacije .location-card__google-rating span {
    color: #684500;
}

#lokacije .location-card__reviews-count {
    color: #55483f !important;
}

@media (min-width: 993px) {
    #lokacije .location-card {
        display: flex;
        flex-direction: column;
    }

    #lokacije .location-card__header {
        display: block;
        min-height: 0;
        margin-bottom: 0;
        padding: 28px;
    }

    #lokacije .location-card__name {
        max-width: calc(100% - 128px);
        margin-bottom: 10px;
        padding-right: 0;
        font-size: clamp(1.65rem, 2.2vw, 2rem);
        line-height: 1.08;
    }

    #lokacije .location-card__google-rating {
        display: inline-flex;
        margin-bottom: 12px;
    }

    #lokacije .location-card__desc {
        max-width: 100%;
        margin: 0;
        padding-right: 0;
        line-height: 1.55;
    }

    #lokacije .location-card__body {
        display: flex;
        flex: 1;
        flex-direction: column;
        padding: 24px 28px 28px;
    }

    #lokacije .location-card__info {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-bottom: 18px;
    }

    #lokacije .location-card__info-item {
        min-width: 0;
        padding: 12px;
        gap: 10px;
    }

    #lokacije .location-card__info-item:last-child {
        grid-column: 1 / -1;
    }

    #lokacije .location-card__actions {
        margin-top: auto;
    }
}

.location-card__desc,
.location-card__detail-label,
.location-card__info-label,
.location-box__detail,
.delivery-card__text {
    color: var(--text-secondary);
}

.location-card__number,
.location-card__detail-icon,
.location-card__info-icon,
.delivery-card__icon,
.contact-card__icon {
    color: #fff;
    background: var(--primary);
    border-radius: 50% 50% 50% 10px;
}

.location-card__map iframe,
.location-box__map iframe {
    filter: sepia(.1) contrast(.94);
}

.delivery-info,
.contact-section,
.auth-section {
    background: var(--paper);
}

.contact-card__title,
.contact-card__text,
.contact-form h2,
.auth-box__title,
.auth-box__subtitle,
.auth-links {
    color: var(--ink);
}

.contact-card a,
.auth-links a {
    color: var(--primary-dark);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.auth-box__logo {
    color: #fff;
    background: var(--primary);
    border-radius: 50% 50% 50% 12px;
}

.auth-error,
.alert--error {
    color: #7a1b16;
    background: #fae1dc;
    border-color: #c8655d;
}

.auth-success,
.alert--success {
    color: #125b30 !important;
    background: #e3f3e8 !important;
    border-color: #70a983 !important;
}

.legal-page,
.privacy-page,
.terms-page,
.content-page {
    color: var(--ink);
    background: var(--paper);
}

.legal-content,
.privacy-content,
.terms-content,
.content-card,
.faq-item {
    color: var(--ink);
    background: #fffdf8;
    border-color: #d1bca7;
    box-shadow: var(--shadow-sm);
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.privacy-content h1,
.privacy-content h2,
.terms-content h1,
.terms-content h2,
.content-card h1,
.content-card h2 {
    color: var(--ink);
}

.error-page {
    color: var(--ink) !important;
    background:
        radial-gradient(circle at 50% 22%, rgba(182,43,33,.12), transparent 25rem),
        var(--paper) !important;
}

.error-code {
    color: var(--primary) !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    font-family: var(--font-display) !important;
    font-weight: 400 !important;
    text-shadow: none !important;
}

.error-icon {
    color: var(--secondary-dark) !important;
}

.error-title,
.error-text,
.error-suggestions__title {
    color: var(--ink) !important;
}

.error-suggestions {
    border-color: #cdb9a4 !important;
}

.error-suggestions__link {
    color: var(--ink) !important;
    background: #fffdf8 !important;
    border-color: #cdb9a4 !important;
    border-radius: 5px !important;
}

.error-suggestions__link:hover {
    color: #fff !important;
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

/* Lokalne SEO strane */
.seo-hero {
    min-height: min(760px, 94svh);
    padding-top: var(--header-height);
    color: #fff8ec;
    background: var(--charcoal);
}

.seo-hero::before {
    background: linear-gradient(90deg, rgba(31,21,16,.97) 0%, rgba(35,22,17,.82) 45%, rgba(24,16,13,.22) 100%);
}

.seo-hero::after {
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0 68%, var(--secondary) 68%);
}

.seo-hero__wrapper,
.seo-hero__container {
    min-height: calc(min(760px, 94svh) - var(--header-height));
}

.seo-hero__content {
    width: min(670px, 100%);
}

.seo-hero__title,
.seo-hero__title span {
    color: #fff8ec !important;
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 7vw, 6.5rem);
    font-weight: 400;
    line-height: .98;
    text-transform: uppercase;
    -webkit-text-fill-color: currentColor !important;
}

.seo-hero__title .text-gradient {
    color: var(--secondary) !important;
}

.seo-hero__text {
    color: #f4e8d8;
    font-size: clamp(1.03rem, 1.6vw, 1.2rem);
}

.seo-hero__badge {
    color: #fff8ec;
    background: rgba(182,43,33,.62);
    border-color: rgba(255,248,236,.3);
}

.seo-hero .btn--outline {
    color: #fff8ec;
    border-color: rgba(255,248,236,.65);
}

.seo-section {
    color: var(--ink);
    background: var(--paper-light) !important;
}

.seo-section:nth-of-type(even),
.seo-section--alt {
    background: var(--paper) !important;
}

.seo-about__content h2,
.seo-about__content p,
.seo-content h2,
.seo-content h3,
.seo-content p,
.seo-content li,
.seo-content__main h2,
.seo-content__main h3,
.seo-content__main p,
.seo-content__main li {
    color: var(--ink);
}

.seo-about__image,
.seo-feature,
.seo-feature-box,
.seo-content__main,
.seo-content__cta,
.seo-content__hours,
.seo-bulk-item {
    color: var(--ink);
    background: #fffdf8;
    border: 1px solid #d2bfa9;
    border-radius: 7px 7px 22px 7px;
    box-shadow: 0 12px 28px rgba(66,45,31,.08);
}

.seo-feature:hover,
.seo-feature-box:hover,
.seo-bulk-item:hover {
    border-color: rgba(182,43,33,.6);
    transform: translateY(-4px);
}

.seo-feature__icon,
.seo-feature-box__icon {
    color: #fff;
    background: var(--primary);
    border-radius: 50% 50% 50% 12px;
}

.seo-feature h3,
.seo-feature p,
.seo-feature-box__title,
.seo-feature-box__text,
.seo-bulk-item__name {
    color: var(--ink);
}

.seo-stats,
.seo-cta,
.seo-bulk-section {
    color: #fff8ec;
    background:
        radial-gradient(circle at 85% 15%, rgba(228,173,47,.2), transparent 22rem),
        var(--charcoal);
}

.seo-stats *,
.seo-cta *,
.seo-bulk-section__title,
.seo-bulk-section__text {
    color: #fff8ec;
}

/* Aplikacija */
.app-download-page {
    color: var(--ink) !important;
    background: var(--paper) !important;
}

.app-download-page .app-hero {
    background:
        radial-gradient(circle at 75% 20%, rgba(228,173,47,.2), transparent 24rem),
        var(--charcoal);
}

.app-download-page .app-hero h1,
.app-download-page .app-hero p {
    color: #fff8ec;
}

.app-download-page .app-icon,
.app-download-page .phone-mockup,
.app-download-page .feature-card,
.app-download-page .install-card,
.app-download-page .instruction-card {
    border-radius: 8px 8px 24px 8px !important;
}

/* Podnožje */
.footer {
    color: #f8ecdd;
    background:
        radial-gradient(circle at 10% 0%, rgba(182,43,33,.25), transparent 28rem),
        #211814;
    border-top: 5px solid var(--primary);
}

.footer::before {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: .8;
}

.footer__grid {
    gap: clamp(30px, 4vw, 58px);
}

.footer__logo span,
.footer__title,
.footer__sitemap-heading,
.footer__bottom p {
    color: #fff7e9;
}

.footer__logo span,
.footer__title {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.footer__desc,
.footer__links a,
.footer__links small,
.footer__info-item,
.footer__sitemap-column a {
    color: #d8c9b9;
}

.footer__links a,
.footer__sitemap-column a {
    min-height: 36px;
    transition: color .18s ease, transform .18s ease;
}

.footer__links a:hover,
.footer__sitemap-column a:hover {
    color: #f3c555;
    transform: translateX(3px);
}

.footer__links a::before {
    background: var(--secondary);
}

.footer__links a i,
.footer__info-item i,
.footer__sitemap .footer__title i {
    color: #f3c555;
}

.footer__social-link {
    color: #fff7e9;
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.2);
    border-radius: 50%;
}

.footer__social-link:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary-light);
}

.footer__sitemap,
.footer__bottom {
    border-color: rgba(255,247,233,.16);
}

.footer__bottom .text-gradient-static,
.footer__bottom a {
    color: #f3c555;
}

/* Sistemska obaveštenja */
.cb-wrap {
    position: fixed;
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    left: 16px;
    z-index: 1150;
    width: min(520px, calc(100% - 32px));
    margin-inline: auto;
    padding: 20px;
    color: var(--ink);
    background: #fffaf2;
    border: 1px solid #bc9f87;
    border-top: 4px solid var(--primary);
    border-radius: 8px 8px 18px 8px;
    box-shadow: 0 22px 55px rgba(36,29,25,.24);
    font-family: var(--font-body);
}

.cb-wrap h3 {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 400;
}

.cb-wrap p {
    color: var(--text-secondary);
}

.cb-wrap a {
    color: var(--primary-dark);
}

.cb-actions {
    gap: 8px;
}

.cb-actions button {
    min-height: 44px;
    border-radius: 5px;
    transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

.cb-essential {
    color: var(--ink);
    background: transparent;
    border-color: #a88d77;
}

.cb-all {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary-dark);
}

.pwa-install-banner {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    left: 16px;
    width: min(620px, calc(100% - 32px));
    margin-inline: auto;
    padding: 14px 16px;
    color: var(--ink);
    background: #fffaf2;
    border: 1px solid #bc9f87;
    border-top: 4px solid var(--primary);
    border-radius: 8px 8px 18px 8px;
    box-shadow: 0 22px 55px rgba(36,29,25,.24);
}

.pwa-install-banner__text strong {
    color: var(--ink);
}

.pwa-install-banner__text span,
.pwa-install-banner__btn--close {
    color: var(--text-secondary);
}

.pwa-install-banner__btn {
    min-height: 44px;
    border-radius: 5px;
    transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

.pwa-install-banner__btn--install {
    color: #fff;
    background: var(--primary);
}

/* Tableti i telefoni */
@media (max-width: 1279px) {
    .site-rail {
        display: none;
    }
}

@media (max-width: 991px) {
    :root {
        --header-height: 72px;
    }

    .header,
    .header.header--scrolled {
        min-height: var(--header-height);
        padding: 7px 0 !important;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    /* Drawer ostaje vezan za viewport, van isečenog kontejnera zaglavlja. */
    .header > .container {
        overflow: visible;
    }

    .header__logo-img {
        width: 50px;
        height: 50px;
    }

    .header__nav {
        position: fixed;
        inset: 0 0 0 auto;
        z-index: 1010;
        display: flex;
        align-items: stretch;
        width: min(86vw, 350px);
        height: 100dvh;
        padding: calc(var(--header-height) + 30px) 20px max(30px, env(safe-area-inset-bottom));
        overflow-y: auto;
        color: var(--ink);
        background:
            radial-gradient(circle at 100% 0%, rgba(228,173,47,.16), transparent 16rem),
            var(--paper-light);
        border-left: 1px solid #cdb9a4;
        box-shadow: -18px 0 45px rgba(35,24,18,.18);
        visibility: hidden;
        pointer-events: none;
        transform: translateX(calc(100% + 24px));
        transition: transform .24s cubic-bezier(.2,.7,.2,1), visibility 0s linear .24s;
    }

    .header__nav.is-open {
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
        transition: transform .24s cubic-bezier(.2,.7,.2,1), visibility 0s;
    }

    .header__nav a {
        justify-content: flex-start;
        min-height: 50px;
        padding: 12px 14px;
        color: var(--ink);
        border-bottom: 1px solid #e1d2c2;
        border-radius: 0;
        font-family: var(--font-display);
        font-size: 1.25rem;
        font-weight: 400;
        letter-spacing: .03em;
        text-transform: uppercase;
    }

    .header__nav a::after {
        top: 12px;
        right: auto;
        bottom: 12px;
        left: 0;
        width: 3px;
        height: auto;
        transform: scaleY(0);
        transform-origin: bottom;
    }

    .header__nav a:hover::after,
    .header__nav a.active::after,
    .header__nav a[aria-current='page']::after {
        transform: scaleY(1);
    }

    .header__menu-toggle {
        position: relative;
        z-index: 1020;
        display: flex;
        border: 1px solid #c7b39f;
        border-radius: 6px;
    }

    .header__menu-toggle.is-active {
        background: var(--primary);
        border-color: var(--primary-dark);
    }

    .header__menu-toggle.is-active span {
        background: #fff;
    }

    .nav-overlay {
        z-index: 990;
    }

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

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

    .product-image-section {
        position: static;
    }

    .category-nav + .search-bar {
        margin-top: calc(var(--header-height) + 8px);
    }
}

@media (max-width: 767px) {
    :root {
        --container-padding: 1rem;
    }

    .section,
    .seo-section,
    .contact-section,
    .locations-section,
    .delivery-info,
    .related-products {
        padding-block: 4.25rem;
    }

    .section-header::before,
    .categories-header__content::before,
    .seo-section__header::before {
        width: 44px;
        margin-bottom: 16px;
    }

    .categories-header__content::before {
        margin-inline: auto;
    }

    .section-title,
    .categories-header__content h2,
    .seo-section__title {
        font-size: clamp(2.25rem, 12vw, 3.4rem);
    }

    .hero {
        min-height: 790px;
    }

    .hero__container {
        min-height: 790px;
        align-items: flex-end;
        padding-block: 7rem 8rem;
    }

    .hero__bg-slide img {
        object-position: center 30%;
    }

    .hero__overlay {
        background:
            linear-gradient(0deg, rgba(27,18,14,.98) 7%, rgba(32,20,15,.88) 46%, rgba(32,20,15,.22) 86%),
            linear-gradient(90deg, rgba(20,14,11,.35), transparent);
    }

    .hero__title,
    .hero__title span {
        font-size: clamp(3.15rem, 15.5vw, 4.5rem);
    }

    .hero__text {
        font-size: 1.02rem;
        line-height: 1.55;
    }

    .hero__buttons,
    .seo-hero__buttons,
    .cta-buttons {
        align-items: stretch;
        width: 100%;
    }

    .hero__buttons .btn,
    .seo-hero__buttons .btn,
    .cta-buttons .btn {
        width: 100%;
    }

    .hero__scroll {
        display: none;
    }

    .stats-banner__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .stats-banner__item {
        padding-inline: 8px;
    }

    .stats-banner__number {
        font-size: 2rem;
    }

    .stats-banner__label {
        font-size: .68rem;
    }

    .categories-header {
        align-items: center;
    }

    .category-card {
        min-height: 78px;
        padding: 14px 15px 14px 18px;
        color: var(--ink);
        border-left-color: var(--primary);
        border-radius: 7px 7px 18px 7px;
    }

    .category-card:hover {
        transform: translateY(-2px);
    }

    .category-card__title {
        color: var(--ink);
    }

    .category-card__arrow {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

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

    .feature-card {
        min-height: 0;
        padding: 24px;
    }

    .app-promo {
        padding: 34px 22px;
        border-radius: 8px 8px 24px 8px;
    }

    .app-promo__content .btn {
        width: 100%;
        margin: 8px 0 0 !important;
    }

    .menu-hero,
    .locations-hero,
    .auth-hero {
        min-height: 320px;
        padding-top: calc(var(--header-height) + 60px);
        padding-bottom: 62px;
    }

    .menu-hero__title,
    .locations-hero__title,
    .auth-hero__title {
        font-size: clamp(2.8rem, 14vw, 4rem);
    }

    .menu-page {
        padding-top: 20px;
    }

    .category-nav {
        top: calc(var(--header-height) + 4px);
        margin-inline: calc(var(--container-padding) * -1);
        padding: 8px var(--container-padding);
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .category-nav + .search-bar {
        margin-top: calc(var(--header-height) + 4px);
    }

    .search-bar {
        padding: 12px;
    }

    .category-section__header {
        align-items: center;
        gap: 10px;
    }

    .category-section__title {
        font-size: 2rem;
    }

    .category-section__count {
        margin-left: auto;
        font-size: .72rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .menu-page .product-card {
        display: grid;
        grid-template-columns: 118px minmax(0, 1fr);
        min-height: 150px;
        border-radius: 7px 7px 18px 7px;
    }

    .menu-page .product-card__image,
    .menu-page .product-card__text-top {
        grid-column: 1;
        width: 118px;
        height: 100%;
        min-height: 150px;
        aspect-ratio: auto;
    }

    .menu-page .product-card__image img {
        min-height: 100%;
    }

    .menu-page .product-card__body {
        grid-column: 2;
        min-width: 0;
        padding: 14px;
    }

    .menu-page .product-card__meta {
        margin-bottom: 5px;
    }

    .menu-page .product-card__category {
        font-size: .69rem;
    }

    .menu-page .product-card__name {
        color: var(--ink);
        font-size: 1.08rem;
        line-height: 1.15;
    }

    .menu-page .product-card__desc {
        display: -webkit-box;
        margin-bottom: 10px;
        overflow: hidden;
        color: var(--ink-soft);
        font-size: .8rem;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .menu-page .product-card__footer {
        gap: 8px;
    }

    .menu-page .product-card__price {
        font-size: 1.1rem;
    }

    .menu-page .product-card__add-btn,
    .menu-page .product-card__toggle-btn {
        min-width: 44px;
        min-height: 44px;
        padding: 8px 11px;
        font-size: .78rem;
    }

    .menu-page .product-card--text-only {
        grid-template-columns: 1fr;
    }

    .menu-page .product-card--text-only .product-card__body {
        grid-column: 1;
    }

    .product-page {
        padding-top: calc(var(--header-height) + 24px);
    }

    .product-title {
        font-size: clamp(2.9rem, 14vw, 4rem);
    }

    .location-card__actions,
    .location-card__btn,
    .error-buttons {
        width: 100%;
    }

    .location-card__actions,
    .error-buttons {
        flex-direction: column;
    }

    .seo-hero {
        min-height: 720px;
    }

    .seo-hero__wrapper,
    .seo-hero__container {
        min-height: calc(720px - var(--header-height));
    }

    .seo-hero__container {
        align-items: flex-end;
        padding-top: 7rem;
        padding-bottom: 6.5rem;
    }

    .seo-hero::before {
        background: linear-gradient(0deg, rgba(27,18,14,.98) 8%, rgba(32,20,15,.85) 50%, rgba(32,20,15,.24) 90%);
    }

    .seo-hero__title,
    .seo-hero__title span {
        font-size: clamp(3rem, 15vw, 4.35rem);
    }

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

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

    .footer__bottom {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .header__logo-text {
        display: none;
    }

    .header__actions {
        gap: 5px;
    }

    .header__actions .hide-mobile {
        display: none;
    }

    .header__actions .btn,
    .header__menu-toggle {
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
        padding: 0;
    }

    .hero__container {
        padding-bottom: 7.3rem;
    }

    .hero__badge {
        max-width: 100%;
        font-size: .69rem;
    }

    .hero__slider-dots,
    .seo-hero__slider-dots {
        bottom: 52px;
    }

    .stats-banner__item:not(:last-child)::after {
        top: 18%;
        height: 64%;
    }

    .search-bar {
        grid-template-columns: 1fr;
    }

    .menu-page .product-card {
        grid-template-columns: 108px minmax(0, 1fr);
    }

    .menu-page .product-card__image,
    .menu-page .product-card__text-top {
        width: 108px;
    }

    .menu-page .product-card__body {
        padding: 12px;
    }

    .footer__sitemap-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 18px;
    }

    .pwa-install-banner {
        flex-direction: row;
        text-align: left;
    }

    .pwa-install-banner__content {
        min-width: 0;
        flex: 1;
        flex-direction: row;
    }

    .pwa-install-banner__text {
        min-width: 0;
    }

    .pwa-install-banner__text span {
        display: none;
    }

    .pwa-install-banner__actions {
        width: auto;
    }

    .pwa-install-banner__btn--install {
        flex: none;
        padding-inline: 13px;
    }
}

@media (hover: none) {
    .category-card:hover,
    .featured-product-card:hover,
    .product-card:hover,
    .feature-card:hover,
    .location-card:hover,
    .seo-product-card:hover,
    .seo-feature:hover,
    .seo-feature-box:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        transition-delay: 0s !important;
    }

    html {
        scroll-behavior: auto;
    }

    .site-progress,
    .site-rail {
        display: none;
    }

    .hero__bg-slide,
    .seo-hero__bg-slide {
        transition: none !important;
    }

    .animate-float,
    .animate-pulse,
    .animate-glow,
    .animate-shimmer,
    .error-icon {
        animation: none !important;
    }
}

/* Rešetka, žar i papir povezuju naslovnu bez dodatnog vizuelnog tereta. */
.hero__content {
    position: relative;
}

.hero__content::before {
    content: '';
    display: block;
    width: min(310px, 58vw);
    height: 5px;
    margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
    background: repeating-linear-gradient(110deg, var(--secondary) 0 16px, var(--primary) 16px 24px, transparent 24px 36px);
    opacity: .78;
}

.hero__title,
.hero__title span {
    max-width: 12ch;
    font-size: clamp(3.35rem, 7vw, 6rem);
    line-height: .94;
}

.locations-section,
.featured-products-section,
.app-promo-section,
.cta-section {
    position: relative;
    overflow: clip;
}

.locations-section::after,
.featured-products-section::after,
.app-promo-section::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: repeating-linear-gradient(112deg, rgba(182, 43, 33, .68) 0 22px, rgba(228, 173, 47, .72) 22px 29px, transparent 29px 44px);
    opacity: .48;
}

.location-card,
.category-card,
.product-card,
.featured-product-card,
.feature-card {
    border-radius: 22px;
    overflow: hidden;
}

.cta-section {
    background:
        radial-gradient(circle at 12% 88%, rgba(228, 173, 47, .2), transparent 24rem),
        linear-gradient(135deg, #321d16, #1b120f 70%);
}

.cta-section .btn--primary {
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(182, 43, 33, .28);
}

@supports (content-visibility: auto) {
    .featured-products-section,
    .features-section,
    .app-promo-section,
    .cta-section {
        content-visibility: auto;
        contain-intrinsic-size: auto 760px;
    }
}

@media (max-width: 700px) {
    .hero__title,
    .hero__title span {
        max-width: 11ch;
        font-size: clamp(3rem, 14vw, 4.45rem);
    }

    .location-card,
    .category-card,
    .product-card,
    .featured-product-card,
    .feature-card {
        clip-path: none;
    }
}



/* ./components/site-refinements.css */
:root { --header-bar-height: 78px; }
.header, .header.header--scrolled {
    min-height: 0;
    padding: 0 !important;
}
.header__inner { min-height: var(--header-bar-height); }
.orders-disabled-banner {
    padding: 10px 20px;
    color: #fff;
    background: #8d211b;
    text-align: center;
    font: 500 15px/1.4 var(--font-body, 'Source Sans 3', sans-serif);
}
.orders-disabled-banner strong { font-weight: 700; }
.orders-disabled-banner span { margin-left: 8px; }
.orders-disabled-banner a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.orders-disabled-banner a:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.ordering-notice {
    margin: 20px 0;
    padding: 20px;
    color: #672019;
    background: #fae6df;
    border: 1px solid #c78b7b;
    border-radius: 8px;
}
.ordering-notice h2 { margin: 0 0 8px; font-size: 1.5rem; }
.ordering-notice p { margin: 0 0 12px; }
.ordering-notice a { color: #7b221b; font-weight: 700; text-decoration: underline; }
.btn:disabled { cursor: not-allowed; opacity: .65; box-shadow: none; }
.navigation-open .header { z-index: 1000; }
.nav-overlay { z-index: 990; }
@media (max-width: 991px) {
    :root { --header-bar-height: 72px; }
    .header, .header.header--scrolled { min-height: 0; padding: 0 !important; }
    .header__nav { padding-top: calc(var(--header-height, 150px) + 16px); }
    .nav-overlay { z-index: 990; }
    .orders-disabled-banner { padding: 9px 14px; font-size: 14px; }
    .orders-disabled-banner strong, .orders-disabled-banner span { display: block; margin: 0; }
    .header__logo-text { display: block; max-width: 112px; font-size: 17px; line-height: 1.15; }
    .header__logo-text strong { display: block; }
    .header__logo-img { width: 42px; height: 42px; }
    .header__logo { gap: 7px; }
    .header__inner { gap: 8px; }
    .header__actions { gap: 4px; }
    .header__actions .btn, .header__menu-toggle { min-width: 42px; width: 42px; min-height: 44px; }
}
@media (max-width: 359px) {
    .header__logo-text { font-size: 14px; max-width: 88px; }
    .header__logo-img { width: 36px; height: 36px; }
    .header__actions .btn, .header__menu-toggle { min-width: 36px; width: 36px; }
}
@media (prefers-reduced-motion: reduce) {
    .header__nav, .nav-overlay { transition: none; }
}

.ordering-paused-page { min-height: 65vh; padding: calc(var(--header-height, 150px) + 40px) 0 60px; }
.ordering-paused-page .ordering-notice { max-width: 760px; margin: 0 auto; padding: clamp(24px, 5vw, 48px); }
.ordering-paused-page h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; margin-bottom: 20px; }
.ordering-paused-page p { font-size: 1.15rem; }
.ordering-paused-page .btn { margin: 12px 8px 0 0; text-decoration: none; }
.ordering-paused-page .btn--primary { color: #fff; }
.menu-page, .menu-page > .container { overflow: visible; }
.category-nav + .search-bar { margin-top: 0; }
.category-nav { border-radius: 22px; }
.category-pill {
    min-height: 46px;
    border-radius: 24px;
    box-shadow: none;
}
.category-pill:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }
.search-bar { border-radius: 22px; }
.search-bar__input, .search-bar__select { min-height: 50px; border-radius: 14px; }
.product-card .btn, .featured-product-card .btn { border-radius: 12px; }
.product-card__image, .featured-product-card__image { border-radius: 0; }
.category-card__arrow {
    opacity: 1;
    transform: none;
    width: auto;
    gap: 10px;
    padding: 0 14px;
    border-radius: 22px;
    font-size: .9rem;
    font-weight: 700;
}
.category-card__arrow::before { content: 'Pogledaj'; }
.category-card:is(:hover, :focus-visible) .category-card__title { color: var(--ink); }
.category-card:is(:hover, :focus-visible) .category-card__arrow {
    color: #fff;
    background: var(--primary-dark);
    transform: translateX(2px);
    box-shadow: none;
}
.category-card:focus-visible { outline: 3px solid var(--primary); outline-offset: 4px; }
.category-card__count, .category-card__description { color: #675344; }
.product-carousel .carousel-arrow { opacity: 1; }
.carousel-arrow:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }

.site-rail { display: none; }
@media (min-width: 1500px) {
    .site-rail {
        position: fixed;
        z-index: 180;
        inset: 50% auto auto max(12px, calc((100vw - 1320px) / 4 - 22px));
        display: flex;
        flex-direction: column;
        width: 44px;
        transform: translateY(-50%);
    }
    .site-rail::before, .site-rail::after {
        content: '';
        position: absolute;
        left: 21px;
        top: 22px;
        bottom: 22px;
        width: 2px;
        background: #d8c7b5;
        pointer-events: none;
    }
    .site-rail::after {
        background: var(--primary);
        transform: scaleY(var(--rail-progress, 0));
        transform-origin: top;
        transition: transform .4s ease;
    }
    .site-rail a {
        position: relative;
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        color: #fff;
        text-decoration: none;
    }
    .site-rail a::before {
        content: '';
        z-index: 1;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #f8f1e7;
        border: 2px solid #9c7760;
        transition: transform .2s, background .2s;
    }
    .site-rail a[aria-current]::before {
        background: var(--primary);
        border-color: var(--primary);
        transform: scale(1.3);
        box-shadow: 0 0 0 4px #f4e4d6;
    }
    .site-rail a span {
        position: absolute;
        left: 40px;
        max-width: 240px;
        width: max-content;
        padding: 8px 12px;
        border-radius: 5px;
        background: #30231d;
        font-size: 14px;
        line-height: 1.3;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .15s;
    }
    .site-rail a:is(:hover, :focus-visible) span { opacity: 1; visibility: visible; }
    .site-rail a:focus-visible { outline: 2px solid var(--primary); outline-offset: -3px; }
}

.hero__slider-dots, .seo-hero__slider-dots {
    display: flex;
    flex-direction: row;
    top: auto;
    bottom: 28px;
    left: auto;
    right: max(24px, calc((100vw - 1200px) / 2));
    transform: none;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 30px;
    background: rgba(30, 21, 17, .8);
    width: max-content;
}
.hero__container { padding-block: 3rem 6rem; }
.hero__title, .hero__title span { max-width: 15ch; font-size: clamp(3rem, 5.5vw, 5.4rem); line-height: 1; }
.hero__content::before {
    width: 90px;
    height: 3px;
    margin-bottom: 24px;
    background: linear-gradient(90deg, var(--secondary) 0 70%, var(--primary) 70%);
    opacity: 1;
}
.hero__slider-dot, .seo-hero__slider-dot {
    position: relative;
    flex: 0 0 44px !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    padding: 0;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}
.hero__slider-dot::before, .seo-hero__slider-dot::before { display: none !important; }
.hero__slider-dot.active, .seo-hero__slider-dot.active { background: transparent !important; border: 0 !important; transform: none !important; }
.seo-hero__slider-dots { right: 20px; }
.hero__slider-dot::after, .seo-hero__slider-dot::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    width: 8px;
    height: 8px;
    border-radius: 5px;
    background: #d9c7b9;
    transition: width .3s, left .3s, background .3s;
}
.hero__slider-dot.active::after, .seo-hero__slider-dot.active::after { width: 24px; left: 10px; background: #fff; }
.hero-playback {
    min-width: 72px;
    min-height: 44px;
    margin-left: 4px;
    border: 1px solid #b7a396;
    border-radius: 24px;
    color: #fff;
    background: transparent;
    padding: 0 12px;
    font: 600 14px/1 var(--font-body);
    cursor: pointer;
}
.hero-playback:hover { color: #2e211b; background: #fff8ed; }
.hero-playback:focus-visible, .hero__slider-dot:focus-visible, .seo-hero__slider-dot:focus-visible { outline: 2px solid #fff; outline-offset: 1px; }
.hero__bg-slide, .seo-hero__bg-slide { transition: opacity .85s ease; }
.hero__bg-slide img, .seo-hero__bg-slide img { animation: none; }
.hero__bg-slide.active img, .seo-hero__bg-slide.active img { animation: hero-photo-drift 7s ease-out both; }
@keyframes hero-photo-drift { from { transform: scale(1.035); } to { transform: scale(1); } }
.animate-on-scroll, .animate-scale, .animate-left, .animate-right, [data-animate] {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.hero__badge, .hero__title, .hero__text, .hero__buttons { animation-duration: .75s; }
main > section { scroll-margin-top: calc(var(--header-height, 150px) + 20px); }
@media (max-width: 767px) {
    .hero { min-height: 100svh; }
    .hero__container { min-height: calc(100svh - var(--header-height)); padding-block: 88px 96px; }
    .hero__title, .hero__title span { max-width: 17ch; font-size: clamp(2.5rem, 10.5vw, 3.2rem); }
    .hero__content::before { margin-bottom: 18px; }
    .hero__text { margin-bottom: 24px; }
    .category-card__arrow { padding: 0 12px; margin-left: auto; }
    .category-card__arrow::before { display: none; }
    .hero__slider-dots, .seo-hero__slider-dots { max-width: calc(100vw - 32px); }
    .hero__slider-dots { right: auto; left: 50%; transform: translateX(-50%); bottom: 22px; }
    .hero__scroll { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .site-rail, .site-progress { display: none; }
    .hero__bg-slide, .seo-hero__bg-slide, .category-card { transition: none; }
    .hero__bg-slide.active img, .seo-hero__bg-slide.active img { animation: none; }
}
.menu-hero__subtitle { display: block; max-width: 52ch; margin-top: 20px; }
.category-section { scroll-margin-top: calc(var(--header-height, 150px) + 100px); }
@media (max-width: 767px) {
    .menu-hero { padding: calc(var(--header-height, 150px) + 36px) 16px 40px; min-height: 0; }
    .menu-hero__title { font-size: clamp(2.3rem, 9vw, 3.2rem); }
    .menu-hero__subtitle { display: block; font-size: 1rem; line-height: 1.45; }
    .category-nav + .search-bar { margin-top: 0; }
}
