/* ========== FEATURED PRODUCTS ========== */
.featured {
    padding: 80px 0;
    background: url('https://www.transparenttextures.com/patterns/concrete-wall.png');
}

.torn-edge {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.torn-edge::before, .torn-edge::after {
    content: '';
    position: absolute;
    height: 15px;
    left: 0;
    right: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="20" viewBox="0 0 100 20"><path d="M0,0 Q25,20 50,0 T100,0" fill="black"/></svg>') top center repeat-x;
    background-size: 50px 15px;
}

.torn-edge::before {
    top: -15px;
}

.torn-edge::after {
    bottom: -15px;
    transform: rotate(180deg);
}

.section-subheader {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--red);
    letter-spacing: 3px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: var(--gray);
    position: relative;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--red);
    color: var(--white);
    padding: 5px 10px;
    font-family: var(--font-accent);
    font-size: 1rem;
    z-index: 2;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-product {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--white);
    width: 80%;
}

.btn-product:hover {
    background: var(--red);
    border-color: var(--red);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-price {
    margin-top: 10px;
}

.original-price {
    text-decoration: line-through;
    color: var(--light-gray);
    margin-right: 10px;
}

.sale-price {
    color: var(--red);
    font-weight: bold;
    font-size: 1.2rem;
}