:root {
    --primary-color: #feac3a;
    /* --secondary-color: #d7b56d; */
    --secondary-color: #204638;
    --green-color: #179c5f;
    --red-color: #d83434;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#profile-actions-list {
    display: none;
}
#profile-actions:hover #profile-actions-list {
    display: block;
}
.category-card-box-shadow {
    box-shadow: 0px 4px 17px #00000021;
}
.card-box-shadow {
    box-shadow: 0px 4px 17px #00000021;
}
.card-box-shadow-2 {
    z-index: -10;
    /* box-shadow: 0px 40px 17px #00000021; */
    box-shadow: 0px 4px 17px #00000021;
}
.scroll-container {
    width: 100%; /* Full-width container */
    overflow: hidden; /* Hide overflowing content */
    white-space: nowrap;
    position: relative; /* Needed for absolute positioning */
}

.scrolling-text {
    display: inline-block;
    position: absolute;
    width: 100%; /* Adjust as needed for smaller text */
    /* animation: marquee 30s linear infinite; */
}

/* Keyframes for scrolling effect */
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes scroll-text {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
/* ::-webkit-input-placeholder */
.overlay-bg-color {
    background-color: #0000003a;
}
.star-active {
    fill: var(--primary-color);
}
#interviewTab iframe {
    border-radius: 8px;
    height: 240px;
}
.login-input-right-radius {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}
.login-input-left-radius {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}
.warning-bg {
    background-color: #ffb6b6;
}
.warning-text {
    color: #d83434;
}
input,
textarea {
    outline: none;
}
.is-sticky {
    top: 0px;
    position: sticky;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
}
.btn-active::before {
    top: 0px;
    left: 0px;
    content: "";
    width: 9px;
    height: 100%;
    position: absolute;
    background-color: var(--primary-color);
}
.txt-active {
    color: var(--secondary-color);
}
.svg-active svg path {
    fill: var(--secondary-color);
}
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.animate-scroll {
    display: flex;
    white-space: nowrap;
    animation: scroll 15s linear infinite;
}
.cs-placeholder-out::placeholder {
    opacity: 0;
    transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
}
.cs-placeholder::placeholder {
    opacity: 1;
    transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
}
.cs-placeholder-in::placeholder {
    opacity: 0;
    transform: translateY(100%);
    -o-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -webkit-transform: translateY(100%);
}
.cs-placeholder-in::placeholder,
.cs-placeholder::placeholder,
.cs-placeholder-out::placeholder {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -moz-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -webkit-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/** Start CSS Related to Product Rating Progress circle **/

.cart-active {
    color: #ffffff;
    fill: var(--primary-color);
    background-color: var(--primary-color);
}

.circular-progress {
    --size: 100%;
    --half-size: calc(var(--size) / 2);
    --stroke-width: 25px;
    --radius: calc((var(--size) - var(--stroke-width)) / 2);
    --circumference: calc(var(--radius) * pi * 2);
    --dash: calc((var(--progress) * var(--circumference)) / 100);
}

.circular-progress circle {
    cx: var(--half-size);
    cy: var(--half-size);
    r: var(--radius);
    stroke-width: var(--stroke-width);
    fill: none;
    stroke-linecap: round;
}

.circular-progress circle.bg {
    stroke: #f1f1f1;
}

.circular-progress circle.fg {
    transform: rotate(-90deg);
    transform-origin: var(--half-size) var(--half-size);
    stroke-dasharray: var(--dash) calc(var(--circumference) - var(--dash));
    transition: stroke-dasharray 0.3s linear 0s;
    stroke: #ffa903;
}

/** End CSS Related to Product Rating Progress circle **/

/* 
 */
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 20px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 15px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: var(--green-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--green-color);
}

input:checked + .slider:before {
    -webkit-transform: translateX(7px);
    -ms-transform: translateX(7px);
    transform: translateX(7px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* switch btn -End */

.btn {
    /* background-color: var(--primary-color); */
    /* color: white; */
    /* padding: 8px 16px; */
    /* border: none; */
    /* font-size: 15px; */
    transition: background-color 0.3s ease;
}
input::placeholder {
    color: #5a5a5a;
}
.scrollbar-hide {
    -ms-overflow-style: none; /* IE 11 */
    scrollbar-width: none; /* Firefox 64 */
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.active {
    /* color: var(--primary-color); */
    color: var(--secondary-color);
    font-weight: 800;
    position: relative;
}

.primary {
    color: var(--primary-color);
}
.bg-primary-color {
    background-color: var(--primary-color);
}
.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60%;
    height: 3px;
    /* background-color: var(--primary-color); */
    background-color: var(--secondary-color);
}
.montserrat {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}
.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}
.fade-in {
    opacity: 1;
    transition: opacity 0.5s ease-in;
}
.cart-container {
    position: relative;
    display: inline-block;
}

.cart-count,
.cart-count-mobile,
.wishlist-count-mobile,
.wishlist-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #e34545;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: bold;
    box-shadow: 0px 0px 10px lightblue;
}
.cart-count-mobile,
.wishlist-count-mobile {
    padding: 2px 10px !important;
}
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 99;
    /* width: 20%; */
    /* max-height: 70vh; */
    overflow-y: auto;
    /* margin: auto; */
    /* margin-top: 10vh; */
}

#closeModalButton {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: #ffffff;
    background-color: #000;
    border: none;
    border-radius: 0.25rem;
    padding: 0.5rem 12rem;
    cursor: pointer;
}

.googleBtn {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.facebookBtn {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.height-100 {
    height: 100vh;
}
#resendTimer {
    color: var(--primary-color);
}

#resendOTP {
    color: var(--primary-color);
}
.card {
    width: 400px;
    border: none;
    height: 300px;
    box-shadow: 0px 5px 20px 0px #d2dae3;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card h6 {
    color: red;
    font-size: 20px;
}

.inputs input {
    width: 35px;
    height: 35px;
}
input:focus,
textarea:focus {
    outline: none;
    border: 1px solid var(--primary-color);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.card-2 {
    background-color: #fff;
    padding: 10px;
    width: 350px;
    height: 100px;
    bottom: -50px;
    left: 20px;
    position: absolute;
    border-radius: 5px;
}

.card-2 .content {
    margin-top: 50px;
}

.card-2 .content a {
    color: red;
}

.form-control:focus {
    box-shadow: none;
    border: 2px solid red;
}

.validate {
    border-radius: 20px;
    height: 40px;
    background-color: red;
    border: 1px solid red;
    width: 140px;
}

.saptham-translate-x-0 {
    transform: translateX(0px);
}

.saptham-translate-x-100 {
    transform: translateX(100%);
}

.prodouct-grid-info-card {
    z-index: -10;
    min-height: 288px;
    /* min-height: 455px; */
    /* transform: translateY(-38px) !important; */
    transform: translateY(-88px) !important;
    transition: all 0.7s ease-in-out;
    animation: prodouct-grid-info-card;
}

/* background: transparent; */
@keyframes prodouct-grid-info-card {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* .bottle-image {
    z-index: 50;
    position: relative;
} */
.prodouct-grid-bottle-image {
    min-height: 288px;
    transform: translate(67%, 5%) scale(1.1);
}
/* transform: translate(32%, 5%) scale(1.1); */

.custom-opacity-0 {
    opacity: 0;
}
.custom-opacity-1 {
    opacity: 1;
}

.hide {
    display: none;
}

/** Start CSS Related to Product Grid **/

.image-left-1 {
    transform: translate(200%, 100%);
    animation: image-left-1 0.3s cubic-bezier(0, 1.54, 0.02, 0.01) forwards;
}

.image-left-2 {
    transform: translate(200%, 0);
    animation: image-left-2 0.3s cubic-bezier(0, 1.54, 0.02, 0.01) forwards;
}

.image-right-1 {
    transform: translate(-200%, 100%);
    animation: image-right-1 0.3s cubic-bezier(0, 1.54, 0.02, 0.01) forwards;
}

.image-right-2 {
    transform: translate(-200%, 0%);
    animation: image-right-2 0.3s cubic-bezier(0, 1.54, 0.02, 0.01) forwards;
}

.button-animation,
.secondary-button-animation,
.quantity-button-animation {
    z-index: 1;
    position: relative;
    font-weight: 600;
    transition: color 0.5s, background-color 0.5s;
    overflow: hidden;
}
.secondary-button-animation1 {
    color: #000;
    border: 2px solid var(--secondary-color);
}
.button-animation {
    /* color: #fff; */
    color: #000;
    background: var(--primary-color) !important;
}
.secondary-button-animation,
.quantity-button-animation {
    background: #fff;
    /* color: var(--primary-color); */
}
.button-animation-red {
    color: #fff;
    z-index: 1;
    position: relative;
    font-weight: 600;
    transition: color 0.5s, background-color 0.5s;
    overflow: hidden;
    background: var(--red-color);
}
.button-animation-green {
    color: #fff;
    z-index: 1;
    position: relative;
    font-weight: 600;
    transition: color 0.5s, background-color 0.5s;
    overflow: hidden;
    background: var(--green-color);
}
.quantity-button-animation::before,
.button-animation::before,
.secondary-button-animation::before {
    content: "";
    top: 0;
    left: 0;
    width: 0;
    z-index: -1;
    height: 100%;
    position: absolute;
    transition: width 0.5s;
    background-color: var(--secondary-color);
}
.quantity-button-animation::before {
    background-color: #fff;
    color: var(--primary-color);
}
.quantity-button-animation::before,
.button-animation-red::before,
.button-animation-green::before {
    content: "";
    top: 0;
    left: 0;
    width: 0;
    z-index: -1;
    height: 100%;
    position: absolute;
    transition: width 0.5s;
    background-color: #fff;
}
.quantity-button-animation::before {
    background-color: var(--primary-color);
}
.cs-tranform-x-500 {
    transform: translateX(500%);
}
.quantity-button-animation:hover {
    color: #fff;
    background-color: var(--primary-color);
}
.button-animation-red:hover {
    color: var(--red-color);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.292);
}
.button-animation-green:hover {
    color: var(--green-color);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.292);
}
.button-animation:hover {
    color: var(--primary-color);
}
.secondary-button-animation:hover {
    /* color: #fff; */
    color: var(--primary-color);
}
.secondary-button-animation:hover svg path {
    fill: var(--primary-color);
}

.button-animation:hover svg,
.button-animation:hover svg path,
.button-animation-green:hover svg path,
.button-animation-red:hover svg path {
    fill: var(--primary-color);
    stroke: var(--primary-color);
}
.quantity-button-animation:hover::before,
.button-animation:hover::before,
.button-animation-green:hover::before,
.button-animation-red:hover::before,
.secondary-button-animation:hover::before {
    width: 100%;
}

.addToCartBtn {
    border-radius: 50px;
    color: #000;
    z-index: 1;
    background: var(--primary-color);
    position: relative;
    font-weight: 600;
    transition: color 0.5s, background-color 0.5s;
    overflow: hidden;
}

.addToCartBtn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 50px;
    background-color: var(--secondary-color);
    z-index: -1;
    transition: width 0.5s;
}

.addToCartBtn:hover {
    color: var(--primary-color);
}

.addToCartBtn:hover svg path {
    fill: var(--primary-color);
    stroke: var(--primary-color);
}
.quantity-button-animation:hover::before,
.addToCartBtn:hover::before {
    width: 100%;
}
.category-container {
    width: 91.5%;
}
@keyframes image-left-1 {
    to {
        transform: translate(0px, 0px);
    }
}

@keyframes image-left-2 {
    to {
        transform: translate(0px, 0px);
    }
}

@keyframes image-right-1 {
    to {
        transform: translate(0px, 0px);
    }
}

@keyframes image-right-2 {
    to {
        transform: translate(0px, 0px);
    }
}

@media (max-width: 1400px) {
    #closeModalButton {
        padding: 0.5rem 10rem;
    }

    /* .modal-content {
        margin-top: 10px;
        width: 90%;
    } */
}

@media screen and (min-width: 130px) {
}

@media screen and (min-width: 131px) and (max-width: 480px) {
    .modal-content {
        margin-top: 50px;
        width: 90%;
    }
}

@media screen and (min-width: 481px) and (max-width: 640px) {
    /* .bottle-image {
        width: 60%;
    } */
    .modal-content {
        margin-top: 10px;
        width: 90%;
    }
    .category-container {
        width: 95%;
    }
}

@media screen and (min-width: 641px) and (max-width: 768px) {
    .category-container {
        width: 96%;
    }
    .modal-content {
        margin-top: 50px;
        width: 70%;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .category-container {
        width: 96%;
    }
    .modal-content {
        margin-top: 50px;
        width: 70%;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1280px) {
    .category-container {
        width: 98%;
    }
    .modal-content {
        margin-top: 50px;
        width: 50%;
    }
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
    .category-container {
        width: 98%;
    }
    .modal-content {
        margin-top: 50px;
        width: 40%;
    }
}
@media screen and (min-width: 1441px) and (max-width: 1500px) {
    .category-container {
        width: 98%;
    }
}
@media screen and (min-width: 1501px) and (max-width: 1920px) {
    /* .category-container {
        width: 96%;
    } */
}

/** End CSS Related to Product Grid **/
.homepage-banner {
    width: 100%;
    overflow: visible;
    background-color: #f0ede8;
    margin-top: 12px; 
    position: relative;
}

.homepage-banner .swiper,
.homepage-banner .swiper-wrapper,
.homepage-banner .swiper-slide {
    width: 100%;
    height: 100%;
}

.homepage-banner .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

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

@media (min-width: 769px) {
    .homepage-banner {
        height: auto; 
    }
    .banner-img {
        max-height: 658px;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 768px) {
    .homepage-banner {
        aspect-ratio: auto;
        margin-top: 12px; 
        margin-left: calc(-1 * var(--page-padding, 1rem));
        margin-right: calc(-1 * var(--page-padding, 1rem));
        width: calc(100% + 1 * var(--page-padding, 1rem));
    }

    .homepage-banner .swiper,
    .homepage-banner .swiper-wrapper,
    .homepage-banner .swiper-slide {
        height: auto;
    }

    .banner-img {
        width: 100%;
        height: auto;
        object-fit: unset;
    }
}

.homepage-banner .swiper-pagination {
    position: static;
    display: block;
    width: 100%;
    text-align: center;
    background-color: #fff;
    padding: 15px 0;
    line-height: 1;
}

.homepage-banner .swiper-pagination-bullet {
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #d9d9d9;
    opacity: 1;
    margin: 0 4px !important;
    border-bottom: 50%;
    transition: all 0.25s ease;
    vertical-align: middle;
}

.homepage-banner .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 7px;
    height: 7px;
    transform: scale(1.2);
}

.swiper-wrapper {
    transition-timing-function: ease-in-out;
}
.site-header {
    z-index: 60;
    background-color: #fff;
}

.maintenance-banner {
    z-index: 999999;
}

.shipping-banner {
    z-index: 50;
}

.header-row {
    padding: 10px 0;
}

.logo-wrapper {
    width: 80px;
}

.logo-image {
    width: 80px;
}

.nav-news-dropdown {
    width: 230px;
}

.logo-image {
    width: 110px;
}

.logo-wrapper {
    width: auto;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.svg-visible {
    overflow: visible;
}

/* mobile responsiveness */
@media (min-width: 640px) {
    .logo-image {
        width: 100px;
    }
}

@media (min-width: 768px) {
    .logo-image {
        width: 80px;
    }
}

@media (min-width: 1024px) {
    .logo-image {
        width: 75px;
    }
}


