@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

/* p {
    line-height: 2;
} */

:root {
    --primary-color: #A01C42;
    --bg-linear: linear-gradient(to bottom, #FFFFFF 0%, #FDE6E7 100%);
    --card-bg: rgba(255, 255, 255, 0.6);
    --card-blur: blur(16px);
    --text-color: #333;
    --bg-light: #f9f9f9;
    --bg-dark: #1a1a1a;
    --white: #fff;
}

body {
    font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h3,
h5,
h6 {
    font-family: "Instrument Sans", sans-serif;
}



/* Navbar styling */
img.logo-head {
    /* position: absolute; */
    /* top: 0; */
    width: 100px;
}



.navbar-custom {
    background-color: transparent;
    position: absolute;
    top: 0;
    z-index: 999;
    padding: 0.5rem 1rem;
    /* padding: 1.5rem 24px 1rem; */
    width: 100%;
}


.hamburger {
    width: 35px;
    height: 28px;
    border: none;
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    cursor: pointer;
    z-index: 1051;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(12px, 11px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Nav links */
.navbar-custom .navbar-nav .nav-link {
    color: #191919;
    /* margin: 0 10px; */
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link.active {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}


.faq-sec.icon {
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-sec .icon:hover {
    color: var(--primary-color);
}


.cart-icon {
    background-color: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.cart-icon .bi-cart {
    font-size: 1.2rem;
}



.btn-shop {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 25px;
    padding: 10px 28px;
    font-size: 1rem;
    border: none;
    box-shadow: 0 4px 10px rgb(145 44 73 / 0.4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.btn-shop i {
    font-size: 1.15rem;
    margin-left: 4px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

/* Hover state */
.btn-shop:hover {
    background-color: #000000;
    color: white;
}

.btn-shop:hover i {
    transform: rotate(0deg);
}


.center-logo {
    width: 200px !important;
    margin: 0 auto;
}

.main-wrapper h1 {
    font-weight: 500;
    font-size: 4rem;
    text-align: center;
}

.main-wrapper h1 span {
    font-weight: 700;
    color: var(--primary-color);
}

.main-img {
    overflow: hidden;
}

.main-wrapper {
    /* min-height: 100dvh; */
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: linear-gradient(to bottom, #fff, #f8f1f4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0px;
    /* padding-top: 200px; */
}

.bottom-table {
    position: absolute;
    bottom: -102px;
    max-height: 230px;
    object-fit: cover;
}

.main-container {
    display: grid;
    align-items: center;
    grid-template-columns: 33.33% 33.33% 33.33%;
    width: 100%;
    gap: 20px;
    position: relative;
    z-index: 2;
    padding-top: 245px;
}




.main-img img {
    max-height: 601px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

img.garlic-img {
    max-width: 400px;
    margin-top: 130px;
}

.hero-content {
    text-align: center;
    margin-top: -110px;
}

.left-img {
    left: 16px;
    position: absolute;
    max-height: 100px;
    transform: rotate(24deg);
    filter: blur(3px);
    top: 220px;
}



.right-img {
    right: -16px;
    position: absolute;
    max-height: 100px;
    transform: rotate(-24deg);
    filter: blur(3px);
    top: 220px;
}



/* Container positioning for nav */
.best-seller-section {
    position: relative;
    margin: 40px auto;
}

/* Navigation wrapper */
.best-seller-section .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

/* Nav Buttons */
.best-seller-section .owl-nav button.owl-prev,
.best-seller-section .owl-nav button.owl-next {
    background: white;
    border: 2px solid var(--primary-color);
    font-size: 1.5rem;
    color: var(--primary-color);
    pointer-events: all;
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

/* Hover Effects */
.best-seller-section .owl-nav button.owl-prev:hover,
.best-seller-section .owl-nav button.owl-next:hover {
    background: var(--primary-color);
    color: white;
}

/* Icon rotation */
.best-seller-section .owl-nav i {
    transform: rotate(360deg);
    display: inline-block;
    transition: transform 0.3s ease;
}

/* .best-seller-section .owl-nav .owl-next i {
    transform: rotate(-45deg);
} */

/* Remove rotation on hover */
.best-seller-section .owl-nav button.owl-prev:hover i,
.best-seller-section .owl-nav button.owl-next:hover i {
    transform: none !important;
}



/* Card Design */
.best-seller .card {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    padding: 30px;
    position: relative;
    text-align: center;
    border-radius: 14px;
    margin: 10px 0;
}

.best-seller .card img {
    max-width: 250px;
    max-height: 250px;
    object-fit: contain;
    margin: 0 auto;
}

.content-area p {
    margin: 0 0 0.5rem;
}

.price-product {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.shopping-cart img {
    width: 15px !important;
}

.shopping-cart {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 1px solid black;
    padding: 8px;
    border-radius: 50%;
}


.best-seller .item {
    margin: 0 1rem;
}

.title {
    font-size: 40px;
    margin-bottom: 1rem;
    font-weight: 400;
}

h2.title span {
    font-weight: 700;
}

.best-seller-section .title {
    margin-left: 1rem;
}



.infinite-section {
    overflow: hidden;
    padding: 1rem 0;
    background: #fdf9f8;
    position: relative;
    width: 100%;
}

.infinite-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    color: white;
    padding: 40px;
    border-radius: 20px;
    background: var(--primary-color);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.05);
    max-width: 1400px;
}

.infinite-image-side img {
    width: 100%;
    border-radius: 27px;
}

.infinite-card h2 {
    font-size: 80px;
    font-weight: 400;
}

.infinite-card .btn-shop {
    background: white;
    color: black;
}

.infinite-card .btn-shop:hover {
    background: var(--bg-dark);
    color: white;
}

.infinite-card-new .btn-shop:hover {
    background: var(--primary-color);
    color: white;
}


.feature-seller-section {
    padding: 2rem 0;
    overflow: hidden;
}

.feature-bg {
    background: linear-gradient(to right, #FDE6E7 0%, #FEF3F3 50%, #FDE6E7 100%);
}

.feature-img {
    background: white;
    padding-right: 15px;
}

.feature-img img {
    border-radius: 29px;
}

.feature-seller-section .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

/* Nav Buttons */
.feature-seller-section .owl-nav button.owl-prev,
.feature-seller-section .owl-nav button.owl-next {
    background: white;
    border: 2px solid var(--primary-color);
    font-size: 1.5rem;
    color: var(--primary-color);
    pointer-events: all;
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

/* Hover Effects */
.feature-seller-section .owl-nav button.owl-prev:hover,
.feature-seller-section .owl-nav button.owl-next:hover {
    background: var(--primary-color);
    color: white;
}

/* Icon rotation */
.feature-seller-section .owl-nav i {
    display: inline-block;
    transform: rotate(360deg);
    transition: transform 0.3s ease;
}



/* Remove rotation on hover */
.feature-seller-section .owl-nav button.owl-prev:hover i,
.feature-seller-section .owl-nav button.owl-next:hover i {
    transform: none !important;
}

/* Card Design */
.feature-seller .card {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    padding: 30px;
    position: relative;
    text-align: center;
    border-radius: 9px;
    margin: 10px 0;
}

.feature-seller .card img {
    max-width: 250px;
    max-height: 250px;
    object-fit: contain;
    margin: 0 auto;
}


.product-promo-section {
    background: #000;
}

.product-card {
    background: white;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 29px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #a01c42c2;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
    border-radius: 29px;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card>* {
    position: relative;
    z-index: 1;
}

.product-card:hover .product-content {
    color: white;
}

.product-card:hover .product-content span {
    border-color: white;
    background: white;
    color: #000;
}

.product-content {
    text-align: center;
    padding: 0 22px;
    /* display: flex; */
    align-items: center;
    /* justify-content: space-around; */
    gap: 20px;
}

.product-content p {
    font-size: 13px;
    font-style: italic;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.product-card img {
    max-height: 450px;
    height: 450px;
    margin: 0 auto;
    width: auto;
    position: relative;
    z-index: -1;
}

.product-content span {
    border: 1px solid #000;
    width: 45px;
    height: 45px;
    padding: 9px;
    border-radius: 50%;
}



.product-content span i {
    transform: rotate(-45deg);
    display: inline-block;
    transition: all .4s ease-in-out;
}

.why-shop-sec .infinite-card {
    background: #000;
}

.connect-us-sec {
    padding: 2rem 0;
}

.instagram-wrapper {
    display: flex;
    height: 100%;
    min-height: 400px;
    width: 100%;
    gap: 20px;
}


.instagram-wrapper>div {
    flex-shrink: 0;
    overflow: hidden;
}

.instagram-wrapper .left {
    width: 25%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.instagram-wrapper .center {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-wrapper .right {
    width: 25%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.instagram-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 43px;
}


.bottom-insta-btn i {
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    padding: 10px;
}

.bottom-insta-btn a {
    border: 1px solid var(--primary-color);
    padding: 8px 12px;
    display: flex;
    width: max-content;
    margin: 0 auto;
    gap: 7px;
    text-transform: uppercase;
    font-size: 20px;
    align-items: center;
    border-radius: 33px;
    min-width: 220px;
    justify-content: space-between;
    transition: all .3s ease-in-out;
}

.bottom-insta-btn a span {
    flex: 1;
}

.bottom-insta-btn a:hover {
    background: var(--primary-color);
    color: white;
}

.bottom-insta-btn a:hover i {
    background-color: white;
    color: var(--primary-color);
}

.bottom-insta-btn h3 {
    font-size: 40px;
    margin-bottom: 1rem;
    margin-top: 1rem;
    text-transform: capitalize;
    font-style: italic;
}






/* faq */

.faq-sec {
    background: url(../img/footer-banner.png) no-repeat center center / cover;
    padding: 3rem 1rem;
    color: var(--white);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    cursor: pointer;
    color: black;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #f0f0f0;
}

.icon {
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    background: var(--white);
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    /* You can increase this if needed */
    padding: 1rem 1.5rem;
}

.accordion-item.active .icon::before {
    content: "–";
}

.faq-sec .icon::before {
    content: "+";
}

/* Optional: Smooth border radius on first/last items */
.accordion-item:first-child .accordion-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.accordion-item:last-child .accordion-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* faq end */




.custom-footer {
    position: relative;
}

.custom-footer h6 {
    text-transform: uppercase;
}

.footer-image-section {
    position: relative;
}

.footer-img {
    width: 100%;
    max-height: 600px;
    display: block;
    object-fit: cover;
}

.subscribe-box {
    /* position: absolute;
    top: 249px;
    right: 80px; */
    background: #232323;
    padding: 40px 30px;
    border-radius: 15px;
    max-width: 450px;
    width: 100%;
    min-height: 500px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.subscribe-heading {
    font-size: 45px;
    font-weight: normal;
    margin-bottom: 14px;
}

.subscribe-desc {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
}

.subscribe-form input {
    width: 100%;
    padding: 12px 18px;
    border-radius: 30px;
    outline: none;
    font-size: 14px;
    background: transparent;
    border: 1px solid white;
    color: white;
}

.subscribe-icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subscribe-icon-wrap button {
    border: none;
    background-color: transparent;
}

.subscribe-icon {
    background: #fff;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.subscribe-btn-label {
    color: #fff;
    margin-top: 8px;
    letter-spacing: 1px;
    font-size: 13px;
}

.disclaimer {
    font-size: 14px;
    color: #d6c5c5;
    border-top: 1px solid white;
    padding: 10px;
}



.footer-links {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.footer-links li {
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-links a {
    text-decoration: none;
    color: inherit;
    transition: all .3s ease-in-out;
    text-transform: capitalize;
}

.footer-links a:hover {
    text-decoration: underline;
    margin-left: 10px;
    color: var(--primary-color);
}

.copy-right {
    text-align: center;
    border-top: 1px solid #8c87874a;
    margin-top: 1rem;
    padding: 0.5rem 0;
}

.copy-right p {
    padding: 0;
    margin: 0;
}

.logo-footer img {
    max-width: 150px;
}

/* New css for about page */

.breadcrumb-sec {
    background: var(--bg-linear);
    padding-top: 150px;
    padding-bottom: 2rem;
    text-align: center;
}

.breadcrumb-sec ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 9px;
    font-weight: 500;
    text-transform: capitalize;
}

.breadcrumb-sec h1 {
    font-size: 50px;
}

.breadcrumb-sec ul li:last-child a {
    pointer-events: none;
}


.comments_wrapper {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 5rem 5rem;
    border-radius: 48px;
}

.comments_wrapper p {
    font-size: 35px;
    margin: 2rem 0;
}

.comments_wrapper span {
    font-size: 20px;
    font-weight: 600;
}


.image-wrapper {
    overflow: hidden;
    display: inline-block;
    border-radius: 55px;
}

.image-wrapper img {
    transition: transform 0.5s ease;
    transform: scale(1);
}

.image-wrapper:hover img {
    transform: scale(1.1);
}

.about-wrapper {
    padding: 2rem 0;
}

.title-wrapper h2 {
    font-size: 40px;
    text-transform: capitalize;
    margin: 1rem 0;
}

.title-wrapper h2 span {
    font-weight: 700;
}

.title-wrapper>span:first-of-type {
    color: var(--primary-color);
}

.mission-wrapper {
    background: linear-gradient(to bottom, #FDE6E7 0%, #FEF3F3 50%, #FDE6E7 100%);
    padding: 2rem 0;
}

.value-sec .card img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.value-sec .card {
    text-align: center;
    border: 1px solid #E6E6E6;
}

.value-sec .card h3 {
    margin: 1rem 0;
}

.value-sec .card p {
    line-height: normal;
    font-style: italic;
}

.value-sec .card {
    text-align: center;
    border: 1px solid #E6E6E6;
    padding: 30px;
    height: 100%;
    border-radius: 30px;
}

.value-sec {
    padding: 2rem 0;
}

.founder-sec {
    background: url(../img/Our-Founder-bg.png) center center / cover no-repeat;
    padding: 2rem 0;
}

.founder-sec .image-wrapper {
    border-radius: 29px;
}

.founder-content {
    background: white;
    border-radius: 29px;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.view-more {
    color: var(--primary-color);
}

.view-more:hover {
    text-decoration: underline;
}

.certificate-sec {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
}

.certificate-wrapper {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    text-align: center;
}

.certificate-wrapper div {
    flex: 1;
}

.certificate-wrapper div p {
    font-style: italic;
}

.certificate-wrapper img {
    height: 80px;
    width: auto;
    margin: 1rem 0;
}

.certificate-sec h3 {
    font-size: 22px;
    font-weight: 400;
    margin: 11px 0;
}

.any-questions {
    padding: 3rem 0;
    text-align: center;
}

.any-questions p {
    font-size: 18px;
}

.any-questions p span {
    color: var(--primary-color);
}


/* end */


/* resource page css start */
.garlic-storage {
    padding: 2rem 0;
}

.border {
    width: 100%;
    height: 1px;
    background-color: black;
}


.product-storage .title-wrapper h2 {
    margin: 0 auto;
    margin-top: -27px;
    background: white;
    width: max-content;
    text-align: center;
}

.storage-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    text-align: center;
    border-radius: 13px 13px 0 0;
    overflow: hidden;
    margin: 20px 0;
}

.storage-table th {
    background-color: #ddd;
    font-weight: bold;
    padding: 12px;
    border: 1px solid #ccc;
}

.storage-table td {
    padding: 12px;
    border: 1px solid #ccc;
    vertical-align: top;
}

.card-wrapper {
    background: white;
    padding: 25px;
    margin: 1rem 0;
    border-radius: 29px;
}

.card-wrapper img {
    border-radius: 40px;
}

.Breathe-sec {
    padding: 2rem 0;
}

.default-card {
    border: 1px solid #D5D5D5;
    height: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 25px;
    border-radius: 29px;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
}

.bg-colr {
    background: var(--primary-color);
    color: white;
}

/* resource page css end */

/* health page css start */

section.benifits-sec {
    padding: 2rem 0;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    display: flex;
    margin: 2rem 0;

}

.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    margin-right: 8px;
    border: 1px solid var(--primary-color);
    height: fit-content;
    padding: 1px 5px;
    border-radius: 2px;
}

.tab-data {
    background: var(--primary-color);
    width: fit-content;
    padding: 10px 23px;
    border-radius: 23px;
    font-size: 17px;
    color: white;
    margin: 3rem 0;
}

.benifit-img img {
    width: 100%;
    border-radius: 57px;
}


.active-components-sec {
    background: black;
    color: white;
    padding: 2rem 0;
}


.components-wrapper {
    background: white;
    color: black;
}

.components-wrapper {
    background: white;
    color: black;
    padding: 30px;
    border-radius: 29px;
    margin-bottom: 2rem;
}

.components-wrapper .check-list li {
    margin: 1rem 0;
    font-weight: 600;
}

.components-wrapper .check-list li::before {
    padding: 1px 4px;
    font-size: 12px;
}

.components-wrapper ol {
    counter-reset: step;
    list-style: none;
    padding-left: 0;
}

.components-wrapper ol li {
    counter-increment: step;
    /* display: flex; */
    align-items: self-start;
    margin-bottom: 1rem;
    font-weight: 600;
}

.components-wrapper ol li p {
    font-weight: normal;
    margin: 1rem 0;
}

.components-wrapper ol li::before {
    content: counter(step);
    line-height: 32px;
    margin-right: 11px;
    background-color: #ffffff;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
    font-weight: bold;
    padding: 0px 8px;
}

.other-benifits {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
}

.other-benifits .title-wrapper {
    border-bottom: 1px solid #ffffff;
}

.other-benifits h2 {
    padding: 1rem 0;
}

.other-benifits-list {
    padding: 0;
}

.other-benifits-list a {
    display: block;
    margin: 1rem 0;
    text-decoration: underline;
    font-weight: 300;
}

/*  health page css end */


/* recipes page css start */

.recipes-sec {
    padding: 2rem 0;
}



.recipes-sec .card {
    height: 100%;
    padding: 20px;
    border: 1px solid #D5D5D5;
    text-align: center;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
    border-radius: 29px;
    transition: .3s;
}

.recipes-sec .card img {
    border-radius: 27px;
    margin: 1rem;
}

.recipes-sec .card h3 {
    color: var(--primary-color);
    transition: .3s;
}

.recipes-sec .card:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.Additional-wrapper {
    background: var(--primary-color);
    color: white;
}

.Additional-wrapper .btn-shop {
    background: black;
}

.Additional-wrapper {
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    text-align: center;
    border-radius: 48px;
}

.Additional-wrapper h3 {
    font-size: 45px;
    font-weight: 500;
}


.title-wrapper p span {
    color: var(--primary-color);
}

/* recipes page css end */




/* blog page css start */
.blog-card {
    background-color: white;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 30px;
    color: black;
    padding: 30px;
    margin: 2rem 0;
    align-items: center;
    border: 1px solid #D5D5D5;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    border-radius: 29px;
    transition: .3s;
}

.blog-card:hover {
    background: var(--primary-color);
    color: white;
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    gap: 20px;
    padding: 20PX;
}

.blog-card img {
    width: 100%;
    border-radius: 29px;
}

.blog-card h3 {
    font-size: 45px;
    font-weight: 500;
}

.blog-card .meta span {
    margin-right: 10px;
    color: black;
}

.blog-card-content:hover .meta span {
    color: white;
}

.woocommerce-Address-title h2 {
    text-transform: capitalize !important;
}

/* blog page css end */


/* contact page css start */
.contact-card {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 46px;
    padding: 40px;
}


.contact-card label {
    margin: 0.5rem 0;
}


.contact-card h3 {
    margin-bottom: 1rem;
    font-size: 36px;
}

.contact-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-input {
    display: block;
    width: 100%;
    background: white;
    color: #333;
    border: none;
    border-radius: 6px;
    padding: 10px 15px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(160, 28, 66, 0.3);
    /* Fallback to color directly */
}

.submit-btn {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: white;
    color: black;
}

.contact-info h6 {
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    margin: 1rem 0;
    padding: 8px 0;
}

.contact-info p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    color: #333;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    text-decoration: underline;
    color: #800b32;

}

.contact-sec {
    padding: 3rem;
}


.follow-section p {
    font-size: 2rem;
}

.social-icons .social-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.social-icons .social-icon:hover {
    transform: scale(1.1);
}


.social-icons .facebook {
    color: #1877f2;
}

.social-icons .instagram {
    color: #e4405f;
}

.social-icons .youtube {
    color: #ff0000;
}

.social-icons .linkedin {
    color: #0077b5;
}

.social-icons .twitter {
    color: #000;
}



.talk-to-us {
    background: var(--bg-linear);
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.talk-to-us .contact-card {
    background: var(--card-bg);
    backdrop-filter: var(--card-blur);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.talk-to-us .contact-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.talk-to-us .title {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.talk-to-us .info-block {
    margin: 20px 0;
}

.talk-to-us .info-block i {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: inline-block;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding-top: 5px;
}

.talk-to-us .info-block strong {
    display: block;
    margin-top: 8px;
    font-size: 1.1rem;
    color: #222;
}

.talk-to-us .info-block p,
.talk-to-us .info-block a {
    font-size: 1rem;
    color: #333;
    margin: 4px 0;
    text-decoration: none;
}

.talk-to-us .info-block a:hover {
    text-decoration: underline;
}

.talk-to-us .btn-shop {
    margin-top: 40px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 40px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(160, 28, 66, 0.3);
    transition: all 0.3s ease;
}

.talk-to-us .btn-shop:hover {
    background: #8c1235;
    transform: translateY(-3px);
}

@media (max-width: 600px) {
    .talk-to-us .title {
        font-size: 2rem;
    }

    .talk-to-us .contact-card {
        padding: 30px 20px;
    }
}



/* contact page css end */

/* shop page css start */

.filter-wrapper {
    font-size: 15px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clear-btn {
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
    background: #a01c42;
    padding: 6px 10px;
    border-radius: 4px;
}

.filter-group {
    margin: 1rem 0;
    border-bottom: 1px solid #7D7D7D;
}

button.clear-btn span {
    border: 1px solid;
}

.filter-title {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.arrow {
    font-size: 12px;
    transition: transform 0.2s ease;
    transform: rotate(-90deg);
}

.filter-title.active .arrow {
    transform: rotate(0deg);
}

.filter-content {
    display: block;
    margin: 25px 0;
}

.filter-content.collapsed {
    display: none;
}

.filter-group label {
    display: block;
    margin: 0.25rem 0;
    cursor: pointer;
}

.range-slider {
    position: relative;
    height: 2rem;
}

.range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #000;
    pointer-events: none;
    appearance: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    cursor: pointer;
    appearance: none;
    z-index: 3;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    justify-content: flex-start;
}



.price-inputs input {
    width: 100%;
    padding: 4px;
    border: 1px solid #ccc;
}



.shop-card {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    padding: 30px;
    position: relative;
    text-align: center;
    border-radius: 14px;
    margin: 10px 0;
}

.shop-card img {
    max-width: 250px;
    max-height: 250px;
    object-fit: contain;
    margin: 0 auto;
}

.product-grid {
    padding: 0 20px;
}

.shop-card .content-area {
    text-align: left;
    margin: 1rem 0;
}

.shop-card .shopping-cart {
    position: absolute;
    top: 6px;
    right: 6px;
    border: 1px solid black;
    padding: 3px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
}

/* shop page css end */

.main-wrapper .owl-nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
}

.main-wrapper .owl-nav button.owl-prev,
.main-wrapper .owl-nav button.owl-next {
    background: white;
    border: 2px solid var(--primary-color);
    font-size: 1.5rem;
    color: var(--primary-color);
    pointer-events: all;
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.main-wrapper .owl-nav button.owl-prev:hover,
.main-wrapper .owl-nav button.owl-next:hover {
    background: var(--primary-color);
    color: white;
}

.main-wrapper .owl-nav i {
    transform: rotate(360deg);
    display: inline-block;
    transition: transform 0.3s ease;
}

.main-wrapper .owl-nav button.owl-prev:hover i,
.main-wrapper .owl-nav button.owl-next:hover i {
    transform: none !important;
}



/* New css */
nav .container {
    padding: 0;
}

.gjs-row input {
    width: 100%;
    padding: 10px 18px;
    border-radius: 35px;
    border: navajowhite;
}

input[type="submit"] {
    background: var(--primary-color);
    transition: .3s;
    color: white;
}

input[type="submit"]:hover {
    background: white;
    color: #000;
}

.shopping-cart .added_to_cart {
    position: absolute;
    left: -94px;
    top: -10px;
    background: var(--primary-color);
    color: white;
    padding: 3px 8px;
    z-index: 11;
    border-radius: 5px;
}

.content-area p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

ul.page-numbers {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
}

/* Single Post Wrapper */
.single-post {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
}

/* Post Title */

/* Single Post Container */
.single-post {
    padding: 40px 20px;
    background: #fff;
}

/* Post Title */
.single-post h1.entry-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
    line-height: 1.2;
    text-align: center;
}

/* Meta Info (Author, Date, Categories) */
.single-post .post-meta {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 40px;
    text-align: center;
    font-style: italic;
}

/* Post Content */
.single-post .entry-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
}

.single-post .entry-content p {
    margin-bottom: 20px;
}

.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-color, #0073e6);
}

/* Images */
.single-post .entry-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
}

/* Blockquotes */
.single-post blockquote {
    border-left: 4px solid var(--primary-color, #0073e6);
    padding: 15px 20px;
    margin: 30px 0;
    font-style: italic;
    background: #f9f9fc;
    border-radius: 8px;
}

.contact-card .wpcf7-not-valid-tip {
    background: white;
    padding: 4px 6px;
}


/* Comment Form Wrapper */
#respond,
.comment-respond {
    margin-top: 60px;
    padding: 30px 0;
    /* background: #f9f9fc; */
    border-radius: 16px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); */
}

/* Title */
#reply-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

/* Input Fields */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: #fff;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--primary-color, #0073e6);
    box-shadow: 0 0 6px rgba(0, 115, 230, 0.2);
    outline: none;
}

/* Submit Button */
.comment-form input[type="submit"] {
    background: var(--primary-color, #0073e6);
    color: #fff;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form input[type="submit"]:hover {
    background: var(--bg-dark);
    color: white;
    transform: translateY(-2px);
}

.blog-card-content {
    padding: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.active-components-sec .components-wrapper:first-of-type {
    margin-top: 36px;
}


/* Thank You Page css start */
.woocommerce-order {
    max-width: 850px;
    margin: 50px auto;
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    font-family: "Inter", "Segoe UI", sans-serif;
    color: #333;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.woocommerce-order::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #a01c42;
    border-radius: 20px 20px 0 0;
}

/* ================================
   SUCCESS ICON + TITLE
================================== */
.woocommerce-order .success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #a01c42;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.2rem;
    box-shadow: 0 4px 10px rgba(160, 28, 66, 0.3);
}

.woocommerce-thankyou-order-received {
    font-size: 2.2rem;
    font-weight: 700;
    color: #a01c42;
    margin-bottom: 25px;
}

/* ================================
   ORDER OVERVIEW CARDS
================================== */
.woocommerce-order-overview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: #fafafa;
    border-radius: 14px;
    list-style: none;
}

.woocommerce-order-overview li {
    padding: 18px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
}

.woocommerce-order-overview li:hover {
    border-color: #a01c42;
    box-shadow: 0 4px 12px rgba(160, 28, 66, 0.1);
}

.woocommerce-order-overview strong {
    display: block;
    font-weight: 700;
    margin-top: 6px;
    color: #111;
}

/* ================================
   ORDER DETAILS
================================== */
.woocommerce-order-details {
    margin-top: 35px;
    text-align: left;
}

.woocommerce-order-details h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #a01c42;
    margin-bottom: 15px;
}

.woocommerce-table--order-details {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
    padding: 14px 16px;
    border: 1px solid #eee;
    font-size: 0.95rem;
}

.woocommerce-table--order-details th {
    background: #f4f4f6;
    font-weight: 600;
    color: #a01c42;
}

/* ================================
   CUSTOMER DETAILS
================================== */
.woocommerce-customer-details {
    margin-top: 30px;
    text-align: left;
}

.woocommerce-customer-details h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #a01c42;
    margin-bottom: 15px;
}

.woocommerce-customer-details address {
    padding: 18px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #eee;
    font-style: normal;
    line-height: 1.6;
}

/* ================================
   BUTTONS
================================== */
.woocommerce-order a.button {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 34px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    background: #a01c42;
    color: #fff;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce-order a.button:hover {
    background: #861737;
    box-shadow: 0 4px 12px rgba(160, 28, 66, 0.3);
}

/* Thank You Page css end */

.card.h-100 img {
    object-fit: contain;
}

.card.h-100 {
    text-align: center;
}

h5.card-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-size: 16px;
    margin: 1rem 0;
}

.breadcrumb-sec h1 {
    text-transform: capitalize;
}

.breadcrumb-nav span {
    text-transform: capitalize;
}

.woocommerce-variation-add-to-cart {
    display: flex;
    gap: 10px;
    align-items: center;
}




/* Container for the Account Page Section */
.page-content-section {
    background-color: #f8f8f8;
    padding: 60px 0;
    font-family: 'Arial', sans-serif;
    color: #333;
}

/* Inner Page Content */
.page-content .woocommerce {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Navigation Menu */
.woocommerce-MyAccount-navigation {
    margin-bottom: 30px;
}

.woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.woocommerce-MyAccount-navigation li {
    flex: 1 1 auto;
}

.woocommerce-MyAccount-navigation a {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background-color: #f1f1f1;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation .is-active a {
    background-color: #a01c42;
    color: #fff;
}

/* Account Content Area */
.woocommerce-MyAccount-content {
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #fff;
}

.woocommerce-MyAccount-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.woocommerce-MyAccount-content a {
    color: #a01c42;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.woocommerce-MyAccount-content a:hover {
    color: #a01c42;
}

/* Notices Wrapper */
.woocommerce-notices-wrapper {
    margin-bottom: 20px;
}

.woocommerce-Address .title {
    font-size: 20px;
}

header.woocommerce-Address-title.title a {
    background: #a01c42;
    color: white;
    padding: 8px 12px;
    display: inline-block;
    text-transform: none;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    margin: 1rem 0;
    transition: all .3s;
}

header.woocommerce-Address-title.title a:hover {
    background: var(--text-color);
    color: white;
}

.woocommerce table.cart td.actions .input-text {
    width: 100%;
}

.actions {
    padding: 20px;
    text-align: right;
    background: #fafafa;
    border-top: 2px solid #eee;
}

/* Coupon Box */
.actions .coupon {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.actions .coupon input.input-text {
    flex: 1;
    min-width: 200px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.actions .coupon input.input-text:focus {
    border-color: var(--primary-color, #ff416c);
    outline: none;
}

/* Coupon Button */
.actions .coupon .button {
    background: var(--primary-color, #ff416c);
    color: #fff;
    border: none;
    padding: 16px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.actions .coupon .button:hover {
    background: #e63e62;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 65, 108, 0.3);
}

/* Update Cart Button */
.actions .update-cart {
    margin-left: 10px;
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.actions .update-cart:disabled {
    background: #bbb;
    cursor: not-allowed;
}

.actions .update-cart:not(:disabled):hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-quantity .quantity {
    margin: 0 !important;
}

.woocommerce .quantity .qty {
    border: none;
}

.woocommerce-cart-form td.product-thumbnail img {
    width: 81px;
    height: 80px;
}

p#coupon-error-notice {
    color: #ff0505;
    padding: 0;
    margin: 0;
}

button.btn-close.ms-auto.m-2 {
    float: right !important;
    color: red !important;
    opacity: 1;
}

.shop_attributes tr,
.shop_attributes td,
.shop_attributes th {
    border: 1px solid #191919 !important;
    padding: 8px 16px;
}

/* Responsive */

@media (min-width: 1650px) {
    .best-seller-section .owl-prev {
        transform: translateX(-30px);
    }

    .best-seller-section .owl-next {
        transform: translateX(30px);
    }

    .container {
        max-width: 1500px;
        padding: 0 10px;
    }



}


@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 10px;
    }

    .navbar-nav .nav-link {
        text-align: center;
        display: block;
        margin: 5px auto;
    }

    .cart-icon span.d-lg-inline {
        display: none !important;
    }

    .hero-content h1 br {
        display: none;
    }

    .main-wrapper h1 {
        font-weight: 500;
        font-size: 25px;
    }

    .main-img img {
        max-height: 430px;
    }

    .center-logo {
        width: 120px !important;
    }

    /* .container,
    .container-md,
    .container-sm {
        max-width: 100%;
        padding: 0 30px;
    } */

    .main-container {
        gap: 0;
    }



    .product-content h3 {
        font-size: 22px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
    }

    .product-card img {
        max-height: 220px;
        height: 220px;
        object-fit: contain;
    }

    .infinite-card h2 {
        font-size: 45px;
    }

    .bottom-table {
        bottom: -80px;
    }

    .blog-card {
        grid-template-columns: 100%;
    }

    .blog-card img {
        max-width: 400px;
        margin: 0 auto;
    }

    .blog-card .img-wrap {
        text-align: center;
    }

    .blog-card h3 {
        font-size: 32px;
    }

    .breadcrumb-sec h1 {
        font-size: 32px;
    }

    .contact-card {
        border-radius: 20px;
    }

    .woocommerce-order {
        padding: 30px 20px;
    }

    .woocommerce-thankyou-order-received {
        font-size: 1.8rem;
    }

    .woocommerce-order-overview {
        gap: 15px;
    }

    .woocommerce-order-overview li {
        flex: 1 1 45%;
    }

    .price-inputs input {
        width: 140px;
    }
}


@media (max-width:767px) {
    .woocommerce-MyAccount-navigation ul {
        flex-direction: column;
    }

    .woocommerce-MyAccount-navigation a {
        text-align: left;
    }

    .infinite-image-side img {
        max-height: 400px;
        object-fit: cover;
        margin-top: 16px;
    }

    img.animate-img,
    .bottom-table {
        display: none !important;
    }

    .main-container {
        grid-template-columns: 100%;
        min-height: 350px;
    }

    .main-wrapper .owl-nav button.owl-prev,
    .main-wrapper .owl-nav button.owl-next {
        display: none;
    }

    .right-img,
    .left-img {
        display: none;
    }

    .main-wrapper h1 {
        font-size: 36px;
        margin: 1rem 0;
    }

    .instagram-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .instagram-wrapper .left,
    .instagram-wrapper .right,
    .instagram-wrapper .center {
        width: 100%;
    }

    .hero-content {
        padding-bottom: 1rem;
    }

    .title {
        font-size: 30px;
    }

    .infinite-card h2 {
        font-size: 32px;
    }

    .bottom-insta-btn h3 {
        font-size: 30px;
    }

    .breadcrumb-sec {
        padding-top: 100px;
    }

    .breadcrumb-sec h1 {
        font-size: 25px;
    }

    img.logo-head {
        width: 70px;
    }


}

/* Mobile */
@media (max-width: 600px) {
    .woocommerce-order {
        margin: 20px;
        padding: 20px 15px;
        border-radius: 16px;
    }

    .woocommerce-order .success-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .woocommerce-thankyou-order-received {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .woocommerce-order-overview {
        flex-direction: column;
        padding: 15px;
    }

    .woocommerce-order-overview li {
        flex: 1 1 100%;
        padding: 14px;
        font-size: 0.9rem;
    }

    .woocommerce-order-details h2,
    .woocommerce-customer-details h2 {
        font-size: 1.2rem;
    }

    .woocommerce-table--order-details th,
    .woocommerce-table--order-details td {
        padding: 10px;
        font-size: 0.85rem;
    }

    .woocommerce-order a.button {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }
}

@media (max-width:480px) {

    .container,
    .container-md,
    .container-sm {
        padding: 0 15px;
    }

    .infinite-card h2 {
        font-size: 35px;
    }

    .woocommerce .woocommerce-customer-details address {
        font-size: 13px;
    }

    .coupon {
        flex-direction: column;
    }

    table.cart td.actions .coupon .input-text,
    .woocommerce table.cart td.actions .coupon input {
        width: 100% !important;
    }

    .woocommerce table.cart td.actions .coupon .button {
        width: 100% !important;
    }

    .woocommerce #content table.cart td.actions .coupon .coupon-error-notice,
    .woocommerce table.cart td.actions .coupon .coupon-error-notice,
    .woocommerce-page #content table.cart td.actions .coupon .coupon-error-notice,
    .woocommerce-page table.cart td.actions .coupon .coupon-error-notice {
        text-align: center;
        width: 100% !important;
    }

    .woocommerce form .form-row-first,
    .woocommerce form .form-row-last,
    .woocommerce-page form .form-row-first,
    .woocommerce-page form .form-row-last {
        width: 100% !important;
    }

    .blog-card img {
        max-width: 200px;
        margin: 0 auto;
    }

}

@media (max-width:400px) {
    .blog-card-content .small {
        font-size: 12px;
    }
}