.card-badge{
        align-self: flex-start;
    background-color: #991b1b;
    color: #fca5a5;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 12px;
}
/* --- Product Detail Layout Section --- */
.product-content-section {
    padding: 60px 5% 100px;
    background: radial-gradient(circle at top, rgba(242, 140, 40, 0.08), transparent 55%), linear-gradient(180deg, #030303 0%, #05050f 60%, #010101 100%);
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.95fr);
    gap: 48px;
    align-items: start;
}

/* --- Left Column: Main Content --- */
.product-main-content {
    background: rgba(10, 12, 18, 0.85);
    border-radius: 32px;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.75);
}

.product-hero-img {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

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

.product-main-desc {
    font-size: 1.1rem;
    color: #d1d8f0;
    line-height: 1.7;
    margin-bottom: 36px;
}

.section-title {
    font-size: 1.2rem;
    color: #ffffff;
    margin-block: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Specs Table */
.table-responsive {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-secondary);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    margin-block: 20px;
}

.specs-table th, .specs-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
}

.specs-table th {
    background-color: var(--bg-card); /* Darker heading row */
    color: var(--brand-primary);
    font-weight: 600;
}

.specs-table td:first-child {
    color: var(--text-muted);
    width: 35%;
}

.specs-table td:last-child {
    color: #ffffff;
    font-weight: 500;
}

/* Features Grid */
.features-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.feature-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(10,12,18,0.8));
    border-radius: 16px;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #d1d8f0;
    font-size: 0.95rem;
    line-height: 1.6;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.feature-item i {
    color: var(--brand-primary);
    font-size: 1.1rem;
    margin-top: 2px;
}

/* Applications List */
.applications-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    padding: 0;
    list-style: none;
}

.applications-list li {
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    padding: 12px 14px;
    color: #d1d8f0;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Packaging Grid */
.packaging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.pkg-item {
    background-color: var(--bg-card);
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.05);
    color: #cccccc;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pkg-item i {
    color: var(--text-muted);
}

/* Action Buttons */
.product-actions{
    margin-block: 20px;
}
/* --- Right Column: Sticky Sidebar --- */
.product-sidebar {
    position: sticky;
    top: 120px;
}

.sticky-form-wrapper {
    background-color: var(--bg-card); /* Uses #232933 */
    padding: 35px 30px;
    border-radius: 8px;
    /* border: 1px solid rgba(255,255,255,0.08); */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* The form uses the exact same classes as your previous inquiry section, 
   ensuring uniform styling for inputs, labels, and the submit button. */

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .product-container {
        flex-direction: column;
        gap: 60px;
    }

    .product-main-content, .product-sidebar {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .product-sidebar {
        position: static; /* Removes sticky behavior on mobile so it flows naturally */
    }

    .features-grid-small, .packaging-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
    
}
@media (max-width : 600px) {
    .table-responsive {
        overflow-x: auto;
        
    }

    .specs-table {
        min-width: 640px;
       
    }
    h4{
        margin-top: 20px;
    }
    .specs-table th,
    .specs-table td {
        white-space: nowrap;
    }
    .product-main-content{
        border: none !important;
    }
   
}
