/* =========================================================
   PHARMACY HOMEPAGE
========================================================= */

.ph-homepage {

    --ph-bg: #f5f7fb;
    --ph-white: #ffffff;

    --ph-primary: #17185f;
    --ph-primary-dark: #101147;
    --ph-primary-light: #eef0ff;

    --ph-green: #3bb77e;
    --ph-green-dark: #299b68;
    --ph-green-light: #eaf8f1;

    --ph-text: #25324b;
    --ph-text-light: #6b7280;
    --ph-muted: #94a3b8;

    --ph-border: #e5e7eb;

    --ph-danger: #ef4444;
    --ph-warning: #f59e0b;

    direction: rtl;

    width: 100%;

    background: var(--ph-bg);

    color: var(--ph-text);

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.ph-home-container {

    width: 100%;

    max-width: 1380px;

    margin: 0 auto;

    padding-right: 18px;

    padding-left: 18px;

    box-sizing: border-box;
}


/* =========================================================
   HERO
========================================================= */

.ph-hero-section {

    padding-top: 10px;

    padding-bottom: 10px;
}

.ph-hero {

    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 24px;

    background: #fff;

    box-shadow:
        0 12px 35px rgba(23,24,95,.08);
}

.ph-hero-slide {

    display: block;

    width: 100%;

    overflow: hidden;

    border-radius: 24px;

    line-height: 0;
}

.ph-hero-slide img {

    display: block;

    width: 100%;

    max-width: 100%;

    aspect-ratio: 3.25 / 1;

    object-fit: cover;

    transition:
        transform .7s ease;
}

.ph-hero-slide:hover img {

    transform: scale(1.015);
}


/* =========================================================
   HERO ARROWS
========================================================= */

.ph-hero .swiper-button-prev,
.ph-hero .swiper-button-next {

    width: 44px !important;

    height: 44px !important;

    margin-top: -22px !important;

    border-radius: 50%;

    background: rgba(255,255,255,.97);

    border:
        1px solid rgba(229,231,235,.9);

    box-shadow:
        0 8px 25px rgba(15,23,42,.16);

    transition:
        all .2s ease;

    z-index: 20;
}

.ph-hero .swiper-button-prev {

    right: 18px;

    left: auto;
}

.ph-hero .swiper-button-next {

    left: 18px;

    right: auto;
}

.ph-hero .swiper-button-prev::after,
.ph-hero .swiper-button-next::after {

    font-size: 14px !important;

    font-weight: 900;

    color: var(--ph-primary);
}

.ph-hero .swiper-button-prev:hover,
.ph-hero .swiper-button-next:hover {

    background: var(--ph-primary);

    border-color: var(--ph-primary);

    transform: scale(1.06);
}

.ph-hero .swiper-button-prev:hover::after,
.ph-hero .swiper-button-next:hover::after {

    color: #fff;
}


/* =========================================================
   HERO PAGINATION
========================================================= */

.ph-hero .swiper-pagination {

    bottom: 12px !important;
}

.ph-hero .swiper-pagination-bullet {

    width: 7px;

    height: 7px;

    margin: 0 3px !important;

    opacity: .8;

    background: #fff;

    transition:
        all .25s ease;
}

.ph-hero .swiper-pagination-bullet-active {

    width: 22px;

    border-radius: 20px;

    opacity: 1;
}


/* =========================================================
   BENEFITS
========================================================= */

.ph-benefits {

    padding-top: 8px;

    padding-bottom: 10px;
}

.ph-benefits-box {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 10px;

    padding: 13px;

    border:
        1px solid var(--ph-border);

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 5px 22px rgba(15,23,42,.035);
}

.ph-benefit {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 8px;

    border-radius: 12px;

    transition:
        background .2s ease;
}

.ph-benefit:hover {

    background: #f8fafc;
}

.ph-benefit-icon {

    width: 42px;

    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: var(--ph-primary-light);

    color: var(--ph-primary);

    font-size: 20px;
}

.ph-benefit:nth-child(2) .ph-benefit-icon {

    background: var(--ph-green-light);

    color: var(--ph-green);
}

.ph-benefit:nth-child(3) .ph-benefit-icon {

    background: #fff6e7;

    color: var(--ph-warning);
}

.ph-benefit:nth-child(4) .ph-benefit-icon {

    background: #fff0f1;

    color: var(--ph-danger);
}

.ph-benefit-content strong {

    display: block;

    color: var(--ph-text);

    font-size: 12px;

    font-weight: 800;

    line-height: 1.7;
}

.ph-benefit-content span {

    display: block;

    margin-top: 1px;

    color: var(--ph-text-light);

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   BANNERS
========================================================= */

.ph-banner-section,
.ph-promo-section {

    padding-top: 10px;

    padding-bottom: 12px;
}

.ph-banner-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}

.ph-banner-item,
.ph-promo-item {

    display: block;

    overflow: hidden;

    border-radius: 17px;

    background: #fff;

    line-height: 0;

    box-shadow:
        0 6px 24px rgba(15,23,42,.055);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.ph-banner-item:hover,
.ph-promo-item:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(15,23,42,.09);
}

.ph-banner-item img,
.ph-promo-item img {

    display: block;

    width: 100%;

    max-width: 100%;

    aspect-ratio: 2.3 / 1;

    object-fit: cover;

    transition:
        transform .55s ease;
}

.ph-banner-item:hover img,
.ph-promo-item:hover img {

    transform: scale(1.025);
}

.ph-promo-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;
}

.ph-promo-item img {

    aspect-ratio: 2.7 / 1;
}


/* =========================================================
   GENERIC PRODUCT SECTION
========================================================= */

.ph-home-section {

    padding-top: 26px;

    padding-bottom: 27px;
}

.ph-new-section {

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.35),
            transparent
        );
}

.ph-best-section {

    background: #fff;

    border-top:
        1px solid #edf0f5;

    border-bottom:
        1px solid #edf0f5;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.ph-section-head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 17px;
}

.ph-section-title {

    display: flex;

    align-items: center;

    gap: 11px;

    min-width: 0;
}

.ph-section-icon {

    position: relative;

    width: 45px;

    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: var(--ph-primary-light);

    color: var(--ph-primary);

    font-size: 21px;
}

.ph-section-icon.green {

    background: var(--ph-green-light);

    color: var(--ph-green);
}

.ph-section-icon.blue {

    background: #edf4ff;

    color: #3d67b5;
}

.ph-section-title-text h2 {

    margin: 0;

    color: var(--ph-text);

    font-size: 19px;

    line-height: 1.6;

    font-weight: 800;
}

.ph-section-title-text p {

    margin: 2px 0 0;

    color: var(--ph-text-light);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   MORE
========================================================= */

.ph-section-more {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    min-height: 37px;

    padding:
        0 13px;

    border:
        1px solid var(--ph-border);

    border-radius: 10px;

    background: #fff;

    color: var(--ph-primary);

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition:
        all .2s ease;
}

.ph-section-more:hover {

    color: #fff;

    background: var(--ph-primary);

    border-color: var(--ph-primary);

    text-decoration: none;
}

.ph-section-more i {

    font-size: 16px;

    transition:
        transform .2s ease;
}

.ph-section-more:hover i {

    transform: translateX(-3px);
}


/* =========================================================
   PRODUCT CAROUSEL
========================================================= */

.ph-product-carousel {

    position: relative;

    width: 100%;

    padding:
        3px 0 8px;
}

.ph-product-swiper {

    width: 100% !important;

    max-width: 100% !important;

    margin: 0 !important;

    padding:
        5px 3px 12px !important;

    overflow: hidden !important;

    box-sizing: border-box !important;
}

.ph-product-swiper .swiper-wrapper {

    display: flex !important;

    align-items: stretch !important;
}

.ph-product-swiper .swiper-slide {

    height: auto !important;

    display: block !important;

    flex-shrink: 0 !important;

    min-width: 0 !important;

    box-sizing: border-box !important;
}

.ph-product-swiper .swiper-slide > * {

    display: block !important;

    width: 100% !important;

    max-width: 100% !important;

    min-width: 0 !important;

    margin: 0 !important;

    box-sizing: border-box !important;
}



/* =========================================================
   PRODUCT ARROWS
========================================================= */

.ph-product-carousel .swiper-button-prev,
.ph-product-carousel .swiper-button-next {

    position: absolute;

    top: 50%;

    width: 40px !important;

    height: 40px !important;

    margin-top: -20px !important;

    border-radius: 50%;

    background: #fff;

    border:
        1px solid #e9ebf0;

    box-shadow:
        0 7px 22px rgba(15,23,42,.15);

    z-index: 25;

    transition:
        all .22s ease;
}

.ph-product-carousel .swiper-button-prev {

    right: 2px !important;

    left: auto !important;
}

.ph-product-carousel .swiper-button-next {

    left: 2px !important;

    right: auto !important;
}

.ph-product-carousel .swiper-button-prev::after,
.ph-product-carousel .swiper-button-next::after {

    font-size: 13px !important;

    font-weight: 900;

    color: var(--ph-primary);
}

.ph-product-carousel .swiper-button-prev:hover,
.ph-product-carousel .swiper-button-next:hover {

    background: var(--ph-primary);

    border-color: var(--ph-primary);

    transform: scale(1.08);
}

.ph-product-carousel .swiper-button-prev:hover::after,
.ph-product-carousel .swiper-button-next:hover::after {

    color: #fff;
}


/* =========================================================
   SPECIAL OFFER
========================================================= */

.ph-special-offers {

    position: relative;

    margin-top: 12px;

    margin-bottom: 12px;

    padding:
        29px 0 30px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #102e25 0%,
            #164735 52%,
            #206b4d 100%
        );

    color: #fff;
}

.ph-special-offers::before {

    content: "";

    position: absolute;

    top: -130px;

    right: -90px;

    width: 330px;

    height: 330px;

    border-radius: 50%;

    background:
        rgba(59,183,126,.15);

    pointer-events: none;
}

.ph-special-offers::after {

    content: "";

    position: absolute;

    bottom: -150px;

    left: -90px;

    width: 360px;

    height: 360px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.045);

    pointer-events: none;
}


/* =========================================================
   OFFER HEADER
========================================================= */

.ph-offer-head {

    position: relative;

    display: flex;

    align-items: center;

    gap: 20px;

    margin-bottom: 18px;

    z-index: 3;
}

.ph-offer-brand {

    display: flex;

    align-items: center;

    gap: 12px;
}

.ph-offer-icon {

    position: relative;

    width: 52px;

    height: 52px;

    flex: 0 0 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    background:
        rgba(255,255,255,.13);

    border:
        1px solid rgba(255,255,255,.18);

    color: #fff;

    font-size: 25px;
}

.ph-offer-icon::after {

    content: "";

    position: absolute;

    top: -4px;

    right: -4px;

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: var(--ph-danger);

    border:
        2px solid #164735;
}

.ph-offer-title h2 {

    margin: 0;

    color: #fff;

    font-size: 21px;

    line-height: 1.6;

    font-weight: 900;
}

.ph-offer-title p {

    margin: 2px 0 0;

    color:
        rgba(255,255,255,.72);

    font-size: 11px;
}


/* =========================================================
   OFFER BADGE
========================================================= */

.ph-offer-badge {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-right: auto;

    padding:
        7px 10px;

    border:
        1px solid rgba(255,255,255,.15);

    border-radius: 9px;

    background:
        rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.82);

    font-size: 10px;

    font-weight: 700;
}

.ph-offer-badge i {

    font-size: 14px;
}


/* =========================================================
   OFFER MORE
========================================================= */

.ph-offer-more {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    min-height: 37px;

    padding:
        0 14px;

    border:
        1px solid rgba(255,255,255,.2);

    border-radius: 10px;

    background:
        rgba(255,255,255,.1);

    color: #fff;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    transition:
        all .2s ease;
}

.ph-offer-more:hover {

    color: #174a37;

    background: #fff;

    border-color: #fff;

    text-decoration: none;
}


/* =========================================================
   OFFER PRODUCTS
========================================================= */

.ph-offer-products {

    position: relative;

    z-index: 3;

    padding:
        3px 0 5px;
}

.ph-offer-products .swiper-slide > * {

    border-radius: 16px;
}

.ph-offer-products .swiper-button-prev,
.ph-offer-products .swiper-button-next {

    width: 41px !important;

    height: 41px !important;

    margin-top: -20px !important;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 7px 23px rgba(0,0,0,.18);

    z-index: 30;
}

.ph-offer-products .swiper-button-prev {

    right: 3px !important;

    left: auto !important;
}

.ph-offer-products .swiper-button-next {

    left: 3px !important;

    right: auto !important;
}

.ph-offer-products .swiper-button-prev::after,
.ph-offer-products .swiper-button-next::after {

    color: #174a37;

    font-size: 13px !important;

    font-weight: 900;
}

.ph-offer-products .swiper-button-prev:hover,
.ph-offer-products .swiper-button-next:hover {

    background: var(--ph-green);

    border-color: var(--ph-green);
}

.ph-offer-products .swiper-button-prev:hover::after,
.ph-offer-products .swiper-button-next:hover::after {

    color: #fff;
}

/* =========================================================
   HEALTH MAGAZINE
========================================================= */

.ph-blog-section {

    position: relative;

    padding: 38px 0 45px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );

    border-top: 1px solid #edf0f5;
}


/* =========================================================
   BLOG HEADER
========================================================= */

.ph-blog-head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;
}

.ph-blog-heading {

    display: flex;

    align-items: center;

    gap: 13px;

    min-width: 0;
}

.ph-blog-heading-icon {

    width: 50px;

    height: 50px;

    flex: 0 0 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            #eef0ff,
            #e7f8f0
        );

    color: var(--ph-primary);

    font-size: 23px;

    box-shadow:
        0 6px 18px rgba(23,24,95,.07);
}

.ph-blog-eyebrow {

    display: block;

    margin-bottom: 1px;

    color: var(--ph-green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .1px;
}

.ph-blog-heading h2 {

    margin: 0;

    color: var(--ph-text);

    font-size: 20px;

    line-height: 1.6;

    font-weight: 900;
}

.ph-blog-heading p {

    margin: 2px 0 0;

    color: var(--ph-text-light);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   BLOG MORE
========================================================= */

.ph-blog-more {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    min-height: 39px;

    padding: 0 14px;

    border:
        1px solid var(--ph-border);

    border-radius: 11px;

    background: #fff;

    color: var(--ph-primary);

    font-size: 11px;

    font-weight: 800;

    white-space: nowrap;

    text-decoration: none;

    transition:
        all .2s ease;
}

.ph-blog-more i {

    font-size: 16px;

    transition:
        transform .2s ease;
}

.ph-blog-more:hover {

    color: #fff;

    background: var(--ph-primary);

    border-color: var(--ph-primary);

    text-decoration: none;

    box-shadow:
        0 7px 20px rgba(23,24,95,.16);
}

.ph-blog-more:hover i {

    transform: translateX(-3px);
}


/* =========================================================
   BLOG CAROUSEL
========================================================= */

.ph-blog-carousel {

    position: relative;

    width: 100%;
}

.ph-blog-swiper {

    width: 100%;

    overflow: hidden;

    padding:
        4px 3px 14px;
}

.ph-blog-swiper .swiper-wrapper {

    align-items: stretch;
}

.ph-blog-swiper .swiper-slide {

    height: auto;

    display: flex;
}


/* =========================================================
   BLOG CARD
========================================================= */

.ph-blog-card {

    position: relative;

    width: 100%;

    height: 100%;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: #fff;

    border:
        1px solid #e8ebf0;

    border-radius: 18px;

    box-shadow:
        0 5px 20px rgba(15,23,42,.045);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.ph-blog-card:hover {

    transform: translateY(-5px);

    border-color:
        #dfe3eb;

    box-shadow:
        0 15px 35px rgba(15,23,42,.10);
}


/* =========================================================
   BLOG IMAGE
========================================================= */

.ph-blog-image {

    position: relative;

    display: block;

    width: 100%;

    overflow: hidden;

    background:
        #eef1f6;

    line-height: 0;
}

.ph-blog-image img {

    display: block;

    width: 100%;

    aspect-ratio: 1.75 / 1;

    object-fit: cover;

    transition:
        transform .55s ease;
}

.ph-blog-card:hover .ph-blog-image img {

    transform: scale(1.055);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.ph-blog-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(15,23,42,.42) 100%
        );

    opacity: 0;

    transition:
        opacity .25s ease;
}

.ph-blog-card:hover .ph-blog-image::after {

    opacity: 1;
}

.ph-blog-image-overlay {

    position: absolute;

    right: 12px;

    bottom: 11px;

    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding:
        7px 10px;

    border-radius: 9px;

    background:
        rgba(255,255,255,.94);

    color: var(--ph-primary);

    font-size: 9px;

    font-weight: 800;

    opacity: 0;

    transform:
        translateY(7px);

    transition:
        all .25s ease;
}

.ph-blog-card:hover .ph-blog-image-overlay {

    opacity: 1;

    transform:
        translateY(0);
}

.ph-blog-image-overlay i {

    font-size: 14px;
}


/* =========================================================
   NO IMAGE
========================================================= */

.ph-blog-no-image {

    width: 100%;

    aspect-ratio: 1.75 / 1;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #eef0ff,
            #eaf8f1
        );

    color: var(--ph-primary);

    font-size: 40px;
}


/* =========================================================
   BLOG CONTENT
========================================================= */

.ph-blog-content {

    display: flex;

    flex-direction: column;

    flex: 1;

    padding:
        13px 14px 14px;
}


/* =========================================================
   META
========================================================= */

.ph-blog-meta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 8px;

    min-height: 22px;

    margin-bottom: 7px;
}

.ph-blog-category,
.ph-blog-date {

    display: inline-flex;

    align-items: center;

    gap: 4px;

    min-width: 0;

    color: var(--ph-text-light);

    font-size: 9px;

    line-height: 1.5;

    white-space: nowrap;
}

.ph-blog-category {

    color: var(--ph-green);

    font-weight: 700;
}

.ph-blog-category i,
.ph-blog-date i {

    font-size: 13px;

    flex: 0 0 auto;
}

.ph-blog-date {

    color: #8a94a6;
}


/* =========================================================
   BLOG TITLE
========================================================= */

.ph-blog-title {

    display: -webkit-box;

    margin:
        0 0 6px;

    overflow: hidden;

    color: var(--ph-text);

    font-size: 13px;

    font-weight: 850;

    line-height: 1.9;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;
}

.ph-blog-title a {

    color: inherit;

    text-decoration: none;

    transition:
        color .2s ease;
}

.ph-blog-title a:hover {

    color: var(--ph-primary);

    text-decoration: none;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.ph-blog-description {

    display: -webkit-box;

    margin:
        0 0 11px;

    overflow: hidden;

    color: var(--ph-text-light);

    font-size: 10px;

    line-height: 1.9;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;
}


/* =========================================================
   BLOG FOOTER
========================================================= */

.ph-blog-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-top: auto;

    padding-top: 9px;

    border-top:
        1px solid #f0f2f5;
}

.ph-blog-read {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: var(--ph-primary);

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;

    transition:
        color .2s ease;
}

.ph-blog-read i {

    font-size: 14px;

    transition:
        transform .2s ease;
}

.ph-blog-read:hover {

    color: var(--ph-green);

    text-decoration: none;
}

.ph-blog-read:hover i {

    transform: translateX(-3px);
}

.ph-blog-read-icon {

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background:
        var(--ph-primary-light);

    color: var(--ph-primary);

    font-size: 14px;
}


/* =========================================================
   BLOG NAVIGATION
========================================================= */

.ph-blog-nav {

    position: absolute !important;

    top: 50% !important;

    width: 41px !important;

    height: 41px !important;

    margin-top: -20px !important;

    display: flex !important;

    align-items: center;

    justify-content: center;

    padding: 0;

    border:
        1px solid #e4e7ec !important;

    border-radius: 50%;

    background: #fff !important;

    color: var(--ph-primary);

    box-shadow:
        0 7px 22px rgba(15,23,42,.14);

    z-index: 20;

    transition:
        all .22s ease;
}

.ph-blog-nav::after {

    display: none !important;
}

.ph-blog-prev {

    right: -7px !important;

    left: auto !important;
}

.ph-blog-next {

    left: -7px !important;

    right: auto !important;
}

.ph-blog-nav i {

    font-size: 17px;

    line-height: 1;

    transition:
        transform .2s ease;
}

.ph-blog-nav:hover {

    color: #fff;

    background: var(--ph-primary) !important;

    border-color: var(--ph-primary) !important;

    transform:
        translateY(-50%) scale(1.07);

    box-shadow:
        0 10px 25px rgba(23,24,95,.23);
}

.ph-blog-prev:hover i {

    transform: translateX(2px);
}

.ph-blog-next:hover i {

    transform: translateX(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .ph-blog-nav {

        display: none !important;
    }

    .ph-blog-section {

        padding:
            28px 0 34px;
    }

    .ph-blog-heading h2 {

        font-size: 18px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .ph-blog-section {

        padding:
            22px 0 28px;
    }

    .ph-blog-head {

        margin-bottom: 13px;
    }

    .ph-blog-heading {

        gap: 9px;
    }

    .ph-blog-heading-icon {

        width: 40px;

        height: 40px;

        flex-basis: 40px;

        border-radius: 11px;

        font-size: 19px;
    }

    .ph-blog-eyebrow {

        font-size: 8px;
    }

    .ph-blog-heading h2 {

        font-size: 15px;

        line-height: 1.7;
    }

    .ph-blog-heading p {

        display: none;
    }

    .ph-blog-more {

        width: 35px;

        height: 35px;

        min-height: 35px;

        padding: 0;

        border-radius: 9px;
    }

    .ph-blog-more span {

        display: none;
    }

    .ph-blog-more i {

        font-size: 16px;
    }


    .ph-blog-swiper {

        padding:
            3px 1px 10px;
    }

    .ph-blog-card {

        border-radius: 14px;
    }

    .ph-blog-content {

        padding:
            10px 11px 11px;
    }

    .ph-blog-meta {

        margin-bottom: 5px;
    }

    .ph-blog-category,
    .ph-blog-date {

        font-size: 8px;
    }

    .ph-blog-category i,
    .ph-blog-date i {

        font-size: 11px;
    }

    .ph-blog-title {

        font-size: 11px;

        line-height: 1.85;
    }

    .ph-blog-description {

        font-size: 9px;

        line-height: 1.8;
    }

    .ph-blog-footer {

        padding-top: 7px;
    }

    .ph-blog-read {

        font-size: 9px;
    }

    .ph-blog-read-icon {

        width: 25px;

        height: 25px;

        font-size: 12px;
    }

    .ph-blog-image-overlay {

        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .ph-blog-date {

        display: none;
    }

}

/* =========================================================
   EXTRA BANNERS
========================================================= */

.ph-extra-banner-section {

    padding-top: 10px;

    padding-bottom: 35px;
}

.ph-extra-banner-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;
}

.ph-extra-banner {

    display: block;

    overflow: hidden;

    border-radius: 18px;

    line-height: 0;

    background: #fff;
}

.ph-extra-banner img {

    display: block;

    width: 100%;

    aspect-ratio: 2.7 / 1;

    object-fit: cover;

    transition:
        transform .5s ease;
}

.ph-extra-banner:hover img {

    transform: scale(1.025);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .ph-home-container {

        padding-right: 14px;

        padding-left: 14px;
    }


    .ph-benefits-box {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .ph-banner-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .ph-hero .swiper-button-prev,
    .ph-hero .swiper-button-next,
    .ph-product-carousel .swiper-button-prev,
    .ph-product-carousel .swiper-button-next,
    .ph-offer-products .swiper-button-prev,
    .ph-offer-products .swiper-button-next,
    .ph-blog-swiper .swiper-button-prev,
    .ph-blog-swiper .swiper-button-next {

        display: none !important;
    }


    .ph-offer-badge {

        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .ph-home-container {

        padding-right: 9px;

        padding-left: 9px;
    }


    /* HERO */

    .ph-hero-section {

        padding-top: 5px;

        padding-bottom: 7px;
    }

    .ph-hero,
    .ph-hero-slide {

        border-radius: 14px;
    }

    .ph-hero-slide img {

        aspect-ratio: 1.5 / 1;
    }


    /* BENEFITS */

    .ph-benefits {

        padding-top: 5px;

        padding-bottom: 7px;
    }

    .ph-benefits-box {

        gap: 4px;

        padding: 7px;

        border-radius: 14px;
    }

    .ph-benefit {

        gap: 6px;

        padding: 5px;
    }

    .ph-benefit-icon {

        width: 34px;

        height: 34px;

        flex-basis: 34px;

        border-radius: 9px;

        font-size: 17px;
    }

    .ph-benefit-content strong {

        font-size: 10px;
    }

    .ph-benefit-content span {

        font-size: 8px;
    }


    /* BANNERS */

    .ph-banner-grid {

        grid-template-columns: 1fr;

        gap: 8px;
    }

    .ph-banner-item,
    .ph-promo-item {

        border-radius: 13px;
    }


    /* SECTION */

    .ph-home-section {

        padding-top: 17px;

        padding-bottom: 18px;
    }

    .ph-section-head {

        margin-bottom: 10px;

        gap: 8px;
    }

    .ph-section-title {

        gap: 8px;
    }

    .ph-section-icon {

        width: 38px;

        height: 38px;

        flex-basis: 38px;

        border-radius: 10px;

        font-size: 18px;
    }

    .ph-section-title-text h2 {

        font-size: 15px;
    }

    .ph-section-title-text p {

        display: none;
    }

    .ph-section-more {

        min-height: 33px;

        padding:
            0 9px;

        border-radius: 8px;

        font-size: 10px;
    }


    /* SPECIAL OFFER */

    .ph-special-offers {

        margin-top: 5px;

        margin-bottom: 5px;

        padding-top: 20px;

        padding-bottom: 20px;
    }

    .ph-offer-head {

        gap: 9px;

        margin-bottom: 12px;
    }

    .ph-offer-brand {

        gap: 8px;
    }

    .ph-offer-icon {

        width: 40px;

        height: 40px;

        flex-basis: 40px;

        border-radius: 11px;

        font-size: 19px;
    }

    .ph-offer-title h2 {

        font-size: 16px;
    }

    .ph-offer-title p {

        display: none;
    }

    .ph-offer-more {

        min-height: 32px;

        padding:
            0 9px;

        border-radius: 8px;

        font-size: 9px;
    }


    /* PROMO */

    .ph-promo-grid {

        grid-template-columns: 1fr;

        gap: 8px;
    }


    /* BLOG */

    .ph-blog-section {

        padding-top: 21px;

        padding-bottom: 28px;
    }

    .ph-blog-card {

        border-radius: 14px;
    }

    .ph-blog-content {

        padding:
            11px 12px 12px;
    }

    .ph-blog-content h3 {

        font-size: 12px;
    }


    /* EXTRA */

    .ph-extra-banner-grid {

        grid-template-columns: 1fr;

        gap: 8px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .ph-home-container {

        padding-right: 7px;

        padding-left: 7px;
    }

    .ph-section-more {

        width: 34px;

        padding: 0;
    }

    .ph-section-more span {

        display: none;
    }

}
/* =========================================================
   SWIPER ARROWS - GLOBAL HOMEPAGE
========================================================= */

.ph-homepage .swiper-button-prev,
.ph-homepage .swiper-button-next {

    position: absolute;

    width: 42px !important;
    height: 42px !important;

    margin: 0 !important;

    top: 50%;

    transform: translateY(-50%);

    display: flex !important;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(229, 231, 235, 0.95);

    box-shadow:
        0 6px 18px rgba(15, 23, 42, 0.13);

    z-index: 30;

    cursor: pointer;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease,
        box-shadow .2s ease,
        transform .2s ease,
        opacity .2s ease;

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);
}


/* ---------------------------------------------------------
   Arrow icon
--------------------------------------------------------- */

.ph-homepage .swiper-button-prev::after,
.ph-homepage .swiper-button-next::after {

    font-family: swiper-icons !important;

    font-size: 13px !important;

    line-height: 1;

    font-weight: 900;

    color: var(--ph-primary);

    transition:
        color .2s ease,
        transform .2s ease;
}


/* ---------------------------------------------------------
   RTL positioning
--------------------------------------------------------- */

/* در RTL:
   prev سمت راست
   next سمت چپ
*/

.ph-homepage .swiper-button-prev {

    right: 12px;

    left: auto;
}

.ph-homepage .swiper-button-next {

    left: 12px;

    right: auto;
}


/* ---------------------------------------------------------
   Hover
--------------------------------------------------------- */

.ph-homepage .swiper-button-prev:hover,
.ph-homepage .swiper-button-next:hover {

    background: var(--ph-primary);

    border-color: var(--ph-primary);

    box-shadow:
        0 9px 24px rgba(23, 24, 95, 0.22);

    transform:
        translateY(-50%) scale(1.07);
}

.ph-homepage .swiper-button-prev:hover::after,
.ph-homepage .swiper-button-next:hover::after {

    color: #fff;
}


/* ---------------------------------------------------------
   Active
--------------------------------------------------------- */

.ph-homepage .swiper-button-prev:active,
.ph-homepage .swiper-button-next:active {

    transform:
        translateY(-50%) scale(.96);

    box-shadow:
        0 4px 12px rgba(15, 23, 42, .12);
}


/* ---------------------------------------------------------
   Disabled
--------------------------------------------------------- */

.ph-homepage .swiper-button-disabled {

    opacity: .35 !important;

    pointer-events: none;

    cursor: default;
}


/* =========================================================
   HERO ARROWS
========================================================= */

.ph-hero .swiper-button-prev,
.ph-hero .swiper-button-next {

    width: 46px !important;
    height: 46px !important;

    background: rgba(255, 255, 255, .94);

    border-color:
        rgba(255, 255, 255, .7);

    box-shadow:
        0 8px 24px rgba(15, 23, 42, .18);
}

.ph-hero .swiper-button-prev {

    right: 18px;

    left: auto;
}

.ph-hero .swiper-button-next {

    left: 18px;

    right: auto;
}

.ph-hero .swiper-button-prev::after,
.ph-hero .swiper-button-next::after {

    font-size: 14px !important;
}


/* Hero hover */

.ph-hero .swiper-button-prev:hover,
.ph-hero .swiper-button-next:hover {

    background: var(--ph-primary);

    border-color: var(--ph-primary);

    box-shadow:
        0 10px 28px rgba(23, 24, 95, .28);
}


/* =========================================================
   PRODUCT CAROUSEL ARROWS
========================================================= */

.ph-product-carousel .swiper-button-prev,
.ph-product-carousel .swiper-button-next {

    width: 40px !important;
    height: 40px !important;

    top: 50%;

    background: #fff;

    border:
        1px solid #e7e9ef;

    box-shadow:
        0 6px 18px rgba(15, 23, 42, .12);
}

.ph-product-carousel .swiper-button-prev {

    right: -2px !important;

    left: auto !important;
}

.ph-product-carousel .swiper-button-next {

    left: -2px !important;

    right: auto !important;
}

.ph-product-carousel .swiper-button-prev::after,
.ph-product-carousel .swiper-button-next::after {

    font-size: 12px !important;
}


/* =========================================================
   SPECIAL OFFER ARROWS
========================================================= */

.ph-offer-products .swiper-button-prev,
.ph-offer-products .swiper-button-next {

    width: 42px !important;
    height: 42px !important;

    background: #fff;

    border:
        1px solid rgba(255,255,255,.5);

    box-shadow:
        0 8px 24px rgba(0, 0, 0, .2);
}

.ph-offer-products .swiper-button-prev {

    right: 2px !important;

    left: auto !important;
}

.ph-offer-products .swiper-button-next {

    left: 2px !important;

    right: auto !important;
}

.ph-offer-products .swiper-button-prev::after,
.ph-offer-products .swiper-button-next::after {

    color: #174a37;

    font-size: 13px !important;
}

.ph-offer-products .swiper-button-prev:hover,
.ph-offer-products .swiper-button-next:hover {

    background: var(--ph-green);

    border-color: var(--ph-green);

    box-shadow:
        0 9px 26px rgba(59, 183, 126, .3);
}

.ph-offer-products .swiper-button-prev:hover::after,
.ph-offer-products .swiper-button-next:hover::after {

    color: #fff;
}


/* =========================================================
   BLOG ARROWS
========================================================= */

.ph-blog-swiper .swiper-button-prev,
.ph-blog-swiper .swiper-button-next {

    width: 40px !important;
    height: 40px !important;

    background: #fff;

    border:
        1px solid var(--ph-border);

    box-shadow:
        0 6px 18px rgba(15, 23, 42, .12);
}

.ph-blog-swiper .swiper-button-prev {

    right: 8px;

    left: auto;
}

.ph-blog-swiper .swiper-button-next {

    left: 8px;

    right: auto;
}

.ph-blog-swiper .swiper-button-prev::after,
.ph-blog-swiper .swiper-button-next::after {

    font-size: 12px !important;

    color: var(--ph-primary);
}

.ph-blog-swiper .swiper-button-prev:hover,
.ph-blog-swiper .swiper-button-next:hover {

    background: var(--ph-primary);

    border-color: var(--ph-primary);
}

.ph-blog-swiper .swiper-button-prev:hover::after,
.ph-blog-swiper .swiper-button-next:hover::after {

    color: #fff;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .ph-homepage .swiper-button-prev,
    .ph-homepage .swiper-button-next {

        display: none !important;
    }

}


/* =========================================================
   DESKTOP LARGE
========================================================= */

@media (min-width: 1200px) {

    .ph-hero .swiper-button-prev {

        right: 22px;
    }

    .ph-hero .swiper-button-next {

        left: 22px;
    }

    .ph-product-carousel .swiper-button-prev {

        right: -7px !important;
    }

    .ph-product-carousel .swiper-button-next {

        left: -7px !important;
    }

}
.swiper-button-next, .swiper-button-prev {
    svg {
        height: 57%;
        fill: rgb(23 24 95);
    }
}
.swiper-button-next, .swiper-button-prev {
    color: #17185f;
}
.ph-homepage .swiper-button-prev:hover, .ph-homepage .swiper-button-next:hover {
    color: #fff;
}