.product-detail-page {
    padding: 140px 20px 60px 20px;
    background-color: #f9f9f9;
    min-height: 100vh;
}

.product-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.product-info-section {
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: "Playwrite AU QLD", cursive;
    font-size: 2.8rem;
    color: #1a4a6e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-buy {
    background-color: #e5be26;
    color: black;
    flex-grow: 1;
}

.btn-buy:hover {
    background-color: #f0c93e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-add-cart {
    background-color: transparent;
    color: #1a4a6e;
    border-color: #1a4a6e;
    flex-grow: 1;
}

.btn-add-cart:hover {
    background-color: #1a4a6e;
    color: white;
}

.product-description,
.product-specs {
    margin-top: 20px;
}

.product-description h3,
.product-specs h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #e0e0e0;
}

.product-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.product-specs ul {
    list-style: none;
    padding: 0;
    color: #555;
}

.product-specs ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.product-specs ul li:last-child {
    border-bottom: none;
}

.product-specs ul li strong {
    color: #333;
}

@media (max-width: 992px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .product-detail-page {
        padding: 100px 15px 40px 15px;
    }

    .product-container {
        padding: 20px;
    }

    .product-actions {
        flex-direction: column;
    }
}