@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

body {
    font-family: 'Lato', sans-serif;
}

:root {
    --primary-color: #34d19a;
    --primary-hover-color: #34d19a;
    --background-color: #0D0E12;
    --text-color: #ffffff;
    --text-muted-color: #a0a0c0;
    --grid-color: rgba(255, 255, 255, 0.07);
    --font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
}

a {
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    color: #fff;
    border: none;
}

.bg-primary {
    background-color: var(--primary-color) !important;
    color: #fff;
}

.btn-primary-gradient {
    background: linear-gradient(90deg, var(--primary-color), #7D25EC);
    color: #fff;
    padding: 14px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px -5px rgb(52, 209, 154, .4);
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgb(52 209 154 / 50%);
    color: #fff;
}

section {
    padding: 70px 0;
}

section h2 {
    font-weight: 900;
    font-size: 2.6rem;
}

@media (max-width: 992px) {
    section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    section h2 {
        font-size: 1.8rem;
    }
}

/********************** Header  *************************/


.glassy-header {
    background: #060606;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin: 0 auto;
}



.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff !important;
    padding: 0;
}

.navbar-brand img {
    width: 60px;
}

.navbar-brand .fa-robot {
    color: var(--primary-color);
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff !important;
}

.navbar .btn {
    color: #fff !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='white' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
    border: none;
}

/* Force hamburger bars white (if using Bootstrap's default icon) */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: none;
}
/* 
.navbar .btn {
    padding: 10px 24px;
} */

#offcanvasNavbarLabel img {
    width: 60px;
}


.offcanvas {
    background-color: #fff !important;
    color: #212529 !important;
    /* Bootstrap's default text color */
}

.offcanvas .navbar .nav-link {
    color: #222 !important;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.offcanvas .navbar .nav-link:hover,
.offcanvas .navbar .nav-link.active {
    color: #222 !important;
}


.offcanvas-title {
    color: #212529 !important;
}

.btn-close {
    filter: none !important;
}

.offcanvas-body .navbar-nav .nav-link {
    padding: 1rem 0;
    color: #212529;
}



/********************** Hero Section  *************************/

#hero {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    align-items: stretch;
    background-color: #000;
    background-image: radial-gradient(circle at center top, rgb(52 209 155 / 30%), transparent 60%), linear-gradient(#060606 1px, transparent 1px), linear-gradient(to right, #060606 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    overflow: hidden;
}

#hero .container {
    flex: 1;
}

.hero-top {
    flex: 0 0 50%;
    margin: 0 auto;
}

#hero .eyebrow {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#hero .eyebrow-2,
#hero .eyebrow-3 {
    font-size: 30px;
    text-transform: uppercase;
}

#hero h1 {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 1rem auto 1.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, #34d399, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}

#hero .lead {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

#hero .btn-primary-gradient {
    border-radius: 25px;
}

.hero-features {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-bottom: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    color: #f0f0f0;
    font-size: 1rem;
    font-weight: 500;
    margin: 10px 15px;
}

.feature-item .fas.fa-check-circle {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-right: 10px;
}

@media (max-width: 992px) {
    .hero-features {
        justify-content: center;
    }

    .feature-item {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    #hero {
        padding: 50px 0;
    }

    .hero-features {

        border: none;
    }

    .feature-item {
        margin: 8px 5px;
        font-size: 1rem;
    }

    #hero .eyebrow-2,
    #hero .eyebrow-3 {
        font-size: 28px;
        text-transform: uppercase;
    }
}

.hero-video {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 40px;
}

.laptop-wrapper {
    position: relative;
    max-width: 900px;
    width: 100%;
}

.laptop-frame {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.laptop-screen video {
    width: 100%;
    height: auto;
    display: block;
}

.laptop-base {
    width: 100%;
    height: 10px;
    background: #222;
    border-radius: 0 0 10px 10px;
    margin-top: 4px;
}

@media (max-width: 991.98px) {
    #hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 767.98px) {
    #hero h1 {
        font-size: 2.9rem;
    }

    #hero .lead {
        font-size: 1.1rem;
    }

    .laptop-frame {
        padding: 15px;
        border-radius: 15px;
    }
}


/* Breadcrumb Section */
.breadcrumb-section {
    background-color: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: #00160e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: #000;
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-muted-color);
    content: ">";
}






/* Features Section Styles */
.features-section {
    padding: 4rem 0;
}

.feature-card {
    background-color: #fff;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    margin-bottom: 15px;
    /* height: 100%; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #dffff4;
    /* light purple */
    color: var(--primary-color);
    /* purple */
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}


/********************** Demos Section  *************************/


.demos-section {
    position: relative;

    overflow: hidden;
    text-align: center;
}

.demos-section .background-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 2%);
    font-size: 10rem;
    font-weight: 800;
    color: rgba(41, 119, 221, 0.05);
    z-index: 1;
    line-height: 1;
    user-select: none;
}

.demos-section .content-wrapper {
    position: relative;
    z-index: 2;
}

.demos-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    background-color: #fff;
    margin-bottom: 1rem;
}

.demos-section h2 {
    font-weight: 900;
    font-size: 2.6rem;
    margin-bottom: 3rem;
}

.demo-card {
    background-color: #ffffff;
    border-radius: 1rem;
    margin-bottom: 20px;
    padding: .5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-card .img-preview {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid #f0f0f0;
    height: 500px;
    overflow: hidden;
}

.demo-card .img-preview img {
    width: 100%;
}

.demo-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #343a40;
}

@media (max-width: 992px) {
    .demos-section .background-text {
        font-size: 5rem;
    }

    .demos-section h2 {
        font-size: 2.2rem;
    }

    .demo-card .img-preview {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .demos-section {
        padding: 4rem 0;
    }

    .demos-section .background-text {
        font-size: 5rem;
    }

    .demos-section h2 {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }
}



/*********** cart toggle start ****************/
.cart__toggle {
    position: fixed;
    right: 0;
    top: 40%;
    width: 65px;
    background-color: var(--primary-color);
    color: #fce6a3;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    text-decoration: none;
    padding: 10px 0 0 0;
    display: inline-block;
}

#cartOffcanvas .offcanvas-header {
    border-bottom: 1px solid #ddd;
}

.cart__icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
}

.cart__icon-box i {
    font-size: 20px;
    margin-bottom: 3px;
    color: #fff;
}

.cart__item-text {
    color: #fff;
}

.cart__price-box {
    background: #f1f4e8;
    color: #2e3b2f;
    font-weight: 600;
    font-size: 12px;
    padding: 5px 0;
    /* border-radius: 5px; */
}

.cart__price-box i {
    margin-right: 2px;
}


.cart-items-container {
    padding: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid #ddd;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-weight: 600;
    font-size: 1rem;
    color: #000;
    text-decoration: none;
}

.cart-item-title:hover {
    color: var(--primary-color);
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 0.375rem;
    width: -moz-fit-content;
    width: fit-content;
}

.quantity-btn {
    background: transparent;
    border: none;
    color: var(--text-muted-color);
    padding: 0.3rem 0.7rem;
    cursor: pointer;
    font-size: 1rem;
}

.quantity-btn:hover {
    color: var(--primary-color);
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 500;
}

.quantity-input:focus {
    outline: none;
}

.remove-item-btn {
    background: transparent;
    border: none;
    color: var(--text-muted-color);
    font-size: 1.1rem;
}

.remove-item-btn:hover {
    color: #dc3545;
    /* Bootstrap danger color */
}

/* Offcanvas Footer */
.offcanvas-footer {
    padding: 1.5rem;
    background-color: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

.subtotal-line {
    font-size: 1.1rem;
}

/* Custom Button */
.btn-purple {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-purple:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-outline-purple {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.btn-outline-purple:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Empty Cart Message */
.empty-cart-message {
    text-align: center;
    padding: 4rem 1rem;
}

.empty-cart-message i {
    font-size: 4rem;
    color: #ddd;
}





/* Sign up */



.auth-container {

    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    /* Slightly less transparent for better readability */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    /* Softer border */

    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    /* Thinner decorative line */
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-logo {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    /* box-shadow: 0 4px 20px rgba(245, 87, 108, 0.3); */
    /* Shadow for the logo */
}

.auth-title {
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.auth-subtitle {
    color: #6c757d;
    /* Standard Bootstrap secondary text color */
    font-size: 14px;
    font-weight: 400;
}

.form-tabs {
    display: flex;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.05);
    /* Light background for tabs */
    border-radius: 12px;
    padding: 4px;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: #6c757d;
    border-radius: 8px;
    /* Slightly smaller radius for inner elements */
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-btn.active {
    background: white;
    /* Active tab stands out */
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-container .form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-container .form-control {
    width: 100%;
    padding: 15px 50px 15px 20px;
    /* Adjusted padding for icon */
    border: 1px solid #e9ecef;
    /* Standard Bootstrap input border */
    border-radius: 12px;
    background: #f8f9fa;
    /* Standard Bootstrap input background */
    color: var(--text-dark);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-container .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    /* Uses one of the primary gradient colors */
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.1);
    /* Soft focus shadow */
}

.form-container .form-control::placeholder {
    color: #6c757d;
}

.form-container .input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 18px;
}

.password-toggle {
    cursor: pointer;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--text-dark);
}

.form-container .btn-primary {
    /* Added .auth-btn for more specificity */
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: var(--primary-color);
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-container .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); */
    transition: left 0.5s;
}

.form-container .btn-primary:hover::before {
    left: 100%;
}



.form-container .form-check {
    display: flex;
    align-items: center;
    margin: 20px 0;
    /* Consistent margin */
}

.form-container .form-check-input {
    margin-right: 10px;
    primary-color: var(--primary-color);
    /* Matches secondary gradient */
    width: 1.1em;
    /* Slightly larger checkbox */
    height: 1.1em;
}

.form-container .form-check-label {
    color: #6c757d;
    font-size: 14px;
    cursor: pointer;
}

.forgot-password {
    text-align: center;
    margin-top: 20px;
}

.forgot-password a {
    color: var(--primary-color);
    /* Matches primary gradient */
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: #5a6fd8;
    /* Darker shade on hover */
}


.form-container.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 30px 20px;
        margin: 10px;
        /* Add some margin on small screens */
    }

    .auth-title {
        font-size: 24px;
    }

    .form-control {
        padding: 12px 45px 12px 15px;
        /* Adjusted padding for icon */
        font-size: 14px;
    }

    .btn-primary.auth-btn {
        /* Ensured specificity for media query */
        padding: 12px;
        font-size: 14px;
    }
}








.footer-section {
    background-color: #060606;
    /* Dark background from image */
    color: #a9a4b6;
    /* Light grey text color from image */
    padding-top: 60px;
    padding-bottom: 20px;
    font-size: 15px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

/* Column 1: Logo & Intro */
.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.footer-logo span {
    color: #34d19a;
    /* User's primary color */
}

.footer-intro {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #a9a4b6;
    font-size: 1rem;
    margin-right: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    background-color: #34d19a;
    color: #ffffff;
}

/* Columns 2 & 3: Links */
.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links li {
    padding-bottom: 12px;
}

.footer-links a {
    color: #a9a4b6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #34d19a;
}

.footer-links a i {
    color: #34d19a;
    margin-right: 10px;
    font-size: 12px;
}

/* Column 4: Newsletter */
.newsletter-box {
    background-color: #00160e;
    /* Darker purple box from image */
    padding: 20px;
    border-radius: 8px;
}

.newsletter-box p {
    color: #a9a4b6;
}

.newsletter-box .input-group {
    background: #001e13;
    padding: 10px;
    border-radius: 50px;
}

.newsletter-form .form-control {
    background-color: #00160e;
    border: 1px solid #003622;
    color: #fff;
    border-radius: 25px !important;
    padding: 0 1rem;
}

.newsletter-form .form-control::placeholder {
    color: #a9a4b6;
}

.newsletter-form .form-control:focus {
    background-color: #00160e;
    color: #fff;
    border-color: #34d19a;
    box-shadow: none;
}

.btn-subscribe {
    background-color: #34d19a;
    color: #fff;
    border-color: var(--primary-color);
    border-radius: 25px !important;
    padding: 8px 15px;
    margin-left: 10px !important;
    transition: background-color 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #2aa87d;
    color: #fff;
}

.btn-subscribe i {
    margin-left: 5px;
}

/* Payment & Copyright Area */
.footer-bottom-area {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 30px;
}

.payment-methods {
    text-align: center;
    margin-bottom: 30px;
}

.payment-methods-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.copyright-area {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: #a9a4b6;
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: #a9a4b6;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}




/* Order Success Page */

.order-success {
    max-width: 700px;
    margin: auto;
    border: 1px solid #ddd;
    font-size: 14px !important;
}

.order-success .check-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-top: 10px;
}

.order-success .product-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.order-success .btn {
    border-radius: 25px;
    background: var(--primary-color);
    border: none;
    padding: 8px 20px;
    font-size: 14px;
}


/* verification page */


.verification-card {
    /* max-width: 500px; */
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #ddd;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    background-color: #ffffff;
    text-align: center;
    margin: auto;
}

.verification-card h2 {
    color: #343a40;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.verification-card p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
}

.verification-card .email-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1.5rem;
}





/*====  PROFILE CSS START ====  */
.customer-auth {
    display: grid;
    grid-template-columns: 60px auto;
    grid-gap: 10px;
    background: #f5f7f9;
    padding: 10px;
    border-radius: 5px;
}

.customer-img img {
    border-radius: 50px;
}



.sidebar-menu {
    background: #f5f7f9;
    margin: 15px 0;
    border-radius: 5px;
}

.sidebar-menu ul {
    padding-left: 0;
}

.sidebar-menu ul li {
    display: block;
}

.sidebar-menu li a {
    padding: 10px 10px;
    display: block;
    font-size: 15px;
}

.customer-content {
    background: #f5f7f9;
    padding: 15px;
    border-radius: 5px;
}

.backend_img {
    height: 80px;
    width: 80px;
    border-radius: 50px;
}

.account-title {
    margin-bottom: 15px;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    text-align: left;
    font-weight: 600;
}

.invoice_btn,
.invoice_btn:focus {
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
}

.sidebar-menu li a.active {
    background: #effff7;
    color: var(--primary-color);
}

.customer-sidebar {
    background-color: #f5f7f9;
    padding: 10px;
    height: 100%;
}


.sidebar-menu {
    background: #FFF;
    margin: 0;
    border-radius: 5px;
}

.sidebar-menu ul li {
    display: block;
    position: relative;
}

.sidebar-menu li a {
    padding: 10px 15px;
    display: block;
    font-size: 15px;
    line-height: 18px;
    text-transform: capitalize;
    font-weight: 500;
    color: #000;
}

.sidebar-menu ul li a img {
    width: 20px;
    height: auto;
    margin-right: 5px;
}

.sidebar-menu li a i {
    font-size: 12px;
    margin-right: 5px;
}

.sidebar-submenu {
    position: absolute;
    right: -110%;
    top: 0;
    width: 100%;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
    transition: 0.35s all;
}



.sidebar-submenu>li {
    position: relative !important;
}

.sidebar-childmenu {
    position: absolute;
    right: -100%;
    background: #fff;
    width: 100%;
    border-left: 1px solid #ddd;
    top: 0px;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}

.sidebar-menu ul li:hover>a {
    background-color: #effff7;
    color: var(--primary-color);
}

.sidebar-menu ul li:hover .sidebar-submenu {
    visibility: visible;
    opacity: 1;
    left: 100%;
}

.sidebar-submenu>li:hover .sidebar-childmenu {
    visibility: visible;
    opacity: 1;
    right: -100%;
}



.submit-btn {
    background: var(--primary-color) !important;
    display: block;
    width: 100%;
    border: 0;
    border-radius: 5px;
    padding: 7px 0;
    text-transform: uppercase;
    margin: 6px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.register-now a {
    border: 1px solid #ddd;
    width: 100%;
    padding: 6px 0;
    border-radius: 5px;
    transition: 0.35s all;
}

.register-now a:hover {
    background: var(--primary-color);
    color: #fff;
}

.customer-content svg {
    height: 16px;
    width: 16px;
}





/* Order History */

.order-history-item .btn {
    border-radius: 30px;
    padding: 6px 16px;
}

.accordion.order-history {
    border: none;
}

.order-history .accordion-item {
    border: none;
    margin-bottom: 10px;
}

.order-history .accordion-button {
    box-shadow: none;
    border: none;
}

.order-history .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.payment-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .payment-status {
        display: inline-block;
    }
}



/* Verification Page */

.verify-section .btn:hover {
    color: #fff;
}

.verify-section h2 {
    font-size: 28px;
}

/* Welcome page */

.welcome-section h2 {
    font-size: 28px;
}

.welcome-section .btn:hover {
    color: #fff;
}




/* Shop Details */

.shop-details .product-card {
    padding: 20px;
}

.shop-details .tab-content {
    padding: 15px;
}

/* Main Image Styles */
.main-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image-container img {
    max-width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}


/* Thumbnail Slider Styles */
.thumbnail-slider-container {
    position: relative;
    margin-top: 1rem;
    padding: 0 40px;
    /* Space for arrows */
}

.thumbnail-viewport {
    overflow: hidden;
}

.thumbnail-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.thumbnail-item {
    cursor: pointer;
    flex: 0 0 25%;
    opacity: 0.7;
    border: 2px solid transparent;
    border-radius: 0.5rem;
}

.thumbnail-item.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.thumbnail-item img {
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid #e9ecef;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.slider-arrow.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#prev-slide {
    left: 0;
}

#next-slide {
    right: 0;
}

/* Product Details Styles */
.product-title {
    font-weight: 700;
    font-size: 2rem;
}

@media(max-width: 767px) {
    .product-title {
        margin-top: 30px;
    }
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.option-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #495057;
}

.color-options .color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    margin-right: 10px;
    border: 3px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.color-options .color-swatch:hover {
    transform: scale(1.1);
}

.color-options .color-swatch.active {
    box-shadow: 0 0 0 2px var(--primary-color);
}

.style-options .btn {
    border-radius: 20px;
    font-size: 0.9rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 20px;
    width: fit-content;
}

.quantity-selector .btn {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
    font-size: 1.2rem;
}

.quantity-selector .quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
}

/* Hide number input arrows */
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input[type=number] {
    -moz-appearance: textfield;
}

.add-to-cart-btn {
    font-weight: 600;
    border-radius: 25px;
    padding: 0.45rem 0.5rem;
}

.share-links a {
    color: #6c757d;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.share-links a:hover {
    color: var(--primary-color);
}

/* --- Review Section Styles --- */
.review {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.review:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.review-author {
    font-weight: 600;
}

.review-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.star-rating .fa-star {
    color: #ffc107;
}

.star-rating .fa-star.text-muted {
    color: #e9ecef !important;
}

/* --- Review Form Styles --- */
.review-form h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.rating-stars {
    display: inline-block;
}

.rating-stars>input {
    display: none;
}

.rating-stars>label {
    color: #e9ecef;
    font-size: 1.75rem;
    cursor: pointer;
    transition: color 0.2s;
}

.rating-stars>input:checked~label,
.rating-stars:not(:checked)>label:hover,
.rating-stars:not(:checked)>label:hover~label {
    color: #ffc107;
}

.rating-stars>input:checked+label:hover,
.rating-stars>input:checked~label:hover,
.rating-stars>label:hover~input:checked~label,
.rating-stars>input:checked~label:hover~label {
    color: #ffc107;
}






/* shipping method */

.checkout-section{
    background: #f8f9fa;
}

.checkout-section h3 {
        font-size: 17px !important;
    line-height: 34px;
    margin-bottom: 10px !important;
    /* background: #e5fff6; */
    /* padding-left: 10px; */
    border-radius: 5px;
}

.shipping-method-container {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 10px 80px 0px #0000000A;
}

.shipping-method-header {
    margin-bottom: 30px;
    text-align: center;
    color: #343a40;
}

.shipping-option {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.shipping-option:hover {
    border-color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}

.shipping-option.selected {
    border-color: #007bff;
    background-color: #e7f3ff;
}

.shipping-option input[type="radio"] {
    display: none;
}

.shipping-option .form-check-label {
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.shipping-option-icon {
    font-size: 20px;
    margin-right: 8px;
    color: #464545;
    text-align: center;
}

.shipping-option-details {
    flex-grow: 1;
}

.shipping-option-name {
    font-weight: 600;
    color: #495057;
    font-size: 16px;
}

.shipping-option-description {
    font-size: 0.9rem;
    color: #6c757d;
}

.shipping-option-cost {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
    margin-left: auto;
    padding-left: 15px;
}

.custom-radio-indicator {
    width: 20px;
    height: 20px;
    border: 2px solid #adb5bd;
    border-radius: 50%;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

.custom-radio-indicator::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #007bff;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.shipping-option input[type="radio"]:checked+.form-check-label .custom-radio-indicator {
    border-color: #007bff;
}

.shipping-option input[type="radio"]:checked+.form-check-label .custom-radio-indicator::after {
    transform: scale(1);
}

.payment-container-card .theme-btn {
    border-radius: 25px;
    padding: 10px 20px !important;
    border: 0;
    transition: .4s;
}
.payment-container-card .theme-btn:hover{
    background: #000;
}





/* payment method */
.payment-container-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 10px 80px 0px #0000000A;
}

.payment-container-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.payment-container-card .header-subtitle {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 25px;
}

/* .payment-category {
    margin-bottom: 25px;
} */

.payment-category h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.payment-category .category-description {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 12px;
}

.payment-option-card,
.payment-option-card-small {
    border: 1px solid #ddd;
    border-radius: 6px;
        padding: 8px 10px;
    background-color: #fdfdfd;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 10px;
}

.payment-option-card:hover,
.payment-option-card-small:hover {
    border-color: #007bff;
}

.payment-option-card.selected,
.payment-option-card-small.selected {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    background-color: #f8f9fa;
}

.payment-option-card label,
.payment-option-card-small label {
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
    font-weight: 500;
    color: #333;
}



.payment-option-card input[type="radio"],
.payment-option-card-small input[type="radio"] {
    /* opacity: 0; */
    /* position: absolute; */
    pointer-events: none;
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.cod-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
}

.cod-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* COD info text */
#cod-advance-info {
        margin: 0;
    font-size: 14px;
    background: #e9e9e9;
    padding: 10px 0;
    text-align: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.payment-option-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-option-card-small {
    flex: 1;
    min-width: 120px;
    padding: 8px 10px;
}

.payment-option-card-small label {
    /* justify-content: center; */
}

.payment-option-card-small img {
    height: 30px;
    max-width: 100%;
    object-fit: contain;
}

.payment-option-card-small input[type="radio"] {
    margin-right: 8px;
}

.card-logos-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-logos-container img {
    height: 35px;
    object-fit: contain;
}
@media (max-width: 576px){
    .card-logos-container img {
        height: 25px;
        object-fit: contain;
    }
}

.card-logos-container .fab {
    font-size: 1.8rem;
    color: #555;
}

.card-logos-container .fa-cc-visa {
    color: #1A1F71;
}

.card-logos-container .fa-cc-mastercard {
    color: #EB001B;
}

.card-logos-container .fa-cc-amex {
    color: #0077cc;
}

.terms-conditions {
    margin-top: 25px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.terms-conditions input[type="checkbox"] {
    margin-right: 10px;
    primary-color: #0d6efd;
    transform: scale(1.2);
}

.terms-conditions label {
    font-size: 0.9rem;
    color: #333;
}

.terms-conditions label a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.terms-conditions label a:hover {
    text-decoration: underline;
}

.btn-confirm-order {
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.2s ease;
}

.btn-confirm-order:hover {
    background-color: #0b5ed7;
}

.btn-confirm-order:disabled {
    background-color: #a0c7fa;
    cursor: not-allowed;
}


/* Checkout */
.billing-form .form-group {
    position: relative;
    margin-bottom: 15px;
}

.billing-form .form-group label {
    position: absolute;
    top: 8px;
    left: 15px;
    color: #6c757d;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.2s ease-out;
    background-color: transparent;
    padding: 0 5px;
    z-index: 1;
}



.billing-form .form-group input[type="text"] {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 1rem;
    color: #495057;
    background-color: #fff;
    transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
    padding-top: 5px;
}



.billing-form .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 1rem;
    color: #495057;
    background-color: #fff;
    transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
    padding-top: 10px;
}

.billing-form .form-group .form-control{
    box-shadow: none;
}

.billing-form .form-group .form-control:focus{
    border: 1px solid var(--primary-color);

}

.billing-form .form-group input[type="password"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 1rem;
    color: #495057;
    background-color: #fff;
    transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
}

.checkout-section .inner-box {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px !important;
    padding: 15px !important;
    box-shadow: 0px 10px 80px 0px #0000000A;
}

.billing-form .form-group.focused label,
.billing-form .form-group.has-content label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--primary-color);
    background-color: #fff;
}

.billing-form .form-group label code {
    font-size: 1rem;
    color: #dc3545 !important;
    font-weight: bold;
    background-color: transparent;
}

.billing-form .form-group.focused label code,
.billing-form .form-group.has-content label code {
    font-size: 0.8rem;
}

.coupon-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.coupon-section h3 {
    margin-bottom: 20px;
}

.coupon-input-group {
    display: flex;
    gap: 10px;
}

.coupon-input-group input[type="text"] {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1rem;
}

.coupon-input-group input:focus {
    box-shadow: none;
    border: 1px solid var(--primary-color);
}

.coupon-input-group .btn-apply {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
    white-space: nowrap;
}

.coupon-input-group .btn-apply:hover {
    background-color: #000;
}

.create-account-section,
.login-section-toggle {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.create-account-toggle,
.login-toggle {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
}

.create-account-toggle input[type="checkbox"],
.login-toggle input[type="checkbox"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    primary-color: #007bff;
    flex-shrink: 0;
}

.create-account-toggle label,
.login-toggle label {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    margin-bottom: 0;
}

.account-fields,
.login-fields {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.account-fields.show,
.login-fields.show {
    max-height: 200px;
    opacity: 1;
}

.login-section {
    padding-bottom: 0;
}

.login-section .btn-primary {
    width: 100%;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 10px;
}

.password-input-container {
    position: relative;
    width: 100%;
}

.password-input-container input[type="password"],
.password-input-container input[type="text"] {
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    font-size: 1.1rem;
    transition: color 0.2s ease;
    z-index: 2;
}

.toggle-password:hover {
    color: #333;
}

.login-section .form-group {
    position: relative;
    margin-bottom: 15px;
}

.login-section .form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.login-section .form-group input[type="text"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 1rem;
    color: #495057;
    background-color: #fff;
    transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
}

.login-section .form-group input[type="password"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 1rem;
    color: #495057;
    background-color: #fff;
    transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
}


.btn-box .btn-one {
    padding: 10px;
    background: var(--primary-color);
    color: #fff;
}




/* SHop pAGE */


.shop-page .filter-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.shop-page .card-product {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    background: #ffffff;
    border: none;
}


.shop-page .card-img-top {
    /* height: 220px; */
    object-fit: cover;
}

.shop-page .price-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.shop-page .current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
}

.shop-page .previous-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: #6c757d;
}

.shop-page .button-group {
    display: flex;
    gap: 0.5rem;
}

.shop-page .button-group .btn {
    flex-grow: 1;
    font-weight: 600;
    padding: 0.4rem 0.5rem;
    border-radius: 25px;
}

.filter-sidebar h6 {
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    color: #333;
}

.filter-sidebar .form-check {
    margin-bottom: 0.5rem;
}

.filter-sidebar .form-check-input {
    cursor: pointer;
    border: 1px solid #ccc;
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.2rem;
}

.filter-sidebar .form-check-input:checked {
    background-color: #000;
    border-color: #000;
}

.filter-sidebar .form-check-label {
    font-weight: 500;
    color: #212529;
    cursor: pointer;
    padding-left: 0.4rem;
}

.filter-sidebar .form-check-input[type="radio"] {
    border-radius: 50%;
}




/* faq */

.faq-section .accordion {
    width: 850px;
    margin: auto;
}

@media(max-width: 996px) {
    .faq-section .accordion {
        width: 100%;
        margin: auto;
    }
}

.faq-section .accordion-button {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: none;
    font-weight: 600;
    font-size: 1rem;
    color: #1c1c1c;
    padding-right: 3rem;
}

.faq-section .accordion-body {
    color: #555;
    font-size: 0.95rem;
    padding-top: 0;
}

.faq-section .accordion-button::after {
    display: none;
    /* Hide Bootstrap default arrow */
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

/* Rotate + icon on open */
.accordion-button:not(.collapsed) .faq-icon {
    transform: rotate(45deg);
}




/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--primary-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.features-2 .feature-item .feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
    color: color-mix(in srgb, var(--primary-color), transparent 25%);
    font-size: 15px;
    margin-bottom: 0;
}

.phone-mockup {
    position: relative;
    padding: 30px 0;
}

.phone-mockup img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
    .features-2 .feature-item {
        text-align: center !important;
        margin-bottom: 2rem;
    }

    .features-2 .feature-item .d-flex {
        flex-direction: column;
        text-align: center;
        justify-content: center !important;
    }

    .phone-mockup {
        margin: 3rem 0;
    }
}




/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    position: relative;
    overflow: hidden;
    /* Swiper Navigation */
    /* Swiper Pagination */
    /* Responsive Styles */
}

.testimonials .testimonial-slider {
    position: relative;
    padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
    height: auto !important;
}

.testimonials .testimonial-item {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--primary-color) 2%) 100%);
    border-radius: 20px;
    padding: 0;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--primary-color), transparent 90%);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.testimonials .testimonial-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), color-mix(in srgb, var(--primary-color), var(--heading-color) 30%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
    border-color: var(--primary-color);
}

.testimonials .testimonial-item:hover::before {
    transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
    transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
    color: var(--primary-color);
    transform: scale(1.1);
}

.testimonials .testimonial-header {
    position: relative;
    text-align: center;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--primary-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials .testimonial-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid color-mix(in srgb, var(--primary-color), transparent 70%);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.testimonials .testimonial-header .rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonials .testimonial-body {
    padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #222;
    margin: 0;
    font-style: italic;
    text-align: center;
    position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.6;
    font-family: serif;
    position: absolute;
}

.testimonials .testimonial-body p::before {
    top: -5px;
    left: -10px;
}

.testimonials .testimonial-body p::after {
    bottom: -20px;
    right: -5px;
}

.testimonials .testimonial-footer {
    padding: 20px 30px 30px;
    text-align: center;
    position: relative;
}

.testimonials .testimonial-footer h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
    font-size: 0.85rem;
    color: #222;
    display: block;
    margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
    position: absolute;
    bottom: 15px;
    right: 25px;
    color: color-mix(in srgb, var(--primary-color), transparent 60%);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
    position: relative;
    margin-top: 25px;
    display: flex;
    justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
    position: static;
    width: 45px;
    height: 45px;
    margin: 0 10px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
    background: color-mix(in srgb, var(--primary-color), var(--heading-color) 20%);
    transform: scale(1.05);
    color: #222;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
    font-size: 16px;
    font-weight: 600;
}

.testimonials .swiper-pagination {
    position: static;
    margin-top: 30px;
    text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: color-mix(in srgb, var(--primary-color), transparent 70%);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 1199px) {
    .testimonials .testimonial-item .testimonial-header {
        padding: 25px 25px 15px;
    }

    .testimonials .testimonial-item .testimonial-header img {
        width: 70px;
        height: 70px;
    }

    .testimonials .testimonial-item .testimonial-body,
    .testimonials .testimonial-item .testimonial-footer {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 991px) {
    .testimonials .testimonial-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .testimonials .testimonial-item .testimonial-header {
        padding: 20px 20px 10px;
    }

    .testimonials .testimonial-item .testimonial-header img {
        width: 60px;
        height: 60px;
    }

    .testimonials .testimonial-item .testimonial-header .rating i {
        font-size: 0.8rem;
    }

    .testimonials .testimonial-item .testimonial-body {
        padding: 0 20px 15px;
    }

    .testimonials .testimonial-item .testimonial-body p {
        font-size: 0.95rem;
    }

    .testimonials .testimonial-item .testimonial-footer {
        padding: 15px 20px 20px;
    }

    .testimonials .testimonial-item .testimonial-footer h5 {
        font-size: 1rem;
    }

    .testimonials .testimonial-item .testimonial-footer span {
        font-size: 0.8rem;
    }

    .testimonials .testimonial-item .testimonial-footer .quote-icon {
        font-size: 1.3rem;
        bottom: 10px;
        right: 15px;
    }

    .testimonials .swiper-button-prev,
    .testimonials .swiper-button-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .testimonials .swiper-button-prev::after,
    .testimonials .swiper-button-next::after {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .testimonials .testimonial-slider {
        padding-bottom: 30px;
    }

    .testimonials .testimonial-item .testimonial-header {
        padding: 15px 15px 10px;
    }

    .testimonials .testimonial-item .testimonial-header img {
        width: 55px;
        height: 55px;
    }

    .testimonials .testimonial-item .testimonial-body {
        padding: 0 15px 10px;
    }

    .testimonials .testimonial-item .testimonial-body p {
        font-size: 0.9rem;
    }

    .testimonials .testimonial-item .testimonial-footer {
        padding: 10px 15px 15px;
    }

    .testimonials .testimonial-item .testimonial-footer h5 {
        font-size: 0.95rem;
    }

    .testimonials .testimonial-item .testimonial-footer .quote-icon {
        font-size: 1.2rem;
    }

    .testimonials .swiper-navigation {
        margin-top: 10px;
    }
}




/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/


.recent-blog-posts .recent-post {
    background-color: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--primary-color), transparent 92%);
}



.recent-blog-posts .recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-blog-posts .recent-content {
    padding: 20px;
}

.recent-blog-posts .recent-title {
    margin: 8px 0 12px 0;
}

.recent-blog-posts .recent-title a {
    color: #00160e;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    transition: color 0.3s ease;
}

.recent-blog-posts .recent-title a:hover {
    color: var(--accent-color);
}

.recent-blog-posts .recent-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
}





/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-main-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .contact .contact-main-wrapper {
        grid-template-columns: 45% 55%;
        min-height: 600px;
    }
}

.contact .map-wrapper {
    height: 300px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

@media (min-width: 992px) {
    .contact .map-wrapper {
        height: 100%;
        position: sticky;
        top: 100px;
    }
}

.contact .contact-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact .contact-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 576px) {
    .contact .contact-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact .contact-card {
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card .icon-box {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-color: color-mix(in srgb, #34d19a, transparent 90%);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact .contact-card .icon-box i {
    font-size: 22px;
    color: var(--primary-color);
}

.contact .contact-card .contact-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #011e2c;
}

.contact .contact-card .contact-text p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--default-color);
    margin-bottom: 0;
}

.contact .contact-form-container {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
    position: relative;
    padding-left: 15px;
}

.contact .contact-form-container h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.contact .contact-form-container>p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
    height: auto;
    padding: 14px 20px;
    border-radius: 10px;
    background-color:
        color-mix(in srgb, #f1f5f7, #f5f8fd 30%);
    border: 1px solid color-mix(in srgb, #010608, transparent 90%);
    color: #010608;
    transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
    background-color: var(--surface-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
    min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

@media (max-width: 576px) {
    .contact .contact-form-container .php-email-form .form-submit {
        flex-direction: column;
        align-items: flex-start;
    }
}

.contact .contact-form-container .php-email-form button {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}


.contact .contact-form-container .php-email-form .social-links {
    display: flex;
    gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: color-mix(in srgb, #34d19a, transparent 90%);
    color: var(--primary-color);
    font-size: 16px;
    transition: all 0.3s ease;
}



@media (max-width: 768px) {
    .contact .contact-form-container {
        padding: 25px 20px;
    }

    .contact .contact-form-container h3 {
        font-size: 22px;
    }
}





/* How it work */


.process-section {
    padding: 80px 0;
}

.section-title h2 {
    font-weight: 600;
    color: #212529;
}

.section-title .lead {
    color: #6c757d;
    max-width: 600px;
    margin: 15px auto 0;
}

.top-icon {
    font-size: 2rem;
    color: #20c997;
    margin-bottom: 1rem;
}

.step-item {
    position: relative;
    margin-top: 30px;
}

.step-icon-wrapper {
    width: 90px;
    height: 90px;
    background-color: #e0f8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-item:hover .step-icon-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(32, 201, 151, 0.2);
    background-color: #20c997;
}

.step-item:hover .step-icon-wrapper i {
    color: #ffffff;
}

.step-icon-wrapper i {
    font-size: 2.2rem;
    color: #20c997;
    transition: color 0.3s ease;
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #6c757d;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.step-item h5 {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 10px;
}

.step-item p {
    color: #6c757d;
    font-size: 0.9rem;
    padding: 0 15px;
}

/* Dashed connector line for desktop */
@media (min-width: 768px) {
    .step-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 45px;
        /* Vertically center with the icon wrapper */
        left: calc(50% + 45px);
        /* Start from the right edge of the icon */
        width: calc(100% - 90px);
        /* Span across the column gap */
        height: 2px;
        background-image: repeating-linear-gradient(to right, #adb5bd 0, #adb5bd 6px, transparent 6px, transparent 12px);
        z-index: -1;
    }
}




/*  */




/* Button style */
.get-cart-btn {

    /* background: linear-gradient(67deg, #7a2ce9 75.09%, #36cd9c 92.44%); */
    background: linear-gradient(67deg, #36cd9c 75.09%, #7a2ce9 92.44%);
    background-size: 800% 400%;
    border: none;
    transition: all .1s ease-in-out;
    animation: Gradient 5s infinite cubic-bezier(.62, .28, .23, .99) both;
}


/* Gradient animation */
@keyframes Gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}





.video-content-wrapper {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}




.video-section .list-title {
    font-weight: 600;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.video-section .list .list-group-item {
    border: 0;
    padding: 1rem 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease-in-out;
    cursor: pointer;
}



.video-section .list .list-group-item .d-flex {
    align-items: center;
}

.video-section .list-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: #edfff9;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-right: 1rem;
}

.video-section .list-info {
    line-height: 1.3;
}

.video-section .list-info .title {
    font-weight: 600;
    color: #212529;
}

.video-section .list-info .duration {
    font-size: 0.85rem;
    color: #6c757d;
}

.featured-video-card {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: none;
}




/* About page */

#about-page-content .section-header {
    margin-bottom: 4rem;
}

#about-page-content .section-header h2 {
    font-weight: 700;
    color: #212529;
}

#about-page-content .section-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

#about-page-content .mission-section .icon-box {
    font-size: 3rem;
    color: var(--primary-color);
}

#about-page-content .team-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about-page-content .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

#about-page-content .team-card .social-links a {
    color: #6c757d;
    margin: 0 8px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

#about-page-content .team-card .social-links a:hover {
    color: var(--primary-color);
}

#about-page-content .value-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about-page-content .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

#about-page-content .value-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

#about-page-content .value-card h4 {
    font-weight: 600;
    color: #343a40;
}

#about-page-content .cta-section {
    background-color: #343a40;
    color: white;
    border-radius: 15px;
}


.core-value-card{
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}



.core-value-card .icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-section {
    background-color: #343a40;
    color: white;
    border-radius: 15px;
}





/* Cart Page */


.cart-page {
   
    margin: auto;
    padding: 80px 0;
}

.cart-page .cart-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cart-page .cart-header h1 {
    font-weight: 700;
}

.cart-page .cart-header p {
    color: #6c757d;
}

.cart-page .product-card {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cart-page .product-details {
    flex: 1 1 300px;
    /* Flex-grow, flex-shrink, flex-basis */
    display: flex;
    align-items: center;
}

.cart-page .product-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.375rem;
    margin-right: 1.5rem;
}

.cart-page .product-info h5 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
}

.cart-page .product-info p {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0;
}

.cart-page .product-quantity,
.cart-page .product-price,
.cart-page .product-total {
    flex: 1 1 100px;
    text-align: center;
    font-weight: 500;
}

.cart-page .product-remove {
    flex: 0 0 50px;
    text-align: right;
}

.cart-page .quantity-input {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-page .quantity-input .form-control {
    width: 50px;
    text-align: center;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding: 0.375rem 0.25rem;
}

.cart-page .quantity-input .btn {
    border: 1px solid #ced4da;
    background-color: #fff;
    color: #495057;
    padding: 0.375rem 0.75rem;
}

.cart-page .quantity-input .btn:hover {
    background-color: #e9ecef;
}

.cart-page .quantity-input .btn-minus {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.cart-page .quantity-input .btn-plus {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.cart-page .summary-card {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1.5rem;
    position: sticky;
    top: 20px;
}

.cart-page .summary-card h4 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cart-page .summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cart-page .summary-item .info-icon {
    color: #6c757d;
    cursor: pointer;
}

.cart-page .payment-icons img {
    height: 20px;
    margin-right: 10px;
}

.cart-page .discount-note {
    font-size: 0.875rem;
    color: #6c757d;
    text-align: center;
    margin-top: 1.5rem;
}

.cart-page .btn-checkout {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 0.75rem;
}
.cart-page .product-price{
    font-size: inherit !important;
}


.cart-page .btn-remove {
    color: #6c757d;
    background: none;
    border: none;
    font-size: 1.2rem;
}

.cart-page .btn-remove:hover {
    color: #e63946;
}

.cart-page .back-link {
    text-decoration: none;
    color: #212529;
    font-weight: 500;
}

.cart-page .back-link i {
    margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .cart-page .product-card {
        position: relative;
        padding-bottom: 4rem;
    }

    .cart-page .product-quantity,
    .cart-page .product-price,
    .cart-page .product-total,
    .cart-page .product-remove {
        flex-basis: 50%;
        text-align: left;
        margin-top: 1rem;
        padding-left: calc(80px + 1.5rem);
        /* Align with product info */
    }

    .cart-page .product-remove {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        padding-left: 0;
    }

    .cart-page .product-quantity {
        justify-content: flex-start;
    }

    .cart-page .product-price::before,
    .cart-page .product-total::before {
        font-weight: 600;
        margin-right: 0.5rem;
    }

    .cart-page .product-price::before {
        content: 'Price: ';
    }

    .cart-page .product-total::before {
        content: 'Total: ';
    }
}

@media (max-width: 767.98px) {
    .cart-page .product-details {
        flex-basis: 100%;
    }

    .cart-page .product-quantity,
    .cart-page .product-price,
    .cart-page .product-total {
        padding-left: 0;
        text-align: center;
    }

    .cart-page .quantity-input {
        justify-content: center;
    }
}