body {
    background-color: #f4f5f7;
    color: #111;
    font-family: var(--company-font, "Segoe UI", Arial, sans-serif);
}

.hero-company {
    background: linear-gradient(120deg, #171717 0%, #2d2d2d 65%, #111 100%);
    min-height: 320px;
}

.site-header {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #fff;
}

.brand-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
}

.company-logo {
    max-height: 52px;
    max-width: 190px;
    width: auto;
}

.search-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    width: min(760px, 100%);
    border: 1px solid #d9dce2;
    border-radius: 6px;
    overflow: hidden;
}

.search-input {
    border: 0;
    border-radius: 0;
    padding: 0.7rem 0.9rem;
}

.search-input:focus {
    box-shadow: none;
}

.btn-search {
    border: 0;
    border-left: 1px solid #d9dce2;
    border-radius: 0;
    background: var(--company-accent, #ffbe00);
    font-weight: 700;
    padding: 0.7rem 1rem;
}

.top-links {
    gap: 1rem;
}

.top-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
}

.main-nav .nav-link {
    color: #171717;
    font-weight: 700;
    padding: 0.8rem 1rem !important;
}

.main-nav {
    background-color: var(--company-primary, #f0ad00);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hero-title {
    font-size: clamp(1.8rem, 3.8vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.hero-subtitle {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.4rem;
}

.hero-discount {
    background: var(--company-accent, #ffbe00);
    color: #111;
    border-radius: 12px;
    padding: 1.2rem 1.6rem;
    min-width: 180px;
    text-align: center;
}

.hero-discount span,
.hero-discount small {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
}

.hero-discount strong {
    display: block;
    font-size: 3rem;
    line-height: 1;
}

.promo-strip {
    background: #fff;
    border: 1px solid #e4e6ea;
    border-radius: 12px;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.promo-item {
    background: #fafafa;
    border-radius: 8px;
    padding: 0.75rem;
}

.promo-item strong,
.promo-item span {
    display: block;
}

.promo-item strong {
    font-size: 0.95rem;
}

.promo-item span {
    color: #6b7280;
    font-size: 0.85rem;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.section-head h2 {
    font-size: 1.35rem;
    margin: 0;
}

.section-head a {
    color: #111;
    text-decoration: none;
    font-weight: 700;
}

.product-card {
    border: 1px solid #e3e6eb;
    background: #fff;
    border-radius: 10px;
    padding: 0.9rem;
    height: 100%;
}

.product-thumb {
    height: 120px;
    border-radius: 8px;
    margin-bottom: 0.7rem;
    background: linear-gradient(135deg, #f0f2f4 0%, #d8dde3 100%);
}

.product-card h6 {
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.product-card p {
    color: #667085;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.price-tag {
    display: inline-block;
    background: var(--company-accent, #ffbe00);
    color: #111;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
    font-size: 0.86rem;
}

.cta-banner {
    background: linear-gradient(90deg, #131313 0%, #2a2a2a 100%);
    color: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-footer a {
    display: block;
    color: #f8f9fa;
    opacity: 0.88;
    text-decoration: none;
    margin-bottom: 0.32rem;
    font-size: 0.92rem;
}

.site-footer {
    background-color: var(--company-secondary, #111111);
}

.site-footer a:hover {
    opacity: 1;
}

.footer-title {
    color: var(--company-accent, #ffbe00);
    text-transform: uppercase;
    font-size: 0.84rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.65rem;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.92);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .promo-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .search-wrap {
        width: 100%;
    }

    .promo-strip {
        grid-template-columns: 1fr;
    }
}
