body {
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #24324a;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.utility-bar {
    background: linear-gradient(90deg, #f97316 0%, #ff7a18 100%);
    color: #fff;
}

.utility-inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.utility-contact,
.utility-links {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.utility-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    font-size: 0.9rem;
}

.utility-language,
.app-link {
    border: 0;
    border-radius: 10px;
    background: #fff7ed;
    color: #ea580c;
    padding: 0.55rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.utility-language:hover,
.app-link:hover {
    background: #ffffff;
    color: #c2410c;
}

.utility-links a:not(.app-link) {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.main-nav {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.nav-shell {
    gap: 1.5rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    min-width: 180px;
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 14px 14px 14px 4px;
    background: linear-gradient(135deg, #1d4ed8 0%, #38bdf8 55%, #fb923c 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong {
    color: #2563eb;
    font-size: 1rem;
}

.brand-text small {
    color: #fb923c;
    text-transform: lowercase;
    letter-spacing: 0.04em;
}

.nav-menu {
    gap: 0.35rem;
}

.nav-menu .nav-link {
    color: #64748b;
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
}

.nav-menu .nav-link.active,
.nav-menu .nav-link:hover {
    color: #4b6387;
    background: #f8fafc;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.search-wrap {
    width: min(100%, 300px);
    height: 44px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0 1rem;
    background: #fff;
    border: 1px solid #d7dce3;
    border-radius: 10px;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
}

.search-icon {
    color: #7c8aa5;
    font-size: 1.05rem;
}

.search-input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #334155;
}

.search-input::placeholder {
    color: #8c98ab;
}

.action-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #334155;
    border-radius: 999px;
    font-size: 1.15rem;
}

.action-icon:hover {
    background: #f8fafc;
}

.nav-toggle {
    border: 1px solid #d7dce3;
}

.nav-toggle .navbar-toggler-icon {
    filter: invert(30%);
}

.market-main {
    padding: 2rem 0 0;
}

.market-section {
    padding: 1rem 0 2rem;
}

.section-heading {
    margin-bottom: 1.6rem;
}

.section-heading h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0f172a;
}

.section-heading h1 span {
    color: #f97316;
}

.section-heading p {
    margin-top: 0.65rem;
    max-width: 700px;
    color: #64748b;
    font-size: 1.02rem;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.6rem;
}

.filter-pill {
    border: 1px solid #eceff4;
    background: #f6f6f7;
    color: #111827;
    border-radius: 999px;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.filter-pill.active,
.filter-pill:hover {
    background: #171717;
    color: #fff;
    border-color: #171717;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    gap: 1rem;
}

.product-card {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.45rem;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border: 1px solid #e5e7eb;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1;
    z-index: 1;
}

.product-image-wrap {
    overflow: hidden;
    border-radius: 10px;
    background: #f8fafc;
    aspect-ratio: 0.92 / 1;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 0.75rem 0.25rem 0.15rem;
}

.product-price {
    color: #f97316;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.product-title {
    font-size: 0.98rem;
    line-height: 1.3;
    color: #0f172a;
    min-height: 2.55rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-section {
    padding: 2rem 0 2.5rem;
}

.service-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eceff4;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    color: #0f172a;
    font-size: 0.95rem;
    text-align: center;
}

.service-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 1.1rem;
}

.site-footer {
    margin-top: 3rem;
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
    color: #e5e7eb;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr 0.9fr 1.2fr;
    gap: 2rem;
    padding: 3rem 0 2rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-description {
    max-width: 320px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 10px;
    text-decoration: none;
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.03);
}

.footer-links-block,
.footer-contact-block {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links-block h3,
.footer-contact-block h3 {
    margin: 0 0 0.5rem;
    color: #f8fafc;
    font-size: 1.05rem;
}

.footer-links-block a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-links-block a:hover,
.footer-bottom-links a:hover,
.footer-socials a:hover {
    color: #ffffff;
}

.footer-contact-block p {
    margin: 0;
    color: #94a3b8;
    line-height: 1.7;
}

.footer-form {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.4rem;
}

.footer-form input {
    flex: 1;
    min-width: 0;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: #f8fafc;
    padding: 0.85rem 1rem;
    outline: 0;
}

.footer-form input::placeholder {
    color: #94a3b8;
}

.footer-form button {
    border: 0;
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    background: #f97316;
    color: #fff;
    font-weight: 700;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    color: #cbd5e1;
    margin-top: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.footer-bottom-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
}

@media (max-width: 767px) {
    .utility-inner,
    .utility-links,
    .nav-actions,
    .nav-shell {
        flex-wrap: wrap;
    }
    .utility-inner {
        justify-content: center;
        padding-top: 0.65rem;
        padding-bottom: 0.65rem;
    }
    .utility-contact,
    .utility-links {
        justify-content: center;
    }
    .main-nav {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    .brand-mark {
        min-width: auto;
    }
    .nav-actions {
        width: 100%;
        justify-content: center;
        padding-top: 0.75rem;
    }
    .search-wrap {
        width: 100%;
    }
    .market-main {
        padding-top: 1rem;
    }
    .filter-pills {
        gap: 0.65rem;
    }
    .filter-pill {
        padding: 0.7rem 1.25rem;
    }
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
    .product-title {
        font-size: 0.95rem;
    }
    .service-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .footer-form {
        flex-direction: column;
    }
    .footer-bottom-inner {
        min-height: auto;
        padding: 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .footer-bottom-links {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}
