.acc-show-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #fff8ef 0%, #ffffff 50%, #f8fafc 100%);
    padding: 32px 16px 56px;
}

.acc-show-wrap {
    max-width: 72rem;
    margin: 0 auto;
}

.acc-show-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #92400e;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 18px;
}

.acc-show-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

.acc-show-gallery {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 36px rgba(17, 24, 39, 0.08);
}

.acc-show-gallery__main {
    aspect-ratio: 4/3;
    background: #f3f4f6;
}

.acc-show-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.acc-show-gallery__thumbs {
    display: flex;
    gap: 8px;
    padding: 12px;
    overflow-x: auto;
}

.acc-show-gallery__thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    flex-shrink: 0;
    cursor: pointer;
}

.acc-show-gallery__thumb.is-active { border-color: #f59e0b; }
.acc-show-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.acc-show-panel {
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 24px;
    box-shadow: 0 12px 36px rgba(17, 24, 39, 0.08);
}

.acc-show-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.acc-show-tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 999px;
    background: #fff7ed;
    color: #b45309;
}

.acc-show-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: #111827;
    margin: 0 0 10px;
    line-height: 1.2;
}

.acc-show-price {
    font-size: 1.75rem;
    font-weight: 900;
    color: #d97706;
    margin-bottom: 16px;
}

.acc-show-meta {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.acc-show-meta__row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b5563;
    font-size: 0.92rem;
}

.acc-show-meta__row i { color: #f59e0b; width: 18px; }

.acc-show-desc {
    color: #374151;
    line-height: 1.65;
    margin-bottom: 22px;
    white-space: pre-wrap;
}

.acc-show-actions {
    display: grid;
    gap: 10px;
}

.acc-show-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    border: 0;
}

.acc-show-btn--call { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff !important; }
.acc-show-btn--wa { background: #25d366; color: #fff !important; }

.acc-show-related {
    margin-top: 36px;
}

.acc-show-related__title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111827;
}

@media (max-width: 991px) {
    .acc-show-grid { grid-template-columns: 1fr; }
}
