.product-detail-section {
    padding: 60px 5% 80px;
    background-color: #fff;
}

.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.product-detail-image {
    background: #fdf5e6;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

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

.product-detail-content {
    display: flex;
    flex-direction: column;
}

.product-detail-content .breadcrumb {
    color: var(--spice-secondary, #E88D23);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 0.95rem;
}

.product-detail-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #2c1810;
    margin-bottom: 30px;
    line-height: 1.2;
}

.product-detail-content .description {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.spec-item {
    background: #fdfaf6;
    padding: 20px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-red, #1B3565);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-3px);
}

.spec-item label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.spec-item span {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c1810;
    font-family: 'Outfit', sans-serif;
}

.whatsapp-inquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    padding: 15px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(18, 140, 126, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 35px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

.whatsapp-inquiry-btn:hover {
    background: linear-gradient(135deg, #2ae06d 0%, #16a090 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(18, 140, 126, 0.4);
}

.whatsapp-inquiry-btn svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.whatsapp-inquiry-btn:hover svg {
    transform: rotate(10deg) scale(1.1);
}

.back-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 10px;
    color: var(--primary-red, #1B3565);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
}

@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-detail-section {
        padding: 40px 20px 60px;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 20px 15px 40px;
    }
    
    .product-detail-container {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .product-specs {
        grid-template-columns: 1fr;
    }
}

/* Explore More Section */
.explore-more-section {
    padding: 80px 5% 100px;
    background-color: #fdfaf6;
    border-top: 1px solid rgba(27, 53, 101, 0.05);
}

.explore-more-container {
    max-width: 1200px;
    margin: 0 auto;
}

.explore-more-header {
    text-align: center;
    margin-bottom: 50px;
}

.explore-more-header .explore-subtitle {
    font-family: 'Outfit', sans-serif;
    color: var(--spice-secondary, #E88D23);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.explore-more-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #2c1810;
    margin-bottom: 15px;
}

.explore-more-header .divider {
    display: flex;
    justify-content: center;
    align-items: center;
}

.explore-more-header .divider line {
    stroke: #b7b391;
}

.explore-more-header .divider path {
    fill: #b7b391;
}
