:root {
    --primary-green: #1B4D3E;
    --accent-gold: #D4AF37;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
}

.category-wrapper { padding: 40px 0; background: #fff; }

/* Trust Badges Styling */
.trust-container {
    background: #f9fbf9;
    border: 1px solid #edf2ed;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}
.section-main-title {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-dark);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.trust-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
}
.trust-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.trust-icon svg { width: 24px; height: 24px; }
.trust-info strong { display: block; font-size: 14px; color: var(--text-dark); }
.trust-info span { font-size: 11px; color: var(--text-light); }

/* Tabs Navigation Styling */
.tabs-scroll-container {
    display: flex;
    align-items: center;
    background: var(--white);
    border-bottom: 2px solid #f1f1f1;
    margin-bottom: 30px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.tabs-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    scrollbar-width: none;
}
.tabs-wrapper::-webkit-scrollbar { display: none; }

.cat-tab {
    padding: 15px 25px;
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: 0.3s;
}
.cat-tab.active { color: var(--primary-green); font-weight: 600; }
.cat-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-green);
}
.tab-extra { padding: 0 20px; color: var(--text-light); border-left: 1px solid #eee; }

/* Premium Grid Styling */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.grid-card {
    text-decoration: none;
    group: hover;
}
.card-img-box {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 15px;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}
.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}
.card-label {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    transition: 0.3s;
}

/* Hover Effects */
.grid-card:hover .card-img-box { transform: translateY(-8px); box-shadow: 0 12px 25px rgba(0,0,0,0.1); }
.grid-card:hover img { transform: scale(1.1); }
.grid-card:hover .card-label { color: var(--primary-green); }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .trust-card { flex-direction: column; text-align: center; padding: 15px 5px; }
    .premium-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .cat-tab { padding: 12px 15px; font-size: 13px; }
    .section-main-title { font-size: 18px; }
}