@import url('css2.css');

.menu-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
}

/* .container {
    width: 80%;
    margin: 0px auto;
} */
@keyframes rotate{
    from{ transform: rotate(-360deg); }
    to{ transform: rotate(360deg); }
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
:root {
    --animate-delay: 0.5s;
}
.menu-toggle-btn {
    display: none;
}
h2 {
    font-size: 50px;
    line-height: 50px;
    color: #000000;
    margin-bottom: 0px;
}
p {
    font-family: 'Inter' , sans-serif;
    font-size: 18px;
    color: #000000;
    margin-bottom: 0px;
}
ul {
    margin: 0;
    padding: 0;
}
header {
    padding: 25px 0;
}
section {
    margin: 100px 0px;
}
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-25 {
    padding: 0px;
}
select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-color: #fafafa;
    height: 45px;
    width: 100%;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAMAAACtdX32AAAAdVBMVEUAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhMdQaAAAAJ3RSTlMAAAECAwQGBwsOFBwkJTg5RUZ4eYCHkJefpaytrsXGy8zW3+Do8vNn0bsyAAAAYElEQVR42tXROwJDQAAA0Ymw1p9kiT+L5P5HVEi3qJn2lcPjtIuzUIJ/rhIGy762N3XaThqMN1ZPALsZPEzG1x8LrFL77DHBnEMxBewz0fJ6LyFHTPL7xhwzWYrJ9z22AqmQBV757MHfAAAAAElFTkSuQmCC);
    background-position: 100%;
    background-repeat: no-repeat;
    border: 1px solid #ccc;
    padding: 0.5rem;
    border-radius: 0;
}

/* Image Hover Effect - Start */

.img-hover-effect {
position: relative;
}
.img-hover-effect:hover::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(138, 63, 127, 0.75);
display: block;
}
.img-hover-effect:hover::after {
content: attr(data-img-title);
position: absolute;
top: 50%;
left: 50%;
font-family: 'Inter', sans-serif;
font-size: 25px;
line-height: 28px;
font-weight: 600;
transform: translate(-50%, -50%);
color: #ffffff;
text-align: center;
}

/* Image Hover Effect - End */


/* Text Alignment - Start */

.align-left {
text-align: left !important;
}
.align-right {
text-align: right !important;
}
.align-center {
text-align: center !important;
}
.right-align {
    text-align: right;
}
.center-align {
    text-align: center;
}

/* Text Alignment - End */

/* Menu - Start */

.mobile-menu {
    display: none;
}
.menu-wrapper {
    align-items: center;
    justify-content: space-between;
}
.menu-wrapper .menu-logo {
    width: 10%;
    height: auto;
}
.menu-wrapper .menu-logo img {
    width: 100%;
    height: 100%;
}
.menu-wrapper .main-menu-options .menu-options-list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: #f2f2f2;
    padding: 15px 0px;
    border-radius: 20px;
}
.menu-wrapper .logo-initial {
    display: none;
}
.menu-wrapper .menu-toggle-btn {
    display: none;
}
.menu-wrapper .main-menu-options .menu-options-list .icon-wrapper .search-bar-icon {
    display: none;
}
.search-bar {
    width: 100% !important;
    height: 100% !important;
    background: #ffffff;
    padding: 4px 0px 4px 10px;
    border-radius: 10px;
    border: 1px solid #8d8d8d;
}
.search-bar input {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: transparent;
    border: none;
    color: #8d8d8d;
    outline: none;
}
.menu-wrapper .main-menu-options .menu-options-list .menu-options.icon-wrapper {
    display: flex;
    align-items: center;
}
.menu-wrapper .main-menu-options .menu-options-list .menu-options .options {
    text-decoration: none;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    color: #000000;
    position: relative;
}
.menu-wrapper .main-menu-options .menu-options-list .menu-options .options.active-menu {
    font-weight: 700;
    color: #8A3F7F;
}
.menu-wrapper .main-menu-options .menu-options-list .menu-options .options:hover {
    color: #8A3F7F;
}
.menu-wrapper .main-menu-options .menu-options-list .menu-options .options::after {
    width: 0%;
    transition: width 0.5s;
}
.menu-wrapper .main-menu-options .menu-options-list .menu-options .options:hover::after, .menu-wrapper .main-menu-options .menu-options-list .menu-options .options.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background-color: #8A3F7F;
}
.menu-wrapper .main-menu-options .menu-options-list .menu-options.icon-wrapper .options {
    width: 30px;
    height: 100%;
    margin: 0px 5px;
}
.menu-wrapper .main-menu-options .menu-options-list .menu-options.icon-wrapper .options a {
    text-decoration: none;
}
.menu-wrapper .main-menu-options .menu-options-list .menu-options.icon-wrapper .options .fa-solid {
    color: #000000;
    font-size: 20px;
    text-align: center;
}
.menu-wrapper .main-menu-options .menu-options-list .menu-options.icon-wrapper .options:hover .fa-solid {
    color: #8A3F7F;
}
.menu-wrapper .main-menu-options .menu-options-list .menu-options.icon-wrapper .options.active-menu .fa-solid {
    color: #8A3F7F;
}
.menu-wrapper .main-menu-options .menu-options-list .menu-options.icon-wrapper .options:hover::after {
    display: none;
}

/* Menu - End */


/* Hero Section - Start */

.section-title {
    font-family: 'Chonburi';
    font-size: 50px;
    line-height: 57px;
    margin: 0px;
    padding: 0px;
    color: #000000;
}
.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 32px;
    margin-top: 30px;
    margin-bottom: 0px;
    padding: 0px;
    color: #000000;
}
.section-title .line, .section-subtitle .line {
    position: relative;
    overflow: hidden;
}
.section-title .line .line-text, .section-subtitle .line .line-text {
    display: block;
}
.first-section {
    margin-top: 130px;
}
.hero-main-wrapper {
    position:relative;
}
.slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.slider-wrapper .slider-content {
    width: 50%;
    background: #8A3F7F;
    height: 400px;
    border-radius: 0px 40px 40px 0px;
    margin-right: 10px;
}
.slider-wrapper .slider-content .slider-text {
    color: #ffffff;
    padding: 75px 100px 75px 75px;
}
.slider-wrapper .slider-content .slider-text .slider-title {
    font-family: "Chonburi", serif;
    font-size: 50px;
    color: #ffffff;
    line-height: 58px;
    margin-bottom: 30px;
    padding-right: 50px;
    margin-top: 0px;
}
.slider-wrapper .slider-content .slider-text .slider-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    color: #ffffff;
    line-height: 25px;
    margin-bottom: 0px;
    margin-top: 0px;
    width: 75%;
}
.slider-wrapper .slider-content .slider-text .slider-title .line, .slider-wrapper .slider-content .slider-text .slider-subtitle .line {
    overflow: hidden;
    position: relative;
}
.slider-wrapper .slider-content .slider-text .slider-title .line .line-text, .slider-wrapper .slider-content .slider-text .slider-subtitle .line .line-text {
    display: block;
}
.slider-wrapper .slider-img-wrapper {
    width: 50%;
    height: 400px;
    margin-left: 10px;
    border-radius: 40px 0px 0px 40px;
    overflow: hidden;
}
.slider-wrapper .slider-img-wrapper .slider-img {
    width: 100%;
    height: 100%;
    float: right;
    object-fit: cover;
}
.circular-button {
    width: 150px;
    height: 150px;
    background: #000000;
    border-radius: 50%;
    margin: auto;
    position: absolute;
    top: 125px;
    left: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-cta-button {
    position: relative;
    border-radius: 50%;
    transform: rotate(-50deg);
    bottom: 20%;
    right: 31%;
}
.main-cta-button .cta-button-text span {
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    height: 60px;
    position: absolute;
    width: 20px;
    left: 0;
    top: 0;
    transform-origin: bottom center;
    color: #ffffff;
}
.circular-button-wrapper .circular-button .small-circle {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #ffffff;
}
.slider-dots {
    margin: 30px auto 0px;
    height: 5px;
    width: fit-content;
    align-items: center;
    justify-content: space-between;
}
.slider-dots ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.slider-dots ul li {
    background: #f2f2f2;
    height: 100%;
    width: 15px;
    border-radius: 10px;
    display: inline-block;
    margin: 0px 3px;
    cursor: pointer;
}
.slider-dots ul li.slick-active {
    background: #BDBDBD;
    height: 100%;
    width: 50px;
    border-radius: 10px;
}
.slider-dots ul li button {
    display: none;
}

/* Hero Section - End */


/* Background Grey Patch - Start */

.bg-patch {
    background: #f2f2f2;
    width: 55%;
    height: 250px;
    position: absolute;
    z-index: -1;
}
.bg-patch.right {
    top: 0;
    right: 0px;
    border-radius: 40px 0px 0px 40px;
}
.bg-patch.right-bottom {
    bottom: 0;
    right: 0px;
    border-radius: 40px 0px 0px 40px;
}
.bg-patch.left {
    border-radius: 0px 40px 40px 0px;
    top: 0;
    left: 0;
}
.bg-patch.left-bottom {
    border-radius: 0px 40px 40px 0px;
    bottom: 0;
    left: 0;
}

/* Background Grey Patch - End */


/* About Section Homepage - Start */

.about-section-main-wrapper {
    position: relative;
}
.about-section-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 75px;
}
.about-section-wrapper .about-img-wrapper {
    width: auto;
    height: 300px;
    border-radius: 40px;
    overflow: hidden;
    padding: 0px;
    margin: 0px 50px 0px 0px;
}
.about-section-wrapper .about-img-wrapper .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-section-wrapper .about-content-wrapper {
    margin: 0px 0px 0px 50px;
}
.cta-button {
    display: block;
    margin: 45px 0px 0px;
    width: fit-content;
    padding: 14px 30px;
    border-style: none;
    border-radius: 10px;
    background: #8A3F7F;
}
.cta-button-value {
    font-size: 14px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
}
.cta-submit-btn {
    width: fit-content !important;
    height: auto !important;
    padding: 14px 30px !important;
    background: #8a3f7f !important;
    border: 0px !important;
    font-size: 14px !important;
    font-family: 'Inter', sans-serif !important;
    border-radius: 10px !important;
    margin: 30px 0px 0px !important;
}

/* About Section Homepage - End */


/* Bestseller Section - Start */

.bestseller-main-wrapper {
    position: relative;
}
.bestseller-content {
    align-items: flex-start;
    justify-content: center;
    padding-top: 75px;
}
.bestseller-products-slider .bestseller-products {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.bestseller-products-slider .bestseller-products .bst-product-wrapper {
    display: block;
    height: 250px;
    width: 250px;
    overflow: hidden;
    border-radius: 40px;
    padding: 0px;
    margin: 0px 10px;
}
.bestseller-products-slider .bestseller-products .bst-product-wrapper .bst-products-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Bestseller Section - End */


/* Products Section in Homepage - Start */

.products-collection-wrapper .hair-skin-products-imgs .products-imgs-wrapper .product-img-wrapper {
    padding: 0px;
    height: 250px;
    margin: 10px;
    border-radius: 40px;
    overflow: hidden;
}
.products-collection-wrapper .hair-skin-products-imgs .products-imgs-wrapper .product-img-wrapper .product-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.products-collection-wrapper.img-first .products-heading-wrapper .products-content-wrapper {
    justify-content: flex-end;
    padding-left: 90px;
}
.products-collection-wrapper.text-first .products-heading-wrapper .products-content-wrapper {
    justify-content: flex-start;
    padding-right: 90px;
}

/* Products Section in Homepage - End */


/* Testimonial Section in Homepage - Start */

.testimonials-wrapper {
    display: flex !important;
    align-items: center;
    margin-top: 75px;
}
.testimonials-wrapper .slick-list {
    margin-left: -15px !important;
    padding: 30px 0 !important;
}
.testimonials-wrapper .testimonial-content-wrapper {
    background: #f2f2f2;
    margin: 0px 10px;
    border-radius: 40px;
}
.testimonials-wrapper .testimonial-content-wrapper.slick-slide {
    transition: all 0.3s ease-out;
    margin-left: 30px !important;
}
.testimonials-wrapper .testimonial-content-wrapper.slick-active.slick-center {
    background: #8A3F7F;
    color: #ffffff;
    border-radius: 40px;
    transform: scale(1.1);
}
.testimonials-wrapper .testimonial-content-wrapper.slick-slide .content-wrapper {
    padding: 45px;
}
.testimonials-wrapper .testimonial-content-wrapper.slick-active.slick-center .customer-designation {
 color: #ffffff;
}
.testimonials-wrapper .testimonial-content-wrapper .customer-name {
    font-family: 'Chonburi';
    margin-bottom: 0px;
    font-size: 30px;
    line-height: 40px;
}
.testimonials-wrapper .testimonial-content-wrapper.slick-active.slick-center .customer-name {
    color: #ffffff;
}
.testimonials-wrapper .testimonial-content-wrapper .customer-designation {
    font-size: 13px;
    color: #8b8b8b;
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
}
.testimonials-wrapper .testimonial-content-wrapper.slick-active.slick-center .customer-testimonial {
    color: #ffffff;
}
.testimonials-wrapper .testimonial-content-wrapper .customer-testimonial {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0px;
}

/* Testimonial Section in Homepage - End */


/* Pre-footer - Start */

.pre-footer-main-wrapper {
    position: relative;
}
.pre-footer-main-wrapper .pre-footer-section-wrapper {
    align-items: flex-start;
    padding-top: 75px;
    justify-content: space-between;
}
.pre-footer-main-wrapper .pre-footer-section-wrapper .pre-footer-img-wrapper {
    padding: 0px;
    border-radius: 40px;
    overflow: hidden;
    height: 300px;
    width: 500px;
}
.pre-footer-main-wrapper .pre-footer-section-wrapper .pre-footer-img-wrapper .pre-footer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pre-footer-main-wrapper .pre-footer-section-wrapper .pre-footer-content-wrapper {
    padding: 0px;
    padding-left: 75px;
}
.pre-footer-main-wrapper .pre-footer-section-wrapper .pre-footer-content-wrapper .section-subtitle {
    margin-bottom: 45px;
}

/* Pre-footer - End */


/* Footer - Start */

.footer-main-wrapper {
    background: #000000;
    padding: 60px 0px;
    margin-top: 100px;
}
.footer-main-wrapper .footer-menu-wrapper {
    align-items: center;
}
.footer-main-wrapper .footer-menu-wrapper .footer-logo {
    padding: 0px;
}
.footer-main-wrapper .footer-menu-wrapper .footer-logo .footer-logo img {
    width: 100%;
    height: auto;
}
.footer-main-wrapper .footer-menu-wrapper .footer-menu-list-wrapper {
    padding: 0px 100px;
}
.footer-main-wrapper .footer-menu-wrapper .footer-menu-list-wrapper .footer-menu-list {
    padding: 0px;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.footer-main-wrapper .footer-menu-wrapper .footer-menu-list-wrapper .footer-menu-list .footer-menu-option .footer-menu {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}
.footer-main-wrapper .footer-menu-wrapper .footer-menu-list-wrapper .footer-menu-list .footer-menu-option .footer-menu:hover {
    text-decoration: underline;
}
.footer-main-wrapper .footer-menu-wrapper .footer-social-icons {
    padding: 0px;
    height: fit-content;
}
.footer-main-wrapper .footer-menu-wrapper .footer-social-icons .social-icons-wrapper {
    justify-content: center;
}
.footer-main-wrapper .footer-menu-wrapper .footer-social-icons .social-icons-wrapper .social-icons {
    width: auto;
    margin: 0px 8px;
    padding: 0px;
}
.footer-main-wrapper .footer-menu-wrapper .footer-social-icons .social-icons-wrapper .social-icons .social-icon-img {
    font-size: 25px;
    line-height: 1;
    color: #ffffff;
}
.footer-main-wrapper .horizontal-line {
    border-bottom: 1px solid #ffffff;
    width: 94%;
    margin: 45px auto;
}
.footer-main-wrapper .footer-text-wrapper .footer-text {
    font-family: 'Inter', sans-serif;
    text-align: center;
    color: #ffffff;
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 0px;
}
.back-to-top {
    position: fixed;
    bottom: 45px;
    right: 45px;
    border: 0px;
    background: #8a3f7f;
    height: 50px;
    width: 50px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(138, 63, 127, 0.75);
    z-index: 999;
}
.back-to-top i {
    font-size: 20px;
    color: #ffffff;
}

/* Footer - End */


/* About Us Page - Start */

.page-banner-wrapper {
    margin: 0;
    display: flex;
    align-items: center;
}
.page-banner-wrapper .page-banner-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #f2f2f2;
    height: 400px;
    border-radius: 0px 40px 40px 0px;
}
.page-banner-wrapper .page-banner-content .page-banner-text {
    width: 70%;
    margin: 0px auto;
}
.page-banner-wrapper .page-banner-img-wrapper {
    height: 400px;
    border-radius: 40px 0px 0px 40px;
    margin-left: 10px;
    overflow: hidden;
}
.page-banner-wrapper .page-banner-img-wrapper .page-banner-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.section-main-wrapper {
    position: relative;
}
.main-content-wrapper {
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 75px;
}
.main-content-wrapper-right {
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 75px;
}
.section-content {
    margin-top: 50px;
}
.who-we-are-img-wrapper {
    width: auto;
    height: 300px;
    border-radius: 40px;
    overflow: hidden;
}
.who-we-are-img-wrapper .who-we-are-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-content-wrapper.text-first {
    padding-bottom: 75px;
    padding-top: 0px;
}
.our-vision-img-wrapper {
    height: 350px;
    width: 350px;
    border-radius: 40px;
    overflow: hidden;
}
.our-vision-img-wrapper .our-vision-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.our-mission-img-wrapper {
    height: 500px;
    width: 30%;
    border-radius: 40px;
    overflow: hidden;
}
.our-mission-img-wrapper .our-mission-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-pre-footer-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.about-pre-footer-wrapper .about-pre-footer-img-wrapper {
    position: absolute;
    right: 0;
    height: 375px;
    width: 40%;
    border-radius: 40px 0px 0px 40px;
    overflow: hidden;
    z-index: 1;
}
.about-pre-footer-wrapper .about-pre-footer-img-wrapper .about-pre-footer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-pre-footer-wrapper .about-pre-footer-content {
    background: #f2f2f2;
    width: 80%;
    margin-left: 0;
    padding: 125px 75px;
    border-radius: 40px;
}

/* About Us Page - End */


/* Products Page - Start */

.product-category-main-wrapper {
    justify-content: space-between;
}
.product-category-main-wrapper .col-md-25 {
    width: 18%;
    margin: 0px 10px;
}
.product-category-main-wrapper .product-category-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-decoration: none;
}
.product-category-main-wrapper .product-category-wrapper:hover .product-category-img-wrapper {
    border: 2px solid #8A3F7F;
}
.product-category-main-wrapper .product-category-wrapper:hover .product-category-name {
    color: #8A3F7F;
    font-weight: 600;
}
.product-category-main-wrapper .product-category-wrapper .product-category-img-wrapper {
    width: 96%;
    height: 200px;
    border-radius: 40px;
    overflow: hidden;
    border: 2px solid transparent;
}
.product-category-main-wrapper .product-category-wrapper .product-category-img-wrapper .product-category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-category-main-wrapper .product-category-wrapper.active .product-category-img-wrapper {
    border: 2px solid #8A3F7F;
}
.product-category-main-wrapper .product-category-wrapper.active .product-category-name {
    color: #8A3F7F;
    font-weight: 600;
}
.product-category-main-wrapper .product-category-wrapper .product-category-name {
    margin-bottom: 0px;
    margin-top: 15px;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    color: #000000;
}
.filters-wrapper .product-category-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 30px;
}
.filters-wrapper .filter-drop-down {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.filters-wrapper .filter-drop-down label {
    width: fit-content;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
}
.filters-wrapper .filter-drop-down .filter-list-wrapper {
    width: 30%;
    margin-left: 15px;
    background: #f2f2f2;
    outline: none;
    border-radius: 10px;
    padding-left: 15px;
    border-color: #000000;
}
.all-products-main-wrapper .all-products-wrapper {
    background: #f2f2f2;
    padding: 30px;
    margin: 10px;
    border-radius: 40px;
}
.all-products-main-wrapper .all-products-wrapper .all-products-content a {
    text-decoration: none;
}
.all-products-main-wrapper .all-products-wrapper:hover {
    background: #8A3F7F;
}
.all-products-main-wrapper .all-products-wrapper:hover .all-products-content .product-name {
    color: #ffffff;
}
.all-products-main-wrapper .all-products-wrapper:hover .all-products-content .product-details-wrapper .product-details .product-price, 
.all-products-main-wrapper .all-products-wrapper:hover .all-products-content .product-details-wrapper .product-details .product-status  { 
    color: #ffffff;
}
.all-products-main-wrapper .all-products-wrapper:hover .all-products-content .product-details-wrapper .cart-wrapper {
    background-color: #ffffff;
}
.all-products-main-wrapper .all-products-wrapper:hover .all-products-content .product-details-wrapper .cart-wrapper .cart-img {
    filter: invert(1);
}
.all-products-main-wrapper .all-products-wrapper .all-products-img-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 40px;
    overflow: hidden;
}
.all-products-main-wrapper .all-products-wrapper .all-products-img-wrapper .all-products-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.all-products-content {
    padding: 20px 0px 20px 20px;
}
.all-products-content .product-name {
    font-family: 'Inter', sans-serif;
    font-size: 25px;
    line-height: 28px;
    color: #000000;
    font-weight: 600;
    height: 55px;
}
.all-products-content .product-details-wrapper {
    align-items: flex-end;
    margin-top: 25px;
}
.all-products-content .product-details-wrapper .product-details .product-price {
    margin-bottom: 0px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #000000;
}
.all-products-content .product-details-wrapper .product-details .product-status {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1;
    margin-bottom: 0px;
    margin-top: 7px;
}
.available {
    color: #468B00;
}
.un-available {
    color: #F64645;
}
.all-products-content .product-details-wrapper .cart-wrapper {
    width: 55px;
    height: 55px;
    background: #8A3F7F;
    border-radius: 50%;
    overflow: hidden;
    padding: 16px;
}
.all-products-content .product-details-wrapper .cart-wrapper .cart-img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

/* Products Page - End */


/* Single Product Page - Start */

.product-price-details-wrapper {
    align-items: center;
    margin-top: 40px;
    padding-left: 10px;
}
.product-price-details-wrapper .cta-button {
    margin-top: 0px;
}
.product-price-details-wrapper .price {
    font-family: 'Inter', sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: #8A3F7F;
}
.product-price-details-wrapper .add-to-cart-wrapper {
    width: 50px;
    height: 50px;
    background: #8A3F7F;
    border-radius: 50%;
    overflow: hidden;
    padding: 15px;
}
.product-price-details-wrapper .add-to-cart-wrapper .add-to-cart {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ingredients-main-wrapper .ingredients-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
}
.ingredients-main-wrapper .ingredient {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    margin: 20px 0px;
    color: #000000;
}
.ingredients-main-wrapper .ingredient span {
    font-weight: 700;
}
.customer-review-title-wrapper {
    align-items: center;
}
.customer-review-wrapper .customer-review-title {
    font-family: 'Inter', sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: #000000;
    line-height: 1;
    margin-bottom: 20px;
}
.customer-review-wrapper .rating-wrapper {
    display: flex;
    align-items: center;
}
.customer-review-wrapper .rating-wrapper .number-rating {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin-right: 15px;
    color: #8A3F7F;
    margin-bottom: 0px;
}
.customer-review-wrapper .rating-wrapper .star-rating-wrapper .fa-star {
    font-size: 22px;
    color: #f2f2f2;
}
.checked {
    color: #FFB800 !important;
}
.customer-review-main-wrapper {
    margin-top: 75px;
}
.customer-review-main-wrapper .review-wrapper {
    margin: 30px 0px;
}
.customer-review-main-wrapper .review-wrapper .customer-img-wrapper {
    width: 90%;
    height: 200px;
    border-radius: 40px;
    overflow: hidden;
}
.customer-review-main-wrapper .review-wrapper .customer-img-wrapper .customer-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.customer-review-main-wrapper .review-wrapper .review-content-wrapper .customer-details-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.customer-rating {
    display: flex;
    align-items: center;
}
.customer-review-main-wrapper .review-wrapper .review-content-wrapper .customer-details-wrapper .customer-rating .customer-name {
    line-height: 1;
    font-size: 25px;
    font-weight: 700;
}
.customer-review-main-wrapper .review-wrapper .review-content-wrapper .customer-details-wrapper .customer-rating .rating-wrapper {
    margin-left: 15px;
}
.customer-review-main-wrapper .review-wrapper .review-content-wrapper .customer-details-wrapper .rating-wrapper .rating-star {
    font-size: 16px;
    color: #f2f2f2;
}
.customer-review-main-wrapper .review-wrapper .review-content-wrapper .review-content {
    margin-top: 25px;
}

/* Single Product Page - End */


/* Blogs Main Page - Start */

.blogs-hero-banner-wrapper {
    background: #8A3F7F;
    height: 350px;
    border-radius: 40px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blogs-hero-banner-wrapper .blogs-title-wrapper .section-title, .blogs-hero-banner-wrapper .blogs-title-wrapper .section-subtitle {
    color: #ffffff;
}
.blogs-list-main-wrapper a {
    text-decoration: none;
}
.blogs-list-main-wrapper .blog-content-wrapper {
    margin: 30px 10px;
}
.blogs-list-main-wrapper .blog-content-wrapper .blog-img-wrapper {
    width: 100%;
    height: 300px;
    border-radius: 40px;
    overflow: hidden;
}
.blogs-list-main-wrapper .blog-content-wrapper .blog-img-wrapper .blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blogs-list-main-wrapper .blog-content-wrapper a {
    text-decoration: none;
}
.blogs-list-main-wrapper .blog-content-wrapper .blog-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    margin-top: 25px;
}
.blogs-list-main-wrapper .blog-content-wrapper .blog-title:hover {
    text-decoration: underline;
}

/* Blogs Main Page - End */


/* Blogs Internal Page - Start */

.blog-banner-wrapper {
    position: relative;
}
.blog-banner-wrapper .main-content-wrapper .blog-banner-img-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 40px;
    overflow: hidden;
}
.blog-banner-wrapper .main-content-wrapper .blog-banner-img-wrapper .blog-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-banner-wrapper .main-content-wrapper .section-content {
    padding-left: 100px;
}
.blog-point-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 45px;
}
.blog-text {
    margin: 20px 0px;
}
section.explore-blogs .section-title {
    margin-bottom: 45px;
}

/* Blogs Internal Page - End */


/* Contact us page - Start */

.form-main-wrapper {
}
@media (min-width: 900px) {
  .form-main-wrapper {
    width: 70%;
    margin: 0 auto;
  }
}
.contact-form-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.contact-form-wrapper input {
    width: 100%;
    height: 60px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    background: #f2f2f2;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #8b8b8b;
    margin: 10px 0px;
}
.contact-form-wrapper .text-box {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    border-radius: 15px;
    border: 1px solid #8b8b8b;
    margin: 10px 0px;
    background-color: #f2f2f2;
}
.contact-details-wrapper .contact-wrapper {
    display: flex;
    align-items: center;
    padding: 20px;
}
.contact-details-wrapper .contact-wrapper .contact-icon-wrapper {
    background: #f2f2f2;
    padding: 20px;
    border-radius: 20px;
    width: fit-content;
}
.contact-details-wrapper .contact-wrapper .contact-icon-wrapper .contact-icon {
    width: auto;
    height: 35px;
}
.contact-details-wrapper .contact-wrapper .contact-text {
    font-weight: 600;
    padding-left: 20px;
}
.form-msg {
    display: none;
    padding: 15px 20px;
    background: #d3fadd;
    border-radius: 15px;
    margin-top: 30px;
    border: 1px solid #178b00;
}
.form-msg p {
    color: #178b00;
}

/* Contact us page - End */


/* Cart Page - Start */

.page-title-wrapper .page-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}
.item-list-main-wrapper {
    margin-right: 20px;
}
.item-list-wrapper {
    background: #f2f2f2;
    padding: 30px;
    border-radius: 40px;
    align-items: center;
    margin-bottom: 30px;
}
.item-list-wrapper .item-img-wrapper {
    width: 80%;
    height: 200px;
    border-radius: 40px;
    overflow: hidden;
}
.item-list-wrapper .item-img-wrapper .item-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.item-list-wrapper .item-list-content-wrapper {
    align-items: flex-end;
    justify-content: flex-end;
}
.item-list-wrapper .item-list-content-wrapper .item-list-content .item-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
}
.item-list-wrapper .item-list-content-wrapper .item-list-content .item-quantity {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 25px 0px;
}
.item-quantity .quantity-number {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 800;
    padding: 10px 15px;
    background: #ffffff;
    border-radius: 10px;
    line-height: 1;
    border: 1px solid #000000;
}
.item-quantity .quantity {
    font-size: 20px;
    font-weight: 700;
    margin: 0px 20px;
}
.item-list-wrapper .item-list-content-wrapper .item-list-content .item-price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 30px;
    margin-top: 30px;
    color: #8A3F7F;
}
.item-list-wrapper .item-list-content-wrapper .delete-icon-wrapper {
    height: 60px;
    width: 60px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 50%;
    padding: 15px;
}
.item-list-wrapper .item-list-content-wrapper .delete-icon-wrapper .delete-icon {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.item-list-wrapper .item-list-content-wrapper .delete-icon-wrapper:hover {
    background: #8A3F7F;
}
.item-list-wrapper .item-list-content-wrapper .delete-icon-wrapper:hover .delete-icon {
    filter: brightness(4);
}
.final-price-wrapper {
    margin-left: 20px;
}
.final-price-wrapper .final-price-brkdown {
    background-color: #8A3F7F;
    padding: 40px;
    border-radius: 40px;
}
.final-price-wrapper .final-price-brkdown .cart-title {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}
.final-price-wrapper .final-price-brkdown .charges {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 0px;
}
.final-price-wrapper .final-price-brkdown .charges .charge-type {
    color: #ffffff;

}
.final-price-wrapper .final-price-brkdown .charges .charge-price {
    color: #ffffff;
}
.final-price-wrapper .final-price-brkdown .total-amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.final-price-wrapper .final-price-brkdown .total-amount .total-charge {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}
.final-price-wrapper .final-price-brkdown .total-amount .total-price {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}
.final-price-wrapper .cta-button {
    width: 100%;
}

/* Cart Page - End */


/* Customer Login Page - Start */

.section-title-wrapper .underline {
    border-bottom: 1px solid #000000;
    margin: 20px 0px;
}
.login-form-main-wrapper {
    position: relative;
    height: 500px;
}
.login-form-wrapper {
    width: 50%;
}
.login-form-wrapper input {
    width: 100%;
    height: 60px;
    background: #f2f2f2;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #8b8b8b;
    margin: 10px 0px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
}
.login-form-wrapper .login-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0px 15px 0px;
}
.login-form-wrapper .login-button-wrapper .cta-button {
    margin-top: 0px;
}
.login-form-wrapper .login-button-wrapper .forgot-password {
    width: fit-content;
}
.login-form-wrapper .login-button-wrapper .forgot-password .forgot-password-txt {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #000000;
}
.login-form-wrapper .login-button-wrapper .forgot-password .forgot-password-txt:hover {
    text-decoration: underline;
}
.login-form-wrapper .login-text:hover {
    text-decoration: underline;
}
.login-form-wrapper .login-text {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
}
.login-img-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 500px;
    border-radius: 40px 0px 0px 40px;
    overflow: hidden;
}
.login-img-wrapper .login-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.new-account-main-wrapper {
    position: relative;
    height: 600px;
}
.new-account-wrapper {
    width: 50%;
}
.new-account-wrapper input {
    width: 100%;
    height: 60px;
    background: #f2f2f2;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #8b8b8b;
    margin: 10px 0px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
}
.new-account-wrapper .cta-button {
    width: 100%;
    margin-bottom: 15px;
}
.new-account-wrapper .login-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #000000;
    text-decoration: none;
}
.new-account-img-wrapper {
    width: 40%;
    height: 600px;
    border-radius: 40px 0px 0px 40px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
}
.new-account-img-wrapper .new-account-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Customer Login Page - End */


/* Checkout Page - Start */

section.purchase-details .purchase-details-form-wrapper .selection-wrapper .selection-label {
    cursor: pointer;
}
.purchase-details-form-wrapper {
    width: 80%;
    margin: 0px auto;
}
.purchase-details-form-wrapper .coupon-code-wrapper {
    width: 100%;
    border: 1px solid #000000;
    border-radius: 40px;
    padding: 50px;
}
.purchase-details-form-wrapper .coupon-code-wrapper .coupon-code-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 20px;
}
.purchase-details-form-wrapper .coupon-code-wrapper .coupon-code-input-wrapper input {
    width: 80%;
    margin-right: 15px;
    height: 60px;
    padding: 20px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    border-radius: 15px;
    border: 1px solid #8b8b8b;
}
.purchase-details-form-wrapper .coupon-code-wrapper .coupon-code-input-wrapper .cta-button {
    width: 17%;
}
.purchase-details-form-wrapper .detail-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 30px;
    margin: 50px 0px 15px;
}
.purchase-details-form-wrapper .contact-email {
    width: 100%;
    height: 60px;
    padding: 20px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    border-radius: 15px;
    border: 1px solid #8b8b8b;
}
.purchase-details-form-wrapper input {
    width: 100%;
    height: 60px;
    background: transparent;
    padding: 20px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    border-radius: 15px;
    border: 1px solid #8b8b8b;
}
.purchase-details-form-wrapper .country-selection {
    width: 100%;
    height: 60px;
    background: transparent;
    padding: 10px 20px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    border-radius: 15px;
    border: 1px solid #8b8b8b;
    color: #818181;
    margin-bottom: 20px;
}
.purchase-details-form-wrapper .name-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}
.purchase-details-form-wrapper .name-wrapper .customer-name {
    width: 48%;
}
.purchase-details-form-wrapper .name-wrapper .customer-name.last-name {
margin-left: 20px;
width: 49%;
}
.purchase-details-form-wrapper .address {
    width: 100%;
    margin-bottom: 20px;
}
.purchase-details-form-wrapper .address-wrapper input {
    width: 32%;
}
.purchase-details-form-wrapper .address-wrapper .state-list {
    height: 60px;
    width: 31%;
    background: transparent;
    padding: 10px 20px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    border-radius: 15px;
    border: 1px solid #8b8b8b;
    color: #818181;
    margin: 0px 20px 20px;
}
.purchase-details-form-wrapper .checkbox-wrapper {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.purchase-details-form-wrapper .checkbox-wrapper .checkbox {
    height: 20px;
    width: 20px;
}
.purchase-details-form-wrapper .checkbox-wrapper .checkbox-lable {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #000000;
    margin-left: 10px;
    line-height: 1;
}
.purchase-details-form-wrapper .text {
    margin-top: -20px;
    margin-bottom: 15px;
}
.purchase-details-form-wrapper .form-button-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}
.purchase-details-form-wrapper .form-button-wrapper .back-button {
    margin-top: 0px;
    background: #f2f2f2;
}
.purchase-details-form-wrapper .form-button-wrapper .back-button .cta-button-value {
    color: #000000;
    font-weight: 600;
}
.purchase-details-form-wrapper .form-button-wrapper .cta-button {
    margin-top: 0px;
}
.selection-wrapper .selection-input + .selection-label {
    width: 100%;
    background: #f2f2f2;
    border-radius: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 30px;
    margin: 20px 0px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
}
.selection-wrapper .selection-input {
    display: none;
}
.selection-wrapper .selection-input:checked + .selection-label {
    background-color: #000000;
    color: #ffffff;
}
.billing-address-wrapper {
    display: none;
    background: #f2f2f2;
    padding: 30px;
    border-radius: 40px;
}

/* Checkout Page - End */


/* Faq Page - Start */

.faq-title-wrapper, .faq-list-main-wrapper {
    width: 65%;
    margin: 0px auto;
}
.horizontal-line {
    border-bottom: 1px solid #000000;
    margin: 20px 0px;
}
.faq-list-main-wrapper .faq-list-wrapper {
    background: #f2f2f2;
    padding: 40px;
    border-radius: 40px;
    margin: 35px 0px;
}
.faq-list-main-wrapper .faq-list-wrapper .faq-que-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.faq-list-main-wrapper .faq-list-wrapper .faq-que-wrapper .faq-que {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0px;
    line-height: 1.4;
}
.faq-list-main-wrapper .faq-list-wrapper .faq-que-wrapper .down-arrow {
    width: 20px;
    height: 20px;
    margin-left: 50px;
}
.faq-list-main-wrapper .faq-list-wrapper .faq-que-wrapper .down-arrow .down-arrow-icon {
    height: 100%;
    width: 100%;
    object-fit: contain;
    filter: brightness(0);
}
.faq-list-main-wrapper .faq-list-wrapper .faq-ans {
    font-size: 15px;
}
.faq-list-main-wrapper .faq-list-wrapper .faq-que-wrapper.faq-contact {
    margin: 30px 10px;
}
.faq-que-wrapper .cta-button {
    width: 200px;
    margin-top: 0px;
}
.accordion-item {
    border: none !important;
}
.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    box-shadow: none !important;
}
.accordion-button {
    background-color: transparent !important;
}
.accordion-button:focus {
    border-color: transparent !important;
}
.accordion-button::after {
    filter: grayscale(1) !important;
}
.accordion-button:not(.collapsed)::after {
    filter: grayscale(1);
}
.faq-list-wrapper .enquiry-wrapper {
    align-items: center !important;
    padding: 1rem 1.25rem; 
}
.faq-list-wrapper .enquiry-wrapper .enquiry-text{
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    line-height: 1.2;
    padding-right: 50px;
    width: 100%;
}

/* Faq Page - End */


/* Account Page - Start */

.account-main-wrapper .account-title-wrapper {
    padding: 0px;
}
.account-main-wrapper .account-title-wrapper .account-title {
    font-size: 30px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}
.account-main-wrapper .account-title-wrapper .user-name {
    font-size: 16px;
    line-height: 1;
    margin-top: 5px;
}
.account-main-wrapper .side-menu-wrapper {
    padding: 0px;
    display: flex;
    align-items: flex-start;
    margin-top: 30px;
}
.account-main-wrapper .side-menu-wrapper .side-menu-list-wrapper .side-menu-list {
    padding: 0px;
    margin-bottom: 0px;
    list-style: none;
}
.account-main-wrapper .side-menu-wrapper .side-menu-list-wrapper .side-menu-list .side-menu-option {
    padding: 10px 0px;
    border-bottom: 1px solid #000000;
    padding-left: 10px;
    margin-bottom: 25px;
}
.account-main-wrapper .side-menu-wrapper .side-menu-list-wrapper .side-menu-list .side-menu-option .side-menu {
    text-decoration: none;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1;
}
.account-main-wrapper .side-menu-wrapper .side-menu-list-wrapper .side-menu-list .side-menu-option:hover {
    background: #8A3F7F;
}
.account-main-wrapper .side-menu-wrapper .side-menu-list-wrapper .side-menu-list .side-menu-option:hover .side-menu {
    color: #ffffff;
}
.account-main-wrapper .side-menu-wrapper .side-menu-list-wrapper .side-menu-list .side-menu-option.active {
    background: #8A3F7F;
}
.account-main-wrapper .side-menu-wrapper .side-menu-list-wrapper .side-menu-list .side-menu-option.active .side-menu {
    color: #ffffff;
}
.detail-wrapper {
    margin-left: auto;
    width: 86%;
    margin-right: 0px;
}

/* ------ Profile Section ------ */

.profile-title-wrapper .profile {
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}
.profile-title-wrapper .horizontal-line {
    margin: 20px 0px;
}
.detail-wrapper .profile-details-wrapper {
    list-style: none;
    padding-left: 0;
    width: 70%;
    margin-top: 30px;
}
.detail-wrapper .profile-details-wrapper .profile-detail {
    display: flex;
    align-items: center;
    padding: 20px 0px;
}
.detail-wrapper .profile-details-wrapper .profile-detail .profile-que {
    width: 40%;
}
.detail-wrapper .profile-details-wrapper .profile-detail .profile-text {
    width: 60%;
}
.detail-wrapper .cta-button {
    width: 70%;
}
.edit-details-wrapper {
    width: 80%;
    margin-bottom: 0px;
}
.edit-details-wrapper div {
    margin: 20px 0px;
}
.edit-details-wrapper input {
    width: 100%;
    height: 60px;
    padding: 20px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    border-radius: 15px;
    border: 1px solid #8b8b8b;
}
.edit-details-wrapper label {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #000000;
    margin-bottom: 5px;
}
.edit-details-wrapper .gender-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.edit-details-wrapper .gender-wrapper .gender + .gender-label {
    width: 49%;
    background: #f2f2f2;
    border-radius: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0px;
    cursor: pointer;
}
.edit-details-wrapper .gender-wrapper .gender:checked + .gender-label {
    background: #000000;
    color: #ffffff;
}
.edit-details-wrapper .gender-wrapper .gender {
    display: none;
}
.detail-wrapper .cta-button.save-button {
    width: 80%;
}

/* ------ Order Section ------ */

.order-detail-list .order-detail-wrapper {
    margin: 30px 0px;
    background: #f2f2f2;
    padding: 40px 50px;
    border-radius: 40px;
}
.order-status {
    align-items: center;
}
.order-status .order-icon-wrapper {
    padding: 0px;
    background: #000000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}
.order-status .order-icon-wrapper .order-icon {
    width: 100%;
    height: 100%;
    padding: 12px;
    object-fit: contain;
}
.order-status .order-text {
    padding: 0px;
    padding-left: 20px;
    width: fit-content;
}
.order-status .order-text .status-text {
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1;
}
.order-status .order-text .status-time {
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-top: 5px;
}
.order-detail-wrapper .product-details-wrapper {
    margin-top: 20px;
    background: #ffffff;
    border-radius: 40px;
    padding: 20px;
}
.order-detail-wrapper .product-details-wrapper a {
    padding: 0px;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.order-detail-wrapper .product-details-wrapper .product-img-wrapper {
    width: 100%;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
}
.order-detail-wrapper .product-details-wrapper .product-img-wrapper .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.order-detail-wrapper .product-details-wrapper .product-detail {
    padding-left: 25px;
}
.order-detail-wrapper .product-details-wrapper .product-detail .product-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}
.order-detail-wrapper .product-details-wrapper .product-detail .product-des {
    font-size: 15px;
    line-height: 20px;
    margin-top: 5px;
}
.order-detail-wrapper .product-details-wrapper .product-detail .review-product {
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.order-detail-wrapper .product-details-wrapper .product-detail .review-product .review-rate {
    font-weight: 600;
    color: #8A3F7F;
}
.order-detail-wrapper .product-details-wrapper .product-detail .review-product .rating-star {
    display: flex;
    align-items: center;
    margin-left: 15px;
}
.order-detail-wrapper .product-details-wrapper .product-detail .review-product .rating-star .fa-star {
    font-size: 18px;
    margin: 2px;
    color: #8d8d8d;
}
.edit {
    margin-right: 20px;
}
.delete {
    background: #f2f2f2;
}
.delete .cta-button-value {
    color: #000000;
}

/* ------ Address Section ------ */

.address-main-wrapper .address-wrapper {
    padding: 30px;
    border: 1px solid #8d8d8d;
    border-radius: 40px;
    margin: 15px;
}
.address-main-wrapper .address-wrapper .address-name {
    font-weight: 600;
    line-height: 1;
}
.address-main-wrapper .address-wrapper .address-text {
    font-size: 16px;
    margin-top: 20px;
    height: 75px;
}
.address-main-wrapper .address-wrapper .address-button-wrapper {
    display: flex;
    align-items: flex-end;
}
.address-main-wrapper .address-wrapper .address-button-wrapper .cta-button {
    margin-top: 35px;

}
.cta-button.right-btn {
    margin-right: 10px;
}
.edit-address-wrapper .full-name-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.edit-address-wrapper .full-name-wrapper input {
    width: 49%;
}
.edit-address-wrapper input {
    width: 100%;
    height: 60px;
    padding: 20px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    border-radius: 15px;
    border: 1px solid #8b8b8b;
    margin: 10px 0px;
}
.edit-address-wrapper .state-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.edit-address-wrapper .state-wrapper .state-dropdown {
    width: 49%;
    height: 60px;
    padding: 17px 20px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    border-radius: 15px;
    border: 1px solid #8b8b8b;
    color: #8d8d8d;
    margin: 10px 0px;
}
.edit-address-wrapper .state-wrapper .state-dropdown .state-name {
    font-size: 18px;
    font-family: 'Inter', sans-serif;
}
.edit-address-wrapper .state-wrapper input {
    width: 49%;
}
.edit-address-wrapper .save {
    width: 20%;
    float: right;
}

/* ------ Write a Review Section ------ */

.write-review-wrapper {
    width: 60%;
    margin: 0px auto;
}
.write-review-wrapper .write-review-form .rate {
    display: flex;
    align-items: center;
    margin: 45px 0px 20px;
}
.write-review-wrapper .write-review-form .rate .rate-text {
    font-size: 20px;
    font-weight: 600;
}
.write-review-wrapper .write-review-form .rate .rate-star {
    margin-left: 20px;
}
.write-review-wrapper .write-review-form .rate .rate-star .fa-star {
    font-size: 20px;
    color: #e1e1e1;
}
.write-review-wrapper .write-review-form input {
    width: 100%;
    height: 60px;
    padding: 20px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    border-radius: 15px;
    border: 1px solid #8b8b8b;
    margin: 10px 0px;
}
.write-review-wrapper .write-review-form .review-msg {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    border-radius: 15px;
    border: 1px solid #8b8b8b;
    margin: 10px 0px;
}
.write-review-wrapper .write-review-form .cta-button {
    width: 20%;
}

.pic-box {
  display: flex;
  gap: 10px;
  visibility: hidden;
}
.pic-box .img-left, .pic-box .img-right {
  width: 50%;
}
.img-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.img-left img {
  width: 100%;
}
.img-right img, .img-right div {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pic-box img {
  border-radius: 6px;
  box-shadow: 0px 0px 4px grey;
  transition: all 0.6s;
}

.pic-box img:hover {
  transform: translateY(-5px);
  box-shadow:  0px 2px 4px grey;
}
.menu-logo img {
  width: 70px !important;
}

.paragraph {
  margin: 30px 0;
}
/* Account Page - End */
