/* assets/css/product-detail.css */

.pdp-section {
    padding: 100px 0 60px;
    background: #f9f9f9;
}

.pdp-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pdp-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #eee;
}

.pdp-image-col img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.pdp-image-col img:hover {
    transform: scale(1.02);
}

.pdp-info-col {
    padding-left: 40px;
}

@media (max-width: 991px) {
    .pdp-info-col {
        padding-left: 15px;
        margin-top: 30px;
    }
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0059A3;
    margin-bottom: 25px;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.specs-table-wrapper {
    margin-top: 40px;
    overflow-x: auto;
}

.specs-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    border-left: 4px solid #004a99;
    padding-left: 15px;
}

.specs-caption {
    padding: 10px;
    background: #004a99;
    color: white;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.table.specs-table {
    width: 100%;
    border-collapse: collapse !important;
    border: 1px solid #ddd !important;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.table.specs-table thead tr:first-child {
    background: #004a99 !important;
    color: white !important;
}

.table.specs-table thead tr:first-child th {
    padding: 16px;
    font-weight: bold;
    font-size: 20px;
    border: 1px solid #ddd !important;
    text-align: center;
    color: white !important;
}

.table.specs-table thead tr:nth-child(2),
.table.specs-table thead tr.sub-header {
    background-color: #f2f2f2 !important;
}

.table.specs-table thead tr:nth-child(2) th,
.table.specs-table thead tr.sub-header th {
    padding: 12px;
    border: 1px solid #ddd !important;
    font-weight: 600;
    text-align: center;
    color: #333 !important;
}

.table.specs-table tbody td {
    padding: 10px;
    border: 1px solid #ddd !important;
    text-align: center;
    vertical-align: middle;
}

.table.specs-table tbody tr:nth-of-type(even) {
    background-color: #f9f9f9 !important;
}

.pdp-actions {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pdp-actions .btn {
    flex: 1;
    min-width: 180px;
    padding: 12px 35px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .pdp-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .pdp-actions .btn {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 384px) {
    .pdp-actions .btn {
        padding: 12px 26px;
        font-size: 15px;
    }
}

/* Breadcrumb customization */
.w3l-about-breadcrumb .breadcrumb-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/banner1.webp) no-repeat center;
    background-size: cover;
}