﻿
.btn-outline-brown {
    --bs-btn-color: #563329;
    --bs-btn-border-color: #563329;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #563329;
    --bs-btn-hover-border-color: #563329;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #563329;
    --bs-btn-active-border-color: #563329;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #563329;
    --bs-btn-disabled-bg: transparent;
    --bs-gradient: none;
    height: 51px;
}

.section-instock-products {
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    font-family: 'Fraunces', serif;
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.product-card {
    background: #fff;
    padding: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

    .product-card:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        transform: translateY(-5px);
    }

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #d4af37;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-name {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.product-price {
    font-size: 1rem;
    padding: 0px;
}

.rating-stars i {
    font-size: 14px;
}

@@media (max-width: 576px) {
    .product-card {
        padding: 4px;
    }

    .img-stretch {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.text-start {
    padding: 10px;
}

.in-stock-tag {
    font-size: 0.65rem;
    background-color: #198754; /* Bootstrap success */
    color: #fff;
    border-radius: 0.25rem;
    z-index: 2;
}

.in-stock-premium-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--bs-green) 0%, #a3d285 100%);
    border-radius: 0 0.5rem 0.5rem 0;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
}

    .in-stock-premium-badge:hover {
        transform: scale(1.05);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }

