.gear-showcase{
    max-width:1200px;
    margin:60px auto;
}

.gear-header{
    text-align:center;
    margin-bottom:50px;
}

.gear-badge{
    display:inline-block;
    background:#f4b942;
    color:#222;
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.gear-header h1{
    font-family:'Playfair Display',serif;
    font-size:3rem;
    color:#0f3d3e;
    margin-bottom:15px;
}

.gear-subtitle{
    max-width:700px;
    margin:auto;
    color:#666;
}

.gear-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.gear-card{
    background:white;
    border-radius:24px;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.gear-card h2{
    margin-bottom:20px;
    color:#1f6f78;
}

.gear-card table{
    width:100%;
    border-collapse:collapse;
}

.gear-card td{
    padding:12px 0;
    border-bottom:1px solid #edf1f3;
}

.gear-card td:first-child{
    color:#777;
    width:45%;
}

.comment{
    margin-top:20px;
    padding:15px;
    background:#f7fafb;
    border-left:4px solid #f4b942;
    border-radius:10px;
}

.advantages{
    margin-top:40px;
    background:white;
    padding:35px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.advantages h2{
    margin-bottom:20px;
    color:#0f3d3e;
}

.advantages ul{
    list-style:none;
}

.advantages li{
    padding:8px 0;
}

.rating-panel{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.rating-item{
    background:linear-gradient(135deg,#0f3d3e,#1f6f78);
    color:white;
    padding:25px;
    border-radius:20px;
    text-align:center;
}

.rating-item strong{
    display:block;
    margin-top:10px;
    font-size:2rem;
    color:#f4b942;
}
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:20px;
    margin-top:50px;
}

.gallery img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:20px;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.gallery img:hover{
    transform:scale(1.03);
}