:root {
    --primary-color: #e31837;
    --secondary-color: #0056b3;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --border-color: #dee2e6;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    padding-top: 62px;
}

/* Navbar Styles */
.navbar {
    background: #fff;
    padding: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    min-height: 90px;
}

.navbar .container {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 100%;
    padding: 0 24px;
    min-height: 90px;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

/* Combined Search Container */
.search-container {
    flex: 1;
    max-width: 800px;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    height: 54px;
    overflow: visible;
    position: relative;
}

.search-container .dropdown {
    min-width: 180px;
    border-right: 1px solid #e0e0e0;
    height: 100%;
    position: static;
}

.search-container .dropdown .btn {
    width: 100%;
    height: 100%;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    color: #55BEBE;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
}

.search-container .dropdown .btn:hover,
.search-container .dropdown .btn:focus {
    background: #f8f9fa;
}

.search-container .dropdown .dropdown-menu {
    min-width: 180px;
    margin-top: 2px;
    padding: 4px 0;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    display: none;
}

.search-container .dropdown .dropdown-menu.show {
    display: block;
}

.search-container .dropdown .dropdown-item {
    padding: 8px 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    display: block;
    width: 100%;
    clear: both;
    text-align: inherit;
    white-space: nowrap;
    background: none;
    border: 0;
}

.search-container .dropdown .dropdown-item:hover {
    background: #f8f9fa;
    color: #55BEBE;
}

.search-container .dropdown .dropdown-item.active {
    background: #55BEBE;
    color: #fff;
}

.location-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 100%;
    position: relative;
}

.location-input-wrapper i {
    color: #666;
    margin-right: 8px;
}

.location-input {
    flex: 1;
    border: none;
    padding: 0;
    height: 100%;
    font-size: 14px;
    color: #333;
    outline: none;
}

.btn-detect-location {
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #55BEBE;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.btn-detect-location:hover {
    background: #489898;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.cart-link {
    color: #333;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
}

.cart-link .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #E31837;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

@media (max-width: 991px) {
    .search-container .dropdown {
        min-width: 120px;
    }

    .search-container .dropdown .btn {
        padding: 0 12px;
    }

    .location-input-wrapper {
        padding: 0 12px;
    }
}

@media (max-width: 767px) {
    .navbar {
        height: 56px;
    }

    .navbar-brand img {
        height: 30px;
    }

    .search-container {
        max-width: none;
    }
}

/* Service Type Dropdown */
.navbar .dropdown {
    position: relative;
    min-width: 180px;
}

.navbar .dropdown .btn-outline-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.navbar .dropdown .btn-outline-primary:hover,
.navbar .dropdown .btn-outline-primary:focus {
    border-color: #55BEBE;
    color: #55BEBE;
    background-color: #f8f9fa;
}

.navbar .dropdown .dropdown-menu {
    min-width: 180px;
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: none;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar .dropdown .dropdown-item {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    color: #333;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.navbar .dropdown .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #55BEBE;
}

.navbar .dropdown .dropdown-item.active {
    background-color: #55BEBE;
    color: #fff;
}

/* Location Selector */
.location-selector-wrapper {
    flex: 1;
    max-width: 500px;
    margin: 0 1rem;
    position: relative;
}

.location-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0.6rem 1rem;
    transition: all 0.2s ease;
}

.location-selector:focus-within {
    border-color: #55BEBE;
    box-shadow: 0 0 0 3px rgba(85, 190, 190, 0.1);
}

.location-selector input {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 0.9rem;
    color: #333;
    width: 100%;
}

.location-selector input:focus {
    outline: none;
}

.location-selector input::placeholder {
    color: #999;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-link {
    position: relative;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-link:hover {
    color: #55BEBE;
}

.cart-link .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #55BEBE;
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
}

.btn-detect-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: #55BEBE;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-detect-location:hover {
    background: #3a9797;
}

/* Profile Dropdown */
.header-actions .dropdown-toggle {
    padding: 0;
    border: none;
    background: transparent;
}

.header-actions .dropdown-toggle img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.header-actions .dropdown-toggle:hover img {
    border-color: #55BEBE;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar .container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .location-selector-wrapper {
        order: 2;
        flex: 1;
        max-width: 100%;
        margin: 0;
    }

    .header-actions {
        order: 1;
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar .container {
        padding: 0 0.75rem;
    }

    .navbar-brand img {
        width: 150px;
        height: 40px;
    }

    .location-selector {
        padding: 0.5rem 0.75rem;
    }

    .btn-detect-location {
        padding: 0.5rem 0.75rem;
    }
}

/* Location Dropdown */
.location-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    max-height: 200px;
    overflow-y: auto;
}

.location-suggestion {
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.location-suggestion:hover {
    background-color: #f5f5f5;
}

.location-suggestion .area {
    font-weight: 500;
    color: #333;
}

.location-suggestion .details {
    font-size: 12px;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .location-selector-wrapper {
        max-width: 100%;
        margin: 0;
    }
}

@media (max-width: 576px) {
    .location-selector {
        padding: 6px 12px;
    }

    .location-selector input {
        font-size: 13px;
    }
}

.btn-detect-location {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: none;
    background: #55BEBE;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-detect-location:hover {
    background: #3a9797;
}

.btn-detect-location i {
    font-size: 16px;
}

.btn-detect-location.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-detect-location.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Location Error State */
.location-selector.error input {
    color: #dc3545;
}

.location-selector.error .bi-geo-alt {
    color: #dc3545;
}

/* Toast Notification for Location */
.location-toast {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.location-toast.show {
    transform: translateX(0);
}

.location-toast i {
    font-size: 20px;
}

.location-toast.success {
    border-left: 4px solid #22c55e;
}

.location-toast.success i {
    color: #22c55e;
}

.location-toast.error {
    border-left: 4px solid #dc3545;
}

.location-toast.error i {
    color: #dc3545;
}

.location-toast-content {
    flex: 1;
}

.location-toast-content h6 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 600;
}

.location-toast-content p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

/* Search Bar */
.search-bar {
    max-width: 600px;
}

.search-bar .input-group {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.search-bar .form-control {
    border: none;
    padding: 12px 16px;
    font-size: 14px;
}

.search-bar .form-control:focus {
    box-shadow: none;
}

.search-bar .btn-primary {
    border: none;
    padding: 0 20px;
}

/* Header Actions */
.header-actions {
    color: #1a1a1a;
}

.header-actions a {
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.header-actions a:hover {
    color: var(--primary-color);
}

.cart-link {
    color: #1a1a1a;
}

.cart-link:hover {
    color: #1a1a1a;
}

.cart-info {
    line-height: 1.2;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar .container {
        flex-wrap: wrap;
    }

    .search-bar {
        order: 3;
        width: 100%;
        margin: 15px 0 0;
    }

    .location-selector {
        flex-grow: 1;
    }
}

@media (max-width: 576px) {
    .cart-info {
        display: none !important;
    }

    .location-selector input {
        width: 120px;
    }
}

.navbar .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #fff;
}

.navbar .dropdown-toggle:hover,
.navbar .dropdown-toggle:focus {
    border-color: #55BEBE;
    color: #55BEBE;
    background: #E6F7F8;
}

.navbar .dropdown-toggle img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-menu {
    padding: 8px 0;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
    min-width: 200px;
}

.dropdown-item {
    padding: 10px 16px;
    color: #333333;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.dropdown-item i {
    font-size: 16px;
    color: #55BEBE;
    width: 20px;
    text-align: center;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff !important;
    text-decoration: none;
    background-color: #55BEBE !important;
}

.dropdown-item:hover {
    background: #E6F7F8;
    color: #55BEBE;
}

.dropdown-divider {
    margin: 8px 0;
    border-top: 1px solid #edf2f7;
}

/* Profile Dropdown Specific Styles */
.profile-dropdown .dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid #edf2f7;
    margin-bottom: 8px;
}

.profile-dropdown .user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-dropdown .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-dropdown .user-details {
    flex: 1;
}

.profile-dropdown .user-name {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.profile-dropdown .user-email {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.profile-dropdown .dropdown-item.logout {
    color: #dc3545;
}

.profile-dropdown .dropdown-item.logout i {
    color: #dc3545;
}

.profile-dropdown .dropdown-item.logout:hover {
    background: #ffebee;
}

/* Cart Dropdown Specific Styles */
.cart-dropdown .dropdown-menu {
    min-width: 320px;
    padding: 0;
}

.cart-dropdown .dropdown-header {
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #edf2f7;
}

.cart-dropdown .cart-items {
    max-height: 320px;
    overflow-y: auto;
    padding: 8px 0;
}

.cart-dropdown .cart-footer {
    padding: 12px 16px;
    background: #f8f9fa;
    border-top: 1px solid #edf2f7;
}

.cart-dropdown .btn-checkout {
    width: 100%;
    background: #55BEBE;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cart-dropdown .btn-checkout:hover {
    background: #3a9797;
    transform: translateY(-1px);
}

/* Notification Dropdown Specific Styles */
.notification-dropdown .dropdown-menu {
    min-width: 300px;
}

.notification-dropdown .dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid #edf2f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-dropdown .notification-title {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.notification-dropdown .mark-all-read {
    font-size: 12px;
    color: #55BEBE;
    cursor: pointer;
}

.notification-dropdown .notification-item {
    padding: 12px 16px;
    border-bottom: 1px solid #edf2f7;
    transition: all 0.3s ease;
}

.notification-dropdown .notification-item:last-child {
    border-bottom: none;
}

.notification-dropdown .notification-item:hover {
    background: #E6F7F8;
}

.notification-dropdown .notification-content {
    font-size: 13px;
    color: #333333;
    margin-bottom: 4px;
}

.notification-dropdown .notification-time {
    font-size: 12px;
    color: #666;
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
}

.btn-link {
    text-decoration: none;
}

/* Service Categories */
.service-categories {
    padding: 15px 0;
    background-color: #fff;
}

.service-categories h2 {
    margin-bottom: 20px;
}

.services-scroll {
    padding: 15px 0;
    position: relative;
    background-color: #fff;
    width: 100%;
    overflow: hidden;
}

.services-scroll .row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* Hide scrollbar for IE and Edge */
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    max-width: 1320px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.services-scroll .row::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari and Opera */
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    cursor: pointer;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    background-color: #f8f8f8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.scroll-btn i {
    font-size: 20px;
    color: #333;
}

.scroll-btn.scroll-left {
    left: 0;
}

.scroll-btn.scroll-right {
    right: 0;
}

.service-card {
    flex: 0 0 auto;
    width: 130px;
    min-height: 130px;
    padding: 10px 8px;
    background-color: #fff;
    border-radius: 15px;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    margin: 15px 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: #55BEBE;
}

.service-card.selected {
    border-color: #55BEBE;
    background-color: #f8f8f8;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(102, 51, 153, 0.15);
}

.service-card.selected::after {
    content: '\F26B';
    font-family: "Bootstrap Icons";
    position: absolute;
    top: -12px;
    right: -12px;
    width: 24px;
    height: 24px;
    background-color: #55BEBE;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    animation: scaleIn 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 55px;
    height: 55px;
    background-color: #7ddfdf4a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-card.selected .service-icon {
    transform: scale(1.1);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 28px;
    color: #55BEBE;
}

.service-card h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    word-wrap: break-word;
}

.service-card.selected h6 {
    color: #55BEBE;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* Background colors for service icons */
.bg-primary-light {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
}

.bg-success-light {
    background-color: rgba(var(--bs-success-rgb), 0.1);
}

.bg-info-light {
    background-color: rgba(var(--bs-info-rgb), 0.1);
}

.bg-warning-light {
    background-color: rgba(var(--bs-warning-rgb), 0.1);
}

.bg-danger-light {
    background-color: rgba(var(--bs-danger-rgb), 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card {
        width: 130px;
        min-height: 130px;
        padding: 12px 10px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .service-card h6 {
        font-size: 13px;
    }

    .scroll-btn {
        width: 35px;
        height: 35px;
    }

    .scroll-btn i {
        font-size: 18px;
    }
}

/* Featured Products */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-share {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-share:hover {
    background: #fff;
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-description {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-duration {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #E31837;
}

.product-duration {
    font-size: 13px;
    color: #64748b;
}

.btn-add {
    padding: 8px 20px;
    background: #E31837;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.btn-add:hover {
    background: #d31730;
    transform: translateY(-2px);
}

.btn-add.added {
    background: #2E7D32;
    pointer-events: none;
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.feature-card i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #343a40;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

footer .app-buttons .btn {
    width: 100%;
    text-align: left;
}

footer .social-links a {
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #c41830;
    border-color: #c41830;
}

.btn-outline-primary {
    color: #55BEBE;
    border-color: #55BEBE;
    background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary.active {
    color: #fff !important;
    background-color: #55BEBE !important;
    border-color: #55BEBE !important;
}

.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(85, 190, 190, 0.25);
}

/* Notifications */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-header {
    border-bottom: 1px solid var(--border-color);
}

.toast-header i {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .btn-group {
        justify-content: center;
    }

    .category-card {
        margin-bottom: 1rem;
    }

    .feature-card {
        margin-bottom: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

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

/* Carousel Styles */
.carousel-item {
    position: relative;
    height: 600px;
    /* Increased height from default */
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    left: 5%;
    right: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 50%;
    background: transparent;
    padding: 20px 0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.carousel-caption h2 {
    margin-bottom: 15px;
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption .btn {
    margin-top: 10px;
    align-self: center;
    display: inline-block;
}

/* Provider Cards */
.provider-card {
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: inherit;
}

.provider-logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.provider-info {
    flex: 1;
}

.provider-specialty {
    color: #0066cc;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.provider-specialty .availability {
    color: #22c55e;
    font-size: 13px;
    padding-left: 8px;
    position: relative;
}

.provider-specialty .availability::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: #e5e7eb;
}

.provider-name {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.provider-location {
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

.provider-location i {
    font-size: 16px;
    color: #6b7280;
}

.provider-location .duration {
    display: flex;
    align-items: center;
    padding-left: 8px;
    position: relative;
}

.provider-location .duration::before {
    content: "•";
    margin-right: 8px;
    color: #d1d5db;
}

.btn-favorite {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
    cursor: pointer;
}

.btn-favorite i {
    font-size: 18px;
    color: #9ca3af;
    transition: all 0.2s ease;
}

.btn-favorite:hover {
    border-color: #ff4d4d;
    background-color: #fff1f1;
}

.btn-favorite:hover i {
    color: #ff4d4d;
}

.btn-favorite.active {
    border-color: #ff4d4d;
    background-color: #ff4d4d;
}

.btn-favorite.active i {
    color: white;
}

/* Navigation Bar Adjustments */
.navbar .dropdown-toggle::after {
    margin-left: 0.5em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-item {
        height: 300px;
    }

    .provider-card {
        margin-bottom: 15px;
    }

    .service-categories {
        top: 50px;
        /* Adjust for smaller header on mobile */
    }

    .service-providers {
        padding-top: 20px;
    }

    .service-providers .section-header {
        margin-bottom: 20px;
    }
}

/* Service Providers Section */
.service-providers {
    padding-top: 30px;
    background-color: var(--light-gray);
}

.service-providers .section-header {
    margin-bottom: 20px;
}

.service-providers .section-header h2 {
    margin-bottom: 8px;
}

.service-providers .section-header p {
    color: #666;
    margin-bottom: 0;
}

/* Responsive grid adjustments */
@media (min-width: 992px) {
    .providers-container .col-lg-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .providers-container .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (max-width: 767.98px) {
    .provider-card {
        padding: 16px;
        gap: 15px;
    }

    .provider-logo {
        width: 100px;
        height: 100px;
    }

    .provider-name {
        font-size: 18px;
    }

    .provider-specialty {
        font-size: 13px;
    }

    .provider-location {
        font-size: 13px;
    }

    .btn-favorite {
        top: 16px;
        right: 16px;
    }
}

/* Provider Detail Page Styles */
.provider-detail-page {
    background-color: #f8f9fa;
    min-height: calc(100vh - 62px);
}

.provider-banner {
    background: #fff;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.provider-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.provider-main-info {
    display: flex;
    gap: 1.5rem;
    flex: 1;
}

.provider-image-container {
    position: relative;
    flex-shrink: 0;
}

.provider-detail-image {
    width: 140px;
    height: 140px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.online-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 14px;
    height: 14px;
    background-color: #22c55e;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.btn-favorite.floating {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-favorite.floating i {
    font-size: 1.1rem;
    color: #64748b;
    transition: all 0.3s ease;
}

.btn-favorite.floating:hover {
    transform: scale(1.1);
}

.btn-favorite.floating.active {
    background-color: var(--primary-color);
}

.btn-favorite.floating.active i {
    color: #fff;
}

.provider-info-container {
    flex: 1;
}

.provider-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge-item i {
    font-size: 1rem;
}

.badge-item.specialty {
    background-color: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
}

.badge-item.availability {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.badge-item.rating {
    background-color: rgba(234, 179, 8, 0.1);
    color: #eab308;
}

.provider-detail-name {
    font-size: 1.75rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.provider-meta {
    display: flex;
    gap: 1.5rem;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.95rem;
}

.meta-item i {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* Main Layout Container */
.provider-detail-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    background: #f8f9fa;
}

/* Main Content Grid */
.content-wrapper {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
}

/* Left Content Area */
.provider-detail-content {
    flex: 1;
    margin-left: -30px;
    background: #f8f9fa;
    position: relative;
    min-height: calc(100vh - 60px);
    overflow: hidden;
}

/* Right Side Content */
.right-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Search Bar - Moved to right column */
.search-container {
    position: relative;
    width: 100%;
    margin: 0;
}

.search-input {
    width: 100%;
    height: 44px;
    padding: 12px 16px 12px 40px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    transition: all 0.3s ease;
    background: #fff;
}

.search-input::placeholder {
    color: #94a3b8;
}

.search-input:focus {
    outline: none;
    border-color: #E31837;
    box-shadow: 0 0 0 3px rgba(227, 24, 55, 0.1);
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
}

/* Catalog Navigation */
.catalog-nav {
    position: relative;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 24px;
    margin: 0;
}

.catalog-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.catalog-items {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 4px 0;
    margin: 0;
}

/* Cart Section */
.cart-section {
    position: sticky;
    top: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: fit-content;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.cart-header h5 {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.cart-header .cart-count {
    color: #666;
    font-size: 14px;
    margin-right: 10px;
}

.cart-header .btn-clear {
    color: #00A3B1;
    border: 1px solid #00A3B1;
    background: transparent;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-header .btn-clear:hover {
    background: #E6F7F8;
}

.cart-header .header-right {
    display: flex;
    align-items: center;
}

.empty-cart {
    padding: 2rem 0;
    text-align: center;
}

.empty-cart p {
    color: #64748b;
    margin: 0;
}

.cart-footer {
    padding: 16px;
    border-top: 1px solid #e2e8f0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.total-label {
    font-weight: 500;
    color: #1a1a1a;
}

.total-amount {
    font-size: 18px;
    font-weight: 600;
    color: #E31837;
}

.btn-proceed {
    width: 100%;
    padding: 12px;
    background: #55BEBE;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-proceed:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .right-content {
        flex-direction: column;
        gap: 16px;
    }

    .search-container {
        width: 100%;
    }

    .cart-section {
        position: static;
    }
}

@media (max-width: 1200px) {
    .content-wrapper {
        padding: 24px 20px;
    }

    .catalog-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 16px;
    }

    .main-content {
        padding: 16px;
    }

    .catalog-container {
        padding: 0 16px;
    }

    .products-grid {
        gap: 16px;
    }

    .search-input {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.catalog-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: #F5F5F5;
    border-radius: 100px;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
    min-width: 120px;
}

.catalog-item:first-child {
    background: #55BEBE;
    color: white;
}

.catalog-item.active {
    background: #E8F5E9;
    color: #2E7D32;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.scroll-btn.scroll-left {
    left: 0;
}

.scroll-btn.scroll-right {
    right: 0;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .catalog-container {
        width: 70%;
    }

    .search-container {
        width: 25%;
    }
}

@media (max-width: 991px) {
    .catalog-nav {
        flex-direction: column;
        gap: 16px;
    }

    .catalog-container {
        width: 100%;
    }

    .search-container {
        width: 100%;
        margin-right: 0;
    }
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Exactly 3 columns on large screens */
    gap: 24px;
    padding: 24px;
}

/* Tablet view - 2 columns */
@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile view - 1 column */
@media (max-width: 767px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }
}

/* Cart Items */
.cart-items {
    max-height: 360px;
    overflow-y: auto;
    padding: 0 12px;
    margin-right: 2px;
}

.cart-header {
    padding: 2px 20px;
    margin-bottom: 15px;
}

.cart-header h5 {
    margin: 0;
    font-weight: 500;
}

.cart-count {
    color: #666;
    font-size: 14px;
}

.cart-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 2px;
}

.cart-item-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    flex: 1;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    border-radius: 6px;
    padding: 4px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #fff;
    border-radius: 4px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.qty-btn:hover:not(:disabled) {
    background: #e2e8f0;
    color: #1a1a1a;
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-value {
    min-width: 20px;
    text-align: center;
    font-weight: 500;
    color: #333;
}

.cart-item-duration {
    font-size: 14px;
    color: #666;
    margin-bottom: 2px;
}

.cart-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.session-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 13px;
}

.session-info i {
    color: #55BEBE;
    font-size: 14px;
}

.cart-item-price {
    color: #dc3545;
    font-weight: 600;
    font-size: 14px;
}

.remove-item {
    color: #666;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item:hover {
    color: #dc3545;
}

/* Custom Scrollbar for Cart Items */
.cart-items::-webkit-scrollbar {
    width: 4px;
}

.cart-items::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.cart-items::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Price Details Section */
.price-details {
    padding: 15px;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.total-row {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

/* Empty Cart Message */
.empty-cart {
    text-align: center;
    padding: 30px 15px;
}

/* Profile Page Layout */
.profile-page {
    display: flex;
    min-height: 100vh;
    background: #f8f9fa;
}

/* Sidebar Styles */
.sidebar {
    width: 280px;
    min-width: 280px;
    background: #fff;
    border-right: 1px solid #e2e8f0;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding-top: 60px;
    z-index: 100;
}

/* Main Content Area */
.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 24px 24px;
    background: #f8f9fa;
    position: relative;
    min-height: calc(100vh - 60px);
    overflow: hidden;
}

/* Profile Navigation */
.profile-nav {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
    padding: 0;
    background: #fff;
    position: relative;
    z-index: 2;
}

.nav-link {
    color: #64748b;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-link.active {
    color: #55BEBE !important;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #55BEBE;
}

/* Profile Settings Card */
.profile-settings {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

/* Profile Photo Section */
.profile-photo-section {
    margin-bottom: 32px;
}

.photo-upload {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.upload-placeholder {
    width: 120px;
    height: 120px;
    background: #f8f9fa;
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
}

.upload-placeholder:hover {
    border-color: #0d6efd;
    background: #f0f7ff;
}

.upload-actions {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-upload {
    background: #55BEBE;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    transition: all 0.3s ease;
}

.btn-upload:hover {
    background: #3a9797;
    transform: translateY(-1px);
}

.btn-remove {
    color: #dc3545;
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.btn-remove:hover {
    color: #bb2d3b;
}

.upload-hint {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 500;
    display: block;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
    outline: none;
}

/* Date Input Styles */
input[type="date"] {
    position: relative;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
    width: 100%;
}

/* Hide default calendar icon */
input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
}

input[type="date"]::-webkit-datetime-edit {
    color: #64748b;
}

input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

input[type="date"]::-webkit-datetime-edit-text {
    padding: 0 4px;
}

input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
    padding: 0;
}

/* Date Input Container */
.date-input-container {
    position: relative;
}

.date-input-container::after {
    content: '\F1F6';
    /* Bootstrap icon calendar code */
    font-family: "Bootstrap Icons";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
    font-size: 16px;
    z-index: 1;
}

/* Sidebar User Profile */
.user-profile {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.profile-image {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.status-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid #fff;
    border-radius: 50%;
}

.user-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.patient-id {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
}

.user-details {
    font-size: 13px;
    color: #64748b;
}

/* Sidebar Navigation */
.sidebar-nav {
    padding: 16px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-item i {
    font-size: 18px;
    margin-right: 12px;
    width: 20px;
}

.nav-item:hover {
    background: #f8f9fa;
    color: #1a1a1a;
}

.nav-item.active {
    color: #55BEBE;
    background: #E6F7F8;
    border-left-color: #55BEBE;
}

.message-badge {
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: auto;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.show {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        padding: 16px;
    }
}

@media (max-width: 767px) {
    .profile-settings {
        padding: 12px;
    }

    .photo-upload {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .upload-actions {
        width: 100%;
        align-items: center;
    }

    .form-actions {
        flex-direction: column;
        gap: 12px;
    }

    .form-actions .btn {
        width: 100%;
    }

    .nav-link {
        padding: 12px 16px;
    }

    .section-header {
        padding: 12px 16px;
        margin-bottom: 12px;
    }
}

/* Favorites Section Styles */
.favourites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    padding: 0;
    margin-top: 0;
}

.doctor-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.favorite-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    transform: scale(1.1);
}

.favorite-btn i {
    color: #dc3545;
    font-size: 18px;
}

.doctor-header {
    text-align: center;
    margin-bottom: 20px;
}

.doctor-header img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.doctor-header h3 {
    font-size: 18px;
    color: #1A1C1E;
    margin-bottom: 8px;
    font-weight: 600;
}

.doctor-header .bi-patch-check-fill {
    color: #0D6EFD;
    font-size: 16px;
    margin-left: 4px;
}

.doctor-specialty {
    color: #5B6B79;
    font-size: 14px;
    margin-bottom: 10px;
}

.doctor-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.doctor-rating i {
    color: #FFC107;
    font-size: 14px;
}

.doctor-rating span {
    color: #5B6B79;
    font-size: 14px;
    margin-left: 4px;
}

.doctor-meta {
    margin: 20px 0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #5B6B79;
    font-size: 14px;
}

.meta-item i {
    color: #0D6EFD;
    font-size: 16px;
}

.meta-item.last-book {
    background: #F8F9FA;
    padding: 8px 12px;
    border-radius: 6px;
    justify-content: center;
}

.doctor-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .profile-page {
        grid-template-columns: 240px 1fr;
    }

    .sidebar {
        width: 240px;
    }

    .main-content {
        margin-left: 240px;
    }
}

@media (max-width: 991px) {
    .profile-page {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .main-content {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .profile-settings {
        padding: 20px;
    }

    .photo-upload {
        flex-direction: column;
        align-items: center;
    }

    .upload-actions {
        width: 100%;
        text-align: center;
    }

    .favourites-grid {
        grid-template-columns: 1fr;
    }
}

/* Content Sections */
.content-section {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-top: 0;
}

.content-section.active {
    display: block;
    opacity: 1;
}

/* Section Headers */
.section-header {
    background: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.section-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header h2 {
    margin: 0;
    font-size: 24px;
    color: #1A1C1E;
    font-weight: 600;
}

/* Search Container */
.search-container {
    position: relative;
    width: 300px;
}

.search-container .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6C757D;
    z-index: 1;
}

.search-container .search-input {
    width: 100%;
    padding: 8px 12px 8px 40px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    color: #495057;
}

.search-container .search-input:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Appointments Section Styles */
.appointments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin-top: 0;
}

.appointment-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.doctor-info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.doctor-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.doctor-info .info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.doctor-info .specialty {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.appointment-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #64748b;
}

.appointment-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.appointment-meta .status {
    padding: 4px 8px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
}

.status.upcoming {
    background: #e8f5e9;
    color: #2e7d32;
}

.status.cancelled {
    background: #ffebee;
    color: #c62828;
}

.status.completed {
    background: #e3f2fd;
    color: #1565c0;
}

.appointment-actions {
    display: flex;
    gap: 12px;
}

/* Wallet Section Styles */
.wallet-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
    margin-top: 0;
}

.wallet-balance {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.balance-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.balance-card h3 {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.balance-card h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.balance-card p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.bank-details {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.bank-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.bank-details p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
}

.recent-transactions {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.recent-transactions h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

/* Table Styles */
.table {
    width: 100%;
    margin-bottom: 0;
}

.table th {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.table td {
    font-size: 14px;
    color: #1a1a1a;
    padding: 12px;
    vertical-align: middle;
}

.table .badge {
    font-weight: 500;
    padding: 4px 8px;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 12px;
}

.filter-buttons .btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .wallet-balance {
        grid-template-columns: 1fr;
    }

    .appointment-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .appointment-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    .appointment-meta {
        flex-direction: column;
        gap: 8px;
    }

    .filter-buttons {
        flex-wrap: wrap;
    }

    .table-responsive {
        margin: 0 -16px;
        padding: 0 16px;
        width: calc(100% + 32px);
    }
}

/* Pagination Styles */
.pagination-container {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    color: #6c757d;
    background-color: transparent;
    border: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.pagination .page-item.active .page-link {
    background-color: #55BEBE !important;
    border-color: #55BEBE !important;
    color: white !important;
}

.pagination .page-link:hover:not(.active) {
    background-color: rgba(0, 123, 255, 0.1);
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    width: auto;
    padding: 0 12px;
    border-radius: 20px;
    font-weight: 500;
    color: #6c757d;
}

.pagination .page-item.disabled .page-link {
    color: #c0c7d0;
    pointer-events: none;
}

/* Session Booking Modal Styles */
.modal-dialog.modal-md {
    max-width: 460px;
}

.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.modal-header {
    background: #55BEBE;
    padding: 1rem 1.5rem;
    border: none;
}

.modal-header .modal-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-header .btn-close {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0.6rem;
    border-radius: 8px;
    margin: -0.5rem -0.5rem -0.5rem auto;
}

.session-booking-content {
    padding: 1rem;
}

.calendar-section {
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.calendar-header h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

#currentMonth {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.btn-icon {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-icon:hover {
    background: #f1f5f9;
    color: #2563eb;
    border-color: #cbd5e1;
}

.calendar-grid {
    background: white;
    border-radius: 8px;
    padding: 0.75rem;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 0.5rem;
}

.calendar-weekdays div {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-align: center;
    padding: 0.5rem 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    color: #1e293b;
    background-color: #fff;
}

.calendar-day:not(.disabled):not(.empty):hover {
    background-color: #eff6ff;
    border-color: #93c5fd;
    color: #55BEBE;
}

.calendar-day.selected {
    background-color: #55BEBE;
    color: white;
    font-weight: 500;
}

.calendar-day.disabled {
    color: #cbd5e1;
    background-color: #f8fafc;
    cursor: not-allowed;
}

.calendar-day.empty {
    background-color: transparent;
    border-color: transparent;
    cursor: default;
}

/* Time slots section */
.time-slots-section {
    margin-top: 1.5rem;
}

.time-slots-section h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
    max-height: 160px;
    overflow-y: auto;
    padding: 0.25rem;
}

.time-slot {
    text-align: center;
    padding: 0.5rem;
    font-size: 0.8125rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot:hover {
    background-color: #eff6ff;
    border-color: #93c5fd;
    color: #3a9797;
}

.time-slot.selected {
    background-color: #55BEBE;
    color: white;
    border-color: #55BEBE;
}

.time-slot.disabled {
    background-color: #f8fafc;
    color: #cbd5e1;
    cursor: not-allowed;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    gap: 0.75rem;
}

.modal-footer .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-light {
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #64748b;
}

.btn-light:hover {
    background-color: #e2e8f0;
    border-color: #cbd5e1;
    color: #3a9797;
}

.modal-footer .btn-primary {
    background: #2563eb;
    border: none;
    padding: 0.5rem 1.25rem;
}

.modal-footer .btn-primary:hover {
    background: #3a9797;
    transform: translateY(-1px);
}

.modal-footer .btn-primary:disabled {
    background: #93c5fd;
    cursor: not-allowed;
    transform: none;
}

/* Custom scrollbar for time slots */
.time-slots-grid::-webkit-scrollbar {
    width: 4px;
}

.time-slots-grid::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 2px;
}

.time-slots-grid::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.time-slots-grid::-webkit-scrollbar-thumb:hover {
    background: #3a9797;
}

#imageViewModal .modal-content {
    background-color: transparent;
    border: none;
    border-radius: 0;
}

#imageViewModal .modal-body {
    padding: 0;
    margin: 0;
    background-color: black;
}

#productImageCarousel {
    position: relative;
    width: 100%;
    height: 80vh;
    background-color: #fff;
    overflow: hidden;
}

#productImageCarousel .carousel-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

#productImageCarousel .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#productImageCarousel .carousel-item.active {
    display: flex;
    opacity: 1;
}

#productImageCarousel .carousel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}

#productImageCarousel .carousel-control-prev,
#productImageCarousel .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

#productImageCarousel .carousel-control-prev {
    left: 20px;
}

#productImageCarousel .carousel-control-next {
    right: 20px;
}

/* Custom color for primary buttons, pagination, and submit buttons */
.btn-primary,
.pagination .page-item.active .page-link,
.pagination .page-link:hover,
.btn-add,
.btn-submit,
.btn-add:hover,
.btn-submit:hover {
    background-color: #55BEBE !important;
    border-color: #55BEBE !important;
    color: white !important;
}

.pagination .page-item.active .page-link {
    background-color: #55BEBE !important;
    border-color: #55BEBE !important;
}

.pagination .page-link {
    color: #55BEBE;
}

.btn-add,
.btn-submit {
    background-color: #55BEBE;
    border-color: #55BEBE;
    color: white;
}

.btn-add:hover,
.btn-submit:hover {
    background-color: #47a0a0;
    border-color: #47a0a0;
}

.btn-detect-location:hover,
.btn-proceed:hover,
.btn-primary.btn-55bebe:hover,
.btn-add.btn-55bebe:hover,
.btn-submit.btn-55bebe:hover {
    background-color: #3a9797 !important;
    border-color: #3a9797 !important;
}

/* Checkout Page Styles */
.checkout-page {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding-bottom: 3rem;
}

.checkout-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.section-title {
    color: #333333;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Improved Address Card Styling */
.address-card {
    background-color: #fff;
    transition: all 0.2s ease;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.address-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.address-card .form-check {
    margin: 0;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.address-card .form-check-input {
    position: absolute;
    top: 15px;
    left: 15px;
    margin: 0;
    z-index: 2;
}

.address-card .form-check-label {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    cursor: pointer;
}

.address-content {
    padding: 15px 15px 15px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.address-name {
    display: block;
    color: #55BEBE;
    font-size: 16px;
    margin-bottom: 5px;
}

.address-details {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.address-contact {
    margin-top: 4px;
    color: #666;
}

.address-landmark {
    color: #666;
}

.address-card.selected {
    border: 1px solid #55BEBE;
    background-color: #fff;
}

.address-card.selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #55BEBE;
}

/* Route Info Section Styling */
.route-info-section {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.route-info-header {
    background-color: #fcfcfc;
}

.route-info-header h4 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.route-info {
    color: #444;
    font-size: 15px;
}

.route-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-icon i {
    font-size: 16px;
}

.fw-medium {
    font-weight: 500;
}

/* Delivery Options */
.delivery-options {
    padding: 0.5rem 0;
}

/* Checkout Summary Styles */
.checkout-summary {
    background-color: #fff;
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.checkout-summary .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 0.75rem;
}

.checkout-summary .cart-count {
    color: #6c757d;
    font-size: 0.875rem;
}

.checkout-summary .cart-item {
    background-color: #ffffff;
    padding: 8px;
    margin-bottom: 0;
    border: none;
    border-bottom: 1px solid #ddd;
}

.checkout-summary .cart-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.checkout-summary .duration-info {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.checkout-summary .bi-calendar,
.checkout-summary .bi-clock {
    color: #55BEBE;
    font-size: 14px;
}

.checkout-summary .qty-control-btn {
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border: none;
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

.checkout-summary .qty-control-btn:hover:not(:disabled) {
    background-color: #e9ecef;
}

.checkout-summary .qty-value {
    width: 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.checkout-summary .cart-item-price {
    color: #dc3545;
    font-weight: 600;
    font-size: 15px;
}

.checkout-summary .remove-btn {
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    color: #666;
}

.checkout-summary .remove-btn:hover {
    color: #dc3545;
}

.checkout-summary hr.my-2 {
    margin: 0;
    opacity: 0.1;
    border-color: #dee2e6;
}

.checkout-summary .cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.checkout-summary .cart-footer {
    padding: 16px;
    border-top: 1px solid #e2e8f0;
}

.checkout-summary .cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.checkout-summary .total-label {
    font-weight: 500;
    color: #1a1a1a;
}

.checkout-summary .total-amount {
    font-size: 18px;
    font-weight: 600;
    color: #E31837;
}

.checkout-summary .btn-proceed {
    width: 100%;
    padding: 12px;
    background: #55BEBE;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-summary .btn-proceed:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .checkout-summary .cart-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-summary .cart-count {
        margin-bottom: 1rem;
    }

    .checkout-summary .cart-item {
        padding: 15px 0;
    }

    .checkout-summary .cart-item-title {
        margin-bottom: 8px;
    }

    .checkout-summary .duration-info {
        margin-bottom: 8px;
    }

    .checkout-summary .bi-calendar,
    .checkout-summary .bi-clock {
        margin-bottom: 8px;
    }

    .checkout-summary .qty-control-btn {
        margin-bottom: 8px;
    }

    .checkout-summary .cart-item-price {
        margin-bottom: 8px;
    }

    .checkout-summary .remove-btn {
        margin-top: 8px;
    }

    .checkout-summary .cart-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-summary .cart-total {
        margin-bottom: 1rem;
    }

    .checkout-summary .total-label {
        margin-bottom: 0.5rem;
    }

    .checkout-summary .total-amount {
        margin-bottom: 0.5rem;
    }

    .checkout-summary .btn-proceed {
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    .checkout-summary .cart-item {
        padding: 15px 0;
    }

    .checkout-summary .cart-item-title {
        margin-bottom: 8px;
    }

    .checkout-summary .duration-info {
        margin-bottom: 8px;
    }

    .checkout-summary .bi-calendar,
    .checkout-summary .bi-clock {
        margin-bottom: 8px;
    }

    .checkout-summary .qty-control-btn {
        margin-bottom: 8px;
    }

    .checkout-summary .cart-item-price {
        margin-bottom: 8px;
    }

    .checkout-summary .remove-btn {
        margin-top: 8px;
    }

    .checkout-summary .cart-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-summary .cart-total {
        margin-bottom: 1rem;
    }

    .checkout-summary .total-label {
        margin-bottom: 0.5rem;
    }

    .checkout-summary .total-amount {
        margin-bottom: 0.5rem;
    }

    .checkout-summary .btn-proceed {
        margin-top: 1rem;
    }
}

/* Address List Row Layout */
#addressList .row {
    margin-right: -8px;
    margin-left: -8px;
}

#addressList .col-md-6 {
    padding-right: 8px;
    padding-left: 8px;
}

/* Mobile view for address cards */
@media (max-width: 767px) {
    #addressList .col-md-6 {
        padding-right: 0;
        padding-left: 0;
    }
}

/* Simple Cart Item Styling for Checkout */
.simple-cart-item {
    padding: 0.5rem 0;
}

.simple-cart-item .duration-info {
    font-size: 0.9rem;
    color: #666;
    width: 30%;
}

.date-time-info {
    color: #666;
    font-size: 0.85rem;
}

.date-time-info i {
    font-size: 0.9rem;
    color: #888;
}

.price-container {
    font-weight: 500;
}

.price-container .text-danger {
    font-weight: 600;
}

.remove-btn {
    height: 24px;
    width: 24px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    border-radius: 2px;
}

.cart-items-simple hr {
    margin: 0.5rem 0;
    color: #eee;
}

.order-header {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
}

.navbar .dropdown .btn-outline-primary {
    border-color: #55BEBE;
    color: #55BEBE;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 4px;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
}

.navbar .dropdown .btn-outline-primary:hover,
.navbar .dropdown .btn-outline-primary:focus {
    background-color: #55BEBE;
    color: white;
}

.navbar .dropdown .dropdown-item.active {
    background-color: #55BEBE;
    color: white;
}

.navbar .dropdown .dropdown-item:hover {
    background-color: #E6F7F8;
    color: #55BEBE;
}

.navbar .dropdown .dropdown-item.active:hover {
    background-color: #55BEBE;
    color: white;
}

.navbar .dropdown {
    min-width: 180px;
}

.navbar .dropdown .dropdown-menu {
    min-width: 180px;
    width: 100%;
}