/**
 * Product - 제품 상세 페이지 공통 스타일
 * Product Detail, Product Content, Parts List, Gallery 섹션
 */

/* ==========================================================================
   1. Category Tabs Section
   ========================================================================== */
/* Category Tabs 컴포넌트는 components.css에 정의되어 있습니다 */
.category-tabs-section {
    padding: 60px 0 0;
}

/* ==========================================================================
   2. Product Detail Section
   ========================================================================== */
.product-detail-section {
    position: relative;
    padding: 60px 0 80px;
    background-color: #FCFEFF;
}

.product-detail-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FCFEFF;
    z-index: 0;
}

.product-detail-section .container {
    position: relative;
    z-index: 1;
}

.product-detail-inner {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

/* Product Info Column */
.product-info-col {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.product-header {
    border-bottom: 1px solid #2D333C;
    padding-bottom: 60px;
}

.product-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.4;
    color: #0068B7;
    margin: 0;
}

.product-marks {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mark-item {
    width: 44px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mark-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-description {
    padding-bottom: 50px;
}

.description-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: #1B1B1B;
    margin: 0 0 6px;
}

.description-text {
    font-family: 'Pretendard', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    color: #2D333C;
    margin: 0;
    word-break: keep-all;
    white-space: pre-line;
}

.description-note {
    font-family: 'Pretendard', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    color: #0068B7;
    margin: 0;
}

.product-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #2D333C;
    background-color: transparent;
    border: 1px solid #2D333C;
    border-radius: 300px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #2D333C;
    color: #ffffff;
}

.btn-outline svg {
    width: 10px;
    height: 7px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0068B7;
    border: none;
    border-radius: 300px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #005599;
}

.btn-primary svg {
    width: 10px;
    height: 7px;
}

/* Product Image Column */
.product-image-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-main-image {
    width: 700px;
    height: 500px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-thumbnail-slider {
    display: flex;
    gap: 20px;
    align-items: center;
    height: 80px;
}

.slider-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    border-radius: 300px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.slider-arrow svg {
    width: 15px;
    height: 12px;
    color: #5A626E;
}

.thumbnail-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex: 1;
    overflow: hidden;
}

.thumbnail-item {
    width: 99px;
    height: 80px;
    border: 1px solid #CBD4E1;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail-item.active {
    border-color: #0068B7;
    border-width: 2px;
}

.thumbnail-item:hover {
    opacity: 0.8;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   3. Product Content Section
   ========================================================================== */
.product-content-section {
    padding: 60px 0 140px;
    background-color: #ffffff;
}

/* Product Specifications */
.product-specifications {
    margin-bottom: 60px;
}

.spec-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    color: #24292F;
    margin: 0 0 30px;
}

.spec-table {
    border-top: 1px solid #2C323A;
    border-bottom: 1px solid #2C323A;
}

.spec-row {
    display: flex;
    border-bottom: 1px solid #E2E8F0;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    width: 247px;
    padding: 30px 32px;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: #2C323A;
    flex-shrink: 0;
}

.spec-value {
    flex: 1;
    padding: 30px 0 30px 50px;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #5A626E;
}

.spec-value p {
    margin: 0;
}

.spec-value p + p {
    margin-top: 0;
}

.spec-value .indent {
    margin-left: 42px;
}

/* Product Images Section */
.product-images-section {
    margin-top: 60px;
}

.product-images-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-image-box {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #CBD4E1;
    border-radius: 10px;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-box img {
    max-width: calc(100% - 60px);
    height: auto;
    display: block;
}

/* ==========================================================================
   4. Parts List Section
   ========================================================================== */
.parts-list-section {
    padding: 80px 0 120px;
    background-color: #fff;
}

/* Parts Title */
.parts-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #1B1B1B;
    margin-bottom: 60px;
}

.parts-title .title-highlight {
    color: #0068B7;
}

/* Parts Info Banner */
.parts-info-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F6F8FC;
    border-radius: 6px;
    padding: 26px 40px;
    margin-bottom: 80px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.banner-icon {
    flex-shrink: 0;
    width: 20px;
    height: 26px;
}

.banner-text {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #2D333C;
}

/* Parts Grid */
.parts-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Part Item */
.part-item {
    display: grid;
    grid-template-columns: 424px 1fr;
    gap: 40px;
    align-items: start;
}

/* Part Item without image */
.part-item.no-image {
    grid-template-columns: 1fr;
}

.part-image {
    width: 424px;
    height: 270px;
    background-color: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.part-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.part-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
}

.part-number {
    width: 46px;
    height: 46px;
    background-color: #F1F4F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2D333C;
}

.part-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #1B1B1B;
}

.part-description {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: #535862;
    margin-bottom: 8px;
}

.part-note {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #0068B7;
    margin-top: -8px;
}

.part-note strong {
    font-weight: 600;
}

.part-order {
    display: flex;
    gap: 8px;
    padding-top: 8px;
}

.order-label {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #848D9A;
}

.order-value {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2D333C;
    line-height: 1.6;
}

/* Spare Parts Section */
.spare-parts-section {
    margin-top: 120px;
}

.spare-parts-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    color: #848D9A;
    margin-bottom: 60px;
}

.spare-parts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.spare-part-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    align-items: start;
    transition: transform 0.2s ease;
}

/* Spare Part Item without image */
.spare-part-item.no-image {
    grid-template-columns: 1fr;
}

.spare-part-item .part-image {
    width: 200px;
    height: 200px;
    background-color: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spare-part-item .part-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spare-part-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 5px;
}

.spare-part-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #1B1B1B;
}

.spare-part-description {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #535862;
}

.spare-part-note {
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    color: #0068B7;
    margin-top: -8px;
}

.spare-part-note strong {
    font-weight: 600;
}

/* ==========================================================================
   5. Gallery Section (적용 사진)
   ========================================================================== */
.gallery-section {
    padding: 80px 0 120px;
    background-color: #fff;
    position: relative;
}

/* Gallery Title */
.gallery-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.4;
    color: #1B1B1B;
    margin-bottom: 60px;
}

.gallery-title .title-highlight {
    color: #0068B7;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

/* Gallery Item */
.gallery-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 0;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-caption {
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    color: #1B1B1B;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ==========================================================================
   6. Part Detail Modal
   ========================================================================== */
.part-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.part-modal.active {
    display: flex;
}

.part-modal-container {
    position: relative;
    background-color: #ffffff;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.part-modal-header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #E2E8F0;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.part-modal-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    color: #1B1B1B;
    margin: 0;
}

.part-modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.part-modal-close:hover {
    background-color: #F1F4F9;
}

.part-modal-close svg {
    width: 24px;
    height: 24px;
    color: #2D333C;
}

.part-modal-body {
    padding: 0 0 40px;
}

.part-modal-image {
    width: 100%;
    max-height: 400px;
    background-color: #F8F9FA;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    display: none;
}

.part-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 400px;
}

.part-modal-content {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: #2D333C;
}

.part-modal-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1B1B1B;
    margin: 30px 0 16px;
}

.part-modal-content h3:first-child {
    margin-top: 0;
}

.part-modal-content p {
    margin: 0 0 16px;
}

.part-modal-content ul,
.part-modal-content ol {
    margin: 0 0 16px;
    padding-left: 24px;
}

.part-modal-content li {
    margin-bottom: 8px;
}

.part-modal-content strong {
    font-weight: 600;
    color: #1B1B1B;
}

.part-modal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.part-modal-content table th,
.part-modal-content table td {
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    text-align: left;
}

.part-modal-content table th {
    background-color: #F8F9FA;
    font-weight: 600;
    color: #1B1B1B;
}

/* Part Modal Iframe */
.part-modal-iframe {
    width: 100%;
    min-height: 300px;
    border: none;
    display: block;
}

/* ==========================================================================
   7. Responsive
   ========================================================================== */

/* 1440px 이하 */
@media screen and (max-width: 1440px) {
    .product-detail-inner {
        gap: 40px;
    }

    .product-main-image {
        width: 600px;
        height: 430px;
    }

    .product-title {
        font-size: 38px;
    }

    .spec-title {
        font-size: 28px;
    }

    .parts-list-section {
        padding: 60px 0 100px;
    }

    .parts-title {
        font-size: 38px;
        margin-bottom: 50px;
    }

    .parts-info-banner {
        padding: 22px 32px;
        margin-bottom: 60px;
    }

    .parts-grid {
        gap: 60px;
    }

    .part-item {
        grid-template-columns: 380px 1fr;
        gap: 32px;
    }

    .part-image {
        width: 380px;
        height: 242px;
    }

    .spare-parts-section {
        margin-top: 100px;
    }

    .spare-parts-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .spare-parts-grid {
        gap: 32px;
    }

    .gallery-section {
        padding: 60px 0 100px;
    }

    .gallery-title {
        font-size: 38px;
        margin-bottom: 50px;
    }

    .gallery-grid {
        gap: 50px 32px;
    }

    .gallery-image {
        height: 380px;
    }

    .gallery-caption {
        font-size: 22px;
    }
}

/* 1200px 이하 */
@media screen and (max-width: 1200px) {
    .product-detail-inner {
        flex-direction: column;
        gap: 60px;
    }

    .product-main-image {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .product-title {
        font-size: 34px;
    }

    .spec-title {
        font-size: 26px;
    }

    .parts-list-section {
        padding: 50px 0 80px;
    }

    .parts-title {
        font-size: 34px;
        margin-bottom: 40px;
    }

    .parts-info-banner {
        padding: 20px 24px;
        margin-bottom: 50px;
    }

    .banner-text {
        font-size: 15px;
    }

    .parts-grid {
        gap: 50px;
    }

    .part-item {
        grid-template-columns: 340px 1fr;
        gap: 28px;
    }

    .part-image {
        width: 340px;
        height: 216px;
    }

    .spare-parts-section {
        margin-top: 80px;
    }

    .spare-parts-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .spare-parts-grid {
        gap: 28px;
    }

    .spare-part-title {
        font-size: 18px;
    }

    .gallery-section {
        padding: 50px 0 80px;
    }

    .gallery-title {
        font-size: 34px;
        margin-bottom: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    .gallery-image {
        height: 320px;
    }

    .gallery-caption {
        font-size: 20px;
    }
}

/* 1024px 이하 */
@media screen and (max-width: 1024px) {
    .product-detail-section {
        padding: 50px 0 60px;
    }

    .product-title {
        font-size: 30px;
    }

    .description-text,
    .description-note {
        font-size: 16px;
    }

    .product-actions {
        flex-wrap: wrap;
    }

    .spec-label {
        width: 200px;
        padding: 20px 24px;
        font-size: 15px;
    }

    .spec-value {
        padding: 20px 0 20px 40px;
        font-size: 15px;
    }
    
    .spec-value .indent {
        margin-left: 32px;
    }

    .parts-list-section {
        padding: 40px 0 60px;
    }

    .parts-title {
        font-size: 30px;
        margin-bottom: 32px;
    }

    .parts-info-banner {
        padding: 18px 20px;
        margin-bottom: 40px;
    }

    .banner-icon svg {
        width: 18px;
        height: 24px;
    }

    .banner-text {
        font-size: 14px;
    }

    .parts-grid {
        gap: 36px;
    }

    .part-image {
        height: 240px;
    }

    .part-title {
        font-size: 22px;
    }

    .part-description {
        font-size: 15px;
    }

    .spare-parts-section {
        margin-top: 50px;
    }

    .spare-parts-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .spare-part-title {
        font-size: 17px;
    }

    .spare-part-description {
        font-size: 13px;
    }

    .gallery-section {
        padding: 40px 0 60px;
    }

    .gallery-title {
        font-size: 30px;
        margin-bottom: 32px;
    }

    .gallery-grid {
        gap: 36px 20px;
    }

    .gallery-image {
        height: 280px;
    }

    .gallery-caption {
        font-size: 18px;
    }
}

/* 768px 이하 */
@media screen and (max-width: 768px) {
    .part-modal-container {
        max-height: 95vh;
    }

    .part-modal-header {
        padding: 20px 24px;
    }

    .part-modal-title {
        font-size: 22px;
    }

    .part-modal-close {
        width: 36px;
        height: 36px;
    }

    .part-modal-body {
        padding: 24px;
    }

    .part-modal-image {
        max-height: 300px;
        margin-bottom: 30px;
    }

    .part-modal-content {
        font-size: 15px;
    }

    .part-modal-content h3 {
        font-size: 20px;
        margin: 24px 0 12px;
    }

    .product-detail-section {
        padding: 40px 0 50px;
    }

    .product-info-col {
        gap: 40px;
    }

    .product-header {
        padding-bottom: 40px;
    }

    .product-title {
        font-size: 26px;
    }

    .product-marks {
        gap: 15px;
    }

    .mark-item {
        width: 35px;
        height: 23px;
    }

    .description-title {
        font-size: 16px;
    }

    .description-text,
    .description-note {
        font-size: 15px;
    }

    .product-main-image {
        height: 350px;
    }

    .thumbnail-item {
        width: 80px;
        height: 65px;
    }

    .product-content-section {
        padding: 50px 0 100px;
    }

    .spec-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .spec-row {
        flex-direction: column;
    }

    .spec-label {
        width: 100%;
        padding: 20px;
        border-bottom: 1px solid #F1F4F9;
    }

    .spec-value {
        padding: 20px;
    }

    .parts-list-section {
        padding: 32px 0 50px;
    }

    .parts-title {
        font-size: 26px;
        margin-bottom: 28px;
    }

    .parts-info-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 18px;
        margin-bottom: 32px;
    }

    .banner-text {
        font-size: 13px;
    }

    .parts-grid {
        gap: 32px;
    }

    .part-image {
        height: 200px;
    }

    .part-title {
        font-size: 20px;
    }

    .part-description {
        font-size: 14px;
    }

    .spare-parts-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .spare-part-item {
        gap: 16px;
    }

    .spare-part-title {
        font-size: 16px;
    }

    .spare-part-description {
        font-size: 12px;
    }

    .gallery-section {
        padding: 32px 0 50px;
    }

    .gallery-title {
        font-size: 26px;
        margin-bottom: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gallery-image {
        height: 300px;
    }

    .gallery-caption {
        font-size: 18px;
    }
}

/* 480px 이하 */
@media screen and (max-width: 480px) {
    .part-modal {
        padding: 10px;
    }

    .part-modal-header {
        padding: 16px 20px;
    }

    .part-modal-title {
        font-size: 18px;
    }

    .part-modal-body {
        padding: 20px;
    }

    .part-modal-image {
        max-height: 240px;
        margin-bottom: 24px;
    }

    .part-modal-content {
        font-size: 14px;
    }

    .part-modal-content h3 {
        font-size: 18px;
    }

    .product-detail-section {
        padding: 30px 0 40px;
    }

    .product-title {
        font-size: 22px;
    }

    .description-text,
    .description-note {
        font-size: 14px;
        white-space: initial;
    }

    .product-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-outline,
    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .product-main-image {
        height: 280px;
    }

    .spec-title {
        font-size: 20px;
    }

    .spec-label,
    .spec-value {
        font-size: 14px;
        padding: 16px;
    }

    .parts-list-section {
        padding: 24px 0 40px;
    }

    .parts-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .parts-info-banner {
        padding: 14px 16px;
        margin-bottom: 28px;
    }

    .banner-text {
        font-size: 12px;
    }

    .parts-grid {
        gap: 28px;
    }

    .part-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .part-image {
        width: 100%;
        height: 200px;
    }

    .part-title {
        font-size: 18px;
    }

    .part-description {
        font-size: 13px;
    }

    .spare-parts-title {
        font-size: 18px;
    }

    .spare-part-title {
        font-size: 15px;
    }

    .spare-part-description {
        font-size: 11px;
    }

    .gallery-section {
        padding: 24px 0 40px;
    }

    .gallery-title {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 24px;
    }

    .gallery-grid {
        gap: 28px;
    }

    .gallery-image {
        height: 240px;
    }

    .gallery-caption {
        font-size: 16px;
    }
}
