body {
    background-color: #f5f5f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 20px;
}

.container {
    max-width: 1200px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 15px;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: #1ab394;
    margin-bottom: 5px;
    text-align: center;
}

    .logo img {
        max-width: 100%;
        height: auto;
        width: 180px;
        transition: all 0.3s ease;
    }

        .logo img:hover {
            transform: scale(1.05);
        }

.page-header {
    border-bottom: 1px solid #e7eaec;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.ibox {
    margin-bottom: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.438);
    transition: all 0.3s ease;
}

    .ibox:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.ibox-content {
    padding: 0;
}

.product-box {
    position: relative;
}

.product-imitation {
    height: 250px;
    background: #f8f8f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bebebe;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

    .product-imitation img {
        border: 1px solid #696969;
        border-radius: 15px;

        background: #fff;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.product-card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-box:hover .product-actions {
    opacity: 1;
}

.product-desc {
    padding: 5px;
}

.product-card-price {
    font-size: 18px;
    font-weight: 700;
    color: #1ab394;
    display: block;
    margin-bottom: 5px;
}

.text-muted {
    color: #888;
    font-size: 10px;
    text-transform: uppercase;
}

.product-card-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 5px 0;
    text-decoration: none;
    transition: color 0.3s;
}

    .product-card-title:hover {
        color: #3498db;
    }

.small {
    font-size: 13px;
    color: #676a6c;
    margin: 10px 0;
    line-height: 1.4;
    height: 55px;
    overflow: hidden;
}

.m-t {
    margin-top: 15px;
}

.text-righ {
    text-align: right;
}

.btn-xs {
    padding: 4px 10px;
    font-size: 12px;
}

.product-rating {
    display: flex;
    align-items: center;
    margin: 8px 0;
}

    .product-rating .stars {
        color: #f8c120;
        font-size: 13px;
        margin-right: 5px;
    }

    .product-rating .rating-count {
        color: #888;
        font-size: 12px;
    }

.product-card-image-container img {
    border: 1px solid #ddd;
    border-radius: 15px 15px 1px 1px;
}

.pagination {
    margin-top: 30px;
    justify-content: center;
}

@media (max-width: 768px) {
    .col-md-3 {
        margin-bottom: 20px;
    }
}
