.e-detail-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 64px;
}

.e-detail-info,
.e-gallery {
    width: 50%;
}

@media (max-width: 1024px) {
    .e-detail-grid {
        flex-direction: column-reverse;
    }

    .e-detail-info,
    .e-gallery {
        width: 100%;
    }
}

.e-detail-title {
    font-size: 48px;
}

.e-detail-subtitle {
    font-weight: 500;
}

.e-total-area {
    font-size: 1.2rem;
}

.e-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(7em, 1fr));
    gap: 10px;
    margin: 30px 0 40px;
}

.e-spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.e-spec-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.e-spec-icon {
    margin-bottom: 8px;
    font-size: 18px;
}

.e-spec-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 600;
}

.e-spec-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    word-break: break-all;
}

.e-detail-short-description {
    font-size: 1.2rem;
}

/* buttons */
.e-detail-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.e-detail-btn {
    font-size: 1.1rem;
    padding: 0.3em 1.1em;
    border-radius: 50px;
    font-weight: 700;
    max-width: 275px;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

a.e-btn-enquiry {
    background: #dedad2;
    color: black;
}

a.e-btn-enquiry:hover {
    background: black;
    color: white;
}

a.e-btn-download {
    background: black;
    color: white;
}

a.e-btn-download:hover {
    background: transparent;
    color: black;
}

a.e-btn-pricing {
    background: var(--ast-global-color-0);
    color: white;
}

a.e-btn-pricing:hover {
    background: white;
    color: var(--ast-global-color-0);
}

.e-price-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--ast-global-color-1);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    border: 2px solid white;
    pointer-events: none;
}

/* gallery */
.e-gallery {
    position: relative;
    background-color: white;
}

.main-swiper {
    aspect-ratio: 15 / 9;
}

.thumb-swiper {
    background-color: white;
}

.thumb-swiper img {
    aspect-ratio: 14 / 9;
}
