/* Single Product Specific Styles */
.single-product-page {
    min-height: 100vh;
}

.single-product-container {
    padding: 20px;
}

.product-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
    gap: 2rem;
}

.product-image {
    flex: 0 0 40%;
    max-width: 40%;
    order: 1;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 0;
}

.product-title {
    flex: 1;
    order: 2;
}

.product-title h1 {
    font-family: 'Cinzel', serif;
    color: #131720;
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    padding: 0;
    line-height: 1.2;
}

/* Categories and Types Section */
.product-categories,
.product-types {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #35393C;
}

.category-label,
.type-label {
    font-weight: 700;
}

.category-values,
.type-values {
    font-family: 'Montserrat', sans-serif;
    color: #35393C;
    font-weight: 500;
}

/* Separator Lines */
.product-types {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(53, 57, 60, 0.2);
    margin-bottom: 1rem;
}

/* Specifications Styles */
.product-specifications {
    margin-top: 1rem;
}

.specs-grid {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-left: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(53, 57, 60, 0.2);
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.spec-label {
    font-family: 'Cinzel', serif;
    color: #35393C;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.spec-value {
    font-family: 'Montserrat', sans-serif;
    color: #131720;
    font-size: 1rem;
    font-weight: 500;
}

/* EFE HAN Description */
.efe-han-description {
    margin-top: 1.5rem;
    padding: 0 0.5rem;
}

.efe-han-description p {
    font-family: 'Cormorant Garamond', serif;
    color: #35393C;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.efe-han-description .company-desc {
    font-style: italic;
}

/* Product Description */
.product-description {
    max-width: 1200px;
    margin: 1rem auto 0;
    padding: 0 20px;
    font-family: 'Cormorant Garamond', serif;
    color: #35393C;
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 700;
}

.description-title {
    font-family: 'Cinzel', serif;
    color: #131720;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.product-description p {
    margin-bottom: 1rem;
}

.product-description h2,
.product-description h3,
.product-description h4 {
    font-family: 'Cinzel', serif;
    color: #131720;
    margin: 0rem 0rem;
}

.order-button {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #FFFAFA;
    background-color: #AD6F3B;
    border: none;
    padding: 12px 24px;
    margin-top: 1rem;
    cursor: pointer;
    text-transform: uppercase;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .product-content {
        flex-direction: column;
        padding: 20px;
    }

    .product-image {
        max-width: 100%;
    }

    .product-title {
        order: 1;
    }
    
    .product-image {
        order: 2;
    }

    .product-title h1 {
        font-size: 2rem;
        text-align: center;
    }

    .product-categories,
    .product-types {
        text-align: center;
    }

    /* Keep specifications left-aligned even on mobile */
    .product-specifications {
        margin-top: 1rem;
        padding-left: 20px;
    }

    .specs-grid {
        gap: 1.5rem;
    }
}