.see-more-page {
    min-height: 100vh;
    padding: 135px 0 70px;
    background:
        radial-gradient(circle at top right, rgba(3, 87, 129, 0.12), transparent 34%),
        linear-gradient(180deg, #f5f8fb 0%, #ffffff 100%);
    direction: rtl;
}

.see-more-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    padding: 36px 40px;
    border-radius: 28px;
    background: linear-gradient(135deg, #035781, #2297bd);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.14);
}

.see-more-eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.see-more-header h1 {
    margin: 0;
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.3;
}

.see-more-header p {
    max-width: 560px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 1.8;
}

.see-more-add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex: 0 0 auto;
    min-height: 50px;
    padding: 12px 22px;
    border-radius: 16px;
    background: #ffffff;
    color: #035781;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.25s ease;
}

.see-more-add-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #035781;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
}

.see-more-add-btn:hover {
    background: #eef8fc;
    color: #035781;
    transform: translateY(-2px);
}

.see-more-content {
    padding: 30px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.1);
}

.see-more-tabs {
    display: inline-flex;
    gap: 10px;
    margin-bottom: 28px;
    padding: 8px;
    border-radius: 18px;
    background: #f1f7fb;
}

.see-more-tab {
    min-height: 44px;
    padding: 10px 22px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #475569;
    font-size: 14px;
    font-weight: 900;
    transition: 0.25s ease;
}

.see-more-tab:hover {
    background: #e6f3f8;
    color: #035781;
}

.see-more-tab.active {
    background: #035781;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(3, 87, 129, 0.25);
}

.see-more-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.see-more-card {
    overflow: hidden;
    border: 1px solid #eef2f6;
    border-radius: 24px;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
    transition: 0.25s ease;
}

.see-more-card:hover {
    color: inherit;
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.13);
}

.see-more-card-img {
    width: 100%;
    height: 235px;
    overflow: hidden;
    background: #f1f5f9;
}

.see-more-card-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.3s ease;
}

.see-more-card:hover .see-more-card-img img {
    transform: scale(1.05);
}

.see-more-card-body {
    padding: 18px;
}

.see-more-card-body h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.5;
}

.see-more-card-body p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
}

.see-more-price {
    display: inline-flex;
    margin-top: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eef8fc;
    color: #035781;
    font-size: 14px;
    font-weight: 900;
}

.see-more-empty {
    grid-column: 1 / -1;
    padding: 70px 24px;
    text-align: center;
    border: 1px dashed #cbd5e1;
    border-radius: 24px;
    background: #f8fafc;
}

.see-more-empty h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 24px;
    font-weight: 900;
}

.see-more-empty p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
}

.see-more-pagination {
    margin-top: 34px;
}

@media (max-width: 1199px) {
    .see-more-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .see-more-page {
        padding: 100px 0 34px;
    }

    .see-more-header {
        flex-direction: column;
        align-items: stretch;
        padding: 28px 22px;
        border-radius: 22px;
    }

    .see-more-header h1 {
        font-size: 26px;
    }

    .see-more-add-btn {
        width: 100%;
    }

    .see-more-content {
        padding: 20px;
        border-radius: 22px;
    }

    .see-more-tabs {
        width: 100%;
        overflow-x: auto;
    }

    .see-more-tab {
        flex: 1 0 auto;
    }

    .see-more-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .see-more-card-img {
        height: 215px;
    }
}