/* ===============================
   PRODUCT SINGLE PAGE
================================ */

.product-single {
    padding: 140px 0 100px;
    background: #fafafa;
}

/* LAYOUT */

.product-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* IMAGE */

.product-image-card {
    background: white;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: all .35s ease;
}

.product-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.product-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

/* CATEGORY */

.product-category {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 18px;
}

/* TITLE */

.product-title {
    font-size: 42px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 18px;
}

/* DESCRIPTION */

.product-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 30px;
    max-width: 520px;
}

/* ACTION BUTTONS */

.product-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-secondary {
    border: 1px solid #d1d5db;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: .25s;
}

.btn-secondary:hover {
    background: #f3f4f6;
}

/* RESPONSIVE */

@media(max-width:1024px) {

    .product-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .product-image img {
        max-height: 420px;
    }

}

@media(max-width:640px) {

    .product-single {
        padding: 120px 0 70px;
    }

    .product-title {
        font-size: 30px;
    }

    .product-desc {
        font-size: 15px;
    }

}