/* ================= FULL WIDTH FIX ================= */
.full-width-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
/* Hide theme titlebar on Explore Lineup single page */
.single-explore-the-lineup .tm-titlebar-wrapper {
    display: none !important;
}

/* ================= HERO ================= */
.explore-hero {
    padding: 80px 0;
    background: #f7f8fc;
}

.explore-hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-image img {
    width: 70%;
    border-radius: 18px;
}

/* ================= CONTENT ================= */
.hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e2b57;
}

.short-desc {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* ================= BUTTON ================= */
.quote-btn {
    background: #FF612A;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.quote-btn:hover {
    background: #FF612A;
    color:#fff;
}

/* ================= SPECIFICATIONS ================= */
.specs {
    background: #ffffff;
    padding: 60px 0;
}

.specs h2 {
    font-size: 34px;
    margin-bottom: 25px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: #f7f7f7;
    border-radius: 12px;
    overflow: hidden;
}

.spec-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #ddd;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

/* ================= SIMILAR PRODUCTS ================= */
.similar-products {
    background: #f7f8fc;
    padding: 80px 0;
}

.similar-products h2 {
    font-size: 34px;
    margin-bottom: 30px;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.explore-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.explore-img img {
    height: 180px;
    object-fit: contain;
}

.explore-card h3 {
    margin: 15px 0;
    font-size: 20px;
}

.explore-btn {
    background: #ff612a;
    color: #fff;
    padding: 12px 26px;
    border-radius: 25px;
    text-decoration: none;
}

.explore-btn:hover {
    background: #ff612a;
    color:#000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .explore-hero-grid {
        flex-direction: column;
        text-align: center;
    }
}
