/* Area 7 - Case Contents & Specifications */
.area-7 {
    background-color: #fff;
    padding-top: 0px;
}

.area-7 .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #176CB4;
    margin-bottom: 20px;
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.area-7 .case-contents-title {
    text-align: left;
    margin-bottom: 10px;
    font-size: 36px;
}

/* Case Image */
.case-image {
    margin: 0;
    padding: 10px;
}

.case-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
}

/* Accessory Grid */
.accessory-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    padding: 20px 0;
    max-width: 100%;
}

.accessory-item {
    text-align: center;
}

.accessory-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 4px;
    border-radius: 50%;
    border: 2px solid #62C5FA;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.accessory-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accessory-name {
    font-size: 12px;
    font-weight: 600;
    color: #176CB4;
    margin: 0 0 2px;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.accessory-qty {
    font-size: 11px;
    color: #666;
    margin: 0;
    line-height: 1;
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* Technical Specifications */
.spec-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    background: #176CB4;
    padding: 15px 20px;
    margin: 0 0 8px 0;
    text-align: center;
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.spec-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.spec-table thead th {
    background: #7B7B7B;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    padding: 10px 15px;
    text-align: center;
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.spec-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.spec-table tbody tr.spec-category {
    background: #fff;
    border-top: 1.6px solid #d7d7d7;
}

.spec-table tbody tr.spec-category:first-child {
    border-top: none;
}

.spec-table tbody td {
    padding: 8px 15px;
    font-size: 14px;
    color: #333;
    vertical-align: middle;
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.spec-table tbody td.category-cell {
    background: #d0d0d0;
    font-weight: 700;
    font-size: 15px;
    color: #000000;
    text-align: center;
    width: 20%;
}

.spec-table tbody td:nth-child(2) {
    font-weight: 600;
    width: 30%;
}

.spec-table tbody td:nth-child(3) {
    width: 50%;
}

/* Responsive Design */
@media (max-width: 991px) {
    .accessory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .area-7 .section-title {
        font-size: 32px;
    }

    .spec-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .accessory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .accessory-icon {
        width: 80px;
        height: 80px;
    }

    .accessory-name {
        font-size: 12px;
        min-height: 36px;
    }

    .accessory-qty {
        font-size: 11px;
    }

    .area-7 .section-title {
        font-size: 28px;
    }

    .spec-title {
        font-size: 20px;
        padding: 12px 15px;
    }

    .spec-table tbody td {
        font-size: 12px;
        padding: 10px 8px;
    }

    .spec-table thead th {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .accessory-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .spec-table tbody td.category-cell {
        font-size: 11px;
        padding: 8px 5px;
    }
}