.single-product-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.breadcrumb-navigation {
    margin-bottom: 20px;
}

.product-title {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: left;
}

.product-main-section {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.product-image-column {
    flex: 0 0 500px;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-parameters-column {
    flex: 1;
}

.parameters-title {
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.parameters-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #003366;
}

.parameters-content {
    font-size: 15px;
    margin-bottom: 30px;
}

.parameter-item {
    margin-bottom: 8px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.parameter-label {
    font-weight: 600;
    min-width: 140px;
    flex-shrink: 0;
    color: #333;
}

.parameter-value {
    flex: 1;
    word-wrap: break-word;
    word-break: break-word;
    line-height: 1.3;
    color: #666;
    font-size: 14px;
}

.price-notice {
    margin: 20px 0;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-left: 4px solid #003366;
    border-radius: 4px;
}

.price-notice p {
    margin: 0;
    font-size: 13px;
    color: #666;
    font-style: italic;
    line-height: 1.4;
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    transition: background-color 0.3s;
    text-align: center;
    min-width: 200px;
}

.btn:hover {
    background-color: #002244;
    color: white; /* Ensure font color stays white on hover */
}

.btn-whatsapp {
    background-color: #25D366; /* WhatsApp green color */
}

.btn-whatsapp:hover {
    background-color: #128C7E; /* Darker WhatsApp green on hover */
    color: white; /* Ensure font color stays white on hover */
}

.product-divider {
    width: 80%;
    height: 1px;
    background-color: #ddd;
    margin: 40px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-main-section {
        flex-direction: column;
    }

    .product-image-column {
        flex: none;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .parameter-item {
        flex-direction: column;
        gap: 3px;
        margin-bottom: 10px;
    }

    .parameter-label {
        min-width: auto;
    }
} 