.pharmily-hero-section {
    position: relative;
    /* min-height: 400px; */
    background: linear-gradient(135deg, #F0E5F4 0%, #FAFAFA 50%, #E8D5EF 100%);
    overflow: hidden;
    display: flex;
    align-items: center;

    .btn {
        padding: 0.75rem 1.5rem !important;
    }
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(113, 1, 146, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.15) 0%, rgba(255, 165, 0, 0.25) 100%);
    color: var(--orange, #FF6B35);
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.hero-badge svg {
    width: 18px;
    height: 18px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark, #2F2D52);
    width: max-content;
    max-width: 100%;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2F2D52 0%, #710192 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-wrap: balance;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #615F7B;
    margin-bottom: 1.25rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark, #2F2D52);
    border: 1px solid rgba(113, 1, 146, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hero-feature-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(113, 1, 146, 0.15);
    border-color: rgba(113, 1, 146, 0.3);
}

.hero-feature-pill i {
    font-size: 1.1rem;
    color: var(--primary, #710192);
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
}

.hero-btn-primary,
.hero-btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 3rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.hero-btn-primary {
    background: linear-gradient(135deg, #710192 0%, #8B1BA8 100%);
    color: #fff;
    border: none;
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #8B1BA8 0%, #710192 100%);
    box-shadow: 0 6px 20px rgba(113, 1, 146, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary, #710192);
    border: 2px solid rgba(113, 1, 146, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary, #710192);
    box-shadow: 0 6px 20px rgba(113, 1, 146, 0.2);
    transform: translateY(-2px);
    color: var(--primary, #710192);
}

.hero-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-stat strong {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary, #710192);
    line-height: 1;
}

.trust-stat span {
    font-size: 0.875rem;
    color: #615F7B;
    font-weight: 500;
}

.hero-image-container {
    position: relative;
    animation: fadeInRight 1s ease-out;
    margin: 0 auto;
    height: 300px;
    width: 300px;
    text-align: center;
    background-color: var(--primary);
    z-index: 1;
    border-radius: 100%;
    box-shadow: 0 0 0 35px #f5eef6, 0 0 0 30px var(--primary-1-fade-1) inset;

    @media screen and (max-width:767px) {
        height: 200px;
        width: 200px;
    }
}

.hero-image-container::before {
    content: "";
    position: absolute;
    inset: -2px;
    border: 3px solid var(--primary-1-fade-1);
    border-radius: 100%;
}

.hero-image-container img {
    margin: 0 auto;
    display: block;
    height: 100%;
    width: auto;
    z-index: 2;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(113, 1, 146, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: floatAnimation 3s ease-in-out infinite;
    z-index: 2;
    text-align: left;

    @media screen and (max-width:767px) {
        padding: 0.5rem;
        gap: 0.5rem;
    }
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-4px);
    }
}

.hero-card-1 {
    top: 10%;
    right: -8rem;
    animation-delay: 0s;
}

.hero-card-2 {
    bottom: 15%;
    left: -8rem;
    animation-delay: 1.5s;
}

@media screen and (max-width:767px) {
    .hero-card-1 {
        top: 1rem;
        right: -6rem;
    }

    .hero-card-2 {
        bottom: 1rem;
        left: -6rem;
    }
}

.hero-floating-card i {
    font-size: 1.5rem;
    color: var(--primary, #710192);
    background: linear-gradient(135deg, rgba(113, 1, 146, 0.1) 0%, rgba(113, 1, 146, 0.2) 100%);
    padding: 0.75rem;
    border-radius: 0.5rem;
    line-height: 1;

    @media screen and (max-width:767px) {
        font-size: 1rem;
    }
}

.hero-floating-card strong {
    display: block;
    font-size: 1rem;
    color: var(--dark, #2F2D52);
    margin-bottom: 0.25rem;
}

.hero-floating-card small {
    display: block;
    font-size: 0.85rem;
    color: #615F7B;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(113, 1, 146, 0.1) 0%, rgba(113, 1, 146, 0.05) 100%);
    z-index: 0;
}

.hero-decoration-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: 10%;
    animation: pulse 6s ease-in-out infinite;
}

.hero-decoration-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 5%;
    animation: pulse 8s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@media (max-width: 991px) {
    .pharmily-hero-section {
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-cta-buttons {
        margin-bottom: 2rem;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    .trust-stat strong {
        font-size: 1.5rem;
    }

    .hero-trust-indicators {
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.5rem;
        font-weight: 600;
        text-wrap: unset;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-feature-pill {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .hero-cta-buttons {
        .btn {
            padding: 0.5rem 1rem;
            font-size: 0.75rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
            width: 100%;
            justify-content: center;

            i {
                display: none;
            }
        }
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .trust-stat {
        flex: 1;
        min-width: 100px;
    }

    .trust-stat strong {
        font-size: 1.25rem;
    }

    .trust-stat span {
        font-size: 0.75rem;
    }
}

.new-home-sliders {
    height: 400px;
    overflow: hidden;

    img {
        /*height: 100%;*/
        width: 100%;
        object-fit: inherit;
        object-position: center;
    }
}

@media (min-width: 768px) {
    .new-home-sliders {
        height: 500px;
    }
}

@media (min-width: 1200px) {
    .new-home-sliders {
        /*height: 550px;*/
        max-height: 580px;
    }
}

.btn-rounded-pill {
    padding-inline: 1.25rem;
    border-radius: 3rem !important;
}

.btn-rounded-pill-sm {
    border-radius: 3rem !important;
}

body {
    background-color: #ffffff !important;
}

.bg-light {
    background-color: #ffffff !important;
}

.bg-light-one {
    background-color: #FCFAFC;
}

.btn-light {
    background-color: var(--primary-1-fade-1) !important;
    color: var(--dark) !important;
    border-color: var(--primary-1-fade-1) !important;

    &:hover {
        background-color: #ccaad888 !important;
        border-color: #ccaad888 !important;
    }
}

.btn-c-light {
    background-color: #F0E5F4;
    color: var(--dark);
}

.home-icon-box {
    font-size: 0.75rem !important;

    .hib-icon {
        border-radius: 50%;
    }
}

.footer-newsletters-card {
    padding: 1.5rem 1.75rem;
    border-radius: 0.75rem;
    background-color: #ECDEF1;
}

.br-lg {
    border-radius: 0.5rem;
}

.top-bar {
    background-color: var(--primary-1-fade-1);

    a {
        color: #2F2D52;
        font-weight: 400;
    }
}

.navbar a {
    font-weight: 400 !important;
}

.top-bar-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;

    li {
        font-size: 0.875rem;
        padding-right: 1rem;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        border-right: 1px solid #2F2D5222;

        a {
            padding: 0;
            line-height: 1;
        }

        &:last-of-type {
            padding-right: 0;
            margin-right: 0;
            border-right: none;
        }
    }
}

.secondary-navbar {
    border-bottom: 1px solid #2F2D5222;
    border-top: 1px solid #2F2D5211;
}

.secondary-navbar .dropdown-categories {
    padding: 0.125rem 0.5rem;
    border-radius: 3rem;
}


@media (min-width: 992px) {
    .secondary-navbar .dropdown-categories:first-child {
        padding-left: 0 !important;
    }

    .secondary-navbar .dropdown-categories:first-child .nav-link {
        padding-left: 0 !important;
    }

    .secondary-navbar .nav-item:last-child {
        padding-right: 0 !important;
    }

    .secondary-navbar .nav-item:last-child .nav-link {
        padding-right: 0 !important;
    }
}

.btn-whatsapp {
    background-color: #CDF0D2E8;
    color: #36AD48;
}

.bg-c-light {
    background-color: #FCFAFC;
}

.top-right-links a,
.fancy-top-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.top-right-links .trl-icon,
.fancy-top-link .trl-icon {
    font-size: 1.75rem !important;
    color: var(--primary) !important;
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #71019222;
    border-radius: 50%;

    svg {
        height: 1.5rem;
        width: 1.5rem;
    }
}

.top-right-links .trl-text,
.fancy-top-link .trl-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;

    small {
        font-size: 0.75rem;
        color: var(--dark);
    }

    span {
        font-size: 0.875rem;
        font-weight: 500;
    }
}

.fancy-top-link {
    margin-right: 1rem;
}

.fancy-top-link .trl-icon {
    background-color: #CDF0D2E8;
    color: #36AD48 !important;
}

.fancy-top-link .trl-text span,
.fancy-top-link .trl-text small {
    color: #36AD48 !important;
}

.rounded-full {
    border-radius: 5rem !important;
    padding-inline: 1rem;
}

.home-custom-swiper {
    padding: 2.5rem 0 0.25rem;
    margin-top: -2.5rem;
    position: relative;
}

.home-custom-swiper-navigations {
    position: absolute;
    right: 1rem;
    top: 1rem;
    padding: 0 1.25rem;
}

.home-blog-article-image {
    overflow: hidden;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.home-blog-article-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.home-article-list h3 {
    font-size: 1.125rem;
    line-height: 1.4;
}

.bread-crumbs {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.bread-crumbs li {
    position: relative;
    font-weight: 400;
    font-size: 0.875rem;

    &::before {
        content: '';
        position: absolute;
        height: 0.35rem;
        width: 0.35rem;
        border-right: 1px solid var(--dark);
        border-bottom: 1px solid var(--dark);
        right: -1rem;
        transform: rotate(-45deg) translateY(-50%);
        top: 50%;
        opacity: 0.5;
    }
}

.bread-crumbs li:last-of-type {
    &::before {
        display: none;
    }
}

.bread-crumbs li a {
    color: var(--dark);
}

.bread-crumbs li a i {
    margin-right: 0.25rem;
}

.recent-searches-list {
    list-style: none;
    display: inline-flex;
    gap: 0.5rem 0.5rem;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;

    li {
        a {
            display: inline-block;
            padding: 0.25rem 2rem 0.25rem 0.75rem;
            line-height: 1.25;
            border-radius: 3rem;
            border: 1px solid #989A9E;
            font-size: 0.75rem;
            color: var(--secondary);
            position: relative;

            &:hover {
                background-color: #989A9E44;
            }
        }
    }
}

.search-close-icon {
    height: 1rem;
    width: 1rem;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    border: none !important;
    border-radius: 50% !important;
    background-color: transparent;
    color: var(--primary);
    padding: 0.25rem;
    z-index: 1;
}

.text-green {
    color: #36AD48;
}

/* Glassmorphism Search Modal Styles */
#searchModal .modal-dialog {
    max-width: 700px;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(113, 1, 146, 0.15);
    overflow: hidden;
}

#searchModal .modal-header {
    background: linear-gradient(135deg, rgba(240, 229, 244, 0.7) 0%, rgba(252, 250, 252, 0.5) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(113, 1, 146, 0.1);
    padding: 1.5rem 2rem;
}

#searchModal .modal-header .modal-title {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.5rem;
}

#searchModal .modal-header .btn-close {
    background-color: rgba(113, 1, 146, 0.1);
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.3s ease;
}

#searchModal .modal-header .btn-close:hover {
    background-color: rgba(113, 1, 146, 0.2);
    opacity: 1;
    transform: rotate(90deg);
}

#searchModal .modal-body {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(252, 250, 252, 0.3) 100%);
}

.modal-lg {
    .navbar-search-form {
        width: 100% !important;
        left: 0 !important;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1.5px solid rgba(113, 1, 146, 0.15);
        box-shadow: 0 4px 16px rgba(113, 1, 146, 0.08);
    }

    .navbar-search-form:focus-within {
        background: rgba(255, 255, 255, 0.95);
        border-color: var(--primary);
        box-shadow: 0 6px 20px rgba(113, 1, 146, 0.15);
    }
}

.search-results-revised p {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.search-results-items h6 {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.search-no-result-area {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-search-result-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(113, 1, 146, 0.15);
    margin: 0 0 0.75rem;
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;

    p {
        margin-bottom: 0;
    }

    &:hover {
        border-color: rgba(113, 1, 146, 0.3);
        background: rgba(255, 255, 255, 0.8);
        box-shadow: 0 4px 12px rgba(113, 1, 146, 0.08);
        transform: translateY(-2px);
    }
}

.recent-searches-list {
    li a {
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(113, 1, 146, 0.15);
        transition: all 0.3s ease;

        &:hover {
            background: rgba(240, 229, 244, 0.6);
            border-color: rgba(113, 1, 146, 0.3);
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(113, 1, 146, 0.1);
        }
    }
}

.msri-search-item {
    padding-right: 5rem !important;
}

.msri-search-item .modal-cart-item-delete {
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    height: 2rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #FBE3E3;
}

.msr-item-details {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex: 1;
}

.msr-item-d-img-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.msrid-img-box {
    width: 2rem;
    font-size: 0.125rem;

    img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        object-position: left;
    }
}

.contact-us-map-area {
    height: 300px;
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    overflow: hidden;

    iframe {
        height: 100%;
        width: 100%;
        object-position: center;
    }
}

.site-contact-icon {
    background-color: var(--primary-1-fade-1);
    color: var(--primary);
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.all-brands-letters-list {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-wrap: wrap;

    li {
        &.active {
            a {
                background-color: var(--dark);
                color: var(--primary-1-fade-1);
            }
        }
    }

    a {
        display: inline-block;
        text-transform: uppercase;
        padding: 0.25rem 0.75rem;
        border-radius: 0.25rem;
        background-color: var(--primary-1-fade-1);
        color: var(--dark);

        &:hover {
            background-color: var(--dark);
            color: var(--primary-1-fade-1);
        }
    }
}

.category-categorization-row {
    display: flex;
    border-top: 1px solid var(--dark);
    padding: 1.5rem 0 0;
    margin: 1.5rem 0 0;
    align-items: flex-start;
    gap: 1.5rem;
}

.category-letter {
    display: inline-block;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    background-color: var(--primary-1-fade-1);
    color: var(--dark);
}

.category-categorization-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0 2rem;
    justify-content: space-between;
    flex: 1;

    a {
        color: var(--dark);
    }
}

.w-20 {
    width: 8rem;
}

@media screen and (max-width:767px) {
    .category-categorization-item-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

.dropdown-submenu {
    position: static;
}

.secondary-navbar .container {
    position: relative;
}

.dropdown-categories .dropdown-menu {
    display: none;
    margin-top: 0;
}

.dropdown-categories:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-categories .dropdown-menu.show {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

.dropdown-categories.show>.dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu.submenu-dropdown,
.dropdown-menu.mega-menu {
    background: #fff;
    border: 1px solid #0002;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem !important;
    margin-top: 0;
    padding: 0.5rem 0;
    overflow: hidden !important;
}

.submenu-dropdown {
    width: auto !important;
    min-width: 240px;
    max-height: 300px;
    overflow-y: auto;
}

.mega-menu {
    width: auto !important;
    padding: 1rem;
}

.mega-menu-container {
    display: flex;
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
}

.mega-cat-col {
    flex: 1;
    border-right: 1px solid #f0f0f0;
    padding: 10px 0;
    width: 300px !important;
    max-width: 300px !important;
    align-self: stretch;
    height: 100%;
}

.mega-cat-col:last-child {
    border-right: none;
}

.mega-menu.brands-mega-menu .mega-menu-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 1rem;
}

.mega-menu.brands-mega-menu .mega-cat-col {
    border-right: none;
    padding: 0;
    width: auto !important;
    max-width: none !important;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 1px solid #f0f0f0;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
    background: #fff;
    min-height: 100px;
}

.brand-item:hover {
    border-color: var(--primary, #6c5ce7);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.brand-item img {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.brand-item .brand-name {
    font-size: 13px;
    color: #333;
    text-align: center;
    font-weight: 500;
    margin-top: 0.25rem;
}

.brand-item:hover .brand-name {
    color: var(--primary, #6c5ce7);
}

.brand-item .brand-icon {
    font-size: 10px;
    color: #999;
    margin-top: 0.25rem;
}

.submenu-item {
    position: relative;
}

.submenu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.submenu-link:hover {
    background-color: #f8f9fa;
    color: var(--primary, #6c5ce7);
}

.cat-item {
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    color: #333;
    font-size: 14px;
}

.cat-item:hover,
.cat-item.active {
    background-color: #f8f9fa;
    color: var(--primary, #6c5ce7);
    font-weight: 600;
}

.cat-item.active {
    background-color: rgba(108, 92, 231, 0.05);
}

.cat-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.cat-link:hover {
    color: inherit;
}

.submenu-item:not(.has-children) .submenu-link i,
.cat-item:not(.has-children) i.bi-chevron-right {
    display: none;
}

.submenu-item .submenu-child-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    width: max-content;
    background: #fff;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1001;
}

.submenu-item:hover>.submenu-child-menu {
    display: block;
}

.submenu-child-link {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.submenu-child-link:hover {
    background-color: #f8f9fa;
    color: var(--primary, #6c5ce7);
    padding-left: 25px;
}

.sub-cat-group,
.child-cat-group {
    display: none;
}

.sub-cat-group.active,
.child-cat-group.active {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-5px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.submenu-dropdown::-webkit-scrollbar,
.mega-cat-col::-webkit-scrollbar,
.submenu-child-menu::-webkit-scrollbar {
    width: 6px;
}

.submenu-dropdown::-webkit-scrollbar-track,
.mega-cat-col::-webkit-scrollbar-track,
.submenu-child-menu::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 3px;
}

.submenu-dropdown::-webkit-scrollbar-thumb,
.mega-cat-col::-webkit-scrollbar-thumb,
.submenu-child-menu::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.submenu-dropdown::-webkit-scrollbar-thumb:hover,
.mega-cat-col::-webkit-scrollbar-thumb:hover,
.submenu-child-menu::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

@media (max-width: 991px) {
    .mega-menu {
        position: static;
        width: 100%;
        border: none !important;
        box-shadow: none !important;
        max-height: 500px;
        overflow-y: auto;
        background: transparent !important;
        padding: 0 15px !important;
    }

    .mega-menu-container {
        flex-direction: column;
        height: auto !important;
        min-height: auto !important;
        background: transparent !important;
    }

    .mega-menu.brands-mega-menu .mega-menu-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .brand-item {
        min-height: 80px;
        padding: 0.75rem 0.5rem;
    }

    .brand-item img {
        max-height: 35px;
    }

    .mega-cat-col {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        max-height: 300px;
        background: transparent !important;
        border-radius: 0 !important;
    }

    .mega-cat-col:last-child {
        border-bottom: none;
    }

    .cat-item,
    .cat-item:hover,
    .cat-item.active {
        background-color: transparent !important;
        background: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .submenu-dropdown {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        max-height: none;
        padding: 0 15px !important;
        border-radius: 0 !important;
    }

    .submenu-item .submenu-child-menu {
        position: static;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding-left: 1rem;
    }

    .navbar-backdrop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .navbar-backdrop.show {
        opacity: 1;
        visibility: visible;
    }
}

.faq-accordion .accordion-item:first-of-type:has(.show),
.accordion-item:has(.show),
.accordion-item:has(.show),
.faq-accordion .accordion-item:last-of-type:has(.show) {
    border: 1px solid #D9D9D9;
    background-color: #FCFAFC;
    border-radius: 0.75rem 0.75rem 0.75rem 0.75rem !important;
}

.custom-nav-pills-1 {
    gap: 0.75rem;
    margin-bottom: 1.5rem !important;
}

.custom-nav-pills-1 .nav-link {
    background-color: var(--primary-1-fade-1) !important;
    padding: 0.35rem 1rem !important;
    border-radius: 5rem !important;
    border: 1px solid var(--primary-1-fade-1);
    font-size: 0.95rem !important;
    color: var(--dark) !important;
}

.custom-nav-pills-1 .nav-link.active {
    border-color: #710192;
}

.custom-dropzone {
    border: 1px dashed #989A9E;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.25s ease, background-color 0.25s ease;
    background-color: #F4F4F4;
    margin: 0.5rem 0 1.25rem;
}

.custom-dropzone:hover {
    border-color: var(--purple);
}

.custom-dropzone.is-invalid {
    border-color: #dc3545 !important;
    background-color: #ffe6e6;
    color: #dc3545;
}

.custom-dropzone p {
    margin: 0;
    font-size: 15px;
}

#dropzone-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

#dropzone-text i {
    font-size: 2rem;
    opacity: 0.75;
}

.faq-accordion.prescription-accordion .accordion-item:first-of-type:has(.show),
.prescription-accordion .accordion-item:has(.show),
.prescription-accordion .accordion-item:has(.show),
.faq-accordion.prescription-accordion .accordion-item:last-of-type:has(.show) {
    border-radius: 0.5rem !important;
    background-color: transparent !important;
}

.success-upload {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 500px;
    gap: 1rem;
    text-align: center;
}

.success-icon-box {
    height: 4rem;
    width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #CDF0D2;
    border-radius: 50%;
}

.w-200 {
    width: 260px;
}

.auth-form-or-section {
    text-align: center;
    padding: 0 0 1.5rem;
    border-bottom: 1px solid #989A9E44;
    min-height: 2rem;
    margin-bottom: 2rem !important;
    display: block;
    width: 75%;
    margin: 0 auto;
    position: relative;
}

.auth-form-or-section span {
    display: inline-block;
    background-color: #fff;
    position: absolute;
    left: 50%;
    bottom: -0.7rem;
    padding: 0 0.5rem;
    transform: translateX(-50%);
}

.btn-google-login {
    display: block;
    border: 1px solid #989A9E;
    margin-top: 1rem;
    color: #615F7B;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-google-login img {
    height: 1.125rem;
    width: 1.125rem !important;
}

.dashboard-menu {
    border: 1px solid #989A9E;
    padding: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
}

.dashboard-menu-section-title {
    background-color: #ECECEC;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
}

.dashboard-menu-section-title h3 {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 0;
}

.client-dashboard-tabs .nav-link {
    padding-inline: 0 !important;
}

.client-dashboard-tabs .nav-link {
    color: #615F7B;
    font-weight: 400;
}

.client-dashboard-tabs .active .nav-link {
    color: var(--purple);
}

.client-dashboard-inner {
    border: 1px solid #989A9E;
    border-radius: 0.75rem;
    overflow: hidden;
    min-height: 500px;
    padding: 1rem 1.5rem;
    background-color: var(--white);
}

.cart-number-control-flex .form-control {
    border: none !important;
    box-shadow: none !important;
    font-size: 0.875rem;
}

.btn-cart-control {
    background-color: #F0E5F4;
    height: 2rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0.5rem;
    box-shadow: none !important;

    &:hover,
    &:last-of-type {
        background-color: var(--purple);
        color: var(--white);
    }
}

.search-no-result-area {
    border: 1px solid #989A9E;
    border-radius: 0.75rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
}

.modal-content {
    border-radius: 0.75rem !important;
    padding: 0.5rem !important;
}

.modal-header {
    border-bottom: 0 !important;
    padding-block: 0.5rem !important;
}

.modal-title {
    font-size: 1.25rem;
}

.btn-close,
.modal-header .btn {
    background-color: #F1F5F9;
    color: #989A9E !important;
    border: none !important;
    height: 2rem !important;
    width: 2rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 0.75rem;
    line-height: 0 !important;
    background-position: center;
    border-radius: 50% !important;
    font-size: 1rem;
    font-weight: 300;
    padding: 0 !important;
    box-shadow: none !important;

    &:hover {
        background-color: var(--primary-1-fade-1);
    }
}

.profile-pic-outline {
    background-color: #D9D9D9;
    border-radius: 50%;
    overflow: hidden;
    height: 4rem;
    width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.profile-pic-outline img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.form-control {
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0.5rem !important;

    &:focus {
        border-color: var(--purple) !important;
    }
}

.cart-summary-card {
    background-color: #F5F5F5;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.alert {
    position: relative;
}

.alert .btn-close {
    height: 1rem !important;
    width: 1rem !important;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    background-size: 0.5rem !important;
}

.coupon-apply-form {
    background-color: var(--white);
    position: relative;
    padding: 0.25rem;
    border-radius: 5rem;
    min-height: 3rem;
    margin: 0.75rem 0;
}

.coupon-apply-form input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    width: 100%;
    padding-right: 8rem;
}

.coupon-apply-form button {
    position: absolute;
    right: 0.5rem;
    width: max-content;
    top: 0.5rem;
    height: calc(100% - 1rem);
    padding: 0 0.75rem;
    font-size: 0.95rem;
    border-radius: 5rem !important;
}

.cart-empty-card {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 400px;
}

.range-slider {
    position: relative;
    width: 100%;
    height: 40px;
}

.range-slider input[type=range] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    background: none;
}

.range-slider input[type=range]::-webkit-slider-thumb {
    pointer-events: all;
    width: 12px;
    height: 12px;
    margin-top: 0.9rem;
    border-radius: 50%;
    background-color: var(--primary-1-fade-1);
    border: 1px solid var(--primary);
    cursor: pointer;
    -webkit-appearance: none;
    z-index: 10;
    position: relative;
}

.slider-track {
    position: absolute;
    height: 4px;
    background-color: var(--primary-1-fade-1) !important;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 3px;
    pointer-events: none;
}

.slider-track::before {
    content: "";
    position: absolute;
    height: 4px;
    background-color: var(--primary) !important;
    border-radius: 3px;
}

.checkout-page-form label {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

input {
    box-shadow: none !important;
}

.single-product-review {
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 1rem;
    padding-bottom: 1rem;

    &:last-of-type {
        margin-bottom: 0;
        border-bottom: 0;
        padding-bottom: 0;
    }
}

.text-c-muted {
    color: #989A9E;
}

h1:has(.fancy-primary) {
    margin-bottom: 2rem;
}

.fancy-primary {
    color: var(--primary);
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    transform: scale(0.75) !important;

    &::before {
        content: '';
        height: 3px;
        background-color: var(--orange);
        position: absolute;
        right: 0;
        bottom: 0;
        width: 3rem;
    }
}

.team-card {
    text-align: center;
}

.team-card .team-image-box {
    height: 300px;
    width: 300px;
    max-width: 100%;
    aspect-ratio: 1/1;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.team-card .team-image-box img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
}

.custom-dropzone-uploading {
    background-color: #F4F4F4;
    border: 1px solid #D9D9D9;
    padding: 1.25rem;
    border-radius: 0.5rem;
    position: relative;
}

.upload-dropzone-flex {
    display: flex;
    gap: 1rem;
}

.file-progress {
    flex: 1;
}

.custom-dropzone-uploading .progress {
    height: 0.5rem;
    background-color: #D9D9D9;

    .progress-bar {
        background-color: #615F7B;
    }
}

.upload-success {
    background-color: #EEFEF4;
    border-color: #34A853;
}

.close-dropzone {
    background-color: transparent;
    outline: none;
    border: none;
    position: absolute;
    right: 0.65rem;
    top: 0.5rem;
    padding: 0;
}

.badge-c-light {
    background-color: var(--primary-1-fade-1);
    color: var(--primary);
    padding: 0.25rem 0.5rem;
    border-radius: 1.5rem;
    font-weight: 400;
}

.alert-default {
    background-color: #FCFAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    border-radius: 0.75rem;
}

button {
    box-shadow: none !important;
    outline: none !important;
}

.star-rating {
    font-size: 1rem;
    color: #ccc;
    cursor: pointer;
}

.star-rating .star {
    margin-right: 6px;
    transition: color 0.2s ease;
}

.star-rating .star.active {
    color: var(--orange);
}

.star-rating .star.hover {
    color: var(--orange);
}

.rating-full-box {
    background-color: #F1F5F9;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1.125rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.rating-distribution .progress {
    height: 0.5rem !important;
}

.rating-distribution .progress-bar {
    background-color: var(--orange);
}

.swiperPress .home-custom-swiper-navigations,
.mySwiperBlog .home-custom-swiper-navigations,
.mySwiperBanners .home-custom-swiper-navigations {
    display: none !important;
}

@media screen and (max-width:767px) {
    h2 {
        font-size: 1.25rem !important;
    }

    .new-home-sliders {
        height: unset !important;
    }

    .remove-border-and-padding-mobile {
        border: none !important;
        padding: 0 !important;
    }

    .dropdown-categories {
        padding-left: 0 !important;
    }
}

@media screen and (min-width:767px) {
    .mobile-bottom-float-menu {
        display: none;
    }

}

.mobile-bottom-float-menu {
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    box-shadow: 0 0 10px #0001;
    background-color: var(--white);
    z-index: 10;
}

.mbfm-list {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mbfm-list a {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: #989A9E;
    padding-bottom: 0.5rem;
    font-weight: 500;

    i {
        font-size: 1.5rem;
    }
}

.mbfm-list .active a {
    color: var(--primary);
}

.ht-chat-div {
    display: none;
}

.press-coverage-card {
    border: 1px solid rgba(113, 1, 146, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.press-coverage-card img {
    width: 100%;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

@media screen and (max-width:767px) {

    .press-coverage-card,
    .footer-newsletters-card {
        border-radius: 0.5rem;
        padding: 1rem !important;
    }

    .home-category-card {
        padding: 1rem !important;
        height: 120px !important;
        width: 120px !important;
    }
}

#carouselHomeSlider .carousel-control-prev-icon,
#carouselHomeSlider .carousel-control-next-icon {
    height: 3rem;
    width: 3rem;
    background-color: var(--primary-1-fade-1);
    font-size: 1.5rem !important;
}

#carouselHomeSlider .carousel-control-next,
#carouselHomeSlider .carousel-control-prev {
    opacity: 1 !important;
}

#carouselHomeSlider .carousel-indicators [data-bs-target] {
    background-color: var(--white);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    opacity: 1 !important;
    margin-inline: 0.25rem;
    background-color: #D9D9D9 !important;
}

#carouselHomeSlider .carousel-indicators .active {
    background-color: var(--orange) !important;
}

.newsletter-section {
    background-color: var(--primary-1-fade-1);
    color: var(--primary);
}

.newsletter-section h2 {
    color: var(--primary);
}

.newsletter-section p {
    color: var(--primary);
}

.newsletter-section .newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.newsletter-section .newsletter-form input {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #D9D9D9;
    outline: none;
}

.newsletter-section .newsletter-form button {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    outline: none;
    background-color: var(--primary);
    color: var(--white);
    cursor: pointer;
}

.main-footer {
    background-color: var(--primary);
    color: var(--white);
}

.main-footer h3 {
    color: var(--white);
}

.main-footer a {
    color: var(--white);
}

.main-footer .white-logo {
    filter: brightness(0) invert(1);
    max-width: 160px;
    margin-bottom: 0.5rem;
}

.w-max-content {
    width: max-content;
}

.press-logo-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
}

.press-logo-card:hover {
    border-color: #710192;
    box-shadow: 0 4px 12px rgba(113, 1, 146, 0.1);
    transform: translateY(-2px);
}

.press-logo-card img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.press-logo-card:hover img {
    opacity: 1;
}

.swiper_wrap_press {
    position: relative;
}

.sales-and-offers-link svg {
    max-width: 20px;
    max-height: 20px;
}

@media (max-width: 767px) {
    .press-logo-card {
        padding: 1.5rem 1rem;
        min-height: 100px;
    }

    .press-logo-card img {
        max-height: 50px;
    }
}

.home-blog-article-image {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    height: 220px;
    border: none;
}

.home-blog-article-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
    border: none;
    outline: none;
    font-size: 0;
}

.home-article-list:hover .home-blog-article-image img {
    transform: scale(1.05);
}

/* Date Badge Overlay */
.blog-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #710192;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    box-shadow: 0 4px 12px rgba(113, 1, 146, 0.3);
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.date-month {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: block;
}

/* Blog Card Content */
.blog-card-content {
    padding: 1rem;
    background: #ffffff;
    border-radius: 0 0 0.75rem 0.75rem;
    border: 1px solid rgba(113, 1, 146, 0.1);
}

.blog-category {
    display: inline-block;
    font-size: 0.875rem;
    color: #710192;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.blog-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2F2D52;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    color: #710192;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #9B1AB9;
    text-decoration: none;
}

.home-article-list {
    background: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(113, 1, 146, 0.1);
    position: relative;
}

.home-article-list:hover {
    transform: translateY(-4px);
}

@media (max-width: 767px) {
    .blog-date-badge {
        top: 0.75rem;
        left: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .date-day {
        font-size: 1.5rem;
    }

    .date-month {
        font-size: 0.625rem;
    }

    .blog-title {
        font-size: 1rem;
    }
}

/* ========================================
   MOBILE HEADER ICONS
   ======================================== */

.mobile-header-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    margin-right: 1rem;
}

.mobile-icon-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #710192;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-icon-link:hover {
    color: #9B1AB9;
    transform: scale(1.1);
}

.mobile-icon-link svg {
    width: 22px;
    height: 22px;
}

.mobile-cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #FF6B00;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #ffffff;
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

/* Hide on desktop if needed */
@media (min-width: 992px) {
    .whatsapp-float {
        display: none;
    }
}

@media (max-width: 991px) {
    .mobile-header-icons {
        display: flex;
    }
}

/* ========================================
   MOBILE MENU QUICK ACTIONS
   ======================================== */

.mobile-menu-actions {
    padding: 1rem;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #F9FAFB;
    border-radius: 0.5rem;
    color: #2F2D52;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background: #F3F4F6;
    color: #710192;
}

.mobile-menu-link i {
    font-size: 1.25rem;
    color: #710192;
}

.mobile-menu-link span:first-of-type {
    flex: 1;
}

.mobile-menu-badge {
    background: #710192;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 24px;
    height: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
}

@media (min-width: 992px) {
    .mobile-menu-actions {
        display: none;
    }
}

/* ========================================
   HOMEPAGE CONTENT SECTIONS
   ======================================== */

/* Section Badges */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #710192 0%, #9B1AB9 100%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2F2D52;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6C757D;
    max-width: 800px;
    margin: 0 auto;
}

/* About Pharmily Section */
.about-pharmily-section {
    background: linear-gradient(135deg, #FAF7FB 0%, #F5F0F7 100%);
}

.about-content .lead-text {
    font-size: 1.125rem;
    color: #495057;
    line-height: 1.8;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #2F2D52;
    font-weight: 500;
}

.highlight-item i {
    font-size: 1.25rem;
}

.about-image-wrapper {
    position: relative;
}

.about-stat-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(113, 1, 146, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.about-stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #710192;
}

.about-stat-card p {
    color: #6C757D;
    font-size: 0.9rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.25rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #71019244;
    background-image: linear-gradient(135deg, #71019211 0%, #9B1AB922 100%);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 0 1rem;
    background: linear-gradient(135deg, #71019211 0%, #9B1AB922 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary);

    svg {
        height: 2rem;
        width: 2rem;
    }
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 1.875rem;
    color: #ffffff;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2F2D52;
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.9375rem;
    color: #6C757D;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-title {
        font-size: 1.875rem;
    }

    .about-stat-card {
        left: 1rem;
        bottom: 1rem;
        padding: 1rem 1.5rem;
    }

    .about-stat-card h3 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .about-content .lead-text {
        font-size: 1rem;
    }

    .feature-card {
        margin-bottom: 1rem;
    }

    .fancy-top-link {
        margin-right: 0;
        justify-content: flex-start;
        margin-left: 0 !important;
    }

    .fancy-top-link .trl-icon {
        height: 2rem;
        width: 2rem;

        svg {
            height: 1rem;
            width: 1rem;
        }
    }
}
