/* ========================================
   PRODUCT SECTION
======================================== */

.product-section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 25px 80px;
}


/* ========================================
   HEADER
======================================== */

.product-header {
    max-width: 650px;
    margin: 0 auto 32px;
    text-align: center;
}

.product-label {
    display: inline-block;

    margin-bottom: 10px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #986039;
}

.product-header h1 {
    margin: 0;

    font-size: 40px;
    line-height: 1.15;

    color: #2c241e;
}

.product-header h1 span {
    color: #986039;
}

.product-header p {
    margin: 15px auto 0;

    max-width: 580px;

    font-size: 14px;
    line-height: 1.7;

    color: #776b61;
}


/* ========================================
   FILTER
======================================== */

.product-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 32px;
}

.filter-btn {
    padding: 9px 17px;

    border: 1px solid #ddd2c7;
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.7);

    font-size: 12px;
    color: #66584d;

    cursor: pointer;

    transition: 0.25s ease;
}

.filter-btn:hover {
    border-color: #986039;
    color: #986039;
}

.filter-btn.active {
    background: #986039;
    border-color: #986039;

    color: white;
}


/* ========================================
   PRODUCT GRID
======================================== */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* ========================================
   CARD
======================================== */

.product-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e8ded5;
    border-radius: 15px;

    box-shadow:
        0 7px 24px rgba(60, 40, 25, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 14px 30px rgba(60, 40, 25, 0.13);
}


/* ========================================
   IMAGE
======================================== */

.product-image {
    position: relative;

    height: 220px;

    overflow: hidden;

    background: #e8ded3;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}


/* NUMBER */

.product-number {
    position: absolute;

    top: 12px;
    left: 12px;

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.9);

    font-size: 11px;
    font-weight: 700;

    color: #795133;
}


/* ========================================
   INFO
======================================== */

.product-info {
    padding: 18px;
}

.product-category {
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.4px;

    color: #a36b40;
}

.product-info h2 {
    margin: 6px 0 7px;

    font-size: 18px;

    color: #2d251f;
}

.product-info p {
    margin: 0;

    min-height: 42px;

    font-size: 13px;
    line-height: 1.6;

    color: #7b7067;
}


/* ========================================
   BOTTOM
======================================== */

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-top: 18px;
    padding-top: 14px;

    border-top: 1px solid #eee6df;
}

.product-bottom strong {
    font-size: 13px;

    color: #342920;
}

.product-order {
    padding: 8px 13px;

    border-radius: 8px;

    background: #8d5b35;

    font-size: 11px;
    font-weight: 600;

    color: white;

    transition: 0.25s ease;
}

.product-order:hover {
    background: #684126;
    transform: translateX(2px);
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .product-section {
        padding: 45px 16px 60px;
    }

    .product-header h1 {
        font-size: 30px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 210px;
    }

}

/* ========================================
   FOOTER
======================================== */

.footer {
    padding: 25px 20px;

    text-align: center;

    background: #2f251e;

    color: #cfc3b9;
}

.footer p {
    margin: 0;

    font-size: 13px;
}

.footer strong {
    color: #ffffff;
}