.nav-link {
    color: #004d40;
}
.nav-link:hover {
    text-decoration: underline;
}
 .category-btn {
        background-color: #fff;
        border: 1px solid #dee2e6;
        font-weight: 600;
        color: #2c3e50;
        padding: 15px;
        text-align: center;
        transition: all 0.2s ease;
    }
    .category-btn:hover {
        background-color: #eafaf1;
        border-color: #1abc9c;
        color: #1abc9c;
    }
    .category-btn.active {
        border-color: #1abc9c;
        color: #1abc9c;
    }

.product-card {
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 15px;
        height: 100%;
    }
    .product-name { font-weight: bold; min-height: 48px; }
    .product-price { color: red; font-weight: bold; }
    .product-bonus { font-size: 13px; color: green; }
    .rating { color: orange; }
    .category-title {
        background-color: #0d6efd;
        color: #fff;
        padding: 10px;
        border-radius: 6px;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

     .service-box {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }
        .service-box:hover {
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .service-icon {
            font-size: 40px;
            color: #0b5e34;
            margin-bottom: 10px;
        }
        h2.title {
            text-align: center;
            margin-bottom: 30px;
            color: #0b5e34;
            font-weight: bold;
        }

        .product-card img {
            height: 200px;
            object-fit: contain;
        }
        .product-card .price {
            color: red;
            font-weight: bold;
        }
        .news-horizontal {
      border: 1px solid #dee2e6;
      border-radius: 8px;
      overflow: hidden;
      background: #fff;
      transition: 0.3s;
      margin-bottom: 1%;
    }
    .news-horizontal:hover {
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .category-label {
      background: #28a745;
      color: white;
      font-weight: bold;
      text-align: center;
      padding: 5px;
      font-size: 14px;
    }
    .news-title {
      font-weight: 600;
      color: #28a745;
      text-transform: uppercase;
    }
    .news-title:hover {
      text-decoration: underline;
    }
body {
    font-family: Arial, sans-serif;
}
a {
    text-decoration: none !important;
}
.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product {
            background-color: white !important;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            transition: 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
.product:hover {
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
.category-menu a {
            margin-right: 10px;
        }
.product img {
            height: 120px;
            object-fit: contain;
            margin-bottom: 10px;
        }
.price-old {
            text-decoration: line-through;
            color: gray !important;
            font-size: 0.9em;
        }
.price-new {
            color: red !important;
            font-weight: bold;
        }
