/* =========================================================
   PRIMEVITALS MEDICAL SUPPLIES
   MAIN STYLESHEET
========================================================= */

:root {

    --pv-navy: #1f2b57;
    --pv-navy-dark: #162043;

    --pv-blue: #0f8fac;
    --pv-blue-light: #18a7c5;

    --pv-white: #ffffff;
    --pv-light: #f6f9fc;

    --pv-text: #202633;
    --pv-muted: #697386;

    --pv-border: #e7ebf1;

    --pv-radius: 14px;

    --pv-shadow:
        0 15px 40px rgba(31, 43, 87, 0.08);

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: 'DM Sans', sans-serif;

    color: var(--pv-text);

    background: var(--pv-white);

    overflow-x: hidden;

}


h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: 'Manrope', sans-serif;

    color: var(--pv-navy);

    font-weight: 700;

}


a {

    text-decoration: none;

    color: inherit;

    transition: all .3s ease;

}


img {

    max-width: 100%;

    height: auto;

}


ul {

    list-style: none;

    padding: 0;

    margin: 0;

}


/* =========================================================
   TOP BAR
========================================================= */

.pv-topbar {

    background: var(--pv-navy);

    color: rgba(255,255,255,.9);

    font-size: 13px;

}


.pv-topbar-inner {

    min-height: 38px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.pv-top-left {

    display: flex;

    gap: 25px;

}


.pv-topbar span {

    display: inline-flex;

    align-items: center;

    gap: 7px;

}


.pv-topbar i {

    color: var(--pv-blue-light);

}


/* =========================================================
   NAVBAR
========================================================= */

.pv-navbar {

    background: #fff;

    min-height: 88px;

    border-bottom: 1px solid var(--pv-border);

    position: relative;

    z-index: 1000;

}


.pv-logo {

    display: flex;

    align-items: center;

    gap: 11px;

}


.pv-logo-mark {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: var(--pv-navy);

    border: 3px solid #d7dce5;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-family: 'Manrope', sans-serif;

    font-size: 13px;

    font-weight: 800;

}


.pv-logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.pv-logo-text strong {

    font-family: 'Manrope', sans-serif;

    font-size: 19px;

    letter-spacing: 1px;

    color: var(--pv-navy);

}


.pv-logo-text small {

    margin-top: 5px;

    font-size: 8px;

    letter-spacing: 3px;

    color: var(--pv-navy);

}


.pv-navbar .nav-link {

    color: #26304d;

    font-size: 14px;

    font-weight: 600;

    padding: 32px 14px !important;

}


.pv-navbar .nav-link:hover,
.pv-navbar .nav-link.active {

    color: var(--pv-blue);

}


/* =========================================================
   DROPDOWN
========================================================= */

.pv-navbar .dropdown-menu {

    border: 0;

    border-radius: 10px;

    padding: 10px;

    box-shadow: var(--pv-shadow);

}


.pv-navbar .dropdown-item {

    padding: 10px 14px;

    border-radius: 7px;

    font-size: 13px;

}


.pv-navbar .dropdown-item:hover {

    background: #f1f7f9;

    color: var(--pv-blue);

}


/* =========================================================
   NAV ICONS
========================================================= */

.pv-nav-icon a,
.pv-cart a {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

}


.pv-nav-icon i,
.pv-cart i {

    font-size: 19px;

}


.pv-cart span {

    position: absolute;

    top: 1px;

    right: 0;

    width: 17px;

    height: 17px;

    background: var(--pv-blue);

    color: white;

    border-radius: 50%;

    font-size: 9px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =========================================================
   GLOBAL BUTTONS
========================================================= */

.pv-btn {

    min-height: 46px;

    padding: 0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border-radius: 7px;

    font-size: 13px;

    font-weight: 700;

    transition: all .3s ease;

}


.pv-btn-primary {

    background: var(--pv-navy);

    color: white !important;

}


.pv-btn-primary:hover {

    background: var(--pv-blue);

    transform: translateY(-2px);

}


/* =========================================================
   PRIMEVITALS FULL-WIDTH PREMIUM HERO
========================================================= */

.pv-main-hero {

    position: relative;

    height: calc(100vh - 126px);

    min-height: 650px;

    max-height: 820px;

    overflow: hidden;

    background: var(--pv-navy);

}


/* =========================================================
   HERO SLIDES
========================================================= */

.pv-hero-slides {

    position: absolute;

    inset: 0;

}


.pv-hero-slide {

    position: absolute;

    inset: 0;

    visibility: hidden;

    opacity: 0;

    transition:
        opacity 1s ease,
        visibility 1s ease;

}


.pv-hero-slide.active {

    visibility: visible;

    opacity: 1;

}


/* =========================================================
   HERO IMAGE
========================================================= */

.pv-hero-background {

    position: absolute;

    inset: 0;

    overflow: hidden;

}


.pv-hero-background img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1.08);

    transition:
        transform 7s cubic-bezier(.2,.65,.25,1);

}


.pv-hero-slide.active
.pv-hero-background img {

    transform: scale(1);

}


/* =========================================================
   HERO OVERLAY

   Stronger on the left for readability.
   Fades toward the right so equipment remains visible.
========================================================= */

.pv-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,

            rgba(16, 28, 65, .76) 0%,

            rgba(16, 28, 65, .58) 24%,

            rgba(16, 28, 65, .34) 45%,

            rgba(16, 28, 65, .10) 68%,

            rgba(16, 28, 65, .015) 100%
        );

}


/* =========================================================
   HERO CONTAINER
========================================================= */

.pv-hero-container {

    height: 100%;

    position: relative;

    z-index: 5;

    display: flex;

    align-items: center;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.pv-main-hero .pv-hero-content {

    position: relative;

    z-index: 5;

    width: 650px;

    max-width: 60%;

    padding-bottom: 40px;

}


/* =========================================================
   HERO CATEGORY
========================================================= */

.pv-main-hero .pv-hero-category {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #68c9dc;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 24px;

    opacity: 0;

    transform: translateY(25px);

}


.pv-main-hero
.pv-hero-slide.active
.pv-hero-category {

    animation:
        pvHeroTextIn .8s .15s forwards;

}


.pv-main-hero .pv-hero-category span {

    display: block;

    width: 38px;

    height: 2px;

    background: #27afc9;

    flex-shrink: 0;

}


/* =========================================================
   HERO HEADING
========================================================= */

.pv-main-hero h1 {

    color: #ffffff !important;

    font-family: 'Manrope', sans-serif;

    font-size: clamp(48px, 5vw, 76px);

    line-height: 1.02;

    letter-spacing: -3px;

    margin: 0 0 26px;

    font-weight: 700;

    max-width: 720px;

    opacity: 0;

    transform: translateY(35px);

    text-shadow:
        0 2px 15px rgba(0,0,0,.12);

}


.pv-main-hero
.pv-hero-slide.active
h1 {

    animation:
        pvHeroTextIn .9s .3s forwards;

}


.pv-main-hero h1 strong {

    display: block;

    color: #50bfd5 !important;

    font-weight: 700;

}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.pv-main-hero .pv-hero-content > p {

    color: rgba(255,255,255,.90) !important;

    font-size: 15px;

    line-height: 1.8;

    max-width: 570px;

    margin: 0 0 31px;

    opacity: 0;

    transform: translateY(25px);

}


.pv-main-hero
.pv-hero-slide.active
.pv-hero-content > p {

    animation:
        pvHeroTextIn .8s .45s forwards;

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.pv-hero-buttons {

    display: flex;

    align-items: center;

    gap: 12px;

    opacity: 0;

    transform: translateY(20px);

}


.pv-main-hero
.pv-hero-slide.active
.pv-hero-buttons {

    animation:
        pvHeroTextIn .8s .58s forwards;

}


.pv-hero-btn {

    min-height: 52px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 700;

    transition: all .3s ease;

}


.pv-hero-btn-primary {

    background: var(--pv-blue);

    color: white !important;

    box-shadow:
        0 10px 25px rgba(15,143,172,.18);

}


.pv-hero-btn-primary:hover {

    background: white;

    color: var(--pv-navy) !important;

    transform: translateY(-3px);

}


.pv-hero-btn-light {

    background: rgba(255,255,255,.10);

    border: 1px solid rgba(255,255,255,.68);

    color: white !important;

    backdrop-filter: blur(8px);

}


.pv-hero-btn-light:hover {

    background: white;

    color: var(--pv-navy) !important;

    transform: translateY(-3px);

}


/* =========================================================
   HERO TRUST POINTS
========================================================= */

.pv-hero-mini-trust {

    display: flex;

    gap: 28px;

    margin-top: 27px;

    opacity: 0;

    transform: translateY(15px);

}


.pv-main-hero
.pv-hero-slide.active
.pv-hero-mini-trust {

    animation:
        pvHeroTextIn .7s .7s forwards;

}


.pv-hero-mini-trust span {

    display: flex;

    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,.84);

    font-size: 11px;

    font-weight: 600;

}


.pv-hero-mini-trust i {

    color: #43bfd5;

    font-size: 15px;

}


/* =========================================================
   RIGHT SIDE CATEGORY LABEL
========================================================= */

.pv-slide-category {

    position: absolute;

    z-index: 6;

    right: 45px;

    bottom: 110px;

    display: flex;

    align-items: center;

    gap: 12px;

    color: rgba(255,255,255,.70);

    font-size: 11px;

    letter-spacing: 1px;

    writing-mode: vertical-rl;

    transform: rotate(180deg);

}


.pv-slide-category span {

    color: #53bfd5;

    font-weight: 800;

}


.pv-slide-category strong {

    font-weight: 500;

}


/* =========================================================
   HERO NAVIGATION
========================================================= */

.pv-hero-navigation {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 42px;

    z-index: 20;

}


.pv-hero-nav-inner {

    display: flex;

    align-items: center;

    gap: 22px;

}


.pv-hero-arrow {

    width: 44px;

    height: 44px;

    flex-shrink: 0;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.42);

    background: rgba(255,255,255,.07);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: all .3s ease;

    backdrop-filter: blur(6px);

}


.pv-hero-arrow:hover {

    background: white;

    color: var(--pv-navy);

    border-color: white;

}


.pv-hero-counter {

    display: flex;

    align-items: center;

    gap: 14px;

}


.pv-current-slide,
.pv-total-slides {

    color: white;

    font-size: 11px;

    font-weight: 800;

}


.pv-total-slides {

    color: rgba(255,255,255,.45);

}


.pv-hero-progress {

    width: 110px;

    height: 2px;

    background: rgba(255,255,255,.30);

    overflow: hidden;

}


.pv-hero-progress span {

    display: block;

    width: 25%;

    height: 100%;

    background: #35b6ce;

    transition: width .5s ease;

}


/* =========================================================
   ECG BRAND ELEMENT
========================================================= */

.pv-hero-ecg {

    position: absolute;

    left: 0;

    right: 0;

    bottom: -1px;

    height: 65px;

    z-index: 10;

    pointer-events: none;

}


.pv-hero-ecg svg {

    display: block;

    width: 100%;

    height: 100%;

}


.pv-hero-ecg polyline {

    fill: none;

    stroke: #1ba5bf;

    stroke-width: 3;

    stroke-linecap: round;

    stroke-linejoin: round;

    filter:
        drop-shadow(
            0 0 4px rgba(24,161,188,.25)
        );

}


/* =========================================================
   HERO TEXT ANIMATION
========================================================= */

@keyframes pvHeroTextIn {

    from {

        opacity: 0;

        transform: translateY(25px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =========================================================
   FOOTER
========================================================= */

.pv-footer {

    position: relative;

    background: var(--pv-navy);

    color: rgba(255,255,255,.75);

    padding-top: 90px;

    overflow: hidden;

}


.pv-footer-ecg {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

}


.pv-ecg-line {

    width: 100%;

    height: 4px;

    background: var(--pv-blue);

}


.pv-footer h5 {

    color: white;

    font-size: 15px;

    margin-bottom: 25px;

}


.pv-footer-brand {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

}


.pv-footer-brand strong {

    display: block;

    color: white;

    letter-spacing: 1.5px;

}


.pv-footer-brand small {

    display: block;

    margin-top: 5px;

    color: var(--pv-blue-light);

    letter-spacing: 2px;

    font-size: 8px;

}


.pv-footer-description {

    max-width: 380px;

    line-height: 1.8;

    font-size: 14px;

}


.pv-tagline {

    color: var(--pv-blue-light);

    font-family: Georgia, serif;

    font-style: italic;

}


.pv-footer-links li {

    margin-bottom: 12px;

}


.pv-footer-links a {

    font-size: 14px;

}


.pv-footer-links a:hover {

    color: var(--pv-blue-light);

    padding-left: 4px;

}


.pv-footer-contact > div {

    display: flex;

    gap: 12px;

    margin-bottom: 17px;

    font-size: 13px;

}


.pv-footer-contact i {

    color: var(--pv-blue-light);

    font-size: 17px;

}


.pv-footer-quote {

    display: inline-flex;

    gap: 8px;

    color: white;

    font-weight: 700;

    font-size: 13px;

    margin-top: 10px;

}


.pv-footer-quote:hover {

    color: var(--pv-blue-light);

}


.pv-footer-bottom {

    margin-top: 60px;

    padding: 25px 0;

    border-top: 1px solid rgba(255,255,255,.1);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    font-size: 12px;

}


.pv-footer-bottom p {

    margin: 0;

}


.pv-footer-bottom a {

    margin-left: 20px;

}


.pv-footer-bottom a:hover {

    color: var(--pv-blue-light);

}


/* =========================================================
   TABLET / SMALL DESKTOP HERO
========================================================= */

@media (max-width: 1199px) {

    .pv-main-hero .pv-hero-content {

        max-width: 65%;

    }


    .pv-main-hero h1 {

        font-size:
            clamp(46px, 5vw, 65px);

    }


    .pv-slide-category {

        right: 20px;

    }

}

/* =========================================================
   WHY PRIMEVITALS / TRUST SECTION
========================================================= */

.pv-trust-section {

    position: relative;

    padding: 105px 0 115px;

    background: #ffffff;

}


/* =========================================================
   SECTION HEADING
========================================================= */

.pv-trust-heading {

    max-width: 650px;

    margin-bottom: 55px;

}


.pv-section-label {

    display: flex;

    align-items: center;

    gap: 11px;

    color: var(--pv-blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 18px;

}


.pv-section-label span {

    width: 32px;

    height: 2px;

    background: var(--pv-blue);

    display: block;

}


.pv-trust-heading h2 {

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.08;

    letter-spacing: -2px;

    margin-bottom: 18px;

}


.pv-trust-heading h2 strong {

    display: block;

    color: var(--pv-blue);

    font-weight: 700;

}


.pv-trust-heading p {

    max-width: 580px;

    color: var(--pv-muted);

    font-size: 15px;

    line-height: 1.8;

    margin: 0;

}


/* =========================================================
   TRUST GRID
========================================================= */

.pv-trust-grid {

    position: relative;

}


/* =========================================================
   TRUST CARD
========================================================= */

.pv-trust-card {

    position: relative;

    height: 100%;

    padding: 34px 30px 32px;

    background: #ffffff;

    border: 1px solid var(--pv-border);

    border-radius: 14px;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


.pv-trust-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--pv-blue),
            var(--pv-blue-light)
        );

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .35s ease;

}


.pv-trust-card:hover {

    transform: translateY(-8px);

    border-color: rgba(15,143,172,.18);

    box-shadow:
        0 25px 55px rgba(31,43,87,.10);

}


.pv-trust-card:hover::before {

    transform: scaleX(1);

}


/* =========================================================
   CARD NUMBER
========================================================= */

.pv-trust-number {

    position: absolute;

    top: 22px;

    right: 25px;

    color: #e9edf3;

    font-family: 'Manrope', sans-serif;

    font-size: 30px;

    font-weight: 800;

    line-height: 1;

    transition: color .3s ease;

}


.pv-trust-card:hover
.pv-trust-number {

    color: #dceff3;

}


/* =========================================================
   ICON
========================================================= */

.pv-trust-icon {

    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: rgba(15,143,172,.08);

    color: var(--pv-blue);

    font-size: 20px;

    margin-bottom: 28px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;

}


.pv-trust-card:hover
.pv-trust-icon {

    background: var(--pv-navy);

    color: #ffffff;

    transform: scale(1.05);

}


/* =========================================================
   CARD TITLE
========================================================= */

.pv-trust-card h3 {

    color: var(--pv-navy);

    font-size: 20px;

    line-height: 1.3;

    margin-bottom: 13px;

}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.pv-trust-card p {

    color: var(--pv-muted);

    font-size: 13px;

    line-height: 1.75;

    margin-bottom: 25px;

}


/* =========================================================
   CARD LINK
========================================================= */

.pv-trust-card > a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--pv-navy);

    font-size: 12px;

    font-weight: 700;

}


.pv-trust-card > a i {

    font-size: 10px;

    transition: transform .3s ease;

}


.pv-trust-card > a:hover {

    color: var(--pv-blue);

}


.pv-trust-card > a:hover i {

    transform: translate(2px, -2px);

}

/* =========================================================
   PRODUCT CATEGORIES
========================================================= */

.pv-categories-section {

    padding: 110px 0;

    background: #f7f9fc;

}


/* =========================================================
   HEADER
========================================================= */

.pv-categories-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 60px;

    margin-bottom: 55px;

}


.pv-categories-header h2 {

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin: 0;

}


.pv-categories-header h2 strong {

    display: block;

    color: var(--pv-blue);

}


.pv-categories-intro {

    width: 420px;

    max-width: 100%;

}


.pv-categories-intro p {

    color: var(--pv-muted);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 20px;

}


.pv-category-view-all {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--pv-navy);

    font-size: 13px;

    font-weight: 800;

}


.pv-category-view-all:hover {

    color: var(--pv-blue);

}


.pv-category-view-all i {

    font-size: 10px;

}


/* =========================================================
   CATEGORY GRID
========================================================= */

.pv-category-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

}


/* =========================================================
   CATEGORY CARD
========================================================= */

.pv-category-card {

    position: relative;

    min-height: 330px;

    border-radius: 16px;

    overflow: hidden;

    background: var(--pv-navy);

    display: block;

}


.pv-category-large {

    grid-row: span 2;

    min-height: 680px;

}


/* =========================================================
   IMAGE
========================================================= */

.pv-category-image {

    position: absolute;

    inset: 0;

    overflow: hidden;

}


.pv-category-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease;

}


.pv-category-card:hover
.pv-category-image img {

    transform: scale(1.07);

}


/* =========================================================
   OVERLAY
========================================================= */

.pv-category-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(20,31,68,.05) 15%,
            rgba(20,31,68,.18) 35%,
            rgba(20,31,68,.82) 100%
        );

    transition:
        background .4s ease;

}


.pv-category-card:hover
.pv-category-overlay {

    background:
        linear-gradient(
            180deg,
            rgba(20,31,68,.12) 10%,
            rgba(20,31,68,.28) 35%,
            rgba(20,31,68,.90) 100%
        );

}


/* =========================================================
   CATEGORY CONTENT
========================================================= */

.pv-category-content {

    position: absolute;

    inset: 0;

    z-index: 3;

    padding: 28px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    color: white;

}


.pv-category-number {

    position: absolute;

    top: 25px;

    left: 28px;

    color: rgba(255,255,255,.65);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

}


.pv-category-content > div {

    padding-right: 55px;

}


.pv-category-content h3 {

    color: white;

    font-size: 24px;

    line-height: 1.2;

    margin-bottom: 8px;

}


.pv-category-content p {

    color: rgba(255,255,255,.78);

    font-size: 12px;

    line-height: 1.65;

    margin: 0;

    max-width: 400px;

}


/* =========================================================
   ARROW
========================================================= */

.pv-category-arrow {

    position: absolute;

    right: 25px;

    bottom: 25px;

    width: 43px;

    height: 43px;

    border-radius: 50%;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.30);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    backdrop-filter: blur(8px);

    transition:
        all .35s ease;

}


.pv-category-card:hover
.pv-category-arrow {

    background: var(--pv-blue);

    border-color: var(--pv-blue);

    transform: translate(3px,-3px);

}


.pv-category-arrow i {

    font-size: 13px;

}


/* =========================================================
   BOTTOM CTA
========================================================= */

.pv-categories-bottom {

    margin-top: 28px;

    padding-top: 25px;

    border-top: 1px solid #dfe5ed;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.pv-categories-bottom span {

    color: var(--pv-muted);

    font-size: 13px;

}


.pv-categories-bottom a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--pv-navy);

    font-size: 13px;

    font-weight: 800;

}


.pv-categories-bottom a:hover {

    color: var(--pv-blue);

}


.pv-categories-bottom i {

    font-size: 11px;

    transition:
        transform .3s ease;

}


.pv-categories-bottom a:hover i {

    transform: translateX(4px);

}

/* =========================================================
   ABOUT PRIMEVITALS
========================================================= */

.pv-about-section {

    padding: 115px 0;

    background: #ffffff;

}


/* =========================================================
   VISUAL
========================================================= */

.pv-about-visual {

    position: relative;

    padding-right: 45px;

    padding-bottom: 35px;

}


.pv-about-image {

    position: relative;

    height: 560px;

    overflow: hidden;

    border-radius: 18px;

    background: #eaf1f5;

}


.pv-about-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(31,43,87,.02),
            rgba(31,43,87,.20)
        );

}


.pv-about-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;

}


.pv-about-visual:hover
.pv-about-image img {

    transform: scale(1.04);

}


/* =========================================================
   FLOATING BADGE
========================================================= */

.pv-about-badge {

    position: absolute;

    left: -25px;

    bottom: 5px;

    z-index: 5;

    min-width: 280px;

    padding: 19px 22px;

    display: flex;

    align-items: center;

    gap: 14px;

    background: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 18px 45px rgba(31,43,87,.14);

}


.pv-about-badge-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    border-radius: 10px;

    background: var(--pv-navy);

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

}


.pv-about-badge strong {

    display: block;

    color: var(--pv-navy);

    font-size: 14px;

    margin-bottom: 3px;

}


.pv-about-badge span {

    display: block;

    color: var(--pv-muted);

    font-size: 10px;

}


/* =========================================================
   DECORATION
========================================================= */

.pv-about-decoration {

    position: absolute;

    right: 0;

    top: 35px;

    width: 70px;

    height: 70px;

    display: grid;

    grid-template-columns:
        repeat(3, 7px);

    grid-template-rows:
        repeat(3, 7px);

    gap: 7px;

}


.pv-about-decoration span {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--pv-blue);

    opacity: .45;

}


/* =========================================================
   CONTENT
========================================================= */

.pv-about-content {

    padding-left: 30px;

}


.pv-about-content h2 {

    font-size: clamp(40px, 4vw, 56px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;

}


.pv-about-content h2 strong {

    display: block;

    color: var(--pv-blue);

}


.pv-about-content > p {

    color: var(--pv-muted);

    font-size: 14px;

    line-height: 1.85;

    max-width: 590px;

    margin-bottom: 17px;

}


.pv-about-content .pv-about-lead {

    color: #455069;

    font-size: 15px;

}


/* =========================================================
   VALUES
========================================================= */

.pv-about-values {

    margin-top: 30px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

}


.pv-about-value {

    padding: 18px;

    background: #f7f9fc;

    border: 1px solid #edf0f4;

    border-radius: 10px;

}


.pv-about-value-icon {

    width: 38px;

    height: 38px;

    margin-bottom: 13px;

    border-radius: 8px;

    background: rgba(15,143,172,.08);

    color: var(--pv-blue);

    display: flex;

    align-items: center;

    justify-content: center;

}


.pv-about-value strong {

    display: block;

    color: var(--pv-navy);

    font-size: 12px;

    margin-bottom: 6px;

}


.pv-about-value span {

    display: block;

    color: var(--pv-muted);

    font-size: 10px;

    line-height: 1.6;

}


/* =========================================================
   ABOUT CTA
========================================================= */

.pv-about-btn {

    margin-top: 30px;

    min-height: 48px;

    padding: 0 21px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border-radius: 7px;

    background: var(--pv-navy);

    color: #ffffff !important;

    font-size: 12px;

    font-weight: 700;

}


.pv-about-btn:hover {

    background: var(--pv-blue);

    transform: translateY(-2px);

}


.pv-about-btn i {

    font-size: 10px;

}

.pv-product-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pv-product-old-price {
    color: #9aa3b2;
    font-size: 10px;
    text-decoration: line-through;
    font-weight: 600;
}

.pv-product-current-price {
    color: var(--pv-navy);
    font-size: 16px;
    font-weight: 800;
}

.pv-no-products {
    padding: 60px 20px;
    text-align: center;
    border: 1px solid var(--pv-border);
    border-radius: 14px;
}

.pv-no-products i {
    font-size: 35px;
    color: var(--pv-blue);
    margin-bottom: 15px;
}

.pv-no-products h3 {
    color: var(--pv-navy);
    margin-bottom: 8px;
}

.pv-no-products p {
    color: var(--pv-muted);
    font-size: 13px;
}

/* =========================================================
   PRIMEVITALS — FEATURED PRODUCTS
   Premium Medical E-Commerce Product Cards
========================================================= */

.pv-featured-section {
    position: relative;
    padding: 110px 0 100px;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.pv-featured-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 48px;
}

.pv-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;

    color: #0798b8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pv-section-label span {
    display: block;
    width: 25px;
    height: 2px;
    background: #0798b8;
}

.pv-featured-header h2 {
    max-width: 650px;
    margin: 0;

    color: #1e2d5b;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 750;
    letter-spacing: -1.5px;
}

.pv-featured-header h2 strong {
    display: block;
    color: #0798b8;
    font-weight: 750;
}

.pv-featured-header-right {
    max-width: 430px;
}

.pv-featured-header-right p {
    margin: 0 0 16px;

    color: #69758c;
    font-size: 14px;
    line-height: 1.8;
}

.pv-featured-view-all {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #1e2d5b;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;

    transition: all 0.3s ease;
}

.pv-featured-view-all i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.pv-featured-view-all:hover {
    color: #0798b8;
}

.pv-featured-view-all:hover i {
    transform: translateX(5px);
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.pv-product-card {
    position: relative;
    height: 100%;

    background: #ffffff;

    border: 1px solid #e6ebf2;
    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 8px 30px rgba(20, 39, 77, 0.045);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.pv-product-card:hover {
    transform: translateY(-8px);

    border-color: #d6e8ee;

    box-shadow:
        0 20px 50px rgba(20, 39, 77, 0.11);
}


/* =========================================================
   PRODUCT IMAGE AREA
========================================================= */

.pv-product-image {
    position: relative;

    height: 285px;

    background:
        linear-gradient(
            145deg,
            #f7fafc 0%,
            #eef5f8 100%
        );

    overflow: hidden;
}

.pv-product-image > a:first-child {
    display: block;
    width: 100%;
    height: 100%;
}

.pv-product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 22px;

    transition:
        transform 0.55s cubic-bezier(.2,.7,.2,1);
}

.pv-product-card:hover .pv-product-image img {
    transform: scale(1.06);
}


/* =========================================================
   IMAGE BOTTOM FADE
========================================================= */

.pv-product-image::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 80px;

    background: linear-gradient(
        to top,
        rgba(20, 38, 76, 0.10),
        transparent
    );

    pointer-events: none;
}


/* =========================================================
   PRODUCT BADGES
========================================================= */

.pv-product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 28px;
    padding: 0 11px;

    border-radius: 30px;

    background: #1e2d5b;
    color: #ffffff;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    box-shadow: 0 5px 15px rgba(30, 45, 91, 0.18);
}

.pv-badge-blue {
    background: #0798b8;
}


/* =========================================================
   WISHLIST BUTTON
========================================================= */

.pv-product-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 4;

    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(30, 45, 91, 0.08);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.94);

    color: #1e2d5b;

    cursor: pointer;

    box-shadow: 0 5px 18px rgba(20, 39, 77, 0.08);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.pv-product-wishlist:hover {
    background: #1e2d5b;
    color: #ffffff;

    transform: scale(1.08);
}

.pv-product-wishlist i {
    font-size: 14px;
}


/* =========================================================
   QUICK VIEW
========================================================= */

.pv-product-quick-view {
    position: absolute;
    left: 50%;
    bottom: 15px;
    z-index: 5;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 10px 15px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.96);

    color: #1e2d5b;

    font-size: 11px;
    font-weight: 750;
    text-decoration: none;

    box-shadow: 0 7px 20px rgba(20, 39, 77, 0.12);

    opacity: 0;
    visibility: hidden;

    transform: translate(-50%, 10px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.pv-product-card:hover .pv-product-quick-view {
    opacity: 1;
    visibility: visible;

    transform: translate(-50%, 0);
}

.pv-product-quick-view:hover {
    background: #0798b8;
    color: #ffffff;
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.pv-product-content {
    padding: 22px 22px 23px;
}


/* =========================================================
   CATEGORY
========================================================= */

.pv-product-category {
    display: block;

    margin-bottom: 8px;

    color: #0798b8;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}


/* =========================================================
   PRODUCT NAME
========================================================= */

.pv-product-content h3 {
    min-height: 52px;

    margin: 0 0 18px;

    font-size: 17px;
    line-height: 1.45;
    font-weight: 750;

    letter-spacing: -0.2px;
}

.pv-product-content h3 a {
    color: #1e2d5b;
    text-decoration: none;

    transition: color 0.3s ease;
}

.pv-product-content h3 a:hover {
    color: #0798b8;
}


/* =========================================================
   PRICE + CART
========================================================= */

.pv-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-top: 17px;

    border-top: 1px solid #edf0f4;
}


/* =========================================================
   PRICE
========================================================= */

.pv-product-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pv-product-old-price {
    color: #a2aab7;

    font-size: 10px;
    line-height: 1;

    text-decoration: line-through;
    font-weight: 600;
}

.pv-product-current-price {
    color: #1e2d5b;

    font-size: 16px;
    line-height: 1.2;

    font-weight: 850;
}


/* =========================================================
   ADD TO CART BUTTON
========================================================= */

.pv-add-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-width: 78px;
    height: 38px;

    padding: 0 13px;

    border: 0;
    border-radius: 8px;

    background: #1e2d5b;
    color: #ffffff;

    font-family: inherit;

    font-size: 11px;
    font-weight: 750;

    cursor: pointer;

    box-shadow: 0 6px 16px rgba(30, 45, 91, 0.15);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.pv-add-cart i {
    font-size: 12px;
}

.pv-add-cart:hover {
    background: #0798b8;

    transform: translateY(-2px);

    box-shadow: 0 9px 20px rgba(7, 152, 184, 0.20);
}

.pv-add-cart:active {
    transform: translateY(0);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.pv-featured-bottom {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 42px;

    color: #788397;

    font-size: 13px;
}

.pv-featured-bottom p {
    margin: 0;
}

.pv-featured-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #1e2d5b;

    font-weight: 750;
    text-decoration: none;

    transition: color 0.3s ease;
}

.pv-featured-bottom a:hover {
    color: #0798b8;
}

.pv-featured-bottom i {
    font-size: 10px;
}


/* =========================================================
   EMPTY PRODUCTS
========================================================= */

.pv-no-products {
    padding: 70px 20px;

    text-align: center;

    border: 1px solid #e6ebf2;
    border-radius: 18px;

    background: #f9fbfc;
}

.pv-no-products i {
    display: block;

    margin-bottom: 15px;

    color: #0798b8;

    font-size: 38px;
}

.pv-no-products h3 {
    margin: 0 0 8px;

    color: #1e2d5b;

    font-size: 20px;
}

.pv-no-products p {
    margin: 0;

    color: #788397;

    font-size: 13px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991px) {

    .pv-featured-section {
        padding: 80px 0;
    }

    .pv-featured-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;

        margin-bottom: 35px;
    }

    .pv-featured-header-right {
        max-width: 600px;
    }

    .pv-featured-header h2 {
        font-size: 36px;
    }

    .pv-product-image {
        height: 250px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {

    .pv-featured-section {
        padding: 65px 0 70px;
    }

    .pv-featured-header {
        margin-bottom: 28px;
    }

    .pv-section-label {
        font-size: 9px;
        letter-spacing: 1.6px;
    }

    .pv-featured-header h2 {
        font-size: 30px;
        line-height: 1.12;
        letter-spacing: -0.8px;
    }

    .pv-featured-header-right p {
        font-size: 13px;
        line-height: 1.7;
    }

    .pv-product-card {
        border-radius: 15px;
    }

    .pv-product-image {
        height: 235px;
    }

    .pv-product-image img {
        padding: 18px;
    }

    .pv-product-content {
        padding: 18px 17px 19px;
    }

    .pv-product-content h3 {
        min-height: auto;

        margin-bottom: 16px;

        font-size: 16px;
        line-height: 1.35;
    }

    .pv-product-bottom {
        padding-top: 14px;
    }

    .pv-product-current-price {
        font-size: 15px;
    }

    .pv-add-cart {
        min-width: 72px;
        height: 36px;

        padding: 0 11px;

        font-size: 10px;
    }

    /*
       On mobile there is no hover,
       so keep Quick View hidden.
    */

    .pv-product-quick-view {
        display: none;
    }

    .pv-featured-bottom {
        flex-direction: column;

        margin-top: 30px;

        text-align: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .pv-featured-header h2 {
        font-size: 27px;
    }

    .pv-product-image {
        height: 210px;
    }

    .pv-product-image img {
        padding: 15px;
    }

    .pv-product-badge {
        top: 12px;
        left: 12px;

        min-height: 25px;
        padding: 0 9px;

        font-size: 9px;
    }

    .pv-product-wishlist {
        top: 11px;
        right: 11px;

        width: 35px;
        height: 35px;
    }

    .pv-product-wishlist i {
        font-size: 12px;
    }

}
/* =========================================================
   PRIMEVITALS — CTA SECTION
   Premium Healthcare Call To Action
========================================================= */

.pv-cta-section {
    position: relative;
    padding: 90px 0;
    background: #f7fafc;
    overflow: hidden;
}


/* =========================================================
   CTA CARD
========================================================= */

.pv-cta-card {
    position: relative;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    min-height: 510px;

    overflow: hidden;

    border-radius: 24px;

    background: #1e2d5b;

    box-shadow:
        0 25px 70px rgba(20, 39, 77, 0.15);
}


/* =========================================================
   SUBTLE BACKGROUND DETAILS
========================================================= */

.pv-cta-card::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -170px;
    bottom: -230px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    box-shadow:
        0 0 0 70px rgba(255, 255, 255, 0.025),
        0 0 0 140px rgba(255, 255, 255, 0.018);

    pointer-events: none;
}

.pv-cta-card::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: 35%;
    top: -200px;

    border-radius: 50%;

    background: rgba(7, 152, 184, 0.08);

    pointer-events: none;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.pv-cta-content {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px 65px;
}


/* =========================================================
   LABEL
========================================================= */

.pv-cta-label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: #35c0d9;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.pv-cta-label span {
    display: block;

    width: 26px;
    height: 2px;

    background: #35c0d9;
}


/* =========================================================
   HEADING
========================================================= */

.pv-cta-content h2 {
    max-width: 600px;

    margin: 0 0 22px;

    color: #ffffff;

    font-size: 46px;
    line-height: 1.08;

    font-weight: 750;

    letter-spacing: -1.5px;
}

.pv-cta-content h2 strong {
    display: block;

    color: #35c0d9;

    font-weight: 750;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.pv-cta-content > p {
    max-width: 560px;

    margin: 0 0 30px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   CTA BUTTONS
========================================================= */

.pv-cta-buttons {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 35px;
}

.pv-cta-primary,
.pv-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 48px;

    padding: 0 20px;

    border-radius: 8px;

    font-size: 12px;
    font-weight: 750;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.pv-cta-primary {
    background: #0798b8;

    color: #ffffff;

    box-shadow:
        0 8px 20px rgba(7, 152, 184, 0.25);
}

.pv-cta-primary:hover {
    background: #35c0d9;

    color: #ffffff;

    transform: translateY(-3px);
}

.pv-cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.30);

    background: rgba(255, 255, 255, 0.05);

    color: #ffffff;
}

.pv-cta-secondary:hover {
    border-color: #ffffff;

    background: #ffffff;

    color: #1e2d5b;

    transform: translateY(-3px);
}

.pv-cta-buttons i {
    font-size: 10px;
}


/* =========================================================
   TRUST ITEMS
========================================================= */

.pv-cta-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 22px;
}

.pv-cta-trust-item {
    display: flex;
    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 10px;
    font-weight: 600;
}

.pv-cta-trust-item i {
    color: #35c0d9;

    font-size: 12px;
}


/* =========================================================
   CTA IMAGE
========================================================= */

.pv-cta-image {
    position: relative;

    min-height: 510px;

    overflow: hidden;
}

.pv-cta-image-inner {
    position: absolute;

    inset: 0;
}

.pv-cta-image-inner::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            #1e2d5b 0%,
            rgba(30, 45, 91, 0.72) 7%,
            rgba(30, 45, 91, 0.15) 35%,
            rgba(30, 45, 91, 0) 65%
        );
}

.pv-cta-image-inner img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: transform 0.8s ease;
}

.pv-cta-card:hover .pv-cta-image-inner img {
    transform: scale(1.035);
}


/* =========================================================
   FLOATING CARD
========================================================= */

.pv-cta-floating-card {
    position: absolute;

    right: 30px;
    bottom: 30px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 12px;

    min-width: 220px;

    padding: 15px 17px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 15px 35px rgba(10, 25, 55, 0.20);

    backdrop-filter: blur(10px);
}

.pv-cta-floating-icon {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #1e2d5b;

    color: #35c0d9;

    font-size: 17px;
}

.pv-cta-floating-card strong {
    display: block;

    margin-bottom: 3px;

    color: #1e2d5b;

    font-size: 12px;
    font-weight: 800;
}

.pv-cta-floating-card span {
    display: block;

    color: #778397;

    font-size: 9px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .pv-cta-section {
        padding: 75px 0;
    }

    .pv-cta-card {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .pv-cta-content {
        padding: 60px 50px;
    }

    .pv-cta-content h2 {
        font-size: 40px;
    }

    .pv-cta-image {
        min-height: 390px;
    }

    .pv-cta-image-inner::before {
        background:
            linear-gradient(
                to bottom,
                rgba(30, 45, 91, 0),
                rgba(30, 45, 91, 0.08)
            );
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .pv-cta-section {
        padding: 60px 0;
    }

    .pv-cta-card {
        border-radius: 18px;
    }

    .pv-cta-content {
        padding: 45px 25px 38px;
    }

    .pv-cta-label {
        font-size: 9px;

        letter-spacing: 1.5px;
    }

    .pv-cta-content h2 {
        margin-bottom: 18px;

        font-size: 31px;

        line-height: 1.12;

        letter-spacing: -0.7px;
    }

    .pv-cta-content > p {
        margin-bottom: 25px;

        font-size: 13px;

        line-height: 1.75;
    }

    .pv-cta-buttons {
        flex-direction: column;
        align-items: stretch;

        margin-bottom: 27px;
    }

    .pv-cta-primary,
    .pv-cta-secondary {
        width: 100%;

        min-height: 46px;
    }

    .pv-cta-trust {
        flex-direction: column;

        gap: 11px;
    }

    .pv-cta-image {
        min-height: 280px;
    }

    .pv-cta-floating-card {
        right: 18px;
        bottom: 18px;

        min-width: 195px;

        padding: 12px;
    }

    .pv-cta-floating-icon {
        width: 36px;
        height: 36px;

        font-size: 14px;
    }

    .pv-cta-floating-card strong {
        font-size: 11px;
    }

    .pv-cta-floating-card span {
        font-size: 8px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .pv-cta-section {
        padding: 50px 0;
    }

    .pv-cta-content {
        padding: 38px 20px 32px;
    }

    .pv-cta-content h2 {
        font-size: 28px;
    }

    .pv-cta-content > p {
        font-size: 12px;
    }

    .pv-cta-image {
        min-height: 240px;
    }

    .pv-cta-floating-card {
        right: 12px;
        bottom: 12px;

        min-width: 175px;
    }

}



/* =========================================================
   PRIMEVITALS — PREMIUM FOOTER
========================================================= */

.pv-footer {
    position: relative;
    background: #111d3c;
    color: #ffffff;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.pv-footer-main {
    padding: 85px 0 70px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}


/* =========================================================
   COMPANY
========================================================= */

.pv-footer-logo {
    display: inline-flex;
    align-items: center;

    margin-bottom: 25px;
}

.pv-footer-logo img {
    display: block;

    width: auto;
    max-width: 220px;
    max-height: 65px;

    object-fit: contain;
}

.pv-footer-description {
    max-width: 390px;

    margin: 0 0 25px;

    color: rgba(255,255,255,0.62);

    font-size: 13px;
    line-height: 1.85;
}


/* =========================================================
   SOCIAL LINKS
========================================================= */

.pv-footer-socials {
    display: flex;
    align-items: center;
    gap: 9px;
}

.pv-footer-socials a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;

    color: rgba(255,255,255,0.72);

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.pv-footer-socials a:hover {
    background: #0798b8;

    border-color: #0798b8;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.pv-footer-column h4 {
    position: relative;

    margin: 4px 0 25px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 750;

    letter-spacing: 0.3px;
}

.pv-footer-column h4::after {
    content: "";

    display: block;

    width: 25px;
    height: 2px;

    margin-top: 10px;

    background: #0798b8;
}

.pv-footer-column ul {
    padding: 0;
    margin: 0;

    list-style: none;
}

.pv-footer-column li {
    margin-bottom: 13px;
}

.pv-footer-column li:last-child {
    margin-bottom: 0;
}

.pv-footer-column li a {
    color: rgba(255,255,255,0.60);

    font-size: 12px;

    text-decoration: none;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.pv-footer-column li a:hover {
    color: #35c0d9;

    padding-left: 4px;
}


/* =========================================================
   CONTACT
========================================================= */

.pv-footer-contact-item {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-bottom: 19px;

    color: rgba(255,255,255,0.68);

    font-size: 11px;
    line-height: 1.5;

    text-decoration: none;
}

.pv-footer-contact-item:last-child {
    margin-bottom: 0;
}

.pv-footer-contact-icon {
    flex-shrink: 0;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: rgba(7,152,184,0.12);

    color: #35c0d9;

    font-size: 12px;
}

.pv-footer-contact-item small {
    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,0.38);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}

.pv-footer-contact-item:hover {
    color: #ffffff;
}


/* =========================================================
   FOOTER CTA
========================================================= */

.pv-footer-cta {
    padding: 30px 0;

    background: rgba(255,255,255,0.025);
}

.pv-footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.pv-footer-cta-label {
    display: block;

    margin-bottom: 6px;

    color: #35c0d9;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}

.pv-footer-cta-inner h3 {
    margin: 0;

    color: #ffffff;

    font-size: 20px;
    font-weight: 700;
}

.pv-footer-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 44px;

    padding: 0 18px;

    border-radius: 7px;

    background: #0798b8;

    color: #ffffff;

    font-size: 11px;
    font-weight: 750;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.pv-footer-cta-button:hover {
    background: #35c0d9;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.pv-footer-bottom {
    padding: 20px 0;

    background: #0d1730;
}

.pv-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    flex-wrap: wrap;
}

.pv-footer-copyright {
    color: rgba(255,255,255,0.42);

    font-size: 10px;
}

.pv-footer-copyright strong {
    color: rgba(255,255,255,0.68);

    font-weight: 650;
}

.pv-footer-legal {
    display: flex;
    align-items: center;

    gap: 10px;
}

.pv-footer-legal a {
    color: rgba(255,255,255,0.42);

    font-size: 10px;

    text-decoration: none;

    transition: color 0.3s ease;
}

.pv-footer-legal a:hover {
    color: #35c0d9;
}

.pv-footer-legal span {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: rgba(255,255,255,0.25);
}


/* =========================================================
   QENTORA CREDIT
========================================================= */

.pv-footer-credit {
    color: rgba(255,255,255,0.38);

    font-size: 10px;

    white-space: nowrap;
}

.pv-footer-credit a {
    color: #35c0d9;

    font-weight: 700;

    text-decoration: none;

    transition: color 0.3s ease;
}

.pv-footer-credit a:hover {
    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .pv-footer-main {
        padding: 70px 0 55px;
    }

    .pv-footer-logo img {
        max-width: 200px;
    }

    .pv-footer-cta-inner {
        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .pv-footer-main {
        padding: 55px 0 40px;
    }

    .pv-footer-logo {
        margin-bottom: 20px;
    }

    .pv-footer-logo img {
        max-width: 185px;
        max-height: 55px;
    }

    .pv-footer-description {
        font-size: 12px;
    }

    .pv-footer-column {
        margin-top: 10px;
    }

    .pv-footer-column h4 {
        margin-bottom: 20px;
    }

    .pv-footer-column li {
        margin-bottom: 11px;
    }

    .pv-footer-cta {
        padding: 28px 0;
    }

    .pv-footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;

        gap: 20px;
    }

    .pv-footer-cta-inner h3 {
        font-size: 18px;
    }

    .pv-footer-cta-button {
        width: 100%;
    }

    .pv-footer-bottom {
        padding: 20px 0;
    }

    .pv-footer-bottom-inner {
        flex-direction: column;
        align-items: center;

        text-align: center;

        gap: 13px;
    }

    .pv-footer-credit {
        white-space: normal;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .pv-footer-main {
        padding: 48px 0 35px;
    }

    .pv-footer-description {
        max-width: 100%;
    }

    .pv-footer-socials a {
        width: 34px;
        height: 34px;
    }

}

/* =========================================================
   PRIMEVITALS PREMIUM NAVIGATION
========================================================= */

.pv-header {
    position: relative;
    z-index: 1000;
}


/* =========================================================
   TOP BAR
========================================================= */

.pv-topbar {
    background: #111d3c;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pv-topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pv-topbar-left,
.pv-topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.pv-topbar a,
.pv-topbar span {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.25s ease;
}

.pv-topbar a:hover {
    color: #35c0d9;
}

.pv-topbar i {
    color: #35c0d9;
    font-size: 12px;
}

.pv-topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
}


/* =========================================================
   MAIN NAVBAR
========================================================= */

.pv-navbar {
    background: #ffffff;
    min-height: 82px;
    padding: 0;
    border-bottom: 1px solid #edf0f5;
    box-shadow: 0 5px 25px rgba(17, 29, 60, 0.06);
}

.pv-navbar .container {
    min-height: 82px;
}


/* =========================================================
   LOGO
========================================================= */

.pv-logo {
    display: flex;
    align-items: center;
    height: 82px;
    padding: 0 !important;
    margin-right: 50px;
}

.pv-logo-image {
    width: 205px;
    height: auto;
    max-height: 65px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.pv-logo:hover .pv-logo-image {
    transform: translateY(-1px);
}


/* =========================================================
   NAVIGATION LINKS
========================================================= */

.pv-navbar .navbar-nav {
    gap: 4px;
}

.pv-navbar .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    height: 82px;
    padding: 0 15px !important;

    color: #25345d;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1px;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.pv-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0;

    height: 3px;
    border-radius: 5px 5px 0 0;

    background: #0798b8;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.25s ease;
}

.pv-navbar .nav-link:hover,
.pv-navbar .nav-link.active {
    color: #0798b8;
}

.pv-navbar .nav-link:hover::after,
.pv-navbar .nav-link.active::after {
    transform: scaleX(1);
}


/* Remove Bootstrap dropdown arrow styling slightly */
.pv-navbar .dropdown-toggle::after {
    margin-left: 7px;
    vertical-align: middle;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
}


/* =========================================================
   DROPDOWN
========================================================= */

.pv-dropdown-menu {
    min-width: 380px;
    padding: 12px;
    margin-top: 0 !important;

    border: 1px solid #e9edf4;
    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 20px 50px rgba(17, 29, 60, 0.13);

    animation: pvDropdownIn 0.2s ease;
}

@keyframes pvDropdownIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Dropdown heading */

.pv-dropdown-heading {
    padding: 7px 12px 10px;
}

.pv-dropdown-heading span {
    color: #0798b8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
}


/* Dropdown items */

.pv-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 10px 10px;

    border-radius: 9px;

    color: #25345d;
    white-space: normal;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.pv-dropdown-menu .dropdown-item:hover {
    background: #f1fbfd;
    color: #25345d;
    transform: translateX(3px);
}


/* Dropdown icon */

.pv-dropdown-icon {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #eefafd;
    color: #0798b8;

    font-size: 16px;

    transition: all 0.2s ease;
}

.pv-dropdown-menu .dropdown-item:hover .pv-dropdown-icon {
    background: #0798b8;
    color: #ffffff;
}


/* Dropdown text */

.pv-dropdown-menu .dropdown-item > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pv-dropdown-menu .dropdown-item strong {
    font-size: 12px;
    font-weight: 700;
    color: #25345d;
}

.pv-dropdown-menu .dropdown-item small {
    font-size: 10px;
    line-height: 1.4;
    color: #8a94a8;
}


/* Dropdown footer */

.pv-dropdown-footer {
    margin-top: 8px;
    padding-top: 8px;

    border-top: 1px solid #edf0f5;
}

.pv-dropdown-footer a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 12px;

    color: #0798b8;
    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}

.pv-dropdown-footer a i {
    transition: transform 0.2s ease;
}

.pv-dropdown-footer a:hover i {
    transform: translate(3px, -3px);
}


/* =========================================================
   NAV DIVIDER
========================================================= */

.pv-nav-divider {
    width: 1px;
    height: 27px;

    margin: 0 10px;

    background: #e5e9f0;
}


/* =========================================================
   SEARCH & CART
========================================================= */

.pv-nav-action {
    display: flex;
    align-items: center;
}

.pv-nav-icon,
.pv-cart {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    border-radius: 50%;

    color: #25345d;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.pv-nav-icon:hover,
.pv-cart:hover {
    background: #eefafd;
    color: #0798b8;
}

.pv-nav-icon i,
.pv-cart i {
    font-size: 17px;
}


/* Cart badge */

.pv-cart #cart-count {
    position: absolute;

    top: -2px;
    right: -1px;

    min-width: 17px;
    height: 17px;

    padding: 0 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #0798b8;
    color: #ffffff;

    font-size: 9px;
    font-weight: 800;

    border: 2px solid #ffffff;
}


/* =========================================================
   REQUEST QUOTE BUTTON
========================================================= */

.pv-quote-item {
    margin-left: 10px;
}

.pv-nav-quote {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 0 17px;

    border-radius: 8px;

    background: #0798b8;
    color: #ffffff !important;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 8px 20px rgba(7, 152, 184, 0.18);

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.pv-nav-quote i {
    font-size: 13px;

    transition: transform 0.25s ease;
}

.pv-nav-quote:hover {
    background: #067f9b;
    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(7, 152, 184, 0.25);
}

.pv-nav-quote:hover i {
    transform: translate(2px, -2px);
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.pv-navbar-toggler {
    width: 44px;
    height: 44px;

    padding: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    border: 1px solid #dfe5ed !important;
    border-radius: 8px !important;

    background: #ffffff;

    box-shadow: none !important;
}

.pv-navbar-toggler span {
    display: block;

    width: 19px;
    height: 2px;

    border-radius: 5px;

    background: #25345d;

    transition: all 0.25s ease;
}

.pv-navbar-toggler:hover {
    border-color: #0798b8 !important;
}

.pv-navbar-toggler:hover span {
    background: #0798b8;
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 991.98px) {

    .pv-topbar {
        display: none;
    }


    .pv-navbar {
        min-height: 72px;
    }

    .pv-navbar .container {
        min-height: 72px;
    }


    .pv-logo {
        height: 72px;
        margin-right: 0;
    }

    .pv-logo-image {
        width: 175px;
        max-height: 58px;
    }


    .pv-navbar .navbar-collapse {
        margin-top: 8px;

        padding: 10px 0 18px;

        border-top: 1px solid #edf0f5;
    }


    .pv-navbar .navbar-nav {
        gap: 0;
        align-items: stretch !important;
    }


    .pv-navbar .nav-link {
        height: auto;

        min-height: 48px;

        padding: 13px 5px !important;

        border-bottom: 1px solid #f0f2f6;
    }

    .pv-navbar .nav-link::after {
        display: none;
    }


    .pv-dropdown-menu {
        min-width: 100%;

        padding: 8px;

        margin: 0 0 8px !important;

        border: 0;
        border-radius: 10px;

        box-shadow: inset 0 0 0 1px #edf0f5;
    }


    .pv-dropdown-menu .dropdown-item {
        padding: 9px;
    }


    .pv-nav-divider {
        display: none !important;
    }


    .pv-nav-action {
        display: inline-flex;
        margin-top: 8px;
        margin-right: 5px;
    }


    .pv-nav-icon,
    .pv-cart {
        border: 1px solid #e4e9f0;
    }


    .pv-quote-item {
        margin: 12px 0 0;
    }


    .pv-nav-quote {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .pv-logo-image {
        width: 155px;
    }

    .pv-navbar-toggler {
        width: 42px;
        height: 42px;
    }

}

/* =========================================================
   PRIMEVITALS INNER PAGE HERO
========================================================= */

.pv-page-hero {
    position: relative;
    min-height: 360px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #111d3c;
}


/* Background image */

.pv-page-hero-bg {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            90deg,
            rgba(17, 29, 60, 0.98) 0%,
            rgba(17, 29, 60, 0.92) 42%,
            rgba(17, 29, 60, 0.68) 70%,
            rgba(17, 29, 60, 0.55) 100%
        ),
        url("../images/hero/inner-page-hero.jpg");

    background-size: cover;
    background-position: center;

    transform: scale(1.01);
}


/* Subtle overlay */

.pv-page-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(7, 152, 184, 0.18),
            transparent 35%
        );

    pointer-events: none;
}


/* Container */

.pv-page-hero .container {
    position: relative;
    z-index: 3;
}


/* Content */

.pv-page-hero-content {
    max-width: 720px;

    padding: 70px 0;
}


/* Small label */

.pv-page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 16px;

    color: #35c0d9;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.pv-page-hero-label::before {
    content: "";

    width: 28px;
    height: 2px;

    border-radius: 5px;

    background: #35c0d9;
}


/* Heading */

.pv-page-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 64px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -1.5px;
}


/* Subtitle */

.pv-page-hero p {
    max-width: 620px;

    margin: 18px 0 25px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 16px;

    line-height: 1.7;
}


/* Breadcrumb */

.pv-page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    font-size: 12px;
}

.pv-page-breadcrumb a {
    color: #ffffff;

    text-decoration: none;

    font-weight: 600;

    transition: color 0.2s ease;
}

.pv-page-breadcrumb a:hover {
    color: #35c0d9;
}

.pv-page-breadcrumb span {
    color: rgba(255, 255, 255, 0.35);

    font-size: 10px;
}

.pv-page-breadcrumb strong {
    color: #35c0d9;

    font-weight: 600;
}


/* =========================================================
   DECORATIVE SHAPES
========================================================= */

.pv-page-hero-shape {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.pv-page-hero-shape-1 {
    width: 420px;
    height: 420px;

    right: -100px;
    top: -180px;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pv-page-hero-shape-2 {
    width: 300px;
    height: 300px;

    right: 90px;
    bottom: -220px;

    border: 1px solid rgba(53, 192, 217, 0.12);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .pv-page-hero {
        min-height: 300px;
    }

    .pv-page-hero-content {
        padding: 55px 0;
    }

    .pv-page-hero-label {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .pv-page-hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .pv-page-hero p {
        font-size: 14px;

        margin-top: 14px;
        margin-bottom: 20px;
    }

    .pv-page-hero-bg {
        background-position: center;
    }

}

/* =========================================================
   CATEGORY PAGE
========================================================= */

.pv-category-section {
    padding-top: 75px;
}


/* =========================================================
   CATEGORY HEADER
========================================================= */

.pv-category-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 35px;
}

.pv-category-header > div:first-child {
    max-width: 750px;
}

.pv-category-header h2 {
    margin: 0 0 12px;

    color: #111d3c;

    font-size: clamp(28px, 4vw, 42px);

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1px;
}

.pv-category-header p {
    max-width: 680px;

    margin: 0;

    color: #7d8799;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CATEGORY TOOLBAR
========================================================= */

.pv-category-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 30px;

    padding: 15px 0;

    border-top: 1px solid #edf0f4;
    border-bottom: 1px solid #edf0f4;
}

.pv-back-products {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #25345d;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: color 0.2s ease;
}

.pv-back-products i {
    color: #0798b8;

    transition: transform 0.2s ease;
}

.pv-back-products:hover {
    color: #0798b8;
}

.pv-back-products:hover i {
    transform: translateX(-3px);
}


.pv-category-result {
    color: #8992a4;

    font-size: 12px;
}

.pv-category-result strong {
    color: #111d3c;
}


/* =========================================================
   EMPTY CATEGORY BUTTON
========================================================= */

.pv-category-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 20px;

    padding: 11px 18px;

    border-radius: 7px;

    background: #0798b8;
    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.25s ease;
}

.pv-category-empty-btn:hover {
    background: #067f9b;
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .pv-category-section {
        padding-top: 55px;
    }

    .pv-category-header {
        align-items: flex-start;
        flex-direction: column;

        gap: 20px;
    }

    .pv-category-header h2 {
        font-size: 30px;
    }

    .pv-category-header p {
        font-size: 13px;
    }

    .pv-category-toolbar {
        align-items: flex-start;
        flex-direction: column;

        gap: 12px;
    }

    .pv-category-result {
        font-size: 11px;
    }

}

/* =========================================================
   SHOP CATEGORY LINKS
========================================================= */

.pv-shop-categories .pv-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
}

.pv-shop-categories .pv-filter-btn:hover {
    text-decoration: none;
}

.pv-shop-categories .pv-filter-btn.active {
    color: #ffffff;
}

