/* === SHOP PAGE STYLES === */

.toplead p {
    max-width: 850px;
}

.toplead .phone-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.toplead .phone-link:hover {
    text-decoration: underline;
}

.shop-section {
    direction: rtl;
    text-align: right;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Category Cards */
.shop-category {
    margin-top: 2.5rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}

.shop-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.shop-category h2 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 0.5rem;
}

.shop-category p {
    color: #555;
    line-height: 1.8;
}

/* Category Image */
.shop-img {
    margin-top: 1rem;
    text-align: center;
    align-self: center;
}



.shop-img img {
    inline-size: 600px;

    border-radius: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    aspect-ratio: 1;
    object-fit: cover;
}

.shop-img img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

/* Buttons */
.btn-shop {
    margin-top: 1.2rem;
    padding: 0.7rem 1.5rem;
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 3rem;
    transition: background-color .2s ease, transform .1s ease;
    text-align: center;
    width: fit-content;
    align-self: center;
    font-weight: 600;
}

.btn-shop:hover {
    background-color: #218838;
    transform: scale(1.03);
}

/* SEO / Info Section */
.shop-seo {
    margin-top: 3rem;
    background: #f7f9fb;
    border-radius: 1rem;
    padding: 2rem;
}

.shop-seo h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #222;
}

.shop-seo p {
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.9;
}

.shop-seo ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.shop-seo li {
    margin-bottom: .6rem;
    color: #444;
    padding-right: 1rem;
    position: relative;
}

.shop-seo li::before {
    content: "🟢";
    position: absolute;
    right: 0;
    top: 0;
}

.shop-seo a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.shop-seo a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 700px) {
    .shop-section {
        padding: 1rem;
    }

    .shop-category {
        padding: 1.2rem;
    }

    .shop-category h2 {
        font-size: 1.2rem;
    }

    .btn-shop {
        width: 100%;
    }
}