.main-image {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}

.thumb {
    height: 90px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    transition: all .2s ease;
    border: 2px solid transparent;
}
.thumb:hover {
    transform: scale(1.03);
    border-color: #fdd835;
}

.detail-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.detail-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #001222;
}

.price-box {
    background: #001222;
    color: #fff;
    padding: 25px;
    border-radius: 16px;
}
.price-box .price {
    font-size: 2rem;
    font-weight: 600;
    color: #fdd835;
}

.btn-primary {
    background: #001222;
    border: none;
    border-radius: 12px;
    padding: 12px;
}
.btn-primary:hover {
    background: #002e5b;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.spec-grid .spec-item {
    background: #f1f4f7;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dealer-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
}

.dealer-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.sticky-sidebar {
    position: sticky;
    top: 20px;
}

.social-share .btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    transition: 0.25s ease;
}

.btn-facebook { background: #1877f2; }
.btn-facebook:hover { background: #0f5fcc; }

.btn-whatsapp { background: #25D366; }
.btn-whatsapp:hover { background: #1da851; }

.btn-twitter { background: #1DA1F2; }
.btn-twitter:hover { background: #0d85c7; }

.btn-copy { background: #001222; }
.btn-copy:hover { background: #002e5b; }



/* 2 */

.ad-hero {
    background: #001222;
    color: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    position: relative;
}
.ad-hero .badge-status {
    background: #0d6efd;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 20px;
}
.gallery img {
    border-radius: 12px;
    width: 100%;
}
.thumbs img {
    cursor: pointer;
    border-radius: 10px;
    border: 2px solid transparent;
}
.thumbs img.active {
    border-color: #001222;
}
.info-card {
    border-radius: 12px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}
.section-title {
    font-weight: 600;
    margin-bottom: 15px;
}
.seller-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}
.social-share a {
    font-size: 18px;
    margin-right: 10px;
    color: #001222;
    opacity: 0.85;
}
.social-share a:hover {
    opacity: 1;
}

/* iPad */
@media (min-width: 768px) {
    .spec-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}
