/* Hida – هدایای نفیس / ابزارآلات شخصی‌سازی */
.hida-page {
    padding-bottom: 180px;
}

.hida-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #e8e4dc;
}

.hida-hero__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    object-position: center;
}

.hida-hero__title {
    position: absolute;
    left: 4%;
    bottom: 12%;
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    max-width: 55%;
}

.hida-main {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 16px;
    margin-top: 28px;
    margin-bottom: 40px;
}

.hida-side {
    flex: 0 0 24%;
    max-width: 24%;
    display: flex;
    flex-direction: column;
    background-color: #163c38;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

a.hida-side:hover {
    opacity: 0.92;
    color: inherit;
    text-decoration: none;
}

.hida-side__title {
    flex: 0 0 42%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 24px 16px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    background-color: #163c38;
}

.hida-side__img-wrap {
    flex: 1 1 auto;
    min-height: 0;
    background-color: #0f2a27;
}

.hida-side__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hida-products {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    min-width: 0;
}

.hida-product {
    display: block;
    background: #fff;
    border: 1px solid #e5e5e5;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hida-product:hover {
    border-color: #163c38;
    box-shadow: 0 4px 16px rgba(22, 60, 56, 0.12);
}

.hida-product__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hida-desc {
    color: #333;
    font-size: 15px;
    line-height: 2;
    text-align: justify;
    text-align-last: right;
}

.hida-desc p {
    margin: 0 0 1.1em;
}

.hida-desc p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .hida-hero__title {
        font-size: 20px;
        max-width: 70%;
        bottom: 10%;
    }

    .hida-main {
        flex-direction: column;
    }

    .hida-side {
        flex: none;
        max-width: 100%;
        flex-direction: row;
        align-items: stretch;
        min-height: 180px;
    }

    .hida-side__title {
        flex: 0 0 40%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 12px;
        font-size: 18px;
    }

    .hida-side__img-wrap {
        flex: 1;
    }

    .hida-products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .hida-hero__title {
        font-size: 16px;
        left: 3%;
        bottom: 8%;
        max-width: 85%;
    }

    .hida-hero__img {
        max-height: 220px;
    }

    .hida-side {
        flex-direction: column;
        min-height: 0;
    }

    .hida-side__title {
        flex: none;
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }

    .hida-side__img-wrap {
        height: 220px;
    }

    .hida-side__img {
        height: 220px;
        object-fit: cover;
    }

    .hida-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .hida-desc {
        font-size: 14px;
        line-height: 1.9;
    }
}
