@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

/* Regular */
@font-face {
    font-family: "Helvetica Neue";
    src: url("/fonts/HelveticaNeueRoman.otf") format("opentype");
    font-weight: 400;
    /* Normal weight */
    font-style: normal;
}

/* Bold */
@font-face {
    font-family: "Helvetica Neue";
    src: url("/fonts/HelveticaNeueBold.otf") format("opentype");
    font-weight: 700;
    /* Bold weight */
    font-style: normal;
}

/* Italic */
@font-face {
    font-family: "Helvetica Neue";
    src: url("/fonts/HelveticaNeueItalic.ttf") format("truetype");
    font-weight: 400;
    /* Normal weight */
    font-style: italic;
}

/* Bold Italic */
@font-face {
    font-family: "Helvetica Neue";
    src: url("/fonts/HelveticaNeueBoldItalic.otf") format("opentype");
    font-weight: 700;
    /* Bold weight */
    font-style: italic;
}

:root {
    --yellow-color: #dbff00;
    --button-gradient: linear-gradient(90deg, #dbff00, #a1ff5a);
    --vr-gradient: linear-gradient(180deg, #0095ff, #4842fe);
    --grey-color: #e3e3e3ed;
    --color-gradient: linear-gradient(90deg, #0071e3, #f99079);
    --text-color: black;
    --text-color-light: white;
    --primary-color: linear-gradient(90deg, #642fff 0%, #9213b8 100%);
    --background: linear-gradient(
        90deg,
        rgba(100, 47, 255, 0.5) 0%,
        rgba(146, 19, 184, 0.5) 100%
    );
}

*:not(i) {
    font-family: "Helvetica Neue", sans-serif !important;
    /* color: black; */
    /* outline: 2px solid red; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600;
    /* Adjust weight as needed */
}

body {
    background-color: #fff8f8 !important;
}

h1 {
    font-size: 120px;
    font-weight: 800;
}

h2 {
    font-size: 80px;
    font-weight: 800;
}

h3 {
    font-size: 40px;
    font-weight: 800;
}

h4 {
    font-size: 24px;
    font-weight: 700;
}

h5 {
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
}

h6 {
    font-size: 18px;
    font-weight: 500;
}

.p1 {
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
}

.p2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.p3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.label-1 {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: white !important;
}

.label-2 {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    color: white !important;
}

.label-2 span {
    color: white !important;
}

.label-2 i {
    color: white !important;
}

.label-3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}

.logo {
    width: 100%;
    max-width: 345px;
    height: auto;
}

.flag-button {
    background: var(--primary-color);
    border-radius: 30px;
    border: none;
}

.flag-button span {
    color: white;
}

.video-container video {
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.fullscreen-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgb(0 0 0 / 0%);
    border: none;
    color: white;
    font-size: 24px;
    /* padding: 10px; */
    cursor: pointer;
    z-index: 2;
}

.play-button {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-icon {
    font-size: 24px;
    color: black;
    font-style: normal;
}

.p1 {
    font-size: 1.2rem;
    font-weight: 300;
}

.text-get-started {
    transition: transform 0.3s ease;
    color: #642fff; /* Fallback color */
    background: var(--primary-color);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-get-started:hover {
    transform: scale(1.05);
}

@media (max-width: 567px) {
    .get-started-button-outline {
        color: #642fff !important;
        background: var(--primary-color) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
    }
}

.get-started-button {
    padding: 10px 20px;
    border-radius: 50px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background: var(--primary-color);
    color: var(--text-color-light);
    text-decoration: none;
    cursor: pointer;
    border: none !important;
}

.get-started-button-outline {
    position: relative;
    padding: 10px 20px;
    border-radius: 50px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    color: white; /* Text color */
    border: 2px solid transparent; /* Transparent border to reserve space */
    background: transparent; /* Transparent background */
    overflow: hidden; /* Ensures the pseudo-element doesn't overflow */
}

.get-started-button-outline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1; /* Place behind the button content */
    border-radius: 50px; /* Match the button's border-radius */
    background: linear-gradient(
        90deg,
        #642fff 0%,
        #9213b8 100%
    ); /* Gradient border */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); /* Clip the gradient to the border */
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0); /* For Safari */
    mask-composite: exclude; /* Exclude the inner area */
    -webkit-mask-composite: xor; /* For Safari */
    padding: 2px; /* Border width */
}

.get-started-button-outline:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.get-started-button span {
    color: white;
}

.get-started-button i {
    color: white;
}

.get-started-button:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.get-started-button:hover .arrow-icon {
    transform: translateX(5px);
}

/* Landing Page Finsihed Here */

/* Navbar Start Here */

.navbar {
    background: var(--grey-color);
}

.navbar-items {
    align-items: center;
}

.nav-logo {
    width: 100px;
}

.nav-link {
    display: inline-block;
    position: relative;
}

.nav-link.active {
    background: var(--primary-color);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-hover:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: var(--primary-color);
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.nav-hover:hover {
    background: var(--primary-color);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient {
    background: var(--primary-color);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-hover:hover:after {
    width: 100%;
    left: 0;
}

/* Navbar End Here */

/* Why to use FlexiFold Section Start */
.heading-1 h1 {
    font-size: 2.25rem;
    background: var(--primary-color);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-flexifold {
    overflow: hidden;
    background: linear-gradient(
        90deg,
        rgba(100, 47, 255, 0.3) 0%,
        rgba(146, 19, 184, 0.3) 100%
    );
}

.why-text {
    position: relative;
    z-index: 2;
}

.why-text h3 {
    font-size: 28px;
}

.why-text p {
    font-size: 15px;
}

.why-text img {
    height: 70px;
    width: 70px;
}

/* Why to use FlexiFold Section Ends */

/* Stats Container Start Here */
@media (min-width: 768px) {
    .stats .row .col-4 {
        width: 29.4% !important;
    }

    .stats .row .col-4:nth-child(2) {
        width: 35% !important;
    }

    .stats-container {
        border-radius: 10px;
        position: relative;
    }

    .stats-numbers {
        height: 169px;
        position: relative;
    }

    .stats-block {
        position: relative;
    }

    .stats-block:nth-child(1) {
        border-top-right-radius: 0% !important;
        border-bottom-right-radius: 0% !important;
        border-radius: 30px;
        border-top: 3px solid #642fff;
        border-bottom: 3px solid #9213b8;
    }

    .stats-block:nth-child(2) {
        border-top: 3px solid #642fff;
        border-bottom: 3px solid #9213b8;
    }

    .stats-block:nth-child(3) {
        border-top-left-radius: 0% !important;
        border-bottom-left-radius: 0% !important;
        border-radius: 30px;
        border-top: 3px solid #642fff;
        border-bottom: 3px solid #9213b8;
    }

    .stats-block:nth-child(1)::after,
    .stats-block:nth-child(3)::before {
        content: "";
        position: absolute;
        top: 10px;
        bottom: 10px;
        width: 3px;
        background: linear-gradient(
            to bottom,
            rgba(100, 47, 255, 1),
            rgba(146, 19, 184, 0),
            rgba(100, 47, 255, 1)
        );
    }

    .stats-block:nth-child(1)::after {
        right: -15px;
    }

    .stats-block:nth-child(3)::before {
        left: -15px;
    }

    .stats-numbers h1 {
        font-size: 96px;
        background: var(--primary-color);
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .stats-title {
        font-size: 2rem;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .stats .row .col-4 {
        width: 100%;
        /* Full width for stacked layout */
    }

    .stats-container {
        border-radius: 10px;
        position: relative;
    }

    .stats-block {
        position: relative;
        border-radius: 30px;
        /* Preserve the rounded corners */
        border-top: 3px solid #642fff;
        border-bottom: 3px solid #9213b8;
        margin-bottom: 15px;
        /* Add spacing between stacked blocks */
    }

    .stats-block:nth-child(1) {
        border-top-right-radius: 30px !important;
        border-bottom-right-radius: 30px !important;
        border-top-left-radius: 30px !important;
        border-bottom-left-radius: 30px !important;
    }

    .stats-block:nth-child(2) {
        border-top-right-radius: 30px !important;
        border-bottom-right-radius: 30px !important;
        border-top-left-radius: 30px !important;
        border-bottom-left-radius: 30px !important;
    }

    .stats-block:nth-child(3) {
        border-top-right-radius: 30px !important;
        border-bottom-right-radius: 30px !important;
        border-top-left-radius: 30px !important;
        border-bottom-left-radius: 30px !important;
    }

    .stats-block::after,
    .stats-block::before {
        content: "";
        /* Clear pseudo-elements for stacked blocks */
        position: absolute;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        width: 0;
        /* Hide the vertical separator lines */
    }

    /* Optional: Adjust stats-numbers and stats-title for small screens */
    .stats-numbers h1 {
        font-size: 64px;
        /* Smaller font size */
    }

    .stats-numbers h1 {
        font-size: 96px;
        background: var(--primary-color);
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .stats-title {
        font-size: 24px;
        text-align: center;
    }
}

/* Stats Container Ends Here */

/* Subscribe Container Styles */
.subscribe-container {
    padding: 2rem;
    width: 93%;
    border-radius: 10px;
    background: linear-gradient(
        180deg,
        #2f0a9b 0%,
        #9213b8 50.05%,
        #fdb4fd 100%
    );
}

.subscribe-container h3 {
    font-size: 2rem;
    color: white;
}

.subscribe-container p {
    font-size: 1.2rem;
    color: white;
}

.subscribe-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

#subscribe-email {
    display: inline-block;
    /* width: 70%; */
    padding: 12px 20px;
    height: 48px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 10px;
}

#subscribe-btn {
    font-size: 1rem;
    width: auto;
    padding: 11px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    background: var(--primary-color);
    color: white;
    margin-left: -50px;
}

@media (max-width: 767px) {
    #subscribe-btn {
        width: 100%;
        margin-top: -10px;
        padding: 12px 30px;
        margin-left: unset;
    }
}

@media (max-width: 768px) {
    .nav-tabs .nav-link {
        padding: 16px 40px !important;
    }
}

@media (max-width: 768px) {
    .dropdown-menu.show {
        width: 30% !important;
    }
}

@media (min-width: 768px) {
    #subscribe-email {
        width: 60%;
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    #subscribe-email {
        width: 50%;
    }
}

/* Subscribe Container Ends Here */
/* Footer Container Start Here */
.footer-container {
    margin-top: 130px;
}

@media (max-width: 768px) {
    .footer-container {
        margin-top: 2rem;
    }
}

/* footer h1 {
    background: var(--primary-color);
    -webkit-text-fill-color: transparent;
    background-clip: text;
} */

.footer-container h1 {
    font-family: "Lexend Giga", sans-serif;
    font-size: 42px;
}

.footer-container h3 {
    font-size: 15px;
    font-weight: normal;
}

.footer-container .social-icons a {
    color: var(--yellow-color);
    cursor: pointer;
    color: white;
    text-decoration: none;
}

.footer-container .social-icons a:hover {
    color: var(--yellow-color);
}

.footer-container .social-icons i {
    border: 0.5px solid var(--grey-color);
    padding: 7px 7px;
    border-radius: 5px;
}

.footer-container h2 {
    font-family: "Poppins", sans-serif;
}

.footer-container .links a {
    text-decoration: none;
    color: black;
}

.footer-container .links a:hover {
    color: var(--primary-color);
}

.footer-container .links h3 {
    margin-top: 10px;
}

/* Footer Container Ends Here */

.footer-hr {
    border-color: #ccc;
    margin: 0 auto;
}

footer {
    padding: 20px;
}

footer span {
    margin-top: 10px;
}

footer a {
    /* background: var(--primary-color);
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    text-decoration: none;
    transition: all;
}

footer a:hover {
    text-decoration: underline;
    background: var(--primary-color);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(101%);
}

/* Products Page Start from here */

/* Product Start */
.products .each-product {
    background-color: var(--grey-color);
    border-radius: 10px;
    /* More rounded corners */
    padding: 20px;
}

.products .title {
    font-size: 36px;
    font-weight: 700;
}

.products .price {
    font-size: 26px;
    font-weight: 600;
    /* background: var(--primary-color);
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    position: relative;
}

/* .products .text-decoration-line-through.price::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 105%;
    height: 2px;
    background: red; /* Change to any color */
    transform: translateY(-50%);
    rotate: -5deg;
} */

.products .desp {
    font-size: 18px;
    font-weight: 400;
}

.products .product-image {
    width: 100%;
    border-radius: 15px;
    /* More rounded corners */
}

.product-btn {
    background: var(--primary-color);
    padding: 10px 20px;
    border-radius: 20px;
    /* More rounded button */
    font-size: 1.1rem;
    text-align: center;
    display: inline-block;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.product-btn span,
.product-btn i {
    color: white !important;
}

.product-btn:hover {
    background: var(--primary-color);
}

.vr-button {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 20px;
    /* More rounded VR button */
}

.vr-button-icon {
    color: white !important;
    font-size: 1.5rem;
}

.vr-button-label span {
    padding: 10px;
    font-size: 24px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .products .title {
        font-size: 28px;
    }

    .products .price {
        font-size: 24px;
    }

    .products .desp {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .product-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .vr-button {
        padding: 6px 12px;
        font-size: 0.75rem;
        /* Smaller VR button on mobile */
    }

    .vr-button-icon {
        font-size: 1.25rem;
    }

    .vr-button-label span {
        font-size: 0.85rem;
        /* Smaller label for VR button */
    }
}

/* Product End */

/* Contact Us Page Start */
.contact h1 {
    font-size: 36px;
    font-weight: 600;
}

.contact p {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 100;
}

.contact h3 {
    font-size: 20px;
    font-weight: 500;
    text-decoration: underline;
}

.contact input {
    border-radius: 10px;
    height: 55px;
}

.contact input,
.contact input::-webkit-input-placeholder {
    font-size: 18px;
    line-height: 3;
    font-style: italic;
    /* font-weight: 100; */
}

.contact .submit-button {
    background: var(--primary-color);
    width: 174px;
    margin-left: 15px;
    border-radius: 20px;
    font-weight: 500;
    color: white !important;
}

/* Contact Us Page End */

/* About Us Page Start */
.about .about-each {
    background-color: white;
    margin: 5px;
    padding: 33px;
    border-radius: 10px;
}

.about .about-each i {
    background: var(--primary-color);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    margin-bottom: 24px;
}

.about .about-each h2 {
    font-size: 20px;
    font-weight: bold;
}

.about .about-each p {
    font-size: 18px;
    font-weight: normal;
}

.about-video img {
    width: 100%;
    border-radius: 20px;
}

.about-video-left {
    margin-top: 10% !important;
}

.about-video h1 {
    font-size: 36px;
    font-weight: bold;
}

.about-video p {
    font-size: 16px;
    font-weight: normal;
}

.about-video a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 70px;
    background: var(--primary-color);
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-video a:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.customer-reviews .heading-1 h1 {
    font-size: 36px;
}

.customer-reviews-slider .review-card {
    background: linear-gradient(
        90deg,
        rgba(100, 47, 255, 0.1) 0%,
        rgba(146, 19, 184, 0.1) 100%
    );
    height: 350px;
    border-radius: 10px;
    margin: 10px;
}

.customer-reviews-slider .review-card img {
    width: 80px;
}

.customer-reviews-slider .review-card h2 {
    font-size: 28px;
    font-weight: 500;
}

.customer-reviews-slider .review-card h3 {
    font-size: 15px;
    font-weight: 100;
}

.customer-reviews-slider .review-card p {
    font-size: 14px;
}

.customer-reviews-slider .review-card i {
    color: var(--grey-color);
}

.customer-reviews-slider .review-card i.active {
    color: #fbb911;
}

/* About Us Page End */

/* Privacy Page Start */
.privacy {
    color: white;
    font-family: "Poppins", sans-serif;
}

/* Privacy Page Ends */
/* Cart Page Start */

.remove-item {
    background: none;
    border: none;
}

/* Base styles */
/* .container {
    max-width: 100%;
    padding: 0 15px;
} */

.cart-page-heading {
    font-size: 50px;
    margin: 20px 0;
}

.cart-table {
    border-radius: 10px;
    background-color: white;
    padding: 20px;
}

.thead {
    background: var(--primary-color);
    padding: 20px;
    border-radius: 10px 10px 0 0;
    opacity: 40%;
}

.cart-table h2 {
    font-size: 20px;
    color: white !important;
}

.cart-table-body {
    background: #ccd9e0;
    padding: 15px 0;
}

.cart-table-body img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-table-body h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.cart-table-body .title {
    padding-left: 10px;
}

.cart-table-body .price {
    font-size: 24px;
}

.cart-action-icon img {
    width: 30px;
    height: 30px;
}

.counter-group .counter-input {
    width: 45px;
    text-align: center;
    background: white;
}

.counter-group .btn {
    width: 35px;
    height: 35px;
    /*background: white;*/
}

.cart-total {
    background: var(--primary-color);
    /* border-radius: 10px; */
    padding: 10px;
}

.cart-total-2 {
    border-radius: 0 0 10px 10px;
}

.cart-total h3 {
    color: white;
    font-size: 18px;
    font-weight: 300;
}

.cart-total h2 {
    color: white;
    font-size: 22px;
    font-weight: bolder;
}

.cart-buttons-each {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 16px;
    background: var(--primary-color);
    margin-right: 10px;
}

.cart-buttons-each span {
    color: white;
}

/* Media Queries for smaller screens */
@media (max-width: 1200px) {
    .cart-page-heading {
        font-size: 40px;
    }

    .cart-table h2 {
        font-size: 18px;
    }

    .cart-table-body img {
        width: 70px;
        height: 70px;
    }

    .cart-table-body h4 {
        font-size: 16px;
    }

    .cart-table-body .price {
        font-size: 22px;
    }

    .cart-total h2 {
        font-size: 20px;
    }

    .cart-buttons-each {
        padding: 8px 20px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .cart-page-heading {
        font-size: 36px;
    }

    .cart-table h2 {
        font-size: 16px;
    }

    .cart-table-body img {
        width: 60px;
        height: 60px;
    }

    .cart-table-body h4 {
        font-size: 14px;
    }

    .cart-table-body .price {
        font-size: 14px;
    }

    .cart-total h2 {
        font-size: 18px;
    }

    .cart-buttons-each {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .thead,
    .cart-table-body,
    .cart-total {
        padding: 10px;
    }

    .cart-page-heading {
        font-size: 32px;
        /* text-align: center; */
    }

    .thead h2,
    .cart-table-body h4 {
        font-size: 14px;
    }

    .cart-table-body img {
        width: 50px;
        height: 50px;
    }

    .cart-total h3 {
        font-size: 16px;
    }

    .cart-total h2 {
        font-size: 16px;
    }

    .cart-buttons-each {
        padding: 7px 12px;
        font-size: 12px;
    }

    .counter-group .btn,
    .counter-group .counter-input {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .thead,
    .cart-table-body {
        text-align: center;
    }

    .cart-page-heading {
        font-size: 28px;
    }

    .thead h2 {
        font-size: 12px;
    }

    .cart-table-body img {
        width: 25px;
        height: 25px;
    }

    .cart-table-body h4 {
        font-size: 12px;
    }

    .cart-total h3 {
        font-size: 14px;
    }

    .cart-total h2 {
        font-size: 14px;
    }

    .cart-buttons-each {
        padding: 5px 10px;
        font-size: 12px;
    }

    /* .counter-group .btn, .counter-group .counter-input {
        width: 28px;
        height: 28px;
    } */
}

/* Cart Page Ends */

/* Check Out Page Started */
.checkout h1 {
    font-family: "Syne", sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: white;
}

.checkout label {
    font-size: 15px;
    font-family: "Syne", sans-serif;
    color: white;
    font-weight: normal;
}

.checkout-total {
    background-color: #642fff;
    border-radius: 10px;
}

.checkout-total h3 {
    font-family: "Syne", sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: white;
    padding: 10px;
}

.checkout-total h2 {
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    font-weight: bolder;
    padding: 10px;
    color: white;
}

.checkout-payment label {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: white;
}

.checkout-payment .form-check-input:checked {
    background-color: white;
    border: 3px solid;
    border-color: var(--yellow-color);
}

.checkout-payment .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(166, 255, 0, 0.5);
}

/* Check Out Page Ended */

/* Single Product Page Start */
.single-product .button h3 {
    font-family: "Syne", sans-serif;
    font-size: 40px;
    font-weight: 300;
    color: var(--yellow-color);
    /* padding: 10px; */
}

.carousel-inner-slider img {
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-thumbnails {
    gap: 10px;
}

.thumbnail-btn {
    padding: 0px !important;
    border: none;
    background: none !important;
    background-color: none !important;
    margin-top: -10%;
    z-index: 100;
}

.thumbnail-btn img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    padding: 0 !important;
    border: none;
}

.single-product-desp h1 {
    font-size: 54px !important;
}

.single-product-desp .desp {
    background-color: var(--grey-color);
    padding: 20px;
    color: white;
}

.single-product-design {
    background-color: var(--grey-color);
    padding: 40px;
}

.single-product-design h5 {
    color: white;
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-weight: normal;
}

.color-btn {
    position: relative;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}

.color-btn.active {
    transform: scale(1.1);
    box-shadow: 0 0 10px #602e9aa6;
    border: 1px solid black;
    margin-right: 5px;
    margin-left: 5px;
}

.color-image {
    width: 100px;
    height: auto;
}

.color-btn.active {
    border-color: #602e9aa6;
}

.color-option img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

/*  */
.sp-details-left {
    background-color: #e3e3e3;
    border-radius: 10px;
}

.sp-cart-btn button {
    background: var(--primary-color);
    border-radius: 30px;
    color: white;
    border: none;
    padding: 10px 20px;
}

.sp-price {
    font-size: 22px;
    font-weight: bold;
    color: #0095ff;
}

.sp-desc-2-title {
    font-weight: bold;
    margin-top: 5px;
}

.sp-video-right {
    background-color: #e3e3e3;
    border-radius: 10px;
}

.sp-color-headings {
    font-weight: bold;
    margin-top: 16px;
    font-size: 22px;
}

.sp-colors-container {
    background-color: white;
}

/* Single Product Page End */
.modal-dialog {
    max-width: 700px !important;
    border-radius: 10px;
}

.modal-dialog h5 {
    font-family: "Poppins", sans-serif !important;
}

.nav-tabs .nav-link.active {
    background: black !important;
    color: white !important;
    -webkit-text-fill-color: #f8f9fa;
}

#signup-tab {
    border-radius: 10px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

#login-tab {
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.nav-tabs .nav-link {
    background-color: var(--grey-color);
    color: black;
    padding: 20px 100px;
    border: none;
}

#signupTabs {
    border: none;
}

.btn-black {
    background-color: black;
    color: white;
    border-radius: 35px;
    padding: 13px;
}

.btn-black:hover {
    border-color: black;
}

.tab-pane input {
    height: 50px;
}

.login-social {
    padding: 10px;
    border-radius: 35px;
}

.login-social img {
    width: 20px;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.separator::before,
.separator::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #d3d3d3;
}

.separator-text {
    margin: 0 10px;
    color: #808080;
}

/* Blogs Page */

.blogs .card img {
    height: 280px;
    border-radius: 10px;
}

.blogs .card {
    background-color: #fff8f8;
    border: none;
}

.social-icons {
    display: flex;
    gap: 4px;
}

.social-icons a {
    justify-content: center;
    align-items: center;
    position: relative;
    display: flex;
    width: 28px;
    height: 28px;
    border-radius: 7px;
    overflow: hidden;
}

.social-icons a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 7px;
    opacity: 0.3;
    z-index: 0;
}

a.facebook::before {
    background-color: #1877f2;
}

a.instagram::before {
    background-color: #c13584;
}

a.youtube::before {
    background-color: #ff0000;
}

a.tiktok::before {
    background-color: #010101;
}

a.whatsapp::before {
    background-color: #2aa71a;
}

.social-icons img {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.social-icons a:hover::before {
    opacity: 0.9;
}
