/* Product Page Styles */

.product-section {
    padding: 4rem 0;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
}

.product-section .product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-image-container {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-category {
    margin-bottom: 1rem;
}

.product-category span {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    border-radius: 6px;
    font-size: 0.9rem;
    text-transform: none !important;
    font-weight: normal !important;
    letter-spacing: normal !important;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.product-short-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.product-price-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.product-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.product-price-label {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
}

.product-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.product-buy-btn-wrapper {
    margin: 2rem 0;
}

.product-buy-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    text-align: center;
    width: 100%;
}

.product-description {
    margin-top: 3rem;
}

.product-description-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.product-description-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.product-description-text {
    margin-bottom: 1.5rem;
}

.product-table-wrapper {
    margin-bottom: 1.5rem;
    overflow-x: auto;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.product-table thead tr {
    background: var(--bg-light);
}

.product-table th {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #ddd;
}

.product-table th:last-child {
    text-align: center;
}

.product-table td {
    padding: 0.75rem;
    border: 1px solid #ddd;
}

.product-table td:last-child {
    text-align: center;
}

.product-description-note {
    margin-bottom: 1.5rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .product-section .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .product-category span {
        font-size: 0.8rem;
    }
    
    .product-short-desc {
        font-size: 1rem;
    }
    
    .product-image-container {
        padding: 1.5rem;
    }
}

