/* ===== Global ===== */
body {
    
    background: #f7f8fa;
    margin: 0;
    padding: 0;
    color: #1f2937;
}

.container {
    
    margin: auto;
    padding: 0 20px;
}

/* ===== Product Detail Grid ===== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: start;
    margin-top: 40px;
}

.product-detail img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ===== Product Info ===== */
.product-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #111827;
}

.product-info p {
    line-height: 1.8;
    color: #374151;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-enquiry {
    background: #16a34a;
    color: #fff;
}

.btn-enquiry:hover {
    background: #15803d;
    transform: translateY(-2px);
}

.btn-back {
    background: #e5e7eb;
    color: #111;
}

.btn-back:hover {
    background: #d1d5db;
}

/* ===== Slider ===== */
.product-slider {
     position: relative;
    max-width: 600px;
    /* margin-bottom: 20px; */
    /* border-radius: 16px; */
    overflow: hidden;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height:300px;
    display: block;
    border-radius: 16px;
}

button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 28px;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
}

button.prev:hover, button.next:hover {
    background-color: rgba(0,0,0,0.8);
}

button.prev { left: 10px; }
button.next { right: 10px; }

/* ===== Video ===== */
.video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Custom Table ===== */
.custom-table {
    width: 100%;
     border-collapse: separate; 
    border-spacing: 0px;
    /* border-radius: 16px; */
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
    
    }



.custom-table th, .custom-table td {
    padding: 8px 8px;
    text-align: left;
    border:1px solid black;
}



.custom-table tbody tr:nth-child(even) {
    
}



.custom-table td:first-child {
    font-weight: 600;
    
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .custom-table th, .custom-table td {
        
    }

    .btn {
        padding: 10px 16px;
    }
}
