:root {
    --orange-deep: #C84B00;
    --orange-primary: #E85500;
    --orange-mid: #F06A00;
    --orange-light: #FF8320;
    --amber: #FFA040;
    --gold: #FFB830;
    --honey: #FFC85A;
    --cream: #FFF8F2;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F4F4F5;
    --gray-200: #E4E4E7;
    --gray-300: #D4D4D8;
    --gray-400: #A1A1AA;
    --gray-500: #71717A;
    --gray-600: #52525B;
    --gray-700: #3F3F46;
    --gray-800: #27272A;
    --gray-900: #111118;
    --black: #09090B;
    --grad: linear-gradient(135deg, var(--orange-deep), var(--orange-mid), var(--amber));
    --grad-h: linear-gradient(135deg, #B03F00, var(--orange-primary), var(--orange-light));
    --shadow: 0 4px 20px rgba(200,75,0,0.12);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);

    
    --radius:    4px;
    --radius-lg: 4px;
    --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --nav-h: 68px;

    
    --orange:       #E85500;
    --orange-dark:  #C84B00;
    --orange-pale:  #FFF8F2;
    --orange-tint:  #FEE8DC;
    --success: #28A745;
    --danger:  #DC3545;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    background: var(--white);
    color: var(--gray-900);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 0;
}

.btn-primary {
    background: var(--grad);
    color: #fff;
}

.btn-primary:hover {
    background: var(--grad-h);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--orange-primary);
    border: 2px solid var(--orange-primary);
}

.btn-outline:hover {
    background: var(--orange-primary);
    color: #fff;
}

.btn-dark {
    background: var(--gray-900);
    color: #fff;
}

.btn-dark:hover { background: #222; }

.btn-ghost { background: var(--gray-100); color: var(--gray-700); border: 2px solid transparent; }
.btn-ghost:hover { background: var(--gray-200); }
.btn-danger { background: var(--danger); color: #fff; border: 2px solid var(--danger); }
.btn-danger:hover { background: #c82333; }
.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

.badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 0;
}

.badge-orange { background: var(--orange-primary); color: #fff; }
.badge-gold { background: var(--gold); color: var(--black); }
.badge-dark { background: var(--gray-900); color: #fff; }
.badge-success { background: var(--success); color: #fff; }

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 14px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 4px;
    background: var(--grad);
}

.section-subtitle {
    color: var(--gray-600);
    margin-top: 10px;
    font-size: 15px;
}

.navbar-nav-auth-mobile { display: none; }

/* ── Kategorije dropdown ───────────────────────────────── */
.nav-dropdown-wrap {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex !important;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
}

.nav-dropdown-arrow {
    transition: transform 0.22s;
    flex-shrink: 0;
    margin-top: 1px;
}

.nav-dropdown-wrap.open .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-top: 3px solid var(--orange-primary);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 2000;
    list-style: none;
    padding: 6px 0;
    animation: dropIn 0.18s ease;
}

@keyframes dropIn {
    from { opacity:0; transform:translateY(-4px); }
    to   { opacity:1; transform:translateY(0); }
}

.nav-dropdown-wrap.open .nav-dropdown {
    display: block;
}

.nav-dropdown li a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 18px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--gray-700) !important;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.nav-dropdown li a svg { color: var(--orange-primary); flex-shrink: 0; }

.nav-dropdown li a:hover {
    background: var(--cream) !important;
    color: var(--orange-primary) !important;
}

.nav-dropdown li:first-child { border-bottom: 1px solid var(--gray-100); margin-bottom: 4px; padding-bottom: 4px; }

/* ── Shop toolbar (zamjena za shop-layout sidebar) ─────── */
.shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0 16px;
    margin-bottom: 28px;
}

.shop-toolbar-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.shop-price-filter {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.shop-price-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.shop-price-filter input[type="number"] {
    width: 80px;
    padding: 9px 10px;
    border: 1px solid var(--gray-200);
    font-size: 13px;
    color: var(--gray-900);
    background: #fff;
    outline: none;
    border-radius: 0;
    -moz-appearance: textfield;
}
.shop-price-filter input[type="number"]::-webkit-inner-spin-button,
.shop-price-filter input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }
.shop-price-filter input[type="number"]:focus { border-color: var(--orange-primary); }

.shop-price-sep { color: var(--gray-400); font-size: 13px; }

.shop-price-btn {
    padding: 9px 16px;
    background: var(--grad);
    color: #fff;
    border: none;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.2s;
}
.shop-price-btn:hover { background: var(--grad-h); }

.shop-clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    padding: 9px 12px;
    border: 1px solid var(--gray-300);
    background: transparent;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}
.shop-clear-btn:hover { color: #e00; border-color: #e00; }

.shop-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding-bottom: 72px;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 1px 16px rgba(0,0,0,0.06);
}

.navbar-inner {
    display: flex;
    align-items: center;
    height: 68px;
    gap: 0;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-right: 32px;
}

.navbar-logo img {
    height: 48px;
    width: 48px;
    object-fit: cover;
    border-radius: 50%;
}

.navbar-logo span {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--orange-primary);
    line-height: 1.1;
}

.navbar-logo span small {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    list-style: none;
}

.navbar-nav a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.2s;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--grad);
    transform: scaleX(0);
    transition: transform 0.2s;
}

.navbar-nav a:hover, .navbar-nav a.active {
    color: var(--orange-primary);
}

.navbar-nav a:hover::after, .navbar-nav a.active::after {
    transform: scaleX(1);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cart-nav-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--orange-primary);
    border: none;
    transition: background 0.15s;
    cursor: pointer;
}

.cart-nav-btn:hover { background: var(--orange-tint); }

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--orange-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    min-width: 17px;
    height: 17px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    border: 2px solid #fff;
}

.btn-login {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-900);
    border: 1px solid var(--gray-200);
    background: transparent;
    letter-spacing: 0.3px;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-login:hover {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
}

.btn-register {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    background: var(--grad);
    color: #fff;
    letter-spacing: 0.3px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-register:hover { background: var(--grad-h); }

.btn-logout {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    padding: 8px 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
    background: transparent;
    cursor: pointer;
}

.btn-logout:hover { color: #e00; border-color: #e00; }

.user-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--cream);
    border: 1px solid #f0d9c8;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange-deep);
    border-radius: var(--radius);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    margin-left: auto;
    z-index: 1001;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    transition: all 0.3s;
}

.hero {
    background: var(--gray-900);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,85,0,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,160,64,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255,130,32,0.18);
    border: 1px solid rgba(255,130,32,0.3);
    color: var(--amber);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.hero h1 span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-wrap {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,130,32,0.3);
    box-shadow: 0 0 60px rgba(232,85,0,0.3);
}

.hero-logo-wrap img { width: 100%; height: 100%; object-fit: cover; }

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.hero-stat strong {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: var(--amber);
}

.hero-stat span {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--gray-200);
    margin-top: 40px;
}

.feature-item {
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-right: 1px solid var(--gray-200);
}

.feature-item:last-child { border-right: none; }

.feature-icon {
    width: 42px;
    height: 42px;
    background: var(--cream);
    border: 1px solid #f0d9c8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: var(--orange-primary);
}

.feature-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 3px; }
.feature-text span { font-size: 12px; color: var(--gray-400); }

.section { padding: 72px 0; }
.section.alt { background: var(--gray-50); }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    transition: all 0.25s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--orange-light);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.product-card-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-50);
    position: relative;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.4s;
}

.product-card:hover .product-card-img img { transform: scale(1.04); }

.product-card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.product-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--orange-mid);
}

.product-card-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.4;
    flex: 1;
}

.product-card-price {
    font-size: 20px;
    font-weight: 900;
    color: var(--orange-deep);
    letter-spacing: -0.5px;
}

.product-card-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--gray-100);
    display: flex;
    gap: 8px;
}

.product-card-footer .btn {
    flex: 1;
    justify-content: center;
    padding: 10px;
    font-size: 12px;
}

.no-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f0eb, #ede5dc);
    color: #bbb;
    font-size: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.25s;
}

.news-card:hover {
    border-color: var(--orange-light);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.news-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--grad);
    position: relative;
}

.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-card-img img { transform: scale(1.05); }

.news-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.news-card-body { padding: 20px; }
.news-card-date { font-size: 12px; color: var(--gray-400); margin-bottom: 8px; font-weight: 600; }
.news-card-title { font-size: 16px; font-weight: 800; color: var(--gray-900); margin-bottom: 10px; line-height: 1.4; }
.news-card-excerpt { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.news-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--orange-primary); }
.news-card-link:hover { color: var(--orange-deep); }

.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    padding: 40px 0 72px;
}

.shop-filters {
    position: sticky;
    top: 88px;
    align-self: start;
}

.filter-box {
    border: 1px solid var(--gray-200);
    background: #fff;
    margin-bottom: 16px;
}

.filter-box-head {
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--gray-900);
    border-bottom: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.filter-box-body { padding: 16px 18px; }

.filter-option svg {
    flex-shrink: 0;
    color: var(--orange-primary);
    vertical-align: middle;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray-600);
    transition: color 0.2s;
}

.filter-option:hover { color: var(--orange-primary); }

.filter-option input[type="radio"],
.filter-option input[type="checkbox"] {
    accent-color: var(--orange-primary);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.price-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
}

.price-inputs input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--gray-200);
    font-size: 13px;
    color: var(--gray-900);
    background: #fff;
    outline: none;
    border-radius: 0;
}

.price-inputs input:focus { border-color: var(--orange-primary); }

.filter-apply {
    width: 100%;
    margin-top: 14px;
    padding: 10px;
    background: var(--grad);
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.filter-apply:hover { background: var(--grad-h); }

.shop-main {}

.shop-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
    gap: 16px;
    flex-wrap: wrap;
}

.shop-search {
    display: flex;
    flex: 1;
    max-width: 420px;
    position: relative;
}

.shop-search input {
    width: 100%;
    padding: 11px 48px 11px 16px;
    border: 1px solid var(--gray-200);
    font-size: 14px;
    outline: none;
    background: #fff;
    border-radius: 0;
}

.shop-search input:focus { border-color: var(--orange-primary); }

.shop-search button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 46px;
    background: var(--grad);
    border: none;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-count {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 600;
}

.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.empty-state {
    grid-column: 1/-1;
    text-align: left;
    padding: 60px 0;
    color: var(--gray-400);
    width: 100%;
}

.empty-state svg { margin: 0 auto 16px; opacity: 0.4; }
.empty-state h3 { font-size: 20px; color: var(--gray-600); margin-bottom: 8px; }

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 48px 0 80px;
}

.product-gallery {}

.gallery-main {
    aspect-ratio: 1;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    background: var(--gray-50);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 72px;
    height: 72px;
    border: 2px solid var(--gray-200);
    overflow: hidden;
    cursor: pointer;
    background: var(--gray-50);
    transition: border-color 0.2s;
    flex-shrink: 0;
}

.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--orange-primary); }

.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.product-info {}

.product-info-breadcrumb {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-info-breadcrumb a:hover { color: var(--orange-primary); }

.product-info-cat {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange-mid);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-info h1 {
    font-size: 28px;
    font-weight: 900;
    color: var(--gray-900);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-price-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    background: var(--cream);
    border-left: 4px solid var(--orange-primary);
}

.product-price {
    font-size: 36px;
    font-weight: 900;
    color: var(--orange-deep);
    letter-spacing: -1px;
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
}

.stock-ok { color: #16a34a; }
.stock-out { color: #dc2626; }

.product-desc {
    margin-bottom: 28px;
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 15px;
}

.product-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.product-actions .btn { flex: 1; justify-content: center; }

.product-features-box { margin-top: 20px; padding: 16px 18px; background: var(--gray-50); border: 1px solid var(--gray-200); display: flex; flex-direction: column; gap: 10px; }
.product-feature-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray-600); }
.product-feature-row .feat-icon { color: var(--orange-primary); flex-shrink: 0; }

.breadcrumb {
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-400);
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 0;
}

.breadcrumb a { color: var(--orange-primary); }
.breadcrumb a:hover { color: var(--orange-deep); text-decoration: underline; }

.page-hero {
    background: var(--gray-900);
    padding: 48px 0;
}

.page-hero h1 { font-size: clamp(28px, 3vw, 44px); font-weight: 900; color: #fff; letter-spacing: -1px; }
.page-hero p { color: #888; margin-top: 10px; font-size: 16px; }
.page-hero .accent { color: var(--amber); }

.alert {
    padding: 14px 18px;
    font-size: 14px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.alert-success { background: #f0fdf4; border-color: #16a34a; color: #15803d; }
.alert-error { background: #fef2f2; border-color: #dc2626; color: #b91c1c; }

.reviews-section { padding: 60px 0; background: var(--white); border-top: 1px solid var(--gray-200); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.review-card { background: var(--white); border: 1px solid var(--gray-200); padding: 20px; }
.review-stars { color: #FFB800; font-size: 18px; margin-bottom: 8px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 12px; }
.review-author { font-size: 13px; font-weight: 700; color: var(--gray-700); display: inline; }
.review-date { font-size: 12px; color: var(--gray-400); margin-left: 8px; }
.review-form-wrap { max-width: 560px; margin: 0 auto; background: var(--gray-50); border: 1px solid var(--gray-200); padding: 32px; }
.review-form-wrap h3 { font-size: 18px; font-weight: 800; color: var(--gray-900); margin-bottom: 20px; text-align: center; }
.star-rating-input { display: flex; justify-content: center; gap: 6px; margin-bottom: 16px; flex-direction: row-reverse; }
.star-rating-input input[type=radio] { display: none; }
.star-rating-input label { font-size: 32px; color: var(--gray-300); cursor: pointer; transition: color 0.1s; line-height: 1; }
.star-rating-input label:hover, .star-rating-input label:hover ~ label, .star-rating-input input:checked ~ label { color: #FFB800; }

footer {
    background: var(--black);
    color: #ccc;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #1e1e1e;
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
}

.footer-logo-text small {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--amber);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-about {
    font-size: 13px;
    line-height: 1.8;
    color: #888;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 16px;
    transition: all 0.2s;
    border: 1px solid #222;
    text-decoration: none;
}

.footer-social a:hover { background: var(--orange-primary); color: #fff; border-color: var(--orange-primary); }

.footer-col h4 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange-deep);
    display: inline-block;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links li a, .footer-links a {
    font-size: 13px;
    color: #888;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a:hover, .footer-links a:hover { color: var(--amber); }
.footer-links span { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.8; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #888; margin-bottom: 10px; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--amber); }
.footer-contact-item a { color: #888; }
.footer-contact-item a:hover { color: var(--amber); }

.footer-bottom {
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p { font-size: 13px; color: #555; }
.footer-bottom a { color: var(--amber); font-weight: 700; }
.footer-bottom a:hover { color: var(--orange-light); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 56px 0 80px;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.contact-info .subtitle { color: var(--gray-600); margin-bottom: 36px; }

.contact-items { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--gray-200);
    background: #fff;
    transition: border-color 0.2s;
}

.contact-item:hover { border-color: var(--orange-light); }

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item-text strong { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-400); margin-bottom: 4px; }
.contact-item-text span { font-size: 15px; color: var(--gray-900); }
.contact-item-text a:hover { color: var(--orange-primary); }

.contact-store {}
.contact-store-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--gray-200); }

.contact-store-name {
    padding: 16px 20px;
    background: var(--gray-900);
    color: #fff;
}

.contact-store-name h3 { font-size: 18px; font-weight: 900; color: var(--amber); }
.contact-store-name p { font-size: 13px; color: #aaa; margin-top: 4px; }

.instagram-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    font-weight: 700;
    margin-top: 16px;
    transition: opacity 0.2s;
    font-size: 14px;
}

.instagram-btn:hover { opacity: 0.88; }

.news-hero {
    background: var(--gray-900);
    padding: 56px 0;
    margin-bottom: 0;
}

.news-hero h1 { font-size: 40px; font-weight: 900; color: #fff; letter-spacing: -1px; }
.news-hero p { color: #888; margin-top: 10px; font-size: 16px; }

.news-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 48px 0 80px;
}

.news-page-card {
    border: 1px solid var(--gray-200);
    background: #fff;
    overflow: hidden;
    transition: all 0.25s;
}

.news-page-card:hover {
    border-color: var(--orange-light);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.news-page-card-img { height: 220px; background: var(--gray-100); overflow: hidden; }
.news-page-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-page-card:hover .news-page-card-img img { transform: scale(1.05); }
.news-img-placeholder { width: 100%; height: 100%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 52px; }
.news-page-card-body { padding: 22px; }
.news-page-card-date { font-size: 12px; color: var(--gray-400); font-weight: 600; margin-bottom: 10px; }
.news-page-card-title { font-size: 17px; font-weight: 800; color: var(--gray-900); line-height: 1.4; margin-bottom: 10px; }
.news-page-card-excerpt { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.news-read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--orange-primary); }
.news-read-more:hover { color: var(--orange-deep); }

.news-single-article { max-width: 800px; margin: 48px auto 80px; padding: 0 24px; }
.news-single-article h1 { font-size: 36px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 16px; line-height: 1.2; }
.news-single-meta { font-size: 13px; color: var(--gray-400); margin-bottom: 28px; font-weight: 600; }
.news-single-img { width: 100%; margin-bottom: 32px; border: 1px solid var(--gray-200); }
.news-single-content { font-size: 16px; line-height: 1.9; color: var(--gray-900); }
.news-single-content p { margin-bottom: 18px; }
.news-empty { text-align: center; padding: 80px 20px; color: var(--gray-400); }
.news-empty h3 { font-size: 22px; color: var(--gray-600); margin-bottom: 10px; }

.auth-page-wrap { min-height: 100vh; background: var(--white); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-page-card { width: 100%; max-width: 400px; }
.auth-page-logo { text-align: center; margin-bottom: 32px; }
.auth-page-logo img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; }
.auth-page-logo-name { font-size: 22px; font-weight: 900; color: var(--orange-primary); letter-spacing: 1px; }
.auth-page-logo-sub { font-size: 11px; color: var(--gray-400); letter-spacing: 1.5px; font-weight: 600; margin-top: 2px; }
.auth-page-card h2 { font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 24px; text-align: center; }
.auth-tab-switch { display: flex; border-bottom: 2px solid var(--gray-200); margin-bottom: 24px; }
.auth-tab-btn { flex: 1; padding: 12px; font-size: 14px; font-weight: 700; color: var(--gray-500); background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px; cursor: pointer; transition: all 0.15s; letter-spacing: 0.5px; }
.auth-tab-btn.active { color: var(--orange-primary); border-bottom-color: var(--orange-primary); }
.auth-form { display: none; }
.auth-form.active { display: block; }

.chat-auth-page {
    min-height: 100vh;
    background: var(--gray-900);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.chat-auth-logo { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin-bottom: 24px; border: 3px solid rgba(255,130,32,0.5); }
.chat-auth-logo img { width: 100%; height: 100%; object-fit: cover; }

.chat-auth-box {
    background: #161616;
    border: 1px solid #2a2a2a;
    width: 100%;
    max-width: 420px;
    padding: 36px;
}

.chat-auth-tabs {
    display: flex;
    border-bottom: 1px solid #2a2a2a;
    margin-bottom: 28px;
}

.chat-auth-tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #666;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chat-auth-tab.active { color: var(--amber); border-bottom-color: var(--orange-primary); }

.chat-auth-form { display: none; }
.chat-auth-form.active { display: block; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-600); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-200);
    font-size: 14px;
    color: var(--gray-900);
    background: #fff;
    outline: none;
    border-radius: 0;
    transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange-primary); }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--grad);
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.2s;
    margin-top: 4px;
}

.form-submit:hover { background: var(--grad-h); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.auth-divider { text-align: center; font-size: 13px; color: var(--gray-400); margin-top: 18px; }
.auth-divider a { color: var(--orange-primary); font-weight: 700; }
.auth-divider a:hover { text-decoration: underline; }
.auth-error { background: rgba(220,53,69,0.08); border: 1px solid rgba(220,53,69,0.3); color: var(--danger); padding: 11px 14px; font-size: 13px; margin-bottom: 16px; }
.auth-success { background: rgba(40,167,69,0.08); border: 1px solid rgba(40,167,69,0.3); color: var(--success); padding: 11px 14px; font-size: 13px; margin-bottom: 16px; }

.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9000; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(3px); }
.modal.active { display: flex; }
.modal-content { background: var(--white); width: 100%; max-width: 420px; padding: 36px 32px; position: relative; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); animation: modalIn 0.2s ease; }
@keyframes modalIn { from { transform: scale(0.95) translateY(-10px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.modal-close { position: absolute; top: 14px; right: 14px; background: var(--gray-100); border: none; color: var(--gray-500); font-size: 20px; cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; line-height: 1; transition: all 0.15s; }
.modal-close:hover { background: var(--gray-200); color: var(--gray-800); }
.modal-logo { text-align: center; margin-bottom: 20px; }
.modal-logo-name { font-size: 20px; font-weight: 900; color: var(--orange-primary); letter-spacing: 0.5px; }
.modal-tabs { display: flex; border-bottom: 2px solid var(--gray-200); margin-bottom: 20px; }
.modal-tab { flex: 1; padding: 10px; font-size: 13px; font-weight: 700; color: var(--gray-500); background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px; cursor: pointer; transition: all 0.15s; letter-spacing: 0.4px; }
.modal-tab.active { color: var(--orange-primary); border-bottom-color: var(--orange-primary); }
.modal-form { display: none; }
.modal-form.active { display: block; }

.chat-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background: var(--grad);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(200,75,0,0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}

.chat-fab:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(200,75,0,0.55); }
.chat-fab svg { width: 26px; height: 26px; fill: #fff; }

.chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: #e00;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 9998;
    width: 360px;
    background: #fff;
    border: 1px solid var(--gray-200);
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
    display: none;
    flex-direction: column;
    max-height: 480px;
}

.chat-widget.open { display: flex; }

.chat-widget-head {
    background: var(--gray-900);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-widget-head-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,130,32,0.5);
    flex-shrink: 0;
}

.chat-widget-head-logo img { width: 100%; height: 100%; object-fit: cover; }

.chat-widget-head-info { flex: 1; }
.chat-widget-head-name { font-size: 14px; font-weight: 700; color: #fff; }
.chat-widget-head-status { font-size: 12px; color: var(--amber); }

.chat-widget-close {
    background: none;
    border: none;
    color: #888;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.chat-widget-close:hover { color: #fff; }

.chat-widget-msgs {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--gray-50);
}

.chat-msg {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.chat-msg.user { align-self: flex-end; align-items: flex-end; }
.chat-msg.admin, .chat-msg.bot { align-self: flex-start; }

.chat-msg-bubble {
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
}

.chat-msg.user .chat-msg-bubble { background: var(--grad); color: #fff; }
.chat-msg.admin .chat-msg-bubble, .chat-msg.bot .chat-msg-bubble {
    background: #fff;
    border: 1px solid var(--gray-200);
    color: var(--gray-900);
}

.chat-msg-time { font-size: 10px; color: var(--gray-400); margin-top: 4px; padding: 0 4px; }

.chat-widget-input {
    display: flex;
    border-top: 1px solid var(--gray-200);
    background: #fff;
}

.chat-widget-input input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    font-size: 14px;
    outline: none;
    background: transparent;
}

.chat-widget-input button {
    padding: 0 18px;
    background: var(--grad);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
}

.chat-widget-input button:hover { background: var(--grad-h); }

.ai-chat-fab { position: fixed; bottom: 28px; right: 28px; width: 54px; height: 54px; border-radius: 50%; background: var(--grad); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(200,75,0,0.35); z-index: 800; transition: all 0.2s; }
.ai-chat-fab:hover { background: var(--grad-h); transform: scale(1.05); }
.ai-chat-fab svg { width: 24px; height: 24px; }
.ai-pulse { position: absolute; top: 0; right: 0; width: 12px; height: 12px; background: #28a745; border-radius: 50%; border: 2px solid #fff; }
.ai-chat-widget { position: fixed; bottom: 94px; right: 28px; width: 360px; height: 500px; background: var(--white); border: 1px solid var(--gray-200); box-shadow: var(--shadow-lg); z-index: 800; display: none; flex-direction: column; overflow: hidden; }
.ai-chat-head { background: var(--grad); padding: 14px 16px; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ai-chat-avatar { position: relative; width: 36px; height: 36px; flex-shrink: 0; }
.ai-chat-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.4); }
.ai-online-dot { position: absolute; bottom: 0; right: 0; width: 10px; height: 10px; background: #28a745; border-radius: 50%; border: 2px solid var(--orange-primary); }
.ai-chat-head-info { flex: 1; }
.ai-chat-head-name { font-size: 14px; font-weight: 700; color: #fff; }
.ai-chat-head-status { font-size: 11px; color: rgba(255,255,255,0.75); margin-top: 1px; }
.ai-chat-close { background: rgba(255,255,255,0.2); border: none; border-radius: 50%; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer; transition: background 0.15s; }
.ai-chat-close:hover { background: rgba(255,255,255,0.3); }
.ai-chat-msgs { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.ai-msg { display: flex; }
.ai-msg-bot { justify-content: flex-start; }
.ai-msg-user { justify-content: flex-end; }
.ai-bubble { max-width: 82%; padding: 10px 13px; font-size: 13px; line-height: 1.5; }
.ai-msg-bot .ai-bubble { background: var(--gray-100); color: var(--gray-900); }
.ai-msg-user .ai-bubble { background: var(--grad); color: #fff; }
.ai-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.ai-chip { padding: 5px 10px; background: var(--white); border: 1px solid var(--gray-200); font-size: 12px; color: var(--gray-700); cursor: pointer; font-family: inherit; transition: all 0.15s; }
.ai-chip:hover { border-color: var(--orange-primary); color: var(--orange-primary); }
.ai-typing { display: flex; align-items: center; gap: 4px; padding: 10px 13px; }
.ai-typing span { width: 7px; height: 7px; background: var(--gray-400); border-radius: 50%; animation: bounce 1.4s infinite; }
.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-5px); } }
.ai-chat-input-wrap { padding: 12px; border-top: 1px solid var(--gray-200); display: flex; gap: 8px; flex-shrink: 0; background: var(--white); }
.ai-chat-input { flex: 1; padding: 9px 12px; border: 1.5px solid var(--gray-200); font-size: 13px; color: var(--gray-900); background: var(--white); font-family: inherit; border-radius: 0; }
.ai-chat-input:focus { outline: none; border-color: var(--orange-primary); }
.ai-chat-send { width: 36px; height: 36px; background: var(--grad); color: #fff; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: background 0.15s; }
.ai-chat-send:hover { background: var(--grad-h); }

.cart-page { min-height: 100vh; background: var(--white); padding-bottom: 60px; }
.cart-page-header { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 24px 0; margin-bottom: 32px; }
.cart-progress { display: flex; align-items: center; justify-content: center; margin-bottom: 0; }
.progress-step { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--gray-400); }
.progress-step.active { color: var(--orange-primary); }
.progress-step.done { color: var(--success); }
.progress-circle { width: 28px; height: 28px; border-radius: 50%; background: var(--gray-200); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: var(--gray-500); flex-shrink: 0; }
.progress-step.active .progress-circle { background: var(--orange-primary); color: #fff; }
.progress-step.done .progress-circle { background: var(--success); color: #fff; }
.progress-line { width: 60px; height: 2px; background: var(--gray-200); margin: 0 4px; }
.progress-line.done { background: var(--success); }
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.cart-form-section { background: var(--white); border: 1px solid var(--gray-200); padding: 28px; }
.cart-form-section h3 { font-size: 16px; font-weight: 800; color: var(--gray-900); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--gray-200); }
.cart-items-section { background: var(--white); border: 1px solid var(--gray-200); padding: 20px; margin-bottom: 16px; }
.cart-items-section h3 { font-size: 15px; font-weight: 800; color: var(--gray-900); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-200); }
.cart-item-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
.cart-item-row:last-child { border-bottom: none; }
.cart-item-img { width: 56px; height: 56px; background: var(--gray-100); overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 600; color: var(--gray-900); }
.cart-item-price-row { display: flex; align-items: center; justify-content: space-between; }
.cart-item-qty { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.cart-item-price { font-size: 14px; font-weight: 800; color: var(--gray-900); }
.cart-item-remove { background: none; border: none; color: var(--gray-400); cursor: pointer; padding: 4px; transition: color 0.15s; }
.cart-item-remove:hover { color: var(--danger); }
.cart-summary-box { background: var(--white); border: 1px solid var(--gray-200); padding: 20px; position: sticky; top: calc(var(--nav-h) + 16px); }
.cart-summary-box h3 { font-size: 15px; font-weight: 800; color: var(--gray-900); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-200); }
.cart-summary-line { display: flex; justify-content: space-between; font-size: 14px; color: var(--gray-600); margin-bottom: 8px; }
.cart-summary-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 800; color: var(--gray-900); padding-top: 12px; border-top: 2px solid var(--gray-200); margin-top: 8px; margin-bottom: 20px; }
.cart-empty-state { text-align: center; padding: 80px 20px; color: var(--gray-400); }
.cart-empty-state svg { margin: 0 auto 16px; opacity: 0.4; }
.cart-empty-state h2 { font-size: 22px; color: var(--gray-600); margin-bottom: 8px; }
.cart-empty-state p { font-size: 14px; }

.confirm-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9999; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px); }
.confirm-overlay.active { display: flex; }
.confirm-box { background: var(--white); padding: 36px 32px; max-width: 440px; width: 100%; text-align: center; box-shadow: var(--shadow-lg); animation: modalIn 0.2s ease; }
.confirm-icon { width: 64px; height: 64px; background: var(--cream); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--orange-primary); }
.confirm-box h3 { font-size: 20px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.confirm-box p { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }
.confirm-actions { display: flex; gap: 10px; justify-content: center; }
.success-box { background: var(--white); padding: 40px 32px; max-width: 440px; width: 100%; text-align: center; box-shadow: var(--shadow-lg); animation: modalIn 0.2s ease; }
.success-icon { width: 72px; height: 72px; background: rgba(40,167,69,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--success); }
.success-box h3 { font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.success-box p { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }

.order-status-page { padding: 40px 0 80px; }
.order-card { background: var(--white); border: 1px solid var(--gray-200); padding: 24px; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.order-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-100); }
.order-id { font-size: 13px; color: var(--gray-500); }
.order-id strong { color: var(--gray-900); }
.order-date { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
.order-status-badge { padding: 5px 12px; font-size: 12px; font-weight: 700; letter-spacing: 0.3px; }
.status-pending { background: #FFF3CD; color: #856404; }
.status-packed { background: #D1ECF1; color: #0C5460; }
.status-shipped { background: #CCE5FF; color: #004085; }
.status-delivered { background: #D4EDDA; color: #155724; }
.status-cancelled { background: #F8D7DA; color: #721C24; }
.order-progress-track { display: flex; align-items: center; margin: 16px 0; overflow-x: auto; }
.track-step { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; min-width: 70px; }
.track-step-dot { width: 32px; height: 32px; border-radius: 50%; background: var(--gray-200); border: 2px solid var(--gray-200); display: flex; align-items: center; justify-content: center; color: var(--gray-400); position: relative; z-index: 1; }
.track-step.done .track-step-dot { background: var(--success); border-color: var(--success); color: #fff; }
.track-step.active .track-step-dot { background: var(--orange-primary); border-color: var(--orange-primary); color: #fff; }
.track-step-label { font-size: 11px; font-weight: 600; color: var(--gray-400); text-align: center; line-height: 1.2; }
.track-step.done .track-step-label { color: var(--success); }
.track-step.active .track-step-label { color: var(--orange-primary); font-weight: 700; }
.track-line { flex: 1; height: 2px; background: var(--gray-200); margin-top: -22px; }
.track-line.done { background: var(--success); }

.msg-success { background: rgba(40,167,69,0.1); border: 1px solid rgba(40,167,69,0.3); color: var(--success); padding: 14px 18px; font-size: 14px; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.msg-error { background: rgba(220,53,69,0.1); border: 1px solid rgba(220,53,69,0.3); color: var(--danger); padding: 14px 18px; font-size: 14px; margin-bottom: 20px; }

@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .features-row { grid-template-columns: repeat(2, 1fr); }
    .feature-item:nth-child(2) { border-right: none; }
    .shop-layout { grid-template-columns: 220px 1fr; }
    .shop-products-grid { grid-template-columns: repeat(2, 1fr); }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary-box { position: static; }
}

@media (max-width: 768px) {
    
    .hamburger { display: flex !important; }

    
    .navbar-inner { flex-wrap: nowrap; height: auto; padding: 12px 0; align-items: center; }

    
    .navbar-actions .btn-login,
    .navbar-actions .btn-register,
    .navbar-actions .btn-logout,
    .navbar-actions .user-chip { display: none !important; }

    
    .navbar-nav {
        display: none !important;
        position: fixed !important;
        top: 68px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: #ffffff !important;
        border-bottom: 2px solid var(--gray-200) !important;
        flex-direction: column !important;
        padding: 0 !important;
        gap: 0 !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
        z-index: 9990 !important;
        list-style: none !important;
        margin: 0 !important;
    }
    .navbar-nav.open {
        display: flex !important;
    }
    .navbar-nav li {
        width: 100%;
        border-bottom: 1px solid var(--gray-100);
    }
    .navbar-nav li:last-child { border-bottom: none; }
    .navbar-nav li a {
        display: flex !important;
        align-items: center !important;
        padding: 16px 24px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        color: var(--gray-800) !important;
        background: transparent !important;
        width: 100% !important;
    }
    .navbar-nav li a:hover,
    .navbar-nav li a.active {
        color: var(--orange-primary) !important;
        background: var(--cream) !important;
    }
    .navbar-nav li a::after { display: none !important; }

    /* Kategorije dropdown — mobilni */
    .nav-dropdown-wrap { width: 100%; }
    .nav-dropdown-toggle { justify-content: space-between; }
    .nav-dropdown {
        display: none;
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        border-top: 1px solid var(--gray-100) !important;
        animation: none !important;
        background: var(--gray-50) !important;
        padding: 0 !important;
        min-width: 0 !important;
        width: 100% !important;
    }
    .nav-dropdown-wrap.open .nav-dropdown { display: block !important; }
    .nav-dropdown li a {
        padding: 13px 24px 13px 40px !important;
        font-size: 14px !important;
        border-bottom: 1px solid var(--gray-100) !important;
        background: transparent !important;
        color: var(--gray-700) !important;
    }
    .nav-dropdown li a:hover {
        background: var(--cream) !important;
        color: var(--orange-primary) !important;
    }
    .nav-dropdown li:first-child { border-bottom: none; margin: 0; padding: 0; }

    
    .navbar-nav-auth-mobile { display: block !important; }
    .navbar-nav-auth-mobile a {
        color: var(--orange-primary) !important;
        font-weight: 700 !important;
        border-top: 1px solid var(--gray-200) !important;
    }

    
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .cart-nav-btn { width: 44px; height: 44px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .news-grid { grid-template-columns: 1fr; }
    .news-page-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .product-detail { grid-template-columns: 1fr; gap: 24px; }
    .shop-layout { grid-template-columns: 1fr; width: 100%; overflow: hidden; }
    .shop-filters { position: static; width: 100%; }
    .shop-main { width: 100%; min-width: 0; overflow: hidden; }
    .shop-products-grid { grid-template-columns: repeat(2, 1fr); width: 100%; }
    .shop-grid-full { grid-template-columns: repeat(2, 1fr); }
    .product-card { min-width: 0; width: 100%; }
    .product-card-footer { padding: 8px; gap: 6px; }
    .product-card-footer .btn { padding: 8px 6px; font-size: 11px; min-width: 0; }
    .shop-topbar { flex-direction: column; align-items: stretch; }
    .shop-search { max-width: 100%; }

    /* Shop toolbar mobilni */
    .shop-toolbar { flex-direction: column; align-items: stretch; gap: 8px; }
    .shop-toolbar-form { flex-direction: column; align-items: stretch; gap: 8px; }
    .shop-search { max-width: 100%; width: 100%; }
    .shop-price-filter { flex-wrap: wrap; }
    .shop-price-filter input[type="number"] { width: 90px; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .features-row { grid-template-columns: 1fr; }
    .feature-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
    .hero { padding: 48px 0; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .chat-widget { width: calc(100vw - 40px); right: 20px; }
    .ai-chat-widget { width: calc(100vw - 32px); right: 16px; bottom: 80px; max-height: 60vh; }
    .reviews-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .shop-products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .hero h1 { font-size: 28px; }
    .section { padding: 48px 0; }
}