/* ===== HONDA VĂN HẢI - PRODUCT DETAIL CSS (PREMIUM) ===== */
.hidden-mobile {
    display: none;
}

@media(min-width: 1024px) {
    .hidden-mobile {
        display: block;
    }

    .hidden-desktop {
        display: none;
    }
}

.product-detail-page {
    padding: 48px 0 80px;
    background: #fdfdfd
}

.pd-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start
}

@media(min-width:1024px) {
    .pd-grid {
        grid-template-columns: 1.1fr 1fr
    }
}

.pd-gallery {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    padding: 40px
}

.pd-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 4/3;
    transition: transform 0.5s ease
}

.pd-gallery:hover .pd-img {
    transform: scale(1.05)
}

.pd-info {
    display: flex;
    flex-direction: column
}

.pd-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px
}

.pd-cat {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 4px
}

.pd-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--text)
}

.pd-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px
}

.pd-stars {
    display: flex;
    gap: 2px;
    color: #ffb800
}

.pd-reviews {
    font-size: 14px;
    color: var(--text-muted)
}

.pd-price-card {
    background: color-mix(in srgb, var(--red-light) 5%, transparent);
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 24px;
    border: 1px solid color-mix(in srgb, var(--red-light) 20%, transparent);
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.pd-price-card::before {
    display: none;
}

.pd-price-label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    display: block;
}

.pd-price {
    font-size: 28px;
    font-weight: 900;
    color: var(--red-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
}

@media(min-width: 768px) {
    .pd-price {
        font-size: 32px;
    }
}

.pd-price-old {
    font-size: 15px;
    color: #999;
    text-decoration: line-through;
    margin-top: 4px;
    display: inline-block;
}

.pd-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px
}

.pd-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border)
}

.pd-qi-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #059669
}

.pd-qi-icon {
    width: 18px;
    height: 18px;
    background: #ecfdf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.pd-specs-title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    display: block
}

.pd-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 40px
}

.pd-spec-box {
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03)
}

.pd-spec-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 700
}

.pd-spec-value {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--text)
}

.pd-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px
}

.pd-actions .btn {
    flex: 1;
    height: 56px;
    font-weight: 800;
    font-size: 15px
}

.pd-actions .btn--outline {
    border: 2px solid var(--red) !important;
    color: var(--red) !important;
    background: #fff !important
}

.pd-actions .btn--outline:hover {
    background: var(--red) !important;
    color: #fff !important
}

.pd-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.pd-benefit {
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease
}

.pd-benefit:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px)
}

.pd-benefit-icon {
    color: var(--red);
    margin-bottom: 8px;
    display: block
}

.pd-benefit-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    line-height: 1.3
}

/* ===== NEW SECTIONS (VERSIONS & SPECS) ===== */
.pd-section-wrapper {
    padding: 64px 0;
}

.pd-section-title {
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.pd-section-bar {
    width: 5px;
    height: 26px;
    background: var(--red-dark);
    display: block;
    border-radius: 4px;
}

/* Bảng giá và màu sắc */
.pd-versions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media(min-width: 992px) {
    .pd-versions-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pd-versions-img {
    background: #fff;
    padding: 24px;
    text-align: center;
}

.pd-img-fluid {
    max-width: 100%;
    height: auto;
}

.pd-versions-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pd-version-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 24px;
}

.pd-version-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pd-version-name {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin-bottom: 16px;
}

.pd-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.pd-color {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pd-color-icon {
    width: 32px;
    height: 16px;
    object-fit: cover;
    transform: skewX(-20deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pd-color-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Thông số kỹ thuật */
.pd-specs-table-wrap {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pd-specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pd-specs-table th,
.pd-specs-table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
}

.pd-specs-table th {
    width: 40%;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.01);
}

.pd-specs-table td {
    width: 60%;
    font-weight: 600;
    color: var(--text);
}

.pd-specs-table tr:last-child th,
.pd-specs-table tr:last-child td {
    border-bottom: none;
}

/* Đặc điểm tính năng (Features Section) */
.pd-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media(min-width: 1024px) {
    .pd-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pd-accordion-item {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    background: rgba(235, 30, 47, 0.05);
}

.pd-accordion-item.expanded {
    background: #fff;
    border: 1px solid rgba(235, 30, 47, 0.1);
}

.pd-accordion-header {
    background: var(--red);
    color: #fff;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.pd-accordion-item:not(.expanded) .pd-accordion-header:hover {
    background: #cc1024;
}

.pd-accordion-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
}

.pd-accordion-icon {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.pd-accordion-body {
    padding: 24px;
    background: #fff;
}

.pd-feature-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pd-feature-item {
    text-align: left;
}

.pd-fi-img-wrap {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
    border: 1px solid #eee;
    background: #fff;
}

.pd-fi-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.pd-fi-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
}