body {
    font-family: 'Segoe UI', sans-serif;
    background: #f4f6f9;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
       .top-bar {
        font-size: 8px; /* менший текст */
        padding: 5px 0;
    }

 
}
h1, h2, h3, h4, h5 {
    font-weight: 600;
}

p {
    font-weight: 400;
    line-height: 1.6;
}


/* ===== TOP BAR LIGHT ===== */
.top-bar {
    background: #f8f9fa; /* світлий фон */
    color: #0a1f44;       /* темно-синій текст */
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid #e3e6ea;
}

.top-info {
    opacity: 0.9;
}

/* посилання (телефон) */
.top-bar a {
    color: #0a1f44;
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* ===== HEADER ===== */
.navbar {
    background: linear-gradient(135deg, #0a1f44, #0d2f66);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      position: sticky;
    top: 0;
    z-index: 1000;
}


.navbar-brand {
    font-weight: 600;
    letter-spacing: 1px;
}

.navbar .nav-link {
    color: #ffffff !important;
    opacity: 0.9;
    transition: 0.3s;
}

.navbar .nav-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

/* ===== CARDS ===== */
.card {
    border-radius: 12px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card img {
    height: 200px;
    object-fit: cover;
}

/* ===== BUTTONS ===== */
.btn {
    border-radius: 8px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .navbar-nav {
        background: #0a1f44;
        padding: 10px;
        border-radius: 10px;
        margin-top: 10px;
    }
}


.products-count {
    background: #e9f1ff;
    padding: 10px 15px;
    border-radius: 10px;
    display: inline-block;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* IMAGE */
.product-image {
    height: 200px;
    overflow: hidden;
}

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

/* TITLE */
.product-title {
    font-size: 18px;
    font-weight: 600;
}

/* CATEGORY */
.product-category {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 5px;
}

/* DESCRIPTION */
.product-description {
    font-size: 14px;
    color: #444;
}

/* FOOTER */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* PRICE */
.price {
    font-size: 18px;
    font-weight: bold;
    color: #0d2f66;
}