html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #fdf4e4; /* Light beige background */
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

a {
    list-style: none;
    text-decoration: none;
    cursor: pointer;
}

    a:hover {
        list-style: none;
        text-decoration: none;
        cursor: pointer;
        color: white;
    }
/* Navbar Styling */
.navbar {
    background-color: #fdf4e4;
    padding: 1rem;
    border-bottom: 3px solid #2a0136;
}

.navbar-nav .nav-link {
    color: #2a0136;
    font-weight: bold;
}

    .navbar-nav .nav-link:hover {
        color: #000;
    }

        .navbar-nav .nav-link:hover .active {
            color: #000;
        }

.btn-theme {
    color: #ffffff;
    background-color: #2a0136;
    border-color: #2a0136;
    border-radius: 30px;
}

.bg-theme {
    color: #ffffff;
    background-color: #2a0136 !important;
    border-color: #2a0136;
}

.btn-theme:active {
    color: #ffffff;
    background-color: #2a0136;
    border-color: #2a0136;
    border-radius: 30px;
}

.btn-theme:hover {
    color: #ffffff;
    background-color: #2a0136;
    border-color: #2a0136;
    border-radius: 30px;
}

.btn-theme-danger {
    color: #ffffff;
    background-color: red;
    border-color: red;
    /* border-radius: 41%; */
    border-radius: 30px;
}

    .btn-theme-danger:active {
        color: #ffffff;
        background-color: red;
        border-color: red;
        border-radius: 30px;
    }

    .btn-theme-danger:hover {
        color: #ffffff;
        background-color: red;
        border-color: red;
        border-radius: 30px;
    }

.btn-theme-delete {
    color: #2a0136;
    background-color: transparent;
    border-color: #2a0136;
    border: 2px solid;
}

    .btn-theme-delete:active {
        color: #ffffff;
        background-color: #2a0136;
        border-color: #2a0136;
    }

    .btn-theme-delete:hover {
        color: #ffffff;
        background-color: #2a0136;
        border-color: #2a0136;
    }

.btn-outline-theme {
    color: #2a0136; /* Theme color */
    border: 1px solid #2a0136;
    background-color: transparent;
    transition: 0.3s ease-in-out;
}

    .btn-outline-theme:hover {
        background-color: #2a0136;
        color: #fff;
    }


.search-bar {
    border: 2px solid #2a0136;
    border-radius: 20px;
    padding: 0.2rem 1rem;
    display: flex;
    align-items: center;
    background-color: #fdf4e4 !important;
    padding-left: 15%;
}

    .search-bar:focus {
        border: 2px solid #2a0136;
        box-shadow: unset !important;
    }

    .search-bar button {
        background: none;
        border: none;
        color: #2a0136;
    }

.search-container {
    position: relative;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #2a0136;
}
/* Main Section Styling */
.hero-text {
    text-align: center;
    color: #2a0136;
    margin-top: 3rem;
}

    .hero-text h1 {
        font-size: 5rem;
        font-weight: bold;
    }

    .hero-text p {
        font-size: 1.5rem;
    }

.eligibility-button {
    background-color: #2a0136;
    color: #fff;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    text-decoration: none;
}

    .eligibility-button:hover {
        background-color: #1d012a;
    }
/* Image Grid */
.image-grid {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

    .image-grid img {
        border-radius: 10px;
        width: 100%;
        height: auto;
    }
/* Footer Button */
.footer-button {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    background-color: #ff4a4a;
    color: #fff;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
}

    .footer-button:hover {
        background-color: #e03c3c;
    }

.theme-color-text {
    color: #2a0136;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.card {
    background-color: #191847;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 5px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .card p {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .card h2 {
        font-size: 32px;
        font-weight: bold;
    }

.card-grid {
    display: grid;
    grid-template-columns: 1fr calc(100% - 3.2rem) 1fr;
    grid-column-gap: 1.6rem;
    overflow-wrap: break-word;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

    .orders-table thead {
        background-color: #191847;
        color: #fff;
    }

    .orders-table th {
        padding: 15px;
        text-align: left;
        border-bottom: 1px solid #ccc;
    }

    .orders-table td {
        padding: 15px;
        text-align: left;
        border-bottom: 1px solid #ccc;
        color: #191847;
    }

    .orders-table tbody tr:hover {
        background-color: #f1f1f1;
    }

.status {
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

    .status.processing {
        background-color: #5b9aff;
    }

    .status.refunded {
        background-color: #ff5b5b;
    }

    .status.under-review {
        background-color: #ffa726;
    }

    .status.completed {
        background-color: #4caf50;
    }

.admin-button {
    padding: 10px 20px;
    background-color: #ff5b5b;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .admin-button:hover {
        background-color: #ff3333;
    }

}

/* Responsive Design */
@media (max-width: 768px) {
    .filters {
        flex-direction: column;
        gap: 10px;
    }

    .orders-table th, .orders-table td {
        padding: 10px;
    }

    .admin-button {
        width: 100%;
        text-align: center;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .filter-section {
        flex-direction: column;
        gap: 10px;
    }

    .search-bar, .dropdown {
        width: 100%;
    }

    .customers-table th, .customers-table td {
        padding: 10px;
    }

    .admin-button {
        width: 100%;
        text-align: center;
    }
}

.dataTables_filter {
    margin: 13px 0px;
}

.iq-bg-primary {
    color: var(--iq-primary) !important;
    font-size: larger;
}

.avatar-40 {
    height: 50px;
    width: 50px;
    line-height: 40px;
    font-size: 0.6rem;
}

/*--------------------*/



.order-header .order-info .badge {
    background-color: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
}

.order-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.order-info-item {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .order-info-item .info-label {
        font-weight: bold;
        color: #2a0136;
        margin-bottom: 5px;
    }

    .order-info-item .info-value {
        font-size: 16px;
        color: #333;
    }

.order-items-section .widget-tabs {
    margin-top: 40px;
}

.widget-menu-tab {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

    .widget-menu-tab .item-title {
        padding: 10px 20px;
        background-color: #f1f1f1;
        border-radius: 5px;
        cursor: pointer;
    }

        .widget-menu-tab .item-title.active {
            background-color: #007bff;
            color: white;
        }

.widget-content-tab {
    margin-top: 30px;
}

.order-products {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-product-item {
    display: flex;
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.product-details {
    flex: 1;
}

    .product-details h5 {
        font-size: 18px;
        color: #2a0136; /* Keeping original text color */
        margin-bottom: 10px;
    }

    .product-details p {
        font-size: 16px;
        color: #333;
        margin-bottom: 8px;
    }

.order-total {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .order-total .total-label {
        font-size: 18px;
        font-weight: bold;
        color: #2a0136;
    }

    .order-total .total-value {
        font-size: 18px;
        font-weight: bold;
        color: #28a745;
    }

.page-item.active {
    background-color: #2a0136;
}

    .page-item.active .page-link {
        color: white;
        border: none;
        background-color: #2a0136;
    }

.page-item .page-link {
    color: #2a0136;
    border: none;
    background-color: white;
}

.page-content-list {
    list-style-type: disc;
    padding-left: 20px;
}

.page-content {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: left;
}

.carousel-inner img {
    height: auto;
    object-fit: cover;
}

.page-content-list {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
}

.page-content {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: left;
}

.iq-bg-danger {
    background-color: red;
    color: white;
}

.image-preview, .video-preview {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: none;
}

.search-container {
    position: relative;
}

.search-input {
    height: 50px;
    border-radius: 30px;
    padding-left: 35px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    .search-input::placeholder {
        color: #2a0136;
        margin-left: 2%;
    }


.search-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #2a0136;
}

/* Product Carousel Container */
.product-carousel-container {
    position: relative;
    margin-bottom: 30px;
}

/* Scroll Buttons */
.scroll-btn {
    background-color: transparent;
    color: black;
    font-size: 40px;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Left button */
.left-btn {
    left: 0;
}

/* Right button */
.right-btn {
    right: 0;
}

/* Show buttons when hovering over carousel container */
.product-carousel-container:hover .scroll-btn {
    opacity: 1;
}

/* Product Item Styling */
.product-item {
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    width: 250px;
    /*height: 320px;*/
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    /* Hover Effects for Product Item */
    .product-item:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border: 2px solid;
        border-color: #2a0136; /* Optional: adds shadow on hover */
    }

/* Product Image Container */
.product-image-container {
    position: relative;
    height: 200px; /* Set fixed height for the image */
    overflow: hidden;
}

/* Image Styling */
.product-image {
    width: 100%; /* Ensure image takes full width */
    height: 100%; /* Ensure image takes full height */
    object-fit: cover; /* Ensure image covers the space without distorting */
    border-radius: 5px;
}

.product-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.add-to-cart-btn {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 5px;
    background-color: transparent;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-item:hover .product-image-container::before {
    opacity: 1;
}

.product-item:hover .add-to-cart-btn {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(-10px);
    background-color: transparent;
}

.add-to-cart-btn:hover {
    background-color: transparent;
}

.add-to-cart-btn i {
    font-size: 25px;
    margin-right: 5px;
}
/* Product Name and Price */
.product-item h6 {
    font-size: 14px;
    font-weight: 600;
}

/* Price Styling */
.product-item .product-price {
    background-color: lightgreen;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}


/*Product page css*/
.product-detail-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
}

.product-detail-image {
    border: 5px solid #2d033b;
    padding: 15px;
    width: 350px;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
}

.btn-Consultation {
    background-color: #2d033b;
    color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 18px;
}

.btn-custom:hover {
    background-color: #1b0226;
}

.quantity-select, .strength-select {
    font-size: 18px;
    padding: 10px;
    padding-left: 20px;
    border: 2px solid #2d033b;
    border-radius: 50px;
    color: #2d033b;
    width: 100%;
    margin-top: 10px;
    background-color: #f8ebe4;
}

.price {
    font-size: 28px;
    font-weight: bold;
}

.description-title {
    font-size: 24px;
    font-weight: bold;
    margin-top: -20px;
}

.tooltip-text {
    color: #ff0000;
    font-size: 14px;
}

.productname {
    font-size: 1.5rem;
}

.login-btn {
    border-radius: 25px;
    margin-right: 10px;
    left: 0;
}

    .login-btn span {
        padding-left: 10px;
        padding-right: 10px;
    }

/* Cart Page Styling */
.tf-page-cart-wrap {
    border-radius: 10px;
    padding: 2rem;
}

.tf-page-cart-item {
    margin-bottom: 2rem;
}

.tf-table-page-cart {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

    .tf-table-page-cart th, .tf-table-page-cart td {
        padding: 1rem;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .tf-table-page-cart th {
        background-color: #2a0136;
        color: white;
    }

.tf-cart-item_product img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-info {
    margin-left: 1rem;
}

.cart-title {
    color: #2a0136;
    font-weight: bold;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.cart-meta-variant {
    color: #888;
    font-size: 0.9rem;
}

.remove-cart {
    color: #ff5b5b;
    font-size: 0.9rem;
    text-decoration: none;
}

.tf-cart-item_price, .tf-cart-item_quantity, .tf-cart-item_total {
    text-align: center;
}

    .tf-cart-item_quantity input {
        width: 60px;
        padding: 0.5rem;
        border: 1px solid #ddd;
        border-radius: 5px;
        text-align: center;
        font-size: 1rem;
    }

.cart-total {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2a0136;
}

/* Footer Section Styling */
.tf-page-cart-footer {
    margin-top: 2rem;
    padding-top: 1rem;
}

.tf-cart-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tf-page-cart-checkout {
    width: 100%;
}

.tf-cart-totals-discounts h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2a0136;
    margin-bottom: 0.5rem;
}

.total-value {
    font-size: 1.4rem;
    font-weight: bold;
    color: #28a745;
}

.cart-checkout-btn a {
    display: block;
    width: 100%;
    background-color: #2a0136;
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1.1rem;
    border-radius: 28px;
    transition: background-color 0.3s ease;
}

    .cart-checkout-btn a:hover {
        background-color: #1d012a;
    }

/* No Item Styling */
h4 {
    text-align: center;
    color: #2a0136;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tf-table-page-cart th, .tf-table-page-cart td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .cart-info {
        margin-left: 1rem;
    }

    .cart-title {
        font-size: 1rem;
    }

    .cart-total {
        font-size: 1.1rem;
    }

    .cart-checkout-btn a {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .remove-cart {
        font-size: 0.8rem;
    }

    .tf-cart-item_quantity input {
        width: 50px;
        font-size: 0.9rem;
    }
}


/* Main Order Tracking Container */
.order-tracking {
    font-family: Arial, sans-serif;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    margin: 0 auto;
}

/* Header Styling */
.tracking-header {
    text-align: center;
    margin-bottom: 30px;
}

    .tracking-header h2 {
        font-size: 24px;
        font-weight: 700;
        color: #2a0136;
    }

    .tracking-header p {
        color: #777;
        font-size: 14px;
    }

/* Timeline Container */
.timeline-container {
    position: relative;
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
}

/* Step Styling */
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 20%;
    text-align: center;
    position: relative;
}

    .step .timeline-badge {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: #ddd;
        border: 2px solid #ddd;
        transition: background-color 0.3s, border-color 0.3s;
        margin-bottom: 10px;
    }

    /* Step Content */
    .step .timeline-content {
        color: #333;
        font-weight: bold;
        font-size: 14px;
    }

    .step .step-title {
        display: block;
    }

    .step .step-date {
        font-size: 12px;
        color: #888;
    }

    /* Step States */
    .step.pending .timeline-badge {
        background-color: #e9ecef;
        border-color: #e9ecef;
    }

    .step.active .timeline-badge {
        background-color: #2a0136;
        border-color: #2a0136;
    }

    .step.completed .timeline-badge {
        background-color: #28a745;
        border-color: #28a745;
    }

/* Connecting Line Between Steps */
.timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2a0136;
    z-index: -1;
}

/* Active Step Line */
.step.active::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 50%;
    height: 2px;
    background-color: #2a0136;
    z-index: -1;
}

/* Completed Step Line */
.step.completed::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #28a745;
    z-index: -1;
}

/* Remove Line for First Item */
.step:first-child::before {
    content: none;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .timeline {
        flex-direction: column;
        align-items: flex-start;
    }

    .step {
        width: 100%;
        margin-bottom: 20px;
        align-items: flex-start;
    }

        .step .timeline-badge {
            margin-left: 20px;
        }
}


/*Questionnaire view*/

.question-carousel-container {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
}

.question {
    margin-bottom: 20px;
    background-color: #FDFCF4;
    color: #133F26;
    padding: 1%;
    flex-shrink: 0;
    display: block;
}

.Question-title {
    color: #2d033b;
}

.radio-label, .checkbox-label {
    padding: 10px 20px;
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
    width: 100%;
    text-align: center;
    border: 1px solid #2d033b;
    margin: 1%;
}

.radio-input[type="radio"]:checked + .radio-label,
.checkbox-input[type="checkbox"]:checked + .checkbox-label {
    background-color: #008000;
    color: white;
}

.radio-label:hover, .checkbox-label:hover {
    background-color: #008000;
}

.radio-input[type="radio"]:checked + .radio-label:active,
.checkbox-input[type="checkbox"]:checked + .checkbox-label:active {
    background-color: #008000;
}

.button-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.radio-input[type="radio"], .checkbox-input[type="checkbox"] {
    margin-right: 5px;
}

.w-60 {
    width: 60%;
}

.info-header h3 {
    font-size: 1.75rem;
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.wd-check-payment {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.checkout-block {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    border: 1px solid #2a0136;
    border-radius: 5px;
    height: fit-content;
    margin-top: 1rem;
    background-color: white;
}

.w15 {
    width: 15%;
}

.h15 {
    height: 15%;
}

.checkout-form {
    border: 1px solid #2a0136;
    border-radius: 5px;
    background-color: lightgray;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    display: none;
}

/*Search bar model*/

.search-dropdown-header {
    position: absolute !important;
    background-color: white !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15) !important;
    border-radius: 12px !important;
    padding: 1rem !important;
    z-index: 1000 !important;
    margin: 5%;
}


.theme-border {
    border: solid;
    border-color: #2a0136;
    border-width: 1px;
}

.bottom-border {
    border-bottom: solid;
    padding-bottom: 5px;
    border-width: 1px;
}

.theme-nav-link {
    color: #191847 !important;
    border-radius: 5px !important;
}

    .theme-nav-link.active,
    .theme-nav-link.active:hover {
        background-color: #191847 !important;
        color: white !important;
    }

/*Disable a tag*/

.disabled-link {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}
