
/* :root {
    --primery: #431C6E;
    --primery-light: #082D4B;
    --primery-dark: #0C0415;
    --green: #089A45;
    --yellow: #FFC300;
    --white: #FFFFFF;
    --black: #000000;
    --text: #585C5E;
    --border: #D1C6DD;
    --background: #F8F6FF;
} */

body {
    font-family: "Sora", sans-serif;
    overflow-x: hidden;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sora", sans-serif;
    font-weight: 700;
}

.font-secondary {
    font-family: "Sora", sans-serif !important;
}

.heading {
    font-size: 36px;
    color: var(--primery-dark);
    margin-bottom: 16px;
}

.heading-discription {
    width: 1100px;
    margin: 0 auto 40px;
    text-align: center;
}

.heading.heading-designed {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.heading.heading-designed::before {
    display: inline-block;
    position: relative;
    content: "";
    background-image: url(../images/Isolation_Mode-1.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 90px;
    height: 34px;
}

.heading.heading-designed::after {
    display: inline-block;
    position: relative;
    content: "";
    background-image: url(../images/Isolation_Mode.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 90px;
    height: 34px;
}

.text {
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
}

.primery-bg {
    background-color: var(--primery) !important;
}

.light-bg {
    background-color: var(--background) !important;
}

.yellow-bg {
    background-color: var(--yellow) !important;
}

.orange-bg {
    background-color: var(--orange) !important;
}

.green-bg {
    background-color: var(--active-green) !important;
}

.pink-bg {
    background-color: var(--pink) !important;
}

.header-green {
    color: #03B985 !important;
}

.header-red {
    color: #FF0404 !important;
}

button.slick-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primery);
    border: 1px solid var(--border);
    font-size: 18px;
    background: var(--white);
    transition: 0.4s;
    position: relative;
    top: -23px;
    border-radius: 0;
    left: 1502px;
}

button.slick-arrow:hover,
button.slick-arrow:focus {
    background: var(--primery);
    color: var(--yellow);
    border: 1px solid var(--yellow);
}

button.slick-arrow::before,
button.slick-arrow::after {
    display: none;
}

/* .slick-prev.slick-arrow {
    left: 0px;
    transform: translateX(-100%);
} */

.slick-next.slick-arrow {
    right: 0;
    transform: translateX(100%);
}

.hide-number-arrow[type=number]::-webkit-inner-spin-button,
.hide-number-arrow[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

/* Header Start css */

.top-header-align {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.top-header-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-header-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--primery-dark);
    margin-bottom: 0;
}

.top-header-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--primery-dark);
    text-wrap: nowrap;
    text-decoration: none;
    transition: 0.4s;
}

.top-header-link:hover {
    text-decoration: underline;
}

.top-header-content hr {
    width: 2px;
    min-height: 18px !important;
    margin: 0;
    border: none !important;
    border-right: 2px solid var(--primery-dark) !important;
}

.header .navbar-brand {
    padding: 0;
    margin-right: 12px;
    
}

.header-search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 800px;
}

.header-search .form-control {
    font-size: 16px;
    font-weight: 500;
    color: var(--primery-dark);
    width: 100%;
    border: 1px solid var(--white);
    border-radius: 10px 0 0 10px;
    box-shadow: none !important;
    padding: 14px 12px;
}

.header-search .form-control::placeholder {
    color: var(--placeholder);
}

.btn-header-search {
    font-size: 20px;
    color: var(--primery-dark) !important;
    background: var(--brown) !important;
    border: 1px solid var(--white) !important;
    border-radius: 0 10px 10px 0;
    min-height: 100%;
    padding: 11px;
}

.header .navbar {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.header .navbar-nav .nav-link i {
    display: block;
    text-align: center;
    margin-bottom: 4px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.header .navbar-nav .nav-link:hover i {
    animation: shake 0.4s;
}

/* Simple shake animation */
@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    50% {
        transform: translateX(3px);
    }

    75% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(0);
    }
}

.header .navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--primery-dark);
    padding: 0 10px;
}

.header-bottom-listing {
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.header-listing {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: space-between;
    /* overflow-y: hidden; */
    overflow-x: auto;
    max-width: 100%;
}

.header-listing::-webkit-scrollbar {
    height: 6px;
    background-color: var(--background);
    border-radius: 8px;
}

.header-listing::-webkit-scrollbar-track {
    box-shadow: none
}

.header-listing::-webkit-scrollbar-thumb {
    background-color: var(--primery-light);
    outline: none;
    border-radius: 10px;
}

.header-list-link,
.header-list-link1 {
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--primery-dark);
    text-wrap: nowrap;
    padding: 14px 12px;
    background: transparent;
    transition: 0.4s;
}

.header-list-link:focus,
.header-list-link.active,
.header-list-link1:focus {
    background: var(--background);
}


/* Hero Section */
.hero-card {
    position: relative;
    z-index: 9;
    overflow: hidden;
    color: var(--white);
    height: 100%;
}

.hero-card-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: fit-content;
    max-height: 100%;
    padding: 20px;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
}

.hero-card-content.main-hero-card {
    padding: 50px 42px;
    top: auto;
    bottom: 0;
}

.hero-card-action {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.hero-card-badge {
    font-size: 14px;
    color: var(--black);
    font-weight: 400;
    padding: 6px 14px;
    margin-bottom: 14px;
    display: inline-block;
}

.hero-card-discription {
    font-size: 12px;
    font-weight: 400;
    color: var(--white);
}

.hero-card-price {
    font-size: 22px;
    color: var(--yellow);
}

.hero-heading {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 8px;
    text-shadow: 4px 2px 6px rgb(0 0 0 / 50%);
}

.hero-heading.main-hero-heading {
    font-size: 48px;
}

.btn-hero-action {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    border: 1px solid var(--white) !important;
    background: transparent;
    border-radius: 10px;
    padding: 14px 30px;
    transition: 0.4s;
}

.btn-hero-action:hover {
    background-color: var(--white);
    color: var(--black);
}

.hero-right-image {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 9/6;
    transform: scale(1);
    transition: 0.4s;
}

.hero-center-image {
    width: 100%;
    object-fit: cover;
    height: 100%;
    transform: scale(1);
    transition: 0.4s;
}

.hero-main-image {
    width: 100%;
    object-fit: cover;
    height: 100%;
    transform: scale(1);
    transition: 0.4s;
}

.hero-card:hover .hero-main-image,
.hero-card:hover .hero-center-image,
.hero-card:hover .hero-right-image {
    transform: scale(1.05);
}


/* About Section */

.btn-primery {
    font-size: 16px;
    font-weight: 400;
    border: 1px solid var(--primery) !important;
    color: var(--primery);
    background: transparent;
    border-radius: 10px;
    padding: 12px 40px;
    transition: 0.4s;
}

.btn-primery:hover {
    color: var(--white);
    background: var(--primery);
}

.about-us {
    margin: 60px 0;
}

.about-section-text {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

/* Special products section */

.special-products {
    margin: 60px 0;
}

/* .product-card {
    position: relative;
    box-shadow: 0px 1px 7px 0px #7D357324;
    margin: 10px;
    border-radius: 10px;
    background-color: var(--white);
} */

.product-card .product-link {
    text-decoration: none;
    color: inherit;
}

.special-badge {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    background: var(--primery);
    position: absolute;
    z-index: 9;
    left: 0;
    top: 14px;
    padding: 4px 12px 4px 8px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 50%, 100% 100%, 0 100%);
}

.product-rating {
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
    margin-top: -18px;
    margin-bottom: 18px;
    position: relative;
    z-index: 9;
}

.product-rating i {
    font-size: 16px;
    color: var(--yellow);
    margin-right: 6px;
}

.product-title {
    font-family: Sora;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-disc {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-pricing {
    display: flex;
    align-items: center;
    justify-content: normal;
    gap: 9px;
    flex-wrap: wrap;
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--primery);
}

.product-mrp {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
}

.saving-badge {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    background: var(--active-green);
    border-radius: 20px;
    padding: 2px 10px;
}

.product-actions {
    position: absolute;
    right: 12px;
    top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 11;
}

.product-actions .btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: var(--white) !important;
    color: var(--primery) !important;
    padding: 4px;
    position: relative;
    z-index: 10;
    transform: translateY(0);
    transition: 0.6s;
}

.product-actions .btn:nth-child(2) {
    transform: translateY(-40px);
    z-index: 9;
}

.product-actions .btn:nth-child(3) {
    transform: translateY(-80px);
    z-index: 8;
}

.product-actions .btn:nth-child(4) {
    transform: translateY(-120px);
    z-index: 7;
}

.product-actions .btn:nth-child(5) {
    transform: translateY(-150px);
    z-index: 6;
}

.product-card:hover .product-actions .btn,
.product-card:focus .product-actions .btn {
    transform: translateY(0);
}

.product-image {
    overflow: hidden;
    width: 100%;
    height: fit-content;
    border-radius: 10px 10px 00px 0px;

}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: scale(1);
    transition: 0.4s;
    margin-bottom: 10px;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* special product about css */

.special-product-about {
    margin: 140px 0 60px;
    background-image: url(../images/Layer_1.png);
    background-color: var(--primery);
    background-repeat: repeat;
    background-position: left top;
    background-size: inherit;
}

.special-custom-margin {
    margin: 60px 0;
}

.special-product-about-content {
    background-color: #011525;
    box-shadow: 0px 0px 15px 0px #4BB4FF40;
    border-radius: 30px;
    padding: 56px;
}

.special-product-about-img {
    margin-top: -140px;
    margin-bottom: 80px;
}

.btn-white-linear {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    border: 1px solid var(--white) !important;
    border-radius: 10px;
    padding: 12px 40px;
    background: transparent;
    transition: 0.4s;
}

.btn-white-linear:hover {
    color: var(--primery);
    background: var(--white);
}

/* Counter Section Css */

.counter-section {
    margin: 60px 0;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.counter-card-aligns {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    height: 100%;
}

.counter-card-aligns hr {
    width: 1px;
    min-height: 100%;
    margin: 0;
    border: none !important;
    border-left: 1px solid var(--placeholder) !important;
}

.counter-card {
    text-align: center;
    align-items: center;
    gap: 20px;
}

.counter-card-img {
    background-color: #FAF6F2;
    border-radius: 50%;
    width: 60px;
    min-width: 60px;
    height: 60px;
    padding: 10px;
    overflow: visible;
    margin-bottom: 20px;
}

.counter-card-title {
    font-family: Sora;
    font-weight: 600;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 4px;
}

/* Category Section CSS */

.category-section {
    padding-top: 60px;
    margin: 60px 0;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #F3FAFF 0%, #FFFFFF 100%);
}

.category-card {
    margin: 12px;
}

.category-name {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    color: var(--primery);
    text-align: center;
    margin-top: -60px;
    position: relative;
    z-index: 19;
}

.category-image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 9;
    margin-bottom: 18px;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    width: 60%;
    aspect-ratio: 3/4;
    object-fit: contain;
    margin: 0 auto;
    transition: 0.6s;
}

.category-image::before {
    content: "";
    width: 55%;
    height: auto;
    background: #518BB8;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1/1;
    border-radius: 50%;
    z-index: -1;
    transition: 0.6s;
}

.category-card:hover .category-image::before {
    width: 45%;
    background: #123A58;
}

.category-card:hover .category-image img {
    width: 65%;
}

/* Testimonials CSS */

.testimonial {
    margin: 60px 0;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.rating-review-stars {
    direction: rtl;
    display: flex;
    gap: 4px;
    justify-content: flex-end;
}

.rating-review-stars input[type="radio"] {
    display: none;
}

.rating-review-stars label {
    color: var(--border);
    cursor: pointer;
    transition: color 0.2s;
}

.rating-review-stars input[type="radio"]:checked~label,
.rating-review-stars label:hover,
.rating-review-stars label:hover~label,
.rating-review-stars input.active~label {
    color: var(--primery);
}

.testimonial-card {
    margin: 8px;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0px 2px 4px 0px #00000040 inset;
    border: 1px solid var(--border);
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-date {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
}

.tistimonial-user {
    font-size: 16px;
    font-weight: 700;
    color: var(--primery);
    margin-bottom: 6px;
}

.testimonial-hightlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--primery);
    font-family: "sora";
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.testimonial-text {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 12px;
}

/* Blog CSS */

.blog-card {
    transform: translateY(10px);
    transition: 0.6s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 12px;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primery);
    margin-bottom: 12px;
    font-family: 'Sora';
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blogs {
    margin: 60px 0;
    padding: 60px 0;
    background: #F3FAFF;
}

/* Brand CSS */

.trusted-brands {
    margin: 60px 0;
}

.brands-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
    overflow-y: hidden;
    overflow-x: auto;
    scrollbar-width: none;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    width: 180px;
    height: 100px;
    padding: 0 12px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.brand-item img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.brand-item.active img,
.brand-item:hover img {
    filter: grayscale(0%);
}

.brand-item.active,
.brand-item:hover {
    opacity: 1;
}


/* Footer CSS */


.footer-bottom-align {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-payment-icons {
    height: 22px;
    object-fit: contain;
}


.footer-main {
    border-top: 1px solid var(--border);
    background: var(--background);
    color: var(--white);
    font-family: 'Sora', Arial, sans-serif;
    padding: 60px 0 0 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-col {
    flex: 1 1 180px;
    min-width: 180px;
    margin-bottom: 30px;
}

.footer-brand {
    flex: 2 1 300px;
    min-width: 260px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 10px;
}

.footer-desc {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--body);
}

.footer-address,
.footer-contact,
.footer-email {
    font-size: 14px;
    font-weight: 600;
    color: var(--body);
    margin-bottom: 10px;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
    font-family: "sora";
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color:var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-follow {
    min-width: 220px;
}

.footer-newsletter-desc {
    font-size: 13px;
    color: #b0bec5;
    margin-bottom: 10px;
}

.footer-newsletter {
    margin-bottom: 15px;
}

.footer-input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--placeholder);
    border-radius: 3px 0 0 3px;
    background: var(--primery-light);
    color: var(--white);
    font-size: 14px;
    outline: none;
    width: 100%;
}

.footer-subscribe-btn {
    padding: 10px 30px;
    border: none;
    background: #053E6B;
    color: var(--white);
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
}

.footer-subscribe-btn:hover {
    background: var(--white);
    color: var(--s);
}

.footer-social a {
    display: inline-block;
    color: var(--primery);
    background: var(--white);
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    margin-right: 7px;
    font-size: 15px;
    transition: 0.2s;
}

.footer-social a:hover {
    background: var(--primery-light);
    color: var(--white);
}


/* Login CSS */

.category-checkbox-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--primery);
    cursor: pointer;
    gap: 6px;
}

.category-checkbox-input {
    accent-color: var(--yellow);
    width: 16px;
    height: 16px;
}

.custom-modal .modal-content {
    border-radius: 0;
    padding: 24px 44px;
}

.custom-modal-heading {
    font-size: 30px;
    font-weight: 600;
    color: var(--primery);
    margin-bottom: 30px;
}

.custom-modal-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primery-dark);
    margin-bottom: 6px;
}

.custom-input-groups {
    position: relative;
    z-index: 9;
}

.custom-input-groups .form-control {
    font-size: 16px;
    font-weight: 400;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: none !important;
    border: 1px solid var(--border);
    transition: 0.4s;
    color: var(--primery-dark);
    padding-left: 40px;
}

.custom-input-groups .form-control::placeholder {
    color: var(--placeholder);
}

.custom-input-groups .form-control:hover,
.custom-input-groups .form-control:focus {
    border-color: var(--primery);
}

.custom-input-groups i {
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 16px;
    color: #707070;
}

.login-remember-group {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.login-remember-group .forget-pass-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--primery);
}

.btn-login-submit {
    display: block;
    text-align: center;
    width: 100%;
    background: var(--primery);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    padding: 12px 36px;
    border-radius: 10px;
    border: 1px solid var(--primery) !important;
    transition: 0.4s;
}

.btn-login-submit:hover {
    background: transparent;
    color: var(--primery);
}

.or-selection {
    position: relative;
    margin: 32px 0;
    z-index: 1;
    overflow: visible;
    opacity: 1;
    border-color: var(--border);
}

.or-selection::before {
    position: absolute;
    width: 32px;
    height: 32px;
    content: "or";
    color: var(--primery);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.other-login-btns {
    width: 100%;
    max-width: 340px;
    margin: 0 auto 18px;
}

.other-login-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--primery) !important;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
}

.other-login-btn img {
    width: 30px;
    min-width: 30px;
}

.modal-switch-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    text-align: center;
}

.modal-switch-text a {
    font-weight: 600;
    color: var(--primery);
}

.otp-inputs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.otp-inputs input.form-control {
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: none !important;
    width: 42px;
}

.otp-inputs input.form-control:focus {
    border-color: var(--primery);
}

.otp-verification-icon hr {
    height: 2px;
    border: none !important;
    background: linear-gradient(45deg, transparent, black, transparent);
    margin: 24px 0;
}

.otp-verification-icon i {
    font-size: 52px;
    text-align: center;
    width: 100%;
    color: var(--green);
}

/* Listing Page CSS */

.links-histry-step {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--placeholder);
    font-size: 14px;
}

.links-histry-step a {
    text-decoration: none;
    color: var(--placeholder);
    transition: 0.3s;
}

.links-histry-step a:hover {
    color: var(--primery);
}

.listing-filter-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
    background: var(--white);
    height: fit-content;
}

.listing-filter-align {
    position: relative;
    z-index: 9;
    height: 100%;
}

.listing-filter {
    position: sticky;
    top: 24px;
}

.filter-top {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    margin: 4px 0 10px;
}

.filter-top h4 {
    font-size: 16px;
    font-weight: 400;
    color: var(--primery);
    font-family: 'Sora';
    margin-bottom: 0;
}

.filter-top .btn {
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
    color: var(--placeholder);
    padding: 0;
    border: none !important;
    transition: 0.4s;
}

.filter-top .btn {
    color: var(--primery);
}

.filter-listing .accordion .accordion-item {
    border-radius: 0 !important;
    border-left: none;
    border-right: none;
}

.filter-listing .accordion .accordion-item .accordion-button {
    box-shadow: none !important;
    font-size: 16px;
    font-weight: 600;
    color: var(--primery-dark);
    padding: 16px 0;
    font-family: 'Sora';
    background: transparent !important;
}

.filter-listing .accordion .accordion-item .accordion-button::after {
    background-size: 16px;
    background-position: center;
}

.listing-pagination .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
}

.listing-pagination .pagination-btn {
    background: none !important;
    border: none !important;
    color: var(--primery) !important;
    font-size: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.listing-pagination .pagination-page {
    background: transparent;
    border: 1px solid transparent;
    color: var(--primery);
    font-size: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.listing-pagination .pagination-page.active {
    background: var(--primery);
    color: #fff;
}

.category-filter-input {
    accent-color: var(--primery);
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.filter-category {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.category-filter-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
}

input:checked~.category-filter-label {
    font-weight: 600;
    color: var(--primery);
}

.listing-main-product-card {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.listing-main-product-heading {
    font-family: 'Sora';
    color: #005293;
    margin-bottom: 8px;
    font-size: 40px;
    font-weight: 600;
}

.sub-heading {
    font-size: 22px;
    font-weight: 600;
    color: var(--primery-dark);
}

.listing-main-product-card .sub-heading {
    font-family: 'Sora';
}

.fill-dark-btn {
    font-size: 16px;
    font-weight: 400;
    color: #431c6e !important;
    border: 1px solid var(--primery) !important;
    border-radius: 10px;
    background: var(--white) !important;
    padding: 12px 32px;
    transition: 0.4s;
}

.fill-dark-btn:hover {
    color: var(--primery) !important;
    background: var(--white) !important;
}

.listing-top-header {
    background: var(--primary);
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.listing-top-left {
    font-size: 16px;
    font-weight: 700;
    color: var(--primery-dark);
}

.listing-top-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.listing-view-radios {
    display: flex;
    align-items: center;
    gap: 14px;
}

.listing-view-radios label.btn {
    border: none !important;
    background: transparent !important;
    padding: 0;
    border-radius: 0;
    font-size: 24px;
    color: var(--border);
}

.listing-view-radios .btn-check:checked+.btn {
    color: var(--primery);
}

.sort-select {
    box-shadow: none !important;
    border: 1px solid var(--white);
    background-color: var(--white);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--blacks);
    padding: 8px 16px;
    width: fit-content;
}

.sort-select:focus {
    border-color: var(--active-green);
}

.listing-items .product-card {
    margin: 0;
    height: 100%;
}

.listing-items-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.listing-items-filter.boxes-list .item {
    width: calc(25% - 15px);
    min-height: 100%
}

/* List View */

.listing-items-filter.row-design-list .item {
    width: 100%;
}

.listing-items-filter.row-design-list .item .product-card .product-link {
    display: flex;
    align-items: start;
    gap: 20px;
}

.listing-items-filter.row-design-list .item .product-card .product-link .product-image {
    width: 12%;
    min-width: 12%;
}

.listing-items-filter.row-design-list .item .product-card .product-details .product-rating {
    margin-top: 0;
}

.listing-items-filter.row-design-list .item .product-card .product-details {
    width: 80%;
}

.listing-items-filter.row-design-list .item .product-card {
    padding: 18px 60px 18px 18px;
}

/* Product Details CSS */

.prdt-pregress-card .review-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    text-wrap: nowrap;
    margin-top: 12px;
}

.review-progress .progress {
    width: 100%;
    height: 8px;
    background: var(--background);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.review-progress .progress-bar {
    background: var(--primery);
    height: 100%;
    border-radius: 8px;
    transition: width 0.4s;
}

.review-progress .review-type,
.review-progress .review-present {
    font-size: 14px;
    font-weight: normal;
    min-width: 40px;
}

.review-progress .progress .progress-bar {
    border-radius: 10px;
}

.prdt-progress-section .avrg-reviews {
    font-weight: 600;
}

.custom-slick-thumbs {
    bottom: 0;
}

.custom-slick-thumbs .slick-slide {
    border: 1px solid transparent;
    opacity: 0.4;
    border-radius: 6px;
    transition: 0.4s;
    overflow: hidden;
}

.custom-slick-thumbs .slick-slide .cstm-dot {
    border: none !important;
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    padding: 0;
    background: var(--white) !important;
}

.custom-slick-thumbs .slick-slide.slick-current,
.custom-slick-thumbs .slick-slide:hover {
    border-color: var(--placeholder);
    opacity: 1;
}

.custom-slick-thumbs .slick-slide .cstm-dot .img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prdct-card-main-image .prdt-img {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
}

.prdct-card-main-image .prdt-img img {
    width: 100%;
    height: auto;
    max-height: 100%;
}

.prdct-card-main-image,
.prdct-card-main-image div {
    height: 100%;
}

.prdt-top {
    font-size: 16px;
    font-weight: 600;
    color: var(--placeholder);
    display: block;
    margin-bottom: 12px;
}

.prdt-top i {
    color: var(--green);
}

.about-prdt-text {
    font-size: 14px;
    color: var(--placeholder);
}

.prdt-review-div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.total-review-avrg {
    font-size: 14px;
    font-weight: 600;
    color: var(--placeholder);
}

.total-review-avrg a {
    color: var(--primery);
}

.review-stars-align {
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-stars-align .riview-star {
    color: var(--text);
    font-size: 16px;
}

.review-stars-align .riview-star.active {
    color: var(--yellow);
}

.prdct-detail-sepreter {
    margin: 24px 0;
    border-color: var(--placeholder);
}

.prdt-facts-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
}

.prdt-facts-listing {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 12px;
    justify-content: space-between;
    margin-bottom: 24px;
}

.prdt-facts-listing .prdt-fact-card {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    min-width: calc(33% - 6px);
}

.prdt-facts-listing .prdt-fact-image {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: var(--background);
    padding: 6px;
    overflow: visible;
}

.prdt-facts-listing .prdt-fact-right-content h6 {
    font-size: 14px;
    font-family: 'Sora';
    font-weight: 400;
    color: var(--placeholder);
    margin-bottom: 2px;
}

.prdt-facts-listing .prdt-fact-right-content p {
    font-size: 14px;
    font-weight: 600;
    color: var(--primery);
    margin-bottom: 0;
}

.prdt-size {
    font-size: 18px;
    font-weight: 600;
    color: var(--primery);
    margin-bottom: 16px;
}

.prdt-size span {
    color: var(--placeholder);
}

.prdt-size-input-list {
    display: flex;
    align-items: center;
    max-width: 100%;
    gap: 8px;
    overflow-y: hidden;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 34px;
}

.prdt-radio-items .prdt-size-radio-label {
    font-size: 14px;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    line-height: 50px;
    font-weight: 600;
    color: var(--placeholder);
    border: 1px solid var(--placeholder);
    text-align: center;
    transition: 0.4s;
    cursor: pointer;
}

.prdt-radio-items .prdt-size-radio:checked~.prdt-size-radio-label,
.prdt-radio-items .prdt-size-radio-label:hover {
    border-color: var(--black);
    color: var(--black);
}

.product-details-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.product-details-pricing .saling-price {
    font-size: 32px;
    font-weight: 600;
    color: var(--black);
}

.product-details-pricing .mrp-price {
    font-size: 22px;
    font-weight: 400;
    color: var(--red);
    text-decoration: line-through;
}

.product-price-content {
    font-size: 16px;
    font-weight: 400;
    color: var(--placeholder);
    margin-bottom: 24px;
}

.product-add-cart-sec {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.add-cart-button {
    font-size: 16px;
    font-weight: 400;
    background-color: var(--primery);
    color: var(--white);
    border: 1px solid var(--primery) !important;
    border-radius: 10px;
    padding: 10px 30px;
    width: 100%;
    max-width: 380px;
    transition: 0.4s;
}

.add-cart-button:hover {
    color: var(--primery);
    background: var(--white);
}

.product-add-cart-sec .item-count-div {
    display: flex;
    border: 1px solid var(--placeholder);
    border-radius: 10px;
    overflow: hidden;
}

.product-add-cart-sec .item-count-div .count-input {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    width: 100%;
    text-align: center;
    padding: 6px 18px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primery);
}

.product-add-cart-sec .input-count-right {
    display: flex;
    flex-direction: column;
}

.product-add-cart-sec .input-count-right input {
    background: transparent;
    border: none !important;
    border-radius: 0;
    border-left: 1px solid var(--placeholder) !important;
    font-size: 14px;
    font-weight: 600;
    color: var(--primery);
    padding: 2px 14px;
}

.product-add-cart-sec .input-count-right input#plus {
    border-top: 1px solid var(--placeholder) !important;
}

.prebooking-product-section {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 16px;
}

.prebooking-first .prevooking-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--placeholder);
    margin-bottom: 4px;
}

.prebooking-first .prebooking-price {
    font-size: 26px;
    font-weight: 600;
    color: var(--primery);
    display: block;
}

.prebooking-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prebook-btn {
    font-size: 18px;
    font-weight: 400;
    color: var(--white) !important;
    border: 1px solid var(--primery) !important;
    border-radius: 10px;
    background: var(--primery) !important;
    padding: 14px 48px;
    transition: 0.4s;
}

.prebook-btn:hover {
    color: var(--primery) !important;
    background: var(--white) !important;
}

.prebooking-secondary-date .prevooking-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--placeholder);
    margin-bottom: 4px;
}

.prebooking-secondary-date .prebooking-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--primery);
}

.prebooking-secondary-date {
    background: var(--background);
    padding: 2px 12px;
    border-radius: 10px;
}

.product-page-more-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.maction-btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--placeholder);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: transparent !important;
    border: none !important;
}

.maction-btn i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--placeholder);
    border-radius: 50%;
    color: var(--black);
    font-size: 16px;
}

.Brand-discription-section {
    margin: 60px 0;
}

.location-map-embed {
    border-radius: 24px;
    overflow: hidden;
    height: fit-content;
}

.product-details-content-heading {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Sora';
    margin-bottom: 10px;
    color: var(--primery);
}

.character-listing {
    color: var(--placeholder);
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.character-listing li {
    width: fit-content;
    min-width: calc(30% - -4px);
}

.produuct-details-accordions .accordion-button {
    box-shadow: none !important;
    font-weight: 600;
    font-family: 'Sora';
    color: var(--primery-dark);
    background: #f8f6ff !important;
    font-size: 20px;
    padding: 20px 0;
    /* border-bottom: 1px solid var(--placeholder); */
}

.produuct-details-accordions .accordion {
    border-top: 1px solid var(--placeholder);
}

.produuct-details-accordions .accordion-button::after {
    transform: rotate(-180deg);
}

.produuct-details-accordions .accordion-button.collapsed::after {
    transform: rotate(-90deg);
}

.product-review-card {
    border-radius: 20px;
    border: 1px solid var(--placeholder);
}
.accordion-body {
    background-color: #f8f6ff;
    
}
.product-reviews-left-card {
    padding: 20px;
    border-right: 1px solid var(--placeholder);
    height: 100%;
}


.product-reviews-left-card .total-avrg-review {
    font-size: 54px;
    font-weight: 600;
    color: var(--primery);
}

/* .product-reviews-left-card-top hr {
    width: 1px;
    min-height: 100%;
    border-right: 1px solid var(--text) !important;
    display: block;
    margin: 14px 0;
} */

.text-review {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0;
}

.reviews-left-card-top-align {
    margin: 14px 0;
}

.seprater-dark {
    border-color: var(--black) !important;
    margin: 10px 0 24px;
    opacity: 1;
}

.rv-this-prdt {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Sora';
    color: var(--black);
    margin-bottom: 12px;
}

.small-text-prdt {
    font-size: 14px;
    font-weight: 600;
    color: var(--placeholder);
    margin-bottom: 14px;
}

.prdt-pregress-card {
    width: 100%;
    max-width: 380px;
}

.review-card-listing {
    padding-right: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 300px;
    margin: 24px 0;
}

.review-card-listing::-webkit-scrollbar {
    width: 6px;
    border-radius: 8px;
}

.review-card-listing::-webkit-scrollbar-track {
    box-shadow: none
}

.review-card-listing::-webkit-scrollbar-thumb {
    background-color: var(--primery-light);
    outline: none;
    border-radius: 10px;
}

.product-reviews-section {
    margin: 60px 0;
}

.review-card {
    display: flex;
    gap: 16px;
    padding: 14px;
    background: #EAF6FF;
    border-radius: 10px;
    margin-bottom: 20px;
}

.review-by-image .review-by-image-name-text {
    font-size: 46px;
    font-weight: 600;
    color: var(--white);
    background: var(--primery);
    border-radius: 10px;
    display: block;
    width: 98px;
    min-width: 98px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.review-by-image img {
    width: 98px;
    min-width: 98px;
    height: 98px;
    border-radius: 10px;
    object-fit: cover;
}

.style-progress-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.style-progress-item {
    display: flex;
    align-items: center;
    flex: 1 1 0;
    gap: 10px;
}

.style-progress-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #FFA726;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(255, 167, 38, 0.08);
    position: relative;
}

.style-progress-circle span {
    background: #FFA726;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.style-progress-label {
    font-weight: 600;
    color: #14202B;
    font-size: 16px;
    margin-top: 2px;
    font-family: 'Sora', sans-serif;
}

.inspiration-listing {
    margin: 60px 0;
}

.text-primery {
    color: var(--primery-dark) !important;
}

.inspiration-product-bottom {
    display: flex;
    justify-content: center;
    height: 100%;
    gap: 10px;
}

.inspiration-product-bottom .text {
    text-wrap: nowrap;

    b {
        font-weight: 600;
    }
}

.inspiration-product-bottom .btn-vote-now {
    width: 100%;
    height: 10%;
    color: var(--white);
    background: var(--primery);
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid var(--primery);
    padding: 11px;
    transition: 0.4s;
}

.inspiration-product-bottom .btn-vote-now:hover {
    background: transparent;
    color: var(--primery);
}

.modal-sub-heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.new-form-input .form-control {
    box-shadow: none !important;
    border: none !important;
    border-radius: 0;
    border: 1px solid var(--border) !important;
    font-size: 16px;
    font-weight: 400;
    color: var(--primery);
    padding: 10px;
}

.new-form-input .form-control:focus {
    border-color: var(--primery) !important;
}

.btn-votes-submit {
    display: block;
    border: 1px solid var(--primery) !important;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white) !important;
    background: var(--primery) !important;
    padding: 10px 40px;
    margin-left: auto;
    transition: 0.4s;
}

.btn-votes-submit:hover {
    color: var(--primary) !important;
    background: var(--white) !important;
}

/* Search Input CSS */

.header-search-suggestion-wrapper {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.search-suggestion-box {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 32px 0 rgba(0, 0, 0, 0.10);
    z-index: 99;
    padding: 0 0 24px 0;
    min-width: 350px;
}

.search-suggestion-list {
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 24px 0 24px;
}

.search-suggestion-item {
    padding: 10px 0;
    font-size: 16px;
    color: #222;
    cursor: pointer;
    border-bottom: 1px solid #f3f3f3;
    transition: 0.2s;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background: #f8f8f8;
}

.search-suggestion-most {
    padding: 18px 24px 0 24px;
}

.search-suggestion-title {
    font-weight: 700;
    font-size: 20px;
    color: #18344a;
    margin-bottom: 16px;
}

.search-suggestion-products {
    display: flex;
    gap: 6px;
    overflow-y: hidden;
    overflow-x: auto;
}

/* Product Search Card Sort */

.search-suggestion-products .item .product-title {
    font-size: 12px;
    margin-bottom: 8px;
}

.search-suggestion-products .item .product-disc {
    font-size: 10px;
    margin-bottom: 8px;
}

.search-suggestion-products .item .product-price {
    font-size: 12px;
}

.search-suggestion-products .item .product-mrp {
    font-size: 10px;
}

.search-suggestion-products .item .saving-badge {
    font-size: 8px;
    padding: 2px 6px;
}

.search-suggestion-products .item .product-pricing {
    gap: 4px;
}

.search-suggestion-products .special-badge {
    font-size: 10px;
}

.search-suggestion-products .item {
    width: 220px;
    min-width: 220px;
}

/* suggest-product-spage */

.suggest-product-spage {
    margin: 60px 0;
}

.how-to-suggest-section {
    background-color: var(--background);
    padding: 60px 0;
    margin: 60px 0 0;
}

.how-to-suggest-pera {
    background: var(--white);
    padding: 24px 32px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #021B2F3D;
    height: 100%;
}

.how-tosuggestion-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    gap: 26px 10px;
}

.how-tosuggestion-list li {
    position: relative;
    width: fit-content;
    min-width: calc(50% - 5px);
}

.how-tosuggestion-list li::before {
    position: relative;
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../images/material-symbols_check-rounded.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: -7px;
    margin-right: 8px;
}

/* Sell Your Cask Page */

.sell-cask-top-align {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sell-cast-top-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--primery-dark);
    margin-bottom: 0;
}

.remove-cask-btn {
    border: none !important;
    background: #FFEEEE !important;
    color: var(--red) !important;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    padding: 10px 32px;
}

.sell-cask-btn {
    border: 1px solid var(--primery) !important;
    background: var(--primery) !important;
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    padding: 10px 32px;
    transition: 0.4s;
}

.sell-cask-btn:hover {
    background: var(--white) !important;
    color: var(--primery) !important;
}

.image-upload-box {
    background: var(--background) !important;
    border: 1px dashed var(--primery) !important;
    border-radius: 10px;
    padding: 10px 16px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
    width: 100%;
}

.image-upload-box input[type="file"] {
    display: none;
}

.image-upload-label {
    font-size: 16px;
    color: #22313f;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: block;
    text-decoration: underline;
}

/* Whishlist CSS */

.wishlist-table {
    border: 1px solid var(--border);
    margin-bottom: 0;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.wishlist-table thead tr th {
    background: var(--background);
    padding: 10px 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primery-dark);
}

.wishlist-table .wishlist-img {
    width: 60px;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}



.wishlist-table th,
.wishlist-table td {
    padding: 10px 16px;
    text-align: left;
    vertical-align: middle;
    font-family: 'Sora', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.wishlist-table tbody tr:last-child td {
    border-bottom: none;
}

.wishlist-table .wishlist-action {
    display: flex;
    gap: 16px;
    align-items: center;
}

.wishlist-table .wishlist-remove {
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
}

.wishlist-table .wishlist-remove:hover {
    background: #b71c1c;
}

.wishlist-table .wishlist-cart {
    background: none;
    border: none;
    color: var(--primery);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
}

.whishlist-action-btn-group {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Cart Offcanvas CSS */

.items-count .items-count-div {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.items-count .input-count-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.items-count .count-input {
    border: none !important;
    padding: 6px 16px;
    text-align: center;
    box-shadow: none !important;
    outline: none !important;
}

.items-count .input-count-right input {
    border: none;
    background: transparent;
    border-left: 1px solid var(--border);
    font-weight: 700;
    font-size: 18px;
    padding: 0 8px;
    color: var(--dark);
    line-height: 20px;
}

.items-count .input-count-right .cart-minus-input {
    border-bottom: 1px solid var(--border);
}

.cart-offcanvas {
    min-width: 700px;
}

.cart-offcanvas .offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 24px;
    padding: 14px 0;
}

.cart-offcanvas .offcanvas-header h5 {
    font-family: 'Sora';
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.cart-offcanvas-bottom {
    margin: 0 24px 14px;
}

.cart-offcanvas-bottom .cart-total-align {
    background: var(--background);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    margin-bottom: 14px;
}

.cart-offcanvas-bottom .cart-total-align span {
    font-size: 16px;
    font-weight: 700;
    color: var(--primery);
}

.cart-offcanvas-bottom .cart-checkout-link {
    display: block;
    padding: 10px 32px;
    font-family: 'Sora';
    font-size: 16px;
    font-weight: 500;
    border: 1px solid var(--primery) !important;
    background: var(--primery) !important;
    color: var(--white) !important;
    border-radius: 10px;
    width: fit-content;
    margin-left: auto;
    transition: 0.4s;
}

.cart-offcanvas-bottom .cart-checkout-link:hover {
    background: var(--white) !important;
    color: var(--primary) !important;
}

.cart-offcanvas .cart-item {
    padding: 20px;
    display: flex;
    gap: 16px;
    border: 1px solid var(--border);
    margin-bottom: 16px;
    border-radius: 10px;
    background-color: #F9F9F9;
}

.cart-offcanvas .cart-item .cart-item-image {
    width: 70px;
    height: 80px;
    min-width: 70px;
    overflow: hidden;
}

.cart-offcanvas .cart-item .cart-item-image .img-fluid {
    width: 100%;
    height: 100%;
    border: 1px solid var(--border);
    object-fit: cover;
}

.cart-offcanvas .cart-item .cart-item-details .product-name {
    font-size: 16px;
    font-family: 'Sora';
    color: var(--primery-dark);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.cart-offcanvas .cart-item .card-item-details-align {
    display: flex;
    align-items: end;
    gap: 10px;
    justify-content: space-between;
    margin-top: auto;
    align-items: center;
}

.cart-offcanvas .cart-item .item-prc {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0;
}

.cart-offcanvas .cart-item .cart-item-details {
    height: 100%;
    width: 100%;
}

.cart-offer-progress {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cart-progress-label {
    color: var(--placeholder);
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.cart-progress-bar {
    width: 100%;
    height: 12px;
    background: #d3e0e5;
    border-radius: 10px;
    position: relative;
}

.cart-progress-fill {
    background: repeating-linear-gradient(135deg,
            #162634,
            #162634 10px,
            #22344a 10px,
            #22344a 20px);
    height: 100%;
    border-radius: 10px 0 0 10px;
    transition: width 0.4s;
}

.cart-progress-thumb {
    position: absolute;
    top: 50%;
    left: var(--progress, 50%);
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: #fff;
    border: 1px solid #162634;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.cart-progress-thumb-inner {
    width: 14px;
    height: 14px;
    background: #162634;
    border-radius: 50%;
}

/* Cart Page CSS */

.border-left-right-none {
    border-left: none !important;
    border-right: none !important;
}

.btn-speciliz-named {
    font-size: 12px;
    font-weight: 400;
    color: var(--primery) !important;
    text-wrap: nowrap;
    background: var(--background) !important;
    width: fit-content;
    border-radius: 10px;
    border: 1px solid #A1C1DA !important;
    padding: 4px 10px;
    margin-top: 4px;
}

.personalize-close-btn {
    font-size: 18px;
    display: block;
    margin-left: auto;
    width: fit-content;
    padding: 0;
    border: none !important;
}

.bottle-name-personlize-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.cart-coupo-and-submit {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cart-coupo-and-submit .coupo-code-div {
    width: 500px;
}

.coupon-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.coupon-input-group .fill-dark-btn {
    text-wrap: nowrap;
}

.coupon-input-group .form-control {
    width: 100%;
    box-shadow: none !important;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    color: var(--primery);
    border-color: var(--border);
    background: var(--background);
}

.coupon-info {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.coupon-info .coupon-count {
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
}

.coupon-info .view-coupons-link {
    font-size: 16px;
    text-decoration: none;
    color: var(--primery);
    font-weight: 600;
}

.cart-sub-heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--primery);
    margin-bottom: 24px;
}

/* Cart Search Card Sort */

.cart-suggestions-slider .item .product-title {
    font-size: 12px;
    margin-bottom: 8px;
}

.cart-suggestions-slider .item .product-disc {
    font-size: 10px;
    margin-bottom: 8px;
}

.cart-suggestions-slider .item .product-price {
    font-size: 12px;
}

.cart-suggestions-slider .item .product-mrp {
    font-size: 10px;
}

.cart-suggestions-slider .item .saving-badge {
    font-size: 8px;
    padding: 2px 6px;
}

.cart-suggestions-slider .item .product-pricing {
    gap: 4px;
}

.cart-suggestions-slider .special-badge {
    font-size: 10px;
}

/* suggest-Cart-spage */

.w-fit-content {
    /* width: fit-content !important; */
}

.cart-billing-card {
    padding: 00px 30px;
    background: var(--white);
    border-radius: 20px;
}

.cart-billing-card .cart-bill-details {
    margin-top: 24px;
    margin-bottom: 24px;
}

.cart-billing-card .cart-bill-details>h3 {
    font-size: 20px;
    font-family: 'Sora';
    color: var(--primery-dark);
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 12px;
}

.cart-billing-card .cart-bill-details .cart-bill-tabs-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--body);
    border-bottom: 1px solid var(--border   );
    padding: 12px 18px;
}

.cart-billing-card .cart-bill-details .cart-bill-tabs-footer h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primery-dark);
    margin-bottom: 0;
    font-family: 'Sora';
}

.cart-billing-card .cart-bill-details .cart-bill-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    margin-bottom: 22px;
}

.cart-billing-card .cart-bill-details .cart-bill-tabs p {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.spin-offers {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    background: #F2E9FF;
    border-radius: 10px;
    padding: 12px;
}

.spin-offers .img-fluid {
    width: 22px;
    min-width: 22px;
    height: auto;
}

.spin-offers p {
    font-size: 18px;
    font-weight: 600;
    color: #3700FF;
    margin-bottom: 0;
}
/* 
.cart-page {
    margin: 20px 0 60px;
} */

.cart-page-hero {
    background-color: var(--white);
    padding: 40px 0;
    background-image: url(../images/Layer_1121.png);
    background-repeat: repeat;
    background-position: left top;
    background-size: auto;
    margin-bottom: 30px;
}

.cart-page-steps {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    
}

.cart-page-step {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cart-page-step .cart-step-number {
    width: 43px;
    height: 43px;
    background: var(--white);
    border-radius: 50%;
    border: 1px solid var(--border);
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-page-step .cart-step-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0;
}

.cart-page-step.active .cart-step-number {
    background-color: var(--primery);
    color: var(--white);
}

.cart-page-step.active .cart-step-name {
    color: var(--primery);
}

.fixed-spinicon {
    display: block;
    width: 110px;
    height: auto;
    position: fixed;
    z-index: 990;
    right: 40px;
    bottom: 50px;
    transition: 0.3s;
    transform: scale(.95);
}

.fixed-spinicon:hover {
    transform: scale(1);
}

/* Spin Offer Page CSS */


.spin-offers-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 40px auto 60px;
}

.spin-offer-item {
    background: var(--background);
    border: 2px solid #e8f0f3;
    border-radius: 20px;
    padding: 60px 20px 20px 30px;
    position: relative;
    margin-bottom: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.spin-offer-item .spin-offer-month {
    position: absolute;
    top: 0;
    left: 24px;
    right: 20px;
    background: var(--primery);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 20px;
    padding: 14px 32px;
    z-index: 2;
    font-family: 'Sora', sans-serif;
    width: fit-content;
    transform: translateY(-50%);
}

.spin-offer-item .spin-offer-lottery {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0px 0px 6px 0px #25466140;
    padding: 10px;
    min-width: 180px;
    font-family: 'Sora', sans-serif;
}

.spin-offer-item .spin-offer-customer-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primery);
    margin-bottom: 6px;
}

.spin-offer-item .spin-offer-customer-name {
    font-size: 16px;
    color: #7c8b99;
}

/* Coupon Apply Offcavas design  */

.coupon-code-offcanvas {
    min-width: 550px;
}

.coupon-code-offcanvas .cart-offcanvas-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 24px;
}

.coupon-disc-total-align span {
    font-size: 20px;
    font-weight: 600;
    color: var(--primery);
}

.my-coupon-code-input {
    position: relative;
    z-index: 9;
    margin-bottom: 24px;
}

.my-coupon-code-input .form-control {
    box-shadow: 0px 0px 12px 0px #162B3C33;
    font-size: 16px;
    font-weight: 400;
    color: var(--primery);
    border-radius: 10px;
    padding: 10px 60px 10px 16px;
    border: 1px solid var(--border);
}

.my-coupon-code-input label {
    position: absolute;
    font-size: 16px;
    font-weight: 600;
    color: var(--primery);
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
}

.select-coupen-check {
    display: flex;
    flex-direction: column;
}

.select-coupen-check .select-cpn-crad {
    order: 2;
}

.select-coupen-check .select-cpn-crad.active {
    order: 1;
}

.select-cpn-crad .aply-btn-cpn-code {
    text-align: left;
    padding: 10px 10px 10px 46px;
    border-radius: 10px;
    border: 1px solid var(--border);
    width: 100%;
    position: relative;
}

.select-cpn-crad .aply-btn-cpn-code .code-cpn {
    font-size: 14px;
    font-weight: 500;
    color: var(--primery);
    background: var(--background);
    border: 1px solid var(--text);
    border-radius: 4px;
    padding: 6px 10px;
    display: block;
    width: fit-content;
    margin-bottom: 10px;
}

.select-cpn-crad .aply-btn-cpn-code .cpncode-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primery);
    margin-bottom: 10px;
}

.select-cpn-crad .aply-btn-cpn-code .cpncode-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 8px;
}

.select-cpn-crad .aply-btn-cpn-code::before {
    content: "";
    background: var(--white);
    display: block;
    position: absolute;
    left: 10px;
    top: 10px;
    width: 24px;
    height: 24px;
    border: 1px solid var(--placeholder);
    border-radius: 6px;
}

.select-cpn-crad .aply-btn-cpn-code::after {
    content: "";
    background: var(--primery);
    display: block;
    position: absolute;
    left: 13px;
    top: 13px;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    opacity: 0;
}

.select-cpn-crad .btn-check:checked~.aply-btn-cpn-code,
.select-cpn-crad .aply-btn-cpn-code:hover {
    border-color: var(--primery);
}


.select-cpn-crad .btn-check:checked~.aply-btn-cpn-code::before {
    border-color: var(--primery);
}

.select-cpn-crad .btn-check:checked~.aply-btn-cpn-code::after {
    opacity: 1;
}

.accept-tandc-input .form-check-input {
    box-shadow: none !important;
    border: 1px solid var(--border);
    background-color: var(--white);
    border-radius: 4px;
    width: 18px;
    height: 18px;
}

.accept-tandc-input .form-check-input:checked {
    background-color: var(--primery);
    border-color: var(--primery);
}

.accept-tandc-input .form-check-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
}

.accept-tandc-input .form-check-label a {
    color: var(--primery);
}

.accept-tandc-input {
    margin-bottom: 24px;
}


#TandCModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    background: #fff;
    overflow: hidden;
}

.tandc-modal-content {
    position: relative;
    padding: 0;
}

.tandc-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primery);
    margin-bottom: 24px;
    font-family: 'Sora', sans-serif;
}

.tandc-text {
    font-size: 16px;
    color: var(--text);
    background: var(--background);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    font-family: 'Sora', sans-serif;
}

.tandc-modal-footer {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: 20px;
}

.tandc-modal-btns .btn {
    min-width: 160px;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 10px;
}

.tandc-modal-btns .btn-primery {
    background: var(--primery);
    color: var(--white);
    border: none;
}

.tandc-modal-btns .btn-primery:disabled {
    background: var(--text);
    color: var(--white);
    cursor: not-allowed;
}

.tandc-modal-btns .btn-outline-secondary {
    border: 1px solid var(--border);
    color: var(--primery);
    background: var(--white);
}

.tandc-modal-btns .btn-outline-secondary:hover {
    background: var(--background);
}

.tandc-ip {
    font-size: 20px;
    font-weight: 600;
    color: var(--primery);
    margin-bottom: 0;
}

.cart-support-box {
    display: flex;
    align-items: center;
    background: #FFFAF3;
    border: 1px solid #A28256;
    border-radius: 20px;
    padding: 24px 32px;
    gap: 24px;
}

.cart-support-icon {
    width: 90px;
    height: 90px;
    background: #C59A60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    flex-shrink: 0;
}

.cart-support-content {
    flex: 1;
}

.cart-support-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'Sora', sans-serif;
}

.cart-support-desc {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 0;
}

.cart-support-phone {
    font-weight: 700;
    font-size: 24px;
    color: var(--black);
    font-family: 'Sora', sans-serif;
    white-space: nowrap;
}

.text-red {
    color: var(--red) !important;
}

.checkout-top-sign-in {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 16px;
    background-color: #EBE5FF;
}

.checkout-top-sign-in a {
    text-decoration: none;
    color: var(--primery);
    font-size: 16px;
    font-weight: 700;
}

.address-type-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.address-type-btn {
    padding: 6px 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--placeholder);
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    transition: 0.2s;
    cursor: pointer;
}

.btn-check:checked~.address-type-btn {
    background: var(--primery);
    color: var(--white);
    border-color: var(--primery);
}

/* Save as Default Checkbox */
.save-default-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.save-default-label {
    color: var(--placeholder);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Different Billing Address */
.billing-address-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

/* Order Notes */

.order-notes-textarea {
    width: 100%;
    min-height: 100px;
    border: 1px solid var(--placeholder);
    border-radius: 8px;
    padding: 12px;
    font-size: 1rem;
    color: var(--primery-dark);
    background: var(--background);
    resize: vertical;
    margin-bottom: 0;
}

.order-notes-textarea::placeholder {
    color: var(--placeholder);
    border-color: var(--primery);
    opacity: 1;
}

.already-address-card {
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--background);
    padding: 18px 20px 16px 20px;
    margin-bottom: 18px;
}

.address-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.address-title {
    color: var(--primery-dark);
    font-size: 18px;
    letter-spacing: 0.2px;
}

.address-edit-link {
    color: var(--primery);
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.address-edit-link:hover {
    color: var(--brown);
}

.address-body {
    padding-top: 10px;
}

.mw-300btn {
    max-width: 300px;
    margin: 0 auto;
}

.order-sucess-hero {
    background-color: #ffffff;
    padding: 60px 0;
    background-image: url(../images/Layer_1.png);
    background-repeat: repeat;
    background-position: left top;
    background-size: auto;
}

.order-sucess-hero-align {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.order-sucess-hero-align .img-fluid {
    width: 80px;
    margin-bottom: 20px;
}

.order-sucess-hero-align .heading {
    text-shadow: 0px 4px 4px #1933005b;
    color: var(--primery-dark);
}

.order-sucess-hero-align p {
    font-size: 20px;
    font-weight: 600;
    color: var(--primery-dark);
}


.sucess-billing-card {
    background: var(--background);
    border: 1px solid #e3e9ed;
    border-radius: 6px;
    padding: 28px 24px 18px 24px;
    font-family: 'Sora', Arial, sans-serif;
    font-size: 16px;
    color: var(--text);
}

.sucess-billing-card h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primery-light);
    font-family: 'sora';
}

.sucess-billing-card .order-summary,
.sucess-billing-card .shipping-address {
    margin-bottom: 18px;
}

.sucess-billing-card .shipping-address {
    padding-left: 18px;
}

.sucess-billing-card .order-summary p,
.sucess-billing-card .shipping-address p {
    margin-bottom: 10px;
    font-size: 15px;
}

.sucess-billing-card .order-summary p b,
.sucess-billing-card .shipping-address p b {
    color: var(--primery-dark);
    font-weight: 600;
}

.sucess-billing-card .desc {
    color: #7a8b9c;
    font-size: 14px;
    margin-bottom: 24px;
}

.sucess-billing-card .delivery {
    font-size: 14px;
    margin-bottom: 10px;
}

.sucess-billing-card .track-link {
    color: var(--primery);
    font-weight: 600;
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 10px;
    transition: 0.2s;
}

.sucess-billing-card .track-link:hover {
    color: var(--black);
}

.download-invoice {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 17px;
    color: var(--black);
    margin-top: 24px;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    margin-left: auto;
    width: fit-content;
}

.download-invoice i {
    font-size: 22px;
}


.track-order-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    min-width: 700px;
}

.track-step {
    flex: 1 1 0;
    text-align: center;
    position: relative;
    z-index: 9;
}

.track-step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--primery);
    background: var(--white);
    margin: 0 auto 12px auto;
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    transition: 0.2s;
}

.track-step.active .track-step-circle {
    background: var(--primery);
}

.track-order-steps .track-step::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 50%;
    height: 6px;
    z-index: -1;
    background: #9DACB8;
    transform: translateX(50%);
    background: var(--border);
    right: calc(50% + 20px);
    width: calc(100% - 40px);
    transform: translateX(0);
}

.track-order-steps .track-step.active::after {
    background: var(--primery);
}

.track-step:first-child::after {
    display: none;
}

.track-step-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primery);
    margin-bottom: 4px;
}

.track-step-date {
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
}

.page-not-found-card {
    margin: 60px 0;
}

.empty-page-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.empty-page-card .empty-card-title {
    display: block;
    font-size: 40px;
    font-weight: 600;
    color: var(--primery-dark);
    margin-bottom: 16px;
}




/* Dashboard CSS */

.dashboard-spacing {
    margin: 40px 0;
}

.dashboard-sidebar {
    background: var(--background);
    border: 1px solid #D0DFE3;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dashboard-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px;
    border-bottom: 1px solid var(--border);
}

.dashboard-profile .profile-avatar {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--placeholder);
    text-transform: capitalize;
}

.dashboard-profile .profile-info .profile-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--primery);
    margin-bottom: 2px;
}

.dashboard-profile .profile-info .profile-email {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
}

.dashboard-menu {
    padding: 14px;
    border-bottom: 1px solid var(--border);
}

.dashboard-menu .list-group {
    gap: 20px;
}

.dashboard-menu .list-group .list-group-item {
    border: none !important;
    background: transparent !important;
    display: flex;
    gap: 14px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primery-dark);
    align-items: center;
}

.dashboard-menu .list-group .list-group-item .menu-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primery);
    transition: 0.3s;
}

.dashboard-menu .list-group .list-group-item.active .menu-icon,
.dashboard-menu .list-group .list-group-item:hover .menu-icon {
    background: var(--primery);
    color: var(--white);
}

.dashboard-sidebar-footer {
    padding: 14px;
    margin-top: auto;
}

.dashboard-sidebar-footer .logout-btn {
    font-size: 16px;
    font-weight: 500;
    color: var(--white) !important;
    background: var(--primery) !important;
    display: block;
    border-radius: 0;
    border: 1px solid var(--primery) !important;
    padding: 10px;
}

.dashboard-section {
    background: var(--background);
    /*   */
    padding: 36px 20px;
}

.dashboard-heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--primery-dark);
    font-family: 'Sora';
    margin-bottom: 8px;
}

.dashboard-count-align {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.dashboard-count-card {
    background: var(--white);
    padding: 24px;
    border-left: 4px solid var(--primery);
    display: flex;
    align-items: center;
    gap: 20px;
}

.dashboard-count-card .dashboard-count-icon {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.dashboard-count-card .dashboard-count {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--primery);
    margin-bottom: 4px;
}

.dashboard-count-card .dashboard-count-title {
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
}

.dashboard-login-align {
    display: flex;
    flex-wrap: wrap;
}

.dashboard-login-align .dashboard-login-info {
    min-width: 48%;
    margin-bottom: 10px;
}

.dashboard-login-align .dashboard-login-info .text {
    margin-bottom: 4px;
    font-size: 18px;
}

.dashboard-login-align .dashboard-login-info .dashboard-edit-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--primery);
}

.dashboard-list.text {
    list-style: square;
}

.notification-card {
    padding: 30px 24px;
    background: var(--white);
}


.dashboard-order-table .table {
    background: var(--white);
    margin-bottom: 0;
    border: 1px solid var(--border);
}

.dashboard-order-table .table th,
.dashboard-order-table .table td {
    border: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--primery);
    padding: 16px 8px;
    border-bottom: 1px solid var(--border);
}

.dashboard-order-table .table th {
    background: #EAF6FF;
    font-size: 16px;
    font-weight: 600;
    color: var(--primery);
    text-wrap: nowrap;
}

.dashboard-order-table .badge-pending {
    background: #FFD9CC;
    color: #F2612C;
    border-radius: 8px;
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 500;
}

.dashboard-order-table .action-btn {
    background: #E3EEFD;
    border: none;
    border-radius: 10px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primery);
    font-size: 18px;
    transition: 0.2s;
    text-decoration: none;
}

.dashboard-order-table .action-btn:hover {
    background: #d1e6fa;
}

.dashboard-address-page-top {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.btn-add-address {
    border: 1px solid var(--primery) !important;
    background: var(--primery) !important;
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0;
    padding: 10px 24px;
    transition: 0.3s;
}

.btn-add-address:hover {
    background: var(--white) !important;
    color: var(--primery) !important;
}

.my-address-card {
    border: 1px solid #E3E3E3;
    border-radius: 0;
    padding: 16px;
    background: var(--white);
    position: relative;
    height: 100%;
}

.my-address-card-top {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 10px;
    justify-content: space-between;
}

.my-address-card .address-type {
    background: var(--background);
    color: var(--primery);
    font-weight: 400;
    font-size: 14px;
    border-radius: 0;
    padding: 4px 16px;
}

.my-address-card .address-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--primery-dark);
    margin-bottom: 0;
}

.my-address-card .address-phone {
    font-weight: 600;
    color: var(--primery-light);
    font-size: 16px;
    margin-bottom: 18px;
}

.my-address-card .address-actions {
    display: flex;
    justify-content: end;
    gap: 10px;
}

.my-address-card .address-actions .btn {
    min-width: 110px;
    font-weight: 500;
    border-radius: 4px;
}

.my-address-card .address-actions .btn-outline-dark {
    border: 1px solid var(--primery);
    color: var(--primery);
    background: #fff;
    transition: 0.4s;
}

.my-address-card .address-actions .btn-dark {
    background:var(--primery);
    color: #fff;
    border: 1px solid var(--primery);
    transition: 0.4s;
}

.my-address-card .address-actions .btn-outline-dark:hover {
    color: #fff;
    background: var(--primery);
}

.my-address-card .address-actions .btn-dark:hover {
    color: var(--primery);
    background: #fff;
}

.logout-modal-icon {
    font-size: 60px;
    color: var(--primery);
    text-align: center;
    margin-bottom: 16px;
}

.logout-bottom-action {
    display: flex;
    gap: 10px;
}

.logout-bottom-action .btn {
    width: 50%;
}

.product-comparison-section table tr th {
    font-size: 14px;
    font-weight: 600;
    color: var(--primery);
    background: var(--background);
    padding: 14px 8px;
}

.product-comparison-section table tr td {
    min-width: 220px;
}

.product-comparison-section table .btn-product-compair-remove {
    padding: 0;
    color: var(--red) !important;
    font-size: 14px;
    font-weight: 400;
    border: none !important;
}

.product-comparison-section table .btn-compair-to-cart {
    font-size: 14px;
    font-weight: 400;
    color: var(--primery) !important;
    border: 1px solid var(--primery) !important;
    border-radius: 10px;
    background: var(--background) !important;
    padding: 8px 14px;
}

.experience-switch .form-check-input:checked {
    background-color: var(--primery);
    border-color: var(--primery);
}

.experience-switch .form-check-input {
    box-shadow: none !important;
}

.contact-hero-section {
    background-image: url(../images/ContactBg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.contact-hero-card {
    padding: 36px 30px;
    background: var(--white);
}

.contact-hero-text {
    font-size: 20px;
    font-weight: 400;
    color: var(--primery);
}

.contact-us-liks-card {
    padding: 40px 80px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--border);
}

.contact-us-links,
.map-section {
    margin: 60px 0;
}

.contact-us-link-heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--primery);
    margin-bottom: 8px;
}

.contact-us-page-specifis {
    padding: 60px 0;
    background: var(--background);
}

.cupbcard {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cupbcard img {
    width: 80px;
    min-width: 80px;
}

.cupbcard-title {
    font-family: 'Sora';
    font-size: 18px;
    font-weight: 600;
    color: var(--primery);
}

.blog-listing-left-card {
    padding: 14px;
    background:var(--background);
    border: 1px solid #D0E6EB;
    border-radius: 10px;
    margin-bottom: 16px;
}

.blog-listing-left-title {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Sora';
    color: var(--black);
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 12px;
}

.tags-blogs-listing {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-blogs-listing .listing-blog-tags {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--primery);
    font-size: 14px;
    padding: 6px 10px;
}

.categori-blogs-listing .listing-blog-categories {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    color: var(--primery);
    font-size: 14px;
    font-weight: 600;
}

.recent-blogs-listing {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 100vh;
    scrollbar-width: none;
}

.recent-blog-card {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 24px;
    text-decoration: none;
}

.blog-img {
    aspect-ratio: 8/5;
    object-fit: cover;
    border-radius: 10px;
}

.recent-blog-card img {
    min-width: 110px;
    width: 110px;
}

.recent-blog-card .recent-blog-date {
    font-size: 10px;
    font-weight: 400;
    color: var(--text);
    display: block;
    margin-bottom: 2px;
}

.recent-blog-card .recent-blog-title {
    font-size: 14px;
    font-weight: 400;
    color: var(--primery-dark);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-listing-card .blog-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--primery-dark);
    font-family: 'Sora';
    margin-bottom: 14px;
}

.blog-listing-card img {
    margin-bottom: 14px;
    border-radius: 16px;
}

.blog-info-align {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
}

.blog-info-align .blog-info-span {
    color: var(--placeholder);
    font-size: 16px;
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.blog-listing-card .blog-read-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--primery);
}



.others-pages-content p {
    color: var(--text);
}

.others-pages-content h1,
.others-pages-content h2,
.others-pages-content h3,
.others-pages-content h4,
.others-pages-content h5,
.others-pages-content h6 {
    color: var(--primary);
    font-weight: 600;
    font-family: 'Sora';
}

.others-pages-content a {
    color: var(--primery);
    display: inline;
}









.legal-accordion .accordion-button {
    font-weight: 600;
    font-size: 18px;
    background: none;
    font-family: 'Sora';
    color: var(--primery);
    border: none;
    box-shadow: none;
    padding-left: 0;
}

.legal-accordion .accordion-button:not(.collapsed) {
    background: none;
    color: var(--primary);
    box-shadow: none;
}

.legal-accordion .accordion-body {
    padding: 0;
}

.legal-accordion .list-group-item {
    border: none;
    border-radius: 0;
    font-size: 16px;
    color: var(--placeholder);
    background: none;
    padding: 10px;
    margin-bottom: 4px;
    transition: 0.2s;
}

.legal-accordion .list-group-item a {
    text-decoration: none;
    color: inherit;
}

.legal-accordion .list-group-item.active,
.legal-accordion .list-group-item:focus,
.legal-accordion .list-group-item:hover {
    background: var(--background);
    color: var(--primery);
    font-weight: 500;
    border-bottom: 1px solid var(--primary);
}

.legal-accordion .list-group-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
}

.legal-accordion .accordion-item {
    border: none;
    background: none;
}

.legal-accordion .accordion-header {
    margin-bottom: 0;
}

.legal-accordion .accordion-button::after {
    margin-left: auto;
}

.legal-accordion .accordion-button.collapsed::after {
    transform: rotate(0deg);
}

.legal-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.tandc-heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--primery);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
    font-family: 'Sora';
}

.tandc-title-caontent {
    font-size: 24px;
    font-weight: 600;
    color: var(--primery);
    margin-bottom: 10px;
    font-family: 'Sora';
}

.our-video {
    position: relative;
    z-index: 9;
}

.our-video .video-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    border: none !important;
    background: transparent !important;
    color: var(--white) !important;
    font-size: 50px;
}

.mission-value-section {
    background: var(--background);
    padding: 80px 0;
}

.mission-value-card {
    background-image: url(../images/Mission01.png);
    border-radius: 20px;
    padding: 0px 50px 50px 50px;
    width: auto;
    box-shadow: 0px 4px 14px 0px #5896C84D;
    background-repeat:no-repeat;
}

.mission-value-card-img {
    background-image: url(../images/Mission02.png);
    border-radius: 20px;
    padding: 0px 50px 50px 50px;
    width: auto;
    box-shadow: 0px 4px 14px 0px #5896C84D;
    background-repeat:no-repeat;
}


.mission-value-card .mission-value-image {
    width: 80px;
    margin-bottom: 12px;
}

.mission-value-card .sub-heading {
    font-family: 'Sora';
}

.about-counter-section {
    margin: 60px 0;
}

.about-counter-card {
    background: var(--white);
    border-radius: 20px;
    text-align: center;
    padding: 20px 10px;
    box-shadow: 0px 0px 16px 0px #ff951c33;
}

.about-counter-card .about-counter-count {
    display: block;
    font-size: 50px;
    font-weight: 700;
    color: var(--primery-dark);
    margin-bottom: 2px;
}

.about-counter-card .about-counter-heading {
    font-size: 26px;
    font-weight: 500;
    font-family: 'Sora';
    margin-bottom: 0;
    color: var(--text);
}

.about-us-badge {
    font-size: 16px;
    font-weight: 400;
    color: var(--primery);
    border: 1px solid var(--border);
    background: var(--background);
    border-radius: 10px;
    padding: 10px 16px;
    display: block;
    width: fit-content;
}

.about-page-hero {
    margin: 60px 0 60px;
}




.mega-menu {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 999;
}

.mega-menu.active {
    display: block;
}

.mega-menu h6 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--primery);
    font-family: 'Sora';
    font-weight: 600;
}

.mega-menu a {
    display: block;
    text-decoration: none;
    color: var(--text);
    margin-bottom: 16px;
    font-size: 14px;
    transition: color 0.2s ease;
    font-weight: 500;
    text-transform: capitalize;
}

.mega-menu a:hover {
    color: var(--primery);
}

.menu-divider {
    border-left: 1px solid var(--border);
}

.red-btn-modal {
    background-color: var(--red) !important;
    border-color: var(--red) !important;
    color: var(--white) !important;
}

.red-btn-modal:hover {
    background-color: transparent !important;
    color: var(--red) !important;
}

.adult-badge-icon {
    font-size: 76px;
    text-align: center;
    display: block;
    width: 100%;
    color: var(--primery);
    font-weight: 700;
    line-height: 70px;
}

.allow-cookies-actions {
    display: flex;
    gap: 24px;
}

.btn-customise-cookies {
    font-size: 18px;
    font-weight: 600;
    color: var(--primery);
    background: #F6FAFB;
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 10px 16px;
    width: 100%;
    text-wrap: nowrap;
    transition: 0.4s;
}

.btn-customise-cookies:hover {
    color: var(--white);
    background: var(--primery);
    border-color: var(--primery);
}

.btn-reject-cookies {
    font-size: 18px;
    font-weight: 600;
    color: var(--primery);
    background: transparent;
    border: 1px solid var(--primery);
    border-radius: 0;
    padding: 10px 16px;
    width: 100%;
    text-wrap: nowrap;
    transition: 0.4s;
}

.btn-reject-cookies:hover {
    color: var(--white);
    background-color: var(--primery);
}

.btn-allow-cookies {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    background: var(--primery);
    border: 1px solid var(--primery) !important;
    border-radius: 0;
    padding: 10px 16px;
    width: 100%;
    text-wrap: nowrap;
    transition: 0.4s;
}

.btn-allow-cookies:hover {
    color: var(--primery);
    background: transparent;
}

.event-card .event-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 10px;
    margin-bottom: 12px;
    object-fit: cover;
}

.event-card .event-card-title {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Sora';
    margin-bottom: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.event-card .event-card-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.event-card .text {
    margin-bottom: 10px;
}

.event-card .event-card-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--primery);
    margin-bottom: 10px;
}

.event-card .event-book-btn {
    font-size: 16px;
    font-weight: 500;
    color: var(--primery);
    background: transparent;
    border: 1px solid var(--primery) !important;
    border-radius: 10px;
    padding: 10px 32px;
    transition: 0.4s;
}

.event-card .event-book-btn:hover {
    background: var(--primery);
    color: var(--white);
}

.chat-icon-fixed {
    position: fixed;
    right: 12px;
    bottom: 20px;
    z-index: 999;
}

.chat-action-btn {
    background: var(--green) !important;
    color: var(--white) !important;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 255, 0, 0);
}

.chat-action-btn:hover {
    box-shadow: 0 0 20px 8px rgba(30, 136, 62, 0.5);
    transform: scale(1.05);
}


































/* New CSS  */

.allow-cookies .modal-dialog {
    max-width: 700px;
    margin-left: 40px;
    min-height: fit-content;
    margin-bottom: 40px;
}

.allow-cookies.show {
    display: flex !important;
    align-items: end !important;
}

.new-icon-fixed {
    position: fixed;
    left: 0px;
    bottom: 20px;
    z-index: 999;
    transform: rotate(-90deg) translate(50px, -100%);
}

.new-arrival-sticky {
    font-size: 16px;
    font-weight: 500;
    color: var(--white) !important;
    background: var(--primery) !important;
    border-radius: 0;
    border: 1px solid var(--primery) !important;
    padding: 8px 10px;
    width: 140px;
    box-shadow: 0 0 8px #ccc;
    transition: 0.4s;
}

.new-arrival-sticky:hover {
    background: var(--brown) !important;
    border: 1px solid var(--brown) !important;
}


#goTopBtn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 999;
    background-color: #007bff;
    color: white;
    border: none;
    outline: none;
    padding: 11px 18px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    display: none;
    transition: transform 0.3s ease, background-color 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#goTopBtn:hover {
    background-color: #0056b3;
    animation: bounce 0.5s;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

#resultText {
    display: none;
}

#resultText.active {
    display: block;
}

.product-add-cart-sec .item-count-div .count-input {
    padding: 6px 40px;
}

.product-add-cart-sec .items-count .input-count-right input {
    padding: 3px 8px;
}

.product-add-cart-sec .add-cart-button {
    font-size: 18px;
    padding: 14px 30px;
}



#wheelCanvas {
    margin-top: 30px;
    border: 10px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 20px #FF6C52;
}

#spinBtn {
    display: block;
    width: fit-content;
    margin: 50px auto 0;
}

#pointer {
    width: 1px;
    height: 1px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 30px solid #000000;
    transform: rotate(-90deg) translate(0, 5px);
    margin: 0 auto;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 99;
}

.wheel-section {
    position: relative;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
    height: fit-content;
}

.spin-result-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0px 0px 14px 0px #021B2F38;
    padding: 0 0px 30px;
    margin-top: 90px;
}

.spin-result-card .spin-result-image {
    position: relative;
    margin-top: -90px;
    margin-bottom: 20px;
}

.spin-result-card h3 {
    font-family: 'Sora';
    font-size: 30px;
    color: var(--dark);
    margin-bottom: 16px;
}

.spin-result-card #SPresulthere {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
}

