/* ========================= */
/* BOLTS PAGE ONLY */
/* ========================= */

.bolts-detail {
    background: #f7f7f5;
}

.bolts-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bolts-image-box {
    min-height: 340px;
    background: linear-gradient(135deg, #475569, #78716c);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(71, 85, 105, 0.14);
}

.bolts-image-box img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

.bolts-summary {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.bolts-summary h2 {
    margin-bottom: 16px;
    color: #0f172a;
    font-size: 32px;
}

.bolts-summary h3 {
    margin-bottom: 14px;
    color: #57534e;
}

.bolts-summary p {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 16px;
}

.bolts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.info-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.info-card h3 {
    margin-bottom: 16px;
    color: #0f172a;
    font-size: 22px;
}

.info-card p {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 14px;
}

.info-card ul {
    margin: 0;
    padding-left: 20px;
    color: #475569;
    line-height: 1.75;
}

.info-card li {
    margin-bottom: 10px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: #f8fafc;
    border-radius: 10px;
    overflow: hidden;
}

.spec-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e5e7eb;
    color: #334155;
    vertical-align: top;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.inquiry-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #475569, #78716c);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.inquiry-btn:hover {
    transform: scale(1.04);
}

@media (max-width: 900px) {
    .bolts-grid {
        grid-template-columns: 1fr;
    }

    .bolts-summary {
        padding: 22px;
    }

    .info-card {
        padding: 20px;
    }

    .bolts-image-box,
    .bolts-image-box img {
        min-height: 260px;
    }
}
