@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --yellow-color: #F5EF00;
    --blue-color: #1B6BA7;
    --background-yellow-linear: linear-gradient(to bottom, #CCFF14 0%, #F3FADA 100%);
    --background-yellow-linear-top: linear-gradient(to bottom, #F3FADA 0%, #CCFF14 100%);
    --poppins-font: "Poppins", sans-serif;
    --inter-tight-font: "Inter Tight", sans-serif;
    --hero-height: 520px;
    --accent-blue: #1B6BA7;
    --cta-yellow: #ffd400;
    --text-white: #fff;
    --muted-white: rgba(255, 255, 255, 0.9);
    --thin-line: rgba(255, 255, 255, 0.12);
    --marquee-speed: 40s;
    --marquee-bg: #000;
    --marquee-color: #fff;
    --separator: rgba(0, 0, 0, 0.08);
    --yellow-color: #CCFF14;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Tusker Grotesk';
    src: url(../font/TuskerGrotesk-5500Medium.ttf);
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--inter-tight-font);
}

a {
    text-decoration: none;
}

body {
    font-family: var(--poppins-font);
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #fff;
    padding: 0.5rem 1.5rem;
    z-index: 1050;
}

.nav-link {
    color: #6A7166;
    font-weight: 500;
    padding: .25rem .5rem;
    transition: color .2s;
}

.btn-yellow {
    color: #000;
    border-radius: 50px;
    padding: 0.7rem 1rem;
    font-weight: 600;
    border: 0;
    background-color: #ffeb00;
    transition: background-color 0.3s ease;
}

.btn-yellow:hover {
    background-color: var(--blue-color);
    color: white;
}

.offcanvas.offcanvas-end {
    width: 320px;
    background: #fff;
}

.offcanvas-header {
    border-bottom: 1px solid #eee;
}

.offcanvas .nav-link {
    padding: .75rem 0;
    color: #111;
}

.nav-link {
    font-weight: normal;
    color: #6A7166;
}

/* New */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}

/* Overlay BEHIND the video */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
    pointer-events: none;
}

/* Full-height slider */
.hero .owl-carousel,
.hero .owl-stage-outer,
.hero .owl-stage,
.hero .owl-item,
.hero .item,
.hero .slide {
    height: 100% !important;
}

.hero .owl-stage {
    display: flex;
    align-items: stretch;
}

/* Slide wrapper */
.slide {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #000;
}

/* Video ABOVE overlay */
.slide video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}

.slide::before {
    content: none !important;
}

/* Content ON TOP */
.hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 50%;
    margin-left: 28px;
    margin-top: 28px;
    color: var(--text-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.badge {
    background: rgba(255, 255, 255, 0.95);
    color: #111;
    padding: 6px 10px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.headline {
    font-size: clamp(28px, 6.2vw, 72px);
    margin: 0 0 10px;
    font-weight: 600;
    color: black;
}

.headline .accent {
    color: var(--accent-blue);
}

.subcopy {
    color: black;
    max-width: 460px;
    margin: 12px 0 18px;
    font-size: 16px;
    line-height: 1.35;
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-cta {
    background: var(--cta-yellow);
    color: #111;
    padding: 12px 18px;
    border-radius: 28px;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.btn-cta:hover {
    background: var(--accent-blue);
    color: white;
}

.avatars-text {
    display: flex;
    align-items: center;
    margin-left: 8px;
    gap: 20px;
}

.avatars-text img {
    width: 100px !important;
}

.avatars-text p {
    margin: 0;
    color: white;
}

.avatars-text p span {
    color: var(--cta-yellow);
}

.avatars-text div {
    border-left: 1px solid white;
    padding: 0 15px;
}


.hero-bottom {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 14px;
}

.slide-index {
    display: flex;
    gap: 0;
    align-items: center;
    z-index: 100;
}

.slide-index button {
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 14px;
    padding: 3px 8px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1;
    border-right: 1px solid;
    box-shadow: none;
}

.slide-index button:last-child {
    border-right: none;
}

.slide-index button[aria-current="true"] {
    color: var(--cta-yellow);
}

/* Progress bar */
.progress-line {
    flex: 1;
    height: 2px;
    background: var(--thin-line);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-line .inner {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: rgba(255, 255, 255, 0.25);
    transition: width .45s ease;
}

/* Navigation circles */
.nav-circles {
    display: flex;
    gap: 10px;
}

.circle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-white);
    cursor: pointer;
    user-select: none;
    z-index: 110;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.circle-btn:hover {
    background: var(--cta-yellow);
    border-color: var(--cta-yellow);
    color: #111;
}

.hero .owl-dots,
.hero .owl-nav {
    display: none;
}

.slide {
    position: relative;
    z-index: 3;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../img/bg_ellipse.png) no-repeat center;
    background-size: 50%;
    z-index: 2;
    pointer-events: none;
    left: -35%;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0.8;
}

.featured-service-section {
    padding: 3rem 0;
}

.featured-service-section h2 {
    font-size: 40px;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 50px;
}

.featured-service-section .card {
    background: #F4F4F4;
    padding: 20px;
    text-align: center;
    border: none;
    border-radius: 40px;
    padding-bottom: 40px;
    transition: .3s ease-in-out;
    height: 100%;
    justify-content: space-between;
}

.featured-service-section .card:hover {
    background: var(--background-yellow-linear);
}

.card-img img {
    border-radius: 34px;
    margin-bottom: 1.5rem;
}

.featured-service-section .card h3 {
    font-size: 28px;
    font-weight: 600;
    font-family: var(--inter-tight-font);
    margin-bottom: 14px;
}

.shop-btn {
    border: 1px solid #000;
    display: inline-block;
    width: fit-content;
    margin: 10px auto;
    padding: 10px 25px;
    color: black;
    border-radius: 24px;
    transition: .1s;
}

.shop-btn:hover {
    background: var(--cta-yellow);
    color: #000;
    border-color: var(--cta-yellow);
}


.marquee-slider {
    overflow: hidden;
    white-space: nowrap;
    display: block;
    box-sizing: border-box;
    padding: 2rem 0
}

.marquee-slider * {
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    margin: 0 8px;
    font-size: 37px;
    color: #AAA9A9;
    font-weight: 400;
}

.marquee-slider img {
    height: 36px;
    width: auto
}

.marquee-slider .track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap
}

.marquee-slider:hover .track,
.marquee-slider:focus-within .track {
    animation-play-state: paused
}


.about-section {
    padding: 3rem 0;
}

.about-content {
    max-width: 800px;
}

.title-wrapper span {
    margin-left: 50px;
    position: relative;
}

.title-wrapper span::before {
    content: "";
    height: 1px;
    width: 39px;
    background: #000;
    position: absolute;
    left: -43px;
    top: 50%;
    transform: translate(0px, -50%);
}

.title-wrapper {
    margin-bottom: 1rem;
}

.title-wrapper h2 {
    font-size: 35px;
    font-weight: 600;
}

.explore-btn {
    border: 1px solid var(--cta-yellow);
    display: inline-block;
    width: fit-content;
    margin: 10px auto;
    padding: 10px 25px;
    color: black;
    background: var(--cta-yellow);
    border-radius: 24px;
    transition: .1s;
}

.explore-btn:hover {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

.counters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px 0;
    box-sizing: border-box;
    margin: 0 auto;
}


.counter {
    text-align: center;
    position: relative;
    padding: 0 24px;
    box-sizing: border-box;
}

.counters .counter:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 8%;
    bottom: 8%;
    width: 1px;
    background: var(--separator);
    pointer-events: none;
}

.value {
    font-weight: 600;
    font-size: clamp(28px, 6.2vw, 55px);
    color: var(--text);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.labels {
    color: var(--muted);
    font-size: 18px;
    font-weight: 500;
    line-height: 2.25;
}

.our-service-section {
    padding: 3rem 0;
    background: var(--background-yellow-linear-top);
}

.service-slider .owl-stage-outer,
.service-slider .owl-stage,
.service-slider .owl-item {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.service-slider .owl-item {
    flex: 0 0 auto;
    display: flex;
    align-items: stretch;
}

.service-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    padding: 15px;
    text-align: center;
    transition: .35s ease-in-out;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1 1 auto;
    box-sizing: border-box;
    height: 100%;
}

.service-card img {
    border-radius: 12px;
}

.service-card .service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 8px 0;
    gap: 8px;
    flex: 1 1 auto;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: #111;
    transition: .35s ease;
    line-height: 1.25;
}

.service-card {
    padding: 12px 8px 8px;
    flex: 0 0 auto;
}

.service-card .explore-btn {
    background: #FFDD00;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 40px;
    display: inline-block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s;
}

.service-card:hover {
    background: #000;
}

.service-card:hover h3 {
    color: #fff;
}

.service-card:hover .explore-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service-slider .owl-item.center .service-card {
    background: #000;
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.service-slider .owl-item.center .service-card h3 {
    color: #fff;
}

.service-slider .owl-item.center .service-card .explore-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service-slider .item {
    padding: 8px;
    box-sizing: border-box;
}

/* -------------------------
   FIXED OWL NAV BUTTONS
-------------------------- */
.service-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 50;
}

.service-slider .owl-nav button.owl-prev,
.service-slider .owl-nav button.owl-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.18);
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: .3s ease;
}

.service-slider .owl-nav button.owl-prev:hover,
.service-slider .owl-nav button.owl-next:hover {
    background: #000 !important;
}

.service-slider .owl-nav button i {
    font-size: 18px;
    color: #333;
    transition: .3s ease;
}

.service-slider .owl-nav button:hover i {
    color: #fff;
}

.service-slider .owl-nav .owl-prev {
    margin-left: -32px;
}

.service-slider .owl-nav .owl-next {
    margin-right: -32px;
}


.view-all {
    margin-top: 2rem;
    display: inline-block;
    color: #000;
}

.wellness-section {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.wellness-section::after {
    content: "";
    position: absolute;
    background: #F2F2F2;
    height: 65%;
    bottom: 0;
    left: 5%;
    right: 5%;
    border-radius: 20px;
    z-index: -1;
}

.wellness-section .container {
    position: relative;
    z-index: 99;
}

.wellness-card {
    background: var(--accent-blue);
    color: white;
    padding: 3rem;
    margin-right: -58px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 50px;
}

.left-col {
    position: relative;
}

.wellness-card .explore-btn:hover {
    background: var(--marquee-color);
    color: var(--accent-blue);
    border-color: var(--marquee-color);
}

.wellness-image-wrap img {
    border-radius: 37px;
}

.discount_wrapper {
    margin-top: 3rem;
}

.offer-tile {
    min-height: 200px;
    place-content: center;
    text-align: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.offer-tile::before {
    content: "";
    position: absolute;
    inset: 0;
}

.discount-text {
    position: relative;
    z-index: 9;
}

.discount-text h4 {
    font-size: 35px;
    font-weight: 700;
}

.discount_card1::before {
    background: #e3ff81d4;
}

.discount_card2::before {
    color: white;
    background: #000000b8;
}

.discount_card3::before {
    background: #b2c4ffde;
}

.discount_card4::before {
    background: #d4fff8de;
}

.discount_card2 .discount-text {
    color: white;
}

.Our_product_sec {
    padding: 3rem 0;
}

.filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.filter-btn {
    padding: 8px 14px;
    border-radius: 20px;
    cursor: pointer;
    border: none;
    background: transparent;
}

.filter-btn.active {
    background: white;
    border: 1px solid #000000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.productSlider .item {
    padding: 12px;
}

.product-img img {
    height: 200px;
    object-fit: contain;
    margin: 0 auto;
}

.product-card {
    background: #F0F2EF;
    padding: 16px;
    height: 100%;
    border-radius: 20px;
    padding-bottom: 2rem;
}

.product-img {
    background: white;
    padding: 30px;
    margin-bottom: 1rem;
    border-radius: 20px;
}

.product-content {
    text-align: center;
}

.product-content h4 a {
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #000;
}

.btn-groups {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-groups a {
    border: 1px solid #000;
    padding: 8px 19px;
    color: black;
    font-size: 14px;
    border-radius: 30px;
    text-align: center;
    transition: .3s;
    text-align: center;
}

.btn-groups a:first-child {
    background: var(--yellow-color);
    color: #000;
    border-color: var(--yellow-color);
}

.btn-groups a:hover {
    background: var(--blue-color);
    color: var(--marquee-color);
    border-color: var(--accent-blue);
}

.Our_product_sec .owl-stage-outer,
.Our_product_sec .owl-stage,
.Our_product_sec .owl-item {
    height: 100%;
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.Our_product_sec .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 20;
}

.Our_product_sec .owl-nav button.owl-prev,
.Our_product_sec .owl-nav button.owl-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff !important;
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: .3s ease;
}

.Our_product_sec .owl-nav button.owl-prev:hover,
.Our_product_sec .owl-nav button.owl-next:hover {
    background: var(--blue-color) !important;
    border-color: var(--accent-blue);
}

.Our_product_sec .owl-nav button i {
    font-size: 18px;
    color: #333;
    transition: .3s ease;
}

.Our_product_sec .owl-nav button:hover i {
    color: #fff;
}

.Our_product_sec .owl-nav .owl-prev {
    margin-left: -32px;
}

.Our_product_sec .owl-nav .owl-next {
    margin-right: -32px;
}

.book-session-section {
    padding: 3rem 0;
}

.book-session-section .explore-btn {
    margin: 0;
}

.session-card {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 11px;
    background: #D4FFF8;
    padding: 20px;
    border-radius: 38px;
    align-items: stretch;
}

.book-session-section .row .col-lg-6:nth-child(2) .session-card {
    background-color: #B2C4FF;
}

.book-session-section .row .col-lg-6:nth-child(1) .session-card .explore-btn {
    background: #40B500;
    color: white;
    border-color: #40B500;
}

.book-session-section .row .col-lg-6:nth-child(1) .session-card .explore-btn:hover {
    background: var(--blue-color);
    border-color: var(--accent-blue);
}

.session-content {
    padding: 15px;
}

.session-content h4 {
    font-size: 16px;
}

.session-content h4 {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 15px;
}

.session-card img {
    border-radius: 30px;
    object-fit: cover;
}

.session-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

:root {
    --carousel-gap: 20px;
}

.testimonial_sec {
    padding: 3rem 0;
    padding-bottom: 90px;
    background: var(--background-yellow-linear);
    padding-left: max(20px, calc((100vw - 1320px) / 2));
    position: relative;
    overflow: hidden;
}

.quote-icon {
    width: 70px !important;
}

.star-icon {
    width: 150px !important;
    margin: 1rem 0;
}

.reviewer-info img {
    width: 70px !important;
    height: 70px;
    border-radius: 50%;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #D9D9D9;
    padding: 13px 0;
    margin-top: 2rem;
}

.reviewer-info p {
    margin: 0;
    padding: 0;
}

.testimonial-card {
    background: white;
    padding: 20px 30px;
    border-radius: 37px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.testimonial-slider .owl-stage-outer,
.testimonial-slider .owl-stage,
.testimonial-slider .owl-item {
    height: 100%;
    margin: 0;
    padding: 0;
}

.testimonial-slider .owl-item {
    padding-left: calc(var(--carousel-gap) / 2);
    padding-right: calc(var(--carousel-gap) / 2);
    box-sizing: border-box;
}

.testimonial-slider .item {
    display: flex;
    height: 100%;
    align-items: stretch;
}

.testimonial-slider .item>.testimonial-card,
.testimonial-slider .item>.video-card {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #f7f7f7;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 auto;
}

.portrait-card {
    aspect-ratio: 3 / 5;
    max-width: 260px;
    margin: 0 auto;
}

.portrait-card .testimonial-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.play-btn {
    pointer-events: auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.play-btn:hover {
    transform: scale(1.06);
}

.video-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    padding: 8px 14px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.caption-name {
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    letter-spacing: 0.2px;
}

.testimonial-slider {
    position: relative;
}

.testimonial-slider .owl-nav {
    display: flex;
    margin: 15px 0;
    justify-content: center;
}

.testimonial-slider .owl-nav button {
    width: 38px;
    height: 38px;
    border-radius: 50% !important;
    background: #ffffff;
    border: 1px solid !important;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #222;
}

.testimonial-slider .owl-nav button:hover {
    background: var(--cta-yellow) !important;
    border-color: var(--cta-yellow) !important;
    color: #000;
}

/* .testimonial-slider .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
} */

/* .testimonial-slider .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cfcfcf;
} */

/* .owl-dot.active {
    background: #1fbc4a;
} */


.our-team-section {
    padding: 3rem 0;
}

.team-card {
    display: flex;
    align-items: end;
    border-bottom: 1px solid;
    padding-bottom: 0;
    gap: 20px;
    padding-top: 20px;
}

.team-mem-info {
    padding-bottom: 50px;
}

.team-img {
    position: relative;
}

.count {
    font-size: 52px;
    position: absolute;
    top: 0;
    right: 0;
    color: #DDDDDD;
    user-select: none;
}

.team-mem-info p {
    font-style: italic;
}

.team-img {
    position: relative;
    flex: 1;
}

/* .team-wrapper .row .col-lg-6:nth-child(1) .team-card {} */

.team-wrapper .row .col-lg-6:nth-child(2) .team-card .count,
.team-wrapper .row .col-lg-6:nth-child(4) .team-card .count {
    left: -2px;
    top: 20px;

}

.team-wrapper .row .col-lg-6:nth-child(2) .team-card {
    padding-top: 100px;
}

.team-wrapper .row .col-lg-6:nth-child(3) .team-card {
    margin-top: -100px;
}

.upcomeing-event-section {
    padding: 3rem 0;
}

.upcomeing-event-section .card {
    flex-direction: row;
    border-radius: 10px;
    border-color: #C3C3C3;
    border-radius: 14px;
    overflow: hidden;
    min-height: 300px;

}

.upcomeing-content-wrap {
    flex: 1;
    padding: 25px;
}

.upcomeing-content-wrap p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.upcomeing-image-wrap h3 {
    font-family: 'Tusker Grotesk';
    text-transform: uppercase;
    max-width: 120px;
    line-height: 40px;
}

.upcomeing-image-wrap {
    flex: 1;
    border-radius: 10px;
    place-content: center;
    color: white;
    padding: 15px;
}

.imgae-inner a {
    padding: 8px 18px;
    background: #CBFF14;
    display: inline-block;
    margin: 10px 0;
    border-radius: 10px;
    font-size: 14px;
    color: black;
}

.upcomeing-content-wrap h3 {
    font-size: 23px;
    margin: 1rem 0;
}

.upcoming-event-slider {
    margin-top: 3rem;
}

.upcomeing-event-section .owl-stage-outer,
.upcomeing-event-section .owl-stage,
.upcomeing-event-section .owl-item {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.upcomeing-event-section .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 35px;
}

.upcomeing-content-wrap span {
    color: #8B8123;
}

.blog-section {
    padding: 3rem 0;
    background: #D4FFF8;
    margin: 0 1rem;
    border-radius: 30px;
}

.blog-card img {
    height: 250px;
    width: 100%;
    border-radius: 10px;
}

.blog-content {
    margin: 2rem 0;
    margin-bottom: 0;
}

.blog-content h3 a {
    font-size: 19px;
    margin-top: 20px;
    color: #000 !important;
}

.blog-slider .owl-nav {
    position: absolute;
    top: -78px;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 50;
}

.blog-slider .owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: transparent;
    border: 1px solid black !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-slider .owl-nav button i {
    font-size: 16px;
    color: #222;
}

.blog-slider .owl-nav button:hover {
    background: var(--blue-color) !important;
    border-color: var(--accent-blue) !important;
}

.blog-slider .owl-nav button:hover i {
    color: #fff;
}


.blog-slider .owl-dots {
    display: none;
}

.blog-section {
    position: relative;
}

.contact-us-section {
    padding: 3rem 0;
}

.quote-section {
    padding: 24px 16px;
    display: flex;
    justify-content: center;
}

.quote-panel {
    width: 100%;
    max-width: 1101px;
    background: #f2ffd3;
    border-radius: 18px;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: 0 8px 30px rgba(6, 40, 74, 0.06);
    margin-top: -72px;
}

.quote-panel h2 {
    text-align: center;
    margin: 0 0 30px;
    font-size: 50px;
    font-weight: 500;
    color: #111;
}

.quote-form .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
    align-items: start;
}

@media (max-width: 720px) {
    .quote-form .row {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.field label {
    font-size: 12px;
    color: #6b6b6b;
    font-weight: 600;
    margin-left: 2px;
}

.field input,
.field select,
.field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgb(0 0 0);
    height: 40px;
    padding: 6px 8px;
    font-size: 14px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
    color: #111;
    resize: vertical;
}

.field select {
    appearance: none;
    padding-right: 28px;
}

.field textarea {
    min-height: 40px;
    padding-top: 8px;
    padding-bottom: 8px;
    resize: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-bottom-color: rgba(0, 0, 0, 0.32);
    box-shadow: 0 4px 18px rgba(6, 40, 74, 0.06);
}

.field label span {
    color: #d33;
    margin-left: 6px;
    font-weight: 700;
    font-size: 11px;
    opacity: .9;
}

.form-footer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.btn-quote {
    background: linear-gradient(180deg, #FFD84D, #FFDD00);
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    color: #111;
    font-size: 14px;
    margin: 2rem 0;
    transition: all .3s;
}

.btn-quote:hover {
    background: var(--accent-blue);
    color: white;
}


.quote-form input:invalid,
.quote-form select:invalid,
.quote-form textarea:invalid {
    border-bottom-color: #d9534f;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(0, 0, 0, 0.28);
}


.bold-heading-center h3 {
    text-align: center;
    font-size: 150px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 98px;
    user-select: none;
    margin-top: 40px;
}


.bold-heading-center h3 span {
    display: block;
    text-transform: lowercase;
    color: #8EA9FF;
    font-weight: 500;
    position: relative;
}

.tph-footer {
    background: #0c0c0c;
    color: #ddd;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.tph-footer-bg {
    position: absolute;
    bottom: -36%;
    left: 56%;
    font-size: 616px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transform: translate(-50%, 100px);
    letter-spacing: 109px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-col h3 {
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

.footer-col h3 span {
    color: #666565;
}

.footer-col h4 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #d2ff59;
}

.footer-info li {
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-info i {
    width: 15px;
    margin-right: 6px;
    color: #ffffff;
}

.newsletter h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-top: 50px;
}

.newsletter-box {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #555;
    padding-bottom: 5px;
    margin-top: 10px;
}

.newsletter-box input {
    background: transparent;
    border: none;
    color: #fff;
    flex: 1;
    padding: 6px 0;
    outline: none;
}

.newsletter-box a {
    color: #d2ff59;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom {
    text-align: right;
    margin-top: 36px;
    font-size: 14px;
    color: #999;
    margin-bottom: 11rem;
}


@media(max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 50px;
    }

    .tph-footer-bg {
        font-size: 250px;
    }
}

@media(max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .tph-footer-bg {
        font-size: 180px;
    }
}



.posts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.post {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
    min-width: 280px;
}


.pagination {
    text-align: center;
    margin-top: 30px;
}

.pagination a,
.pagination span {
    padding: 8px 14px;
    margin: 0 4px;
    background: #f1f1f1;
    border-radius: 4px;
    text-decoration: none;
}

.pagination .current {
    background: #333;
    color: #fff;
}


/* services page start  */


.services-page {
    padding: 50px 0;
}

.page-title {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: bold;
    letter-spacing: 2px;
}

.service-section-title {
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-products-grid {
    display: flex;

}

/* .service-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
} */

.service-product-card {
    text-align: center;
}

.service-product-img img {
    width: 100%;
    border-radius: 5px;
}

.service-product-title {
    font-size: 16px;
    margin: 10px 0;
    min-height: 40px;
}

.service-product-price {
    font-weight: bold;
    margin-bottom: 10px;
}



.service-product-card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-radius: 12px;
    padding: 18px;
}

/* services page end */



/* inner page start  */

.breadcrumbs {
    padding: 80px 0;
    position: relative;
    color: #fff;
}

.breadcrumbs::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.breadcrumbs .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-title {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 10px;
}

.breadcrumb-title span {
    color: var(--yellow-color);
}

.breadcrumb-nav {
    font-size: 16px;
    opacity: 0.9;
    background: #363535;
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    margin: 1.5rem 0;
}

.breadcrumb-nav a {
    color: var(--yellow-color);
    text-decoration: none;
}


.breadcrumb-below-sec {
    padding: 3rem 0;
}

.breadcrumb-below-sec p span {
    color: var(--accent-blue);
}

.breadcrumb-below-sec p {
    font-size: 38px;
    font-family: var(--inter-tight-font);
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
    font-weight: 400;
}



.step-section {
    padding: 60px 0;
}

.step-card-wrapper {
    background: #F4F4F4;
    border-radius: 32px;
    padding: 30px 30px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.06);
}

.step-img img {
    border-radius: 24px;
    width: 100%;
    height: auto;
    display: block;
}


.step-card-content {
    padding-left: 40px;
}

.step-number {
    font-size: 54px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e0e0e0;
    margin-bottom: 5px;
}

.step-title {
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.step-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #000000;
}

.assessment-wrap {
    margin-top: 25px;
}



.heading-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.heading-line h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.heading-line .line {
    flex-grow: 1;
    height: 1px;
    background: #11111159;
}


.assessment-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.assessment-wrap ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #474747;
}

.assessment-wrap ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid #BFF209;
    background: #CCFF14;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.column-2 {
    column-count: 2;
}

.step-2 {
    background: var(--background-yellow-linear);
}

.step-2 .step-number {
    color: #AFD91A;
    opacity: 0.8;
}

.step-3 {
    background: #DEE6FF;
}

.step-3 .step-number {
    color: #A4B5EB;
}

@media (max-width: 991.98px) {
    .step-card-wrapper {
        padding: 30px 22px;
    }

    .step-card-content {
        padding-left: 0;
        margin-top: 24px;
    }

    .step-number {
        font-size: 40px;
    }

    .step-title {
        font-size: 22px;
    }
}

/* Inner pages css end */



/* meet the team  start  */

/* Profile Card Styling */
.profile-card {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;

}

.profile-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.row {
    display: flex;
    flex-wrap: wrap;
}

.col-lg-6 {
    display: flex;
    align-items: stretch;

}


.profile-img img {
    max-width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.profile-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}


.profile-designation {
    font-size: 1rem;
    font-weight: 500;
    color: #777;
}


.profile-bio {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-top: 1rem;
    flex-grow: 1;

}


.profile-card {
    padding: 20px;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}


.profile-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* meet the team  end  */

/* testimonials  */


.testimonial-section {
    background: linear-gradient(135deg, #63d471, #2e79d4);
    padding: 80px 0;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.quote-box {
    max-width: 900px;
    margin-bottom: 60px;
}

.quote {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 300;
    border-left: 5px solid rgba(255, 255, 255, 0.6);
    padding-left: 20px;
}

.author {
    margin-top: 15px;
    font-size: 18px;
    opacity: 0.9;
}

.images-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.images-row img {
    width: 100%;
    height: auto;
    display: block;
}

.img-left {
    flex: 0 0 40%;
}

.img-right {
    flex: 0 0 55%;
}

@media (max-width: 768px) {
    .quote {
        font-size: 22px;
    }

    .images-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .img-left,
    .img-right {
        flex: 0 0 100%;
    }
}

/* testimonaila end */



/* product page css start  */


.woocommerce ul.products li.product {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}


.woocommerce ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
    border-color: #dcdcdc;
}


.woocommerce ul.products li.product a img {
    border-radius: 10px;
    transition: 0.3s ease;
    height: 260px;
    width: 100%;
    object-fit: cover;
}

.woocommerce ul.products li.product:hover a img {
    transform: scale(1.05);
}


.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 15px 0 8px;
    min-height: 45px;
}


.woocommerce ul.products li.product .price {
    font-size: 20px;
    font-weight: 700;
    color: #D10202;
    margin-bottom: 12px;
    display: block;
}


.woocommerce ul.products li.product .button {
    background: #ffeb00;
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s ease;
}


.woocommerce ul.products li.product .button:hover {
    background: #016BB3;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(1, 75, 130, 0.25);
}


.woocommerce span.onsale {
    background: #D10202;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 30px;
    top: 10px;
    left: 10px;
}


@media (max-width: 768px) {
    .woocommerce ul.products li.product {
        width: 47%;
        margin: 12px 1.5%;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products li.product {
        width: 100%;
        margin: 10px 0;
    }
}



#post-20 h1.entry-title {
    display: none;
}

/* product page css end  */


/* contac us page form */

/* WRAPPER */
.cf7-contact-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
    font-family: "Inter", Sans-serif;
}

/* TITLE */
.cf7-contact-wrapper .form-title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

/* GRID LAYOUT */
.form-row {
    margin-bottom: 18px;
    display: flex;
    gap: 16px;
}

.two-col {
    justify-content: space-between;
}

.two-col .form-field {
    width: 100%;
}

/* FIELD STYLING */
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d6d7da;
    border-radius: 10px;
    font-size: 15px;
    background: #fff;
    transition: 0.2s;
    font-family: inherit;
}

/* FOCUS EFFECT */
.form-field input:focus,
.form-field textarea:focus {
    border-color: #409cff;
    box-shadow: 0 0 0 3px rgba(64, 156, 255, 0.2);
    outline: none;
}

/* TEXTAREA */
.textarea-field textarea {
    min-height: 140px;
    resize: vertical;
}

/* BUTTON */
.cf7-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.cf7-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cf7-btn:active {
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .two-col {
        flex-direction: column;
    }
}

/* contac us page formend  */


/* service css  */

.service-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-category-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-category-box:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-category-box a {
    text-decoration: none;
    color: #000;
    display: block;
}

.category-img img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.service-category-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.category-btn {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
}


.featured-service-section .card ul {
    text-align: left;
}

/* service css  end  */

/* CSS ADDED BY MADHAV START */
.wof-section {
/*     padding: 100px 0; */
    background: #ffffff;
}

.wof-heading {
    font-size: 50px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
}

.wof-card {
    background: #f7f7f7;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transition: background 0.3s ease;
}

.wof-card:hover {
    background: linear-gradient(to bottom, #ccff14 0%, #f3fada 100%);
}

.wof-card-row {
    gap: 40px;
}

.wof-image-wrapper {
    background: #ffffff;
    border-radius: 22px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wof-image-wrapper img {
    max-width: 100%;
    border-radius: 16px;
}

.wof-card-title {
    font-size: 26px;
    font-weight: 500;
    color: #000;
    margin-bottom: 26px;
}

.wof-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wof-feature-list li {
    font-size: 16px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.wof-feature-list i {
    color: #3b82f6;
    font-size: 18px;
}

.wof-cta {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #111827;
    border-radius: 999px;
    font-size: 14px;
    color: #111827;
    text-decoration: none;
    transition: all 0.25s ease;
}

.wof-cta:hover {
    background: #ffd400;
    color: #000;
    border-color: #ffd400;
}

/* CSS ADDED BY MADHAV END */


/* CSS FOR SEARCH PAGE ADDED BY MADHAV */

article.product {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
	margin-bottom: 50px;
}

article.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

article.product .post-thumbnail {
    display: block;
    overflow: hidden;
}

article.product .post-thumbnail img {
    width: 300px;
    height: 260px;
    object-fit: contain;
	margin-bottom: 20px;
}

article.product .entry-header {
    padding: 20px 22px 10px;
}

article.product .entry-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

article.product .entry-title a {
    text-decoration: none;
    color: #1f2937;
    transition: color 0.3s ease;
}

article.product .entry-title a:hover {
    color: #880128;
}

article.product .entry-summary {
    padding: 0 22px 20px;
    flex-grow: 1;
}

article.product .entry-summary p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

article.product .entry-footer {
    padding: 16px 22px;
    border-top: 1px solid #eee;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

article.product .entry-footer a {
    text-decoration: none;
    color: #880128;
    font-weight: 500;
}

article.product .entry-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    article.product .entry-title {
        font-size: 20px;
    }

    article.product .post-thumbnail img {
        height: 220px;
    }
}
