.wrapper {
    margin-top: 20px !important;
    margin: 0 auto;
}

/* ══════════════════════════════
           TABS
        ══════════════════════════════ */
.tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.tab-btn {
    background: #fff;
    border: 1.5px solid #dde2ea;
    border-radius: 12px;
    padding: 13px 20px;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
}

.tab-btn:hover:not(.active) {
    border-color: #f07820;
}

.tab-btn .t-name {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #1a2e4a;
    margin-bottom: 4px;
}

.tab-btn .t-sub {
    display: block;
    font-size: 13px;
    color: #6b7280;
}

.tab-btn.active {
    background: #f07820;
    border-color: #f07820;
}

.tab-btn.active .t-name {
    color: #fff;
}

.tab-btn.active .t-sub {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

/* ══════════════════════════════
           PANELS
        ══════════════════════════════ */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 48px;
    align-items: start;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
}

/* ── IMAGE ── */
.panel-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #f7f7f7;
}

.panel-img-wrap img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

.badge-top {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #f07820;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 24px;
}

.badge-bottom {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 18px;
    text-align: center;
    min-width: 100px;
}

.badge-bottom .bb-title {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #1a2e4a;
}

.badge-bottom .bb-sub {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

/* ── CONTENT ── */
.panel-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-name {
    font-size: 32px;
    font-weight: 800;
    color: #1a2e4a;
    line-height: 1.2;
}

.info-type {
    font-size: 16px;
    font-weight: 600;
    color: #f07820;
    margin-top: -12px;
}

.info-desc {
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.7;
}

/* specs */
.section-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.07em;
    color: #1a2e4a;
    text-transform: uppercase;
}

.specs {
    display: flex;
    flex-direction: column;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.spec-row .sk {
    font-size: 14px;
    color: #6b7280;
}

.spec-row .sv {
    font-size: 14px;
    font-weight: 700;
    color: #1a2e4a;
    text-align: right;
}

/* tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 16px;
    border: 1px solid #d1d5db;
    border-radius: 24px;
    font-size: 13px;
    color: #374151;
    background: #fff;
}

/* buttons */
.btn-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: filter 0.2s;
    text-decoration: none;
}

.btn:hover {
    filter: brightness(0.9);
}

.btn-orange {
    background: #f07820;
    color: #fff;
}

.btn-navy {
    background: #1e3a5f;
    color: #fff;
}

.btn svg {
    width: 16px;
    height: 16px;
}

.section {
    padding: 40px 0;
    background-color: rgb(248 250 252);
}

.section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: #1a2e4a;
    margin: 30px 0;
}

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

.card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 20px 24px;
    text-align: center;
    border: 1px solid #eaecf0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-name {
    font-size: 20px;
    font-weight: 800;
    color: #f07820;
}

.card-size {
    font-size: 17px;
    font-weight: 700;
    color: #1a2e4a;
}

.card-desc {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.5;
}

.card-use {
    font-size: 13px;
    color: #6b7280;
    font-style: italic;
    line-height: 1.5;
}