:root {
    --brand-primary: #ff4500; /* Ярко-оранжевый акцент остается */
    --brand-primary-hover: #e63e00;
    --brand-dark: #1a1a1a;
    --brand-light: #ffffff;
    --brand-gray: #f8f9fa;
    --brand-silver: #e9ecef;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --border-color: #eee;
}
body { font-family: 'Inter', -apple-system, system-ui, sans-serif; background: #fff; color: var(--text-main); line-height: 1.6; }

.navbar { background: rgba(255,255,255,0.95) !important; backdrop-filter: blur(15px); border-bottom: 1px solid var(--border-color); padding: 1.2rem 0; }
.navbar-brand { font-weight: 900; font-size: 1.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-dark) !important; }
.navbar-brand span { color: var(--brand-primary); }
.nav-link { font-weight: 500; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1.5px; color: var(--text-main) !important; }
.nav-link:hover, .nav-link.active { color: var(--brand-primary) !important; }

.btn-primary { background: var(--brand-primary); border: none; color: #fff; font-weight: 700; border-radius: 4px; padding: 12px 30px; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; transition: 0.3s; }
.btn-primary:hover { background: var(--brand-primary-hover); color: #fff; transform: translateY(-2px); }
.btn-outline-primary { border: 2px solid var(--brand-primary); color: var(--brand-primary); border-radius: 4px; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; font-weight: 700; }
.btn-outline-primary:hover { background: var(--brand-primary); color: #fff; }

.hero {
    background: radial-gradient(circle at center, #ffffff 0%, #f8f9fa 100%);
    padding: 12rem 0;
    text-align: center;
}
.hero h1 { font-size: 5rem; font-weight: 900; letter-spacing: -2px; margin-bottom: 1rem; text-transform: uppercase; color: var(--brand-dark); }
.product-placeholder {
    background: #f8f9fa;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ced4da;
    font-size: 5rem;
    border: 1px solid var(--border-color);
}

.footer { background: #ffffff; color: var(--text-muted); padding: 6rem 0 3rem; border-top: 1px solid var(--border-color); }
.footer h5 { color: var(--brand-dark); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2rem; }
.footer a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.footer a:hover { color: var(--brand-primary); }

.fixed-shop-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--brand-primary);
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1000;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(255,69,0,0.2);
    transition: 0.3s;
}
.fixed-shop-btn:hover { background: var(--brand-primary); color: #fff; transform: scale(1.05); }
