/* Product Offer Styles */
.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.original-price {
    text-decoration: line-through;
    color: #999; /* Light grey */
    font-size: 0.9em;
}

.offer-price {
    color: #3E2723; /* Dark brown */
    font-weight: 700;
}

.current-price {
    color: #000000; /* Black */
    font-weight: 700;
}

/* Product Buttons Styles */
.product-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}

.product-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 8px 10px;
    font-size: 0.9em;
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.product-discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e53935;
    color: white;
    padding: 5px 10px;
    border-radius: 0;
    font-size: 0.8em;
    font-weight: 600;
    z-index: 2;
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.pagination-btn {
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    background-color: white;
    color: var(--primary-color);
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not([disabled]) {
    background-color: var(--primary-color);
    color: white;
}

.pagination-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-ellipsis {
    padding: 0.5rem 0.25rem;
    color: #666;
}

.no-products {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-style: italic;
}