/* ===== RESET AND BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    text-decoration: none;
    background: none;
    list-style: none;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER STYLES ===== */
.header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
}

.background4 {
    background: #f8f9fa;
    padding: 15px 0;
}

.container13 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 32px;
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
}

.logo i {
    font-size: 28px;
}

/* ===== NAVIGATION STYLES ===== */
.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.link11, .link12, .link13, .link14, .link15 {
    color: #333;
    font-weight: 600;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
}

.link11:hover, .link12:hover, .link13:hover, .link14:hover, .link15:hover {
    color: #e74c3c;
}

.link11:hover::after, .link12:hover::after, .link13:hover::after, .link14:hover::after, .link15:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e74c3c;
}

.link11.active::after, .link12.active::after, .link13.active::after, .link14.active::after, .link15.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e74c3c;
}

.link11.active, .link12.active, .link13.active, .link14.active, .link15.active {
    color: #e74c3c;
}

.list4 {
    display: flex;
    gap: 20px;
    align-items: center;
}

.link16 {
    position: relative;
    color: #333;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.link16:hover {
    background: #f8f9fa;
    color: #e74c3c;
}

.background-border {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.button3 {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #e74c3c;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.button3:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* ===== MOBILE NAVIGATION STYLES ===== */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 1001;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

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

.mobile-logo {
    font-size: 20px;
    font-weight: bold;
    color: #e74c3c;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 15px;
    color: #333;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: #f8f9fa;
    color: #e74c3c;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.mobile-nav-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-action:hover {
    background: #f8f9fa;
}

.mobile-login-btn {
    background: #e74c3c;
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    text-align: center;
}

.modal-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.modal-body {
    padding: 30px 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #e74c3c;
    outline: none;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
}

.btn-secondary {
    background: #f8f9fa;
    color: #333;
}

.btn-secondary:hover {
    background: #e9ecef;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.error-message {
    background: #fee;
    color: #c0392b;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
}

.success-message {
    color: #388e3c;
    font-size: 14px;
    margin-top: 5px;
}

/* Additional Modal Types */
.modal-login .modal-header {
    background-color: #f8f9fa;
}

.modal-register .modal-header {
    background-color: #e8f5e8;
}

/* ===== FORM STYLES ===== */
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #e74c3c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

/* ===== BUTTON STYLES ===== */
.btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* ===== LOADING ANIMATIONS ===== */

/* Global Loading Spinner */
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #e74c3c;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== IMAGE LOADING PLACEHOLDERS ===== */
.image-loading {
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border-radius: 8px;
}

.image-loading .spinner {
    width: 30px;
    height: 30px;
    border-width: 3px;
}

.image-loading::before {
    content: 'Loading image...';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #666;
    font-size: 12px;
    font-weight: 500;
}

/* ===== SKELETON LOADING ===== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-text:last-child {
    width: 60%;
}

.skeleton-title {
    height: 24px;
    margin-bottom: 12px;
}

.skeleton-image {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
}

.skeleton-button {
    height: 44px;
    width: 120px;
}

/* ===== LAZY LOADING IMAGES ===== */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

.lazy-image.error {
    opacity: 1;
    filter: grayscale(100%);
}

/* Button Loading State */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Inline Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #e74c3c;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

/* Full Page Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

.loading-overlay .spinner {
    width: 60px;
    height: 60px;
    border-width: 6px;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-text:last-child {
    width: 60%;
}

.skeleton-image {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
}

.skeleton-button {
    height: 44px;
    width: 120px;
}

/* Image Loading Placeholder */
.image-loading {
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.image-loading .spinner {
    width: 30px;
    height: 30px;
    border-width: 3px;
}

/* Pulse Animation for Loading States */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.loading-pulse {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Form Loading State */
.form-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid #e74c3c;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

/* Card Loading State */
.card-loading {
    position: relative;
    overflow: hidden;
}

.card-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ===== PAGE HEADER STYLES ===== */
.page-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 40px;
}

.page-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.page-title-section {
    flex: 1;
}

.page-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
}

.cart-summary {
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px;
    min-width: 320px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #000000;
}

.cart-summary-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-summary-title i {
    color: #ffcc00;
}

.cart-items-list {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 30px 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.cart-item-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
    flex-shrink: 0;
}

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

.cart-item-name {
    flex: 1;
    font-size: 14px;
}

.cart-item-quantity {
    margin: 0 10px;
    font-size: 14px;
    color: #ffcc00;
}

.cart-item-price {
    font-weight: 600;
    min-width: 70px;

    margin-left: 10px;
    padding-right: 30px;
}

/* Remove item button styling */
.remove-item-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #e74c3c;
    color: white;
    border: 2px solid #e74c3c;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.8;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.remove-item-btn:hover {
    background: #c0392b;
    border-color: #c0392b;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.quick-checkout-btn {
    width: 100%;
    background: white;
    color: #e74c3c;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quick-checkout-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.empty-cart-message {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.empty-cart-message i {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== STORE LAYOUT STYLES ===== */
.store-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.background {
    margin-top: 100px;
}

/* ===== SIDEBAR STYLES ===== */
.sidebar {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2c3e50;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
}

/* ===== DROPDOWN STYLES ===== */
.dropdown {
    position: relative;
    margin-bottom: 20px;
}

.dropdown-toggle {
    width: 100%;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    border-color: #e74c3c;
}

.dropdown-toggle.active {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.3s ease;
}

.dropdown-menu.active {
    max-height: 300px;
    overflow-y: auto;
    pointer-events: auto;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

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

.dropdown-item:hover {
    background: #f8f9fa;
}

.dropdown-item.active {
    background: #e74c3c;
    color: white;
}

.category-icon {
    width: 20px;
    text-align: center;
}

/* ===== SEARCH AND FILTER STYLES ===== */
.search-filter-container {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #e74c3c;
    outline: none;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.filter-dropdown {
    min-width: 200px;
    position: relative;
}

.filter-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    appearance: none;
    background: white url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 15px center;
    background-size: 16px;
    cursor: pointer;
}

.filter-select:focus {
    border-color: #e74c3c;
    outline: none;
}

/* ===== PRODUCTS GRID STYLES ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

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

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
    color: #2c3e50;
}

.product-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.product-quantity {
    color: #27ae60;
    font-weight: 600;
}

.product-price {
    color: #e74c3c;
    font-weight: bold;
    font-size: 20px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.add-to-cart-btn {
    flex: 1;
    background: #e74c3c;
    color: white;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.add-to-cart-btn:hover {
    background: #c0392b;
}

.wishlist-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 6px;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wishlist-btn:hover {
    background: #e74c3c;
    color: white;
}

/* ===== CART SIDEBAR STYLES ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

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

.cart-title {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
}

.cart-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: bold;
    margin-bottom: 5px;
    color: #2c3e50;
}

.cart-item-price {
    color: #e74c3c;
    font-weight: 600;

}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #e74c3c;
    color: white;
}

.quantity-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.remove-item {
    color: #e74c3c;
    cursor: pointer;
    font-size: 14px;
    margin-top: 5px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c3e50;
}

.checkout-btn {
    width: 100%;
    background: #e74c3c;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.checkout-btn:hover {
    background: #c0392b;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.empty-cart i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ddd;
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
    position: relative;
    margin-top: 60px;
}

.container14 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.footer-shape-png {
    width: 100%;
    opacity: 0.1;
}

.horizontal-border3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    width: 100%;
}

.aside6, .aside7, .aside8, .aside9 {
    text-align: center;
    padding: 30px 20px;
}

.border4 {
    width: 70px;
    height: 70px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.symbol18, .symbol19, .symbol20, .symbol21 {
    color: white;
    font-size: 28px;
}

.overlay-horizontal-border {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

/* ===== CHECKOUT PAGE STYLES ===== */
.checkout-container {
    margin-top: 100px;
    padding: 30px 0;
}

.checkout-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    position: relative;
}

.checkout-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #e74c3c;
    border-radius: 2px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.checkout-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.section-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #2c3e50;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f1f1;
}

/* ===== ORDER SUMMARY STYLES ===== */
.order-items {
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f1f1f1;
}

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

.item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.item-details h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.item-details p {
    color: #7f8c8d;
    font-size: 14px;
}

.item-price {
    font-weight: bold;
    color: #e74c3c;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.quantity-display {
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

/* ===== ORDER TOTALS STYLES ===== */
.order-totals {
    border-top: 2px solid #f1f1f1;
    padding-top: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 16px;
}

.total-row.final {
    font-size: 20px;
    font-weight: bold;
    color: #e74c3c;
    border-top: 1px solid #f1f1f1;
    padding-top: 15px;
    margin-top: 10px;
}

/* ===== PAYMENT METHODS STYLES ===== */
.payment-methods {
    margin-bottom: 25px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #e74c3c;
}

.payment-option.selected {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.payment-icon {
    width: 40px;
    height: 40px;
    background: #f1f1f1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    font-size: 20px;
}

.payment-details {
    flex-grow: 1;
}

.payment-details h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.payment-details p {
    color: #7f8c8d;
    font-size: 14px;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.payment-option.selected .radio-custom {
    border-color: #e74c3c;
    background: #e74c3c;
}

.radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-option.selected .radio-custom::after {
    opacity: 1;
}

/* ===== CHECKOUT ACTIONS STYLES ===== */
.checkout-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* ===== SUCCESS MESSAGE STYLES ===== */
.success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-top: 30px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #2ecc71;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.success-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2c3e50;
}

.success-text {
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 18px;
}

/* ===== AUTHENTICATION MODAL STYLES ===== */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.auth-modal.show {
    display: flex;
}

.auth-modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    position: relative;
}

.auth-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.auth-modal-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.auth-form .form-group {
    margin-bottom: 15px;
}

.auth-form .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.auth-form .btn {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
}

.auth-switch {
    text-align: center;
    margin-top: 15px;
}

.auth-switch a {
    color: #e74c3c;
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}
/* ===== NO-PRODUCTS MESSAGE STYLES ===== */
.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
}

.no-products i {
    font-size: 64px;
    margin-bottom: 20px;
    color: #bdc3c7;
}

.no-products p {
    font-size: 18px;
    margin-bottom: 20px;
}

.no-products.error-message {
    color: #e74c3c;
}

.no-products.error-message i {
    color: #e74c3c;
}

.retry-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

/* ===== EMPTY CART MESSAGE STYLES ===== */
.empty-cart-message {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
}

.empty-cart-icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: #bdc3c7;
}

.empty-cart-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

/* ===== COTTAGE BOOKING STYLES ===== */
.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.booking-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active {
    background: #e74c3c;
    color: white;
}

.step-number {
    width: 30px;
    height: 30px;
    background: white;
    color: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step.active .step-number {
    background: white;
    color: #e74c3c;
}

.booking-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 40px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #e74c3c;
}

/* Calendar Styles */
.calendar-container {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

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

.calendar-month {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
}

.calendar-nav {
    display: flex;
    gap: 10px;
}

.calendar-nav-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav-btn:hover {
    background: #e74c3c;
    color: white;
}

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

.calendar-weekday {
    text-align: center;
    font-weight: bold;
    color: #7f8c8d;
    padding: 10px 0;
}

.calendar-day {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-day:hover {
    background: #e74c3c;
    color: white;
}

.calendar-day.selected {
    background: #e74c3c;
    color: white;
}

.calendar-day.other-month {
    color: #bdc3c7;
}

.calendar-day.today {
    background: #3498db;
    color: white;
}

.calendar-day.booked {
    background: #e74c3c;
    color: white;
    cursor: not-allowed;
    opacity: 0.7;
}

.calendar-day.booked::after {
    content: 'Booked';
    position: absolute;
    bottom: 2px;
    font-size: 8px;
    font-weight: bold;
}

/* Time Selection */
.time-selection-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.time-dropdown {
    position: relative;
}

.time-dropdown-toggle {
    width: 100%;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.time-dropdown-toggle:hover {
    border-color: #e74c3c;
}

.time-dropdown-toggle.active {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.time-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 100;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.time-dropdown-menu.active {
    max-height: 200px;
    overflow-y: auto;
}

.time-option {
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.time-option:last-child {
    border-bottom: none;
}

.time-option:hover {
    background: #f8f9fa;
}

.time-option.selected {
    background: #e74c3c;
    color: white;
}

.time-option.booked {
    background: #ff6b6b;
    color: white;
    cursor: not-allowed;
    opacity: 0.7;
}

.time-option.booked::after {
    content: ' (Booked)';
    font-size: 12px;
    font-weight: bold;
}

/* Package Selection */
.package-dropdown {
    position: relative;
    margin-bottom: 20px;
}

.package-dropdown-toggle {
    width: 100%;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.package-dropdown-toggle:hover {
    border-color: #e74c3c;
}

.package-dropdown-toggle.active {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.package-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 100;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.package-dropdown-menu.active {
    max-height: 300px;
    overflow-y: auto;
}

.package-option {
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.package-option:last-child {
    border-bottom: none;
}

.package-option:hover {
    background: #f8f9fa;
}

.package-option.selected {
    background: #e74c3c;
    color: white;
}

.package-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #e74c3c;
}

.package-option.selected .package-icon {
    background: white;
    color: #e74c3c;
}

.package-info {
    flex: 1;
}

.package-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.package-price {
    color: #e74c3c;
    font-weight: 600;
}

.package-option.selected .package-price {
    color: white;
}

/* Booking Summary */
.booking-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.summary-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c3e50;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

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

.summary-label {
    color: #7f8c8d;
}

.summary-value {
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
    color: #2c3e50;
}

.book-now-btn {
    width: 100%;
    background: #e74c3c;
    color: white;
    padding: 18px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.book-now-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.book-now-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .nav-list {
        display: none;
    }

    .list4 {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-nav-overlay.active {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .store-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .search-filter-container {
        flex-direction: column;
    }

    .search-box, .filter-dropdown {
        min-width: 100%;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .page-header-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cart-summary {
        min-width: 100%;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .checkout-actions {
        flex-direction: column;
    }

    .time-selection-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container13 {
        padding: 0 15px;
    }

    .logo {
        font-size: 20px;
    }

    .logo img {
        height: 28px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .horizontal-border3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-title {
        font-size: 36px;
    }

    .checkout-title {
        font-size: 28px;
    }

    .checkout-section {
        padding: 20px;
    }

    .section-title {
        font-size: 20px;
    }

    .item-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .item-image {
        width: 50px;
        height: 50px;
    }

    .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .item-total {
        align-self: flex-end;
    }

    .calendar-grid {
        gap: 5px;
    }

    .calendar-day {
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container13 {
        padding: 0 10px;
    }

    .logo {
        font-size: 18px;
    }

    .mobile-nav {
        width: 250px;
    }

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

    .horizontal-border3 {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 32px;
    }

    .checkout-container {
        margin-top: 80px;
        padding: 15px 0;
    }

    .checkout-title {
        font-size: 24px;
    }

    .checkout-section {
        padding: 15px;
    }

    .payment-option {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .booking-steps {
        flex-direction: column;
        align-items: center;
    }

    .calendar-day {
        height: 35px;
        font-size: 12px;
    }
}
/* ===== COTTAGE BOOKING STYLES ===== */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    text-decoration: none;
    background: none;
    list-style: none;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
}

.background4 {
    background: #f8f9fa;
    padding: 15px 0;
}

.container13 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 32px;
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
}

.logo i {
    font-size: 28px;
}

/* Navigation Styles */
.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.link11, .link12, .link13, .link14, .link15 {
    color: #333;
    font-weight: 600;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
}

.link11:hover, .link12:hover, .link13:hover, .link14:hover, .link15:hover {
    color: #e74c3c;
}

.link11:hover::after, .link12:hover::after, .link13:hover::after, .link14:hover::after, .link15:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e74c3c;
}

.list4 {
    display: flex;
    gap: 20px;
    align-items: center;
}

.link16 {
    position: relative;
    color: #333;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.link16:hover {
    background: #f8f9fa;
    color: #e74c3c;
}

.background-border {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.button3 {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #e74c3c;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.button3:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Mobile Navigation Styles */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 1001;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

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

.mobile-logo {
    font-size: 20px;
    font-weight: bold;
    color: #e74c3c;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 15px;
    color: #333;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: #f8f9fa;
    color: #e74c3c;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.mobile-nav-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-action:hover {
    background: #f8f9fa;
}

.mobile-login-btn {
    background: #e74c3c;
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
}

/* Main Content */
.background {
    margin-top: 100px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: rgb(0, 0, 0);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Booking Section */
.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.booking-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active {
    background: #e74c3c;
    color: white;
}

.step-number {
    width: 30px;
    height: 30px;
    background: white;
    color: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step.active .step-number {
    background: white;
    color: #e74c3c;
}

/* Booking Form */
.booking-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 40px;
}

.form-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #e74c3c;
}

/* Calendar Styles */
.calendar-container {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

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

.calendar-month {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
}

.calendar-nav {
    display: flex;
    gap: 10px;
}

.calendar-nav-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav-btn:hover {
    background: #e74c3c;
    color: white;
}

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

.calendar-weekday {
    text-align: center;
    font-weight: bold;
    color: #7f8c8d;
    padding: 10px 0;
}

.calendar-day {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-day:hover {
    background: #e74c3c;
    color: white;
}

.calendar-day.selected {
    background: #e74c3c;
    color: white;
}

.calendar-day.other-month {
    color: #bdc3c7;
}

.calendar-day.today {
    background: #3498db;
    color: white;
}

.calendar-day.booked {
    background: #e74c3c;
    color: white;
    cursor: not-allowed;
    opacity: 0.7;
}

.calendar-day.booked::after {
    content: 'Booked';
    position: absolute;
    bottom: 2px;
    font-size: 8px;
    font-weight: bold;
}

/* Time Selection */
.time-selection-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.time-dropdown {
    position: relative;
}

.time-dropdown-toggle {
    width: 100%;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.time-dropdown-toggle:hover {
    border-color: #e74c3c;
}

.time-dropdown-toggle.active {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.time-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 100;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.time-dropdown-menu.active {
    max-height: 200px;
    overflow-y: auto;
}

.time-option {
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.time-option:last-child {
    border-bottom: none;
}

.time-option:hover {
    background: #f8f9fa;
}

.time-option.selected {
    background: #e74c3c;
    color: white;
}

.time-option.booked {
    background: #ff6b6b;
    color: white;
    cursor: not-allowed;
    opacity: 0.7;
}

.time-option.booked::after {
    content: ' (Booked)';
    font-size: 12px;
    font-weight: bold;
}

/* Package Selection */
.package-dropdown {
    position: relative;
    margin-bottom: 20px;
}

.package-dropdown-toggle {
    width: 100%;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.package-dropdown-toggle:hover {
    border-color: #e74c3c;
}

.package-dropdown-toggle.active {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.package-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 100;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.package-dropdown-menu.active {
    max-height: 300px;
    overflow-y: auto;
}

.package-option {
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.package-option:last-child {
    border-bottom: none;
}

.package-option:hover {
    background: #f8f9fa;
}

.package-option.selected {
    background: #e74c3c;
    color: white;
}

.package-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #e74c3c;
}

.package-option.selected .package-icon {
    background: white;
    color: #e74c3c;
}

.package-info {
    flex: 1;
}

.package-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.package-price {
    color: #e74c3c;
    font-weight: 600;
}

.package-option.selected .package-price {
    color: white;
}

/* Booking Summary */
.booking-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.summary-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c3e50;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

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

.summary-label {
    color: #7f8c8d;
}

.summary-value {
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
    color: #2c3e50;
}

.book-now-btn {
    width: 100%;
    background: #e74c3c;
    color: white;
    padding: 18px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.book-now-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
    position: relative;
    margin-top: 60px;
}

.container14 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.footer-shape-png {
    width: 100%;
    opacity: 0.1;
}

.horizontal-border3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    width: 100%;
}

.aside6, .aside7, .aside8, .aside9 {
    text-align: center;
    padding: 30px 20px;
}

.border4 {
    width: 70px;
    height: 70px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.symbol18, .symbol19, .symbol20, .symbol21 {
    color: white;
    font-size: 28px;
}

.overlay-horizontal-border {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .nav-list {
        display: none;
    }
    
    .list4 {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .mobile-nav-overlay.active {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }

    .time-selection-container {
        grid-template-columns: 1fr;
    }

    .horizontal-border3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container13 {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo img {
        height: 28px;
    }

    .page-title {
        font-size: 36px;
    }

    .calendar-grid {
        gap: 5px;
    }

    .calendar-day {
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container13 {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .mobile-nav {
        width: 250px;
    }

    .page-title {
        font-size: 32px;
    }

    .horizontal-border3 {
        grid-template-columns: 1fr;
    }

    .booking-steps {
        flex-direction: column;
        align-items: center;
    }

    .calendar-day {
        height: 35px;
        font-size: 12px;
    }
}

/* ===== COTTAGE BOOKING STYLES ===== */
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            border: none;
            text-decoration: none;
            background: none;
            list-style: none;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #fff;
            margin: 0;
            padding: 0;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            background: #fff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 0;
        }

        .background4 {
            background: #f8f9fa;
            padding: 15px 0;
        }

        .container13 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #e74c3c;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            height: 32px;
            width: auto;
            vertical-align: middle;
            margin-right: 10px;
        }

        .logo i {
            font-size: 28px;
        }

        /* Navigation Styles */
        .nav-list {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .link11, .link12, .link13, .link14, .link15 {
            color: #333;
            font-weight: 600;
            padding: 8px 0;
            transition: all 0.3s ease;
            font-size: 16px;
            position: relative;
        }

        .link11:hover, .link12:hover, .link13:hover, .link14:hover, .link15:hover {
            color: #e74c3c;
        }

        .link11:hover::after, .link12:hover::after, .link13:hover::after, .link14:hover::after, .link15:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #e74c3c;
        }

        .list4 {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .link16 {
            position: relative;
            color: #333;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .link16:hover {
            background: #f8f9fa;
            color: #e74c3c;
        }

        .background-border {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #e74c3c;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }

        .button3 {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #e74c3c;
            color: white;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .button3:hover {
            background: #c0392b;
            transform: translateY(-2px);
        }

        /* Mobile Navigation Styles */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #333;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: 280px;
            height: 100%;
            background: white;
            z-index: 1001;
            padding: 20px;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }

        .mobile-nav.active {
            transform: translateX(0);
        }

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

        .mobile-logo {
            font-size: 20px;
            font-weight: bold;
            color: #e74c3c;
        }

        .mobile-close {
            background: none;
            border: none;
            font-size: 24px;
            color: #333;
            cursor: pointer;
        }

        .mobile-nav-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }

        .mobile-nav-link {
            display: block;
            padding: 12px 15px;
            color: #333;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-nav-link:hover {
            background: #f8f9fa;
            color: #e74c3c;
        }

        .mobile-nav-actions {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }

        .mobile-nav-action {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 15px;
            color: #333;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-nav-action:hover {
            background: #f8f9fa;
        }

        .mobile-login-btn {
            background: #e74c3c;
            color: white;
            padding: 12px 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            margin-top: 10px;
        }

        /* Main Content */
        .background {
            margin-top: 100px;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            margin-bottom: 40px;
        }

        .page-title {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .page-subtitle {
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Booking Section */
        .booking-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 60px;
        }

        .booking-steps {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .step {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: #f8f9fa;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .step.active {
            background: #e74c3c;
            color: white;
        }

        .step-number {
            width: 30px;
            height: 30px;
            background: white;
            color: #e74c3c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .step.active .step-number {
            background: white;
            color: #e74c3c;
        }

        /* Booking Form */
        .booking-form {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            padding: 30px;
            margin-bottom: 40px;
        }

        .form-section {
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #2c3e50;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title i {
            color: #e74c3c;
        }

        /* Calendar Styles */
        .calendar-container {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
        }

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

        .calendar-month {
            font-size: 20px;
            font-weight: bold;
            color: #2c3e50;
        }

        .calendar-nav {
            display: flex;
            gap: 10px;
        }

        .calendar-nav-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .calendar-nav-btn:hover {
            background: #e74c3c;
            color: white;
        }

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

        .calendar-weekday {
            text-align: center;
            font-weight: bold;
            color: #7f8c8d;
            padding: 10px 0;
        }

        .calendar-day {
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .calendar-day:hover {
            background: #e74c3c;
            color: white;
        }

        .calendar-day.selected {
            background: #e74c3c;
            color: white;
        }

        .calendar-day.other-month {
            color: #bdc3c7;
        }

        .calendar-day.today {
            background: #3498db;
            color: white;
        }

        .calendar-day.booked {
            background: #e74c3c;
            color: white;
            cursor: not-allowed;
            opacity: 0.7;
        }

        .calendar-day.booked::after {
            content: 'Booked';
            position: absolute;
            bottom: 2px;
            font-size: 8px;
            font-weight: bold;
        }

        /* Time Selection */
        .time-selection-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .time-dropdown {
            position: relative;
        }

        .time-dropdown-toggle {
            width: 100%;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 15px;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .time-dropdown-toggle:hover {
            border-color: #e74c3c;
        }

        .time-dropdown-toggle.active {
            border-color: #e74c3c;
            box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
        }

        .time-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            z-index: 100;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .time-dropdown-menu.active {
            max-height: 200px;
            overflow-y: auto;
        }

        .time-option {
            padding: 12px 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 1px solid #f0f0f0;
        }

        .time-option:last-child {
            border-bottom: none;
        }

        .time-option:hover {
            background: #f8f9fa;
        }

        .time-option.selected {
            background: #e74c3c;
            color: white;
        }

        .time-option.booked {
            background: #ff6b6b;
            color: white;
            cursor: not-allowed;
            opacity: 0.7;
        }

        .time-option.booked::after {
            content: ' (Booked)';
            font-size: 12px;
            font-weight: bold;
        }

        /* Package Selection */
        .package-dropdown {
            position: relative;
            margin-bottom: 20px;
        }

        .package-dropdown-toggle {
            width: 100%;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 15px;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .package-dropdown-toggle:hover {
            border-color: #e74c3c;
        }

        .package-dropdown-toggle.active {
            border-color: #e74c3c;
            box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
        }

        .package-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            z-index: 100;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .package-dropdown-menu.active {
            max-height: 300px;
            overflow-y: auto;
        }

        .package-option {
            padding: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .package-option:last-child {
            border-bottom: none;
        }

        .package-option:hover {
            background: #f8f9fa;
        }

        .package-option.selected {
            background: #e74c3c;
            color: white;
        }

        .package-icon {
            width: 40px;
            height: 40px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #e74c3c;
        }

        .package-option.selected .package-icon {
            background: white;
            color: #e74c3c;
        }

        .package-info {
            flex: 1;
        }

        .package-name {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .package-price {
            color: #e74c3c;
            font-weight: 600;
        }

        .package-option.selected .package-price {
            color: white;
        }

        /* Booking Summary */
        .booking-summary {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            margin-top: 30px;
        }

        .summary-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #2c3e50;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e0e0e0;
        }

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

        .summary-label {
            color: #7f8c8d;
        }

        .summary-value {
            font-weight: 600;
        }

        .summary-total {
            display: flex;
            justify-content: space-between;
            font-size: 20px;
            font-weight: bold;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid #e0e0e0;
            color: #2c3e50;
        }

        .book-now-btn {
            width: 100%;
            background: #e74c3c;
            color: white;
            padding: 18px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .book-now-btn:hover {
            background: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }

        /* Footer */
        .footer {
            background: #2c3e50;
            color: white;
            padding: 60px 0 30px;
            position: relative;
            margin-top: 60px;
        }

        .container14 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
        }

        .footer-shape-png {
            width: 100%;
            opacity: 0.1;
        }

        .horizontal-border3 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 50px;
            width: 100%;
        }

        .aside6, .aside7, .aside8, .aside9 {
            text-align: center;
            padding: 30px 20px;
        }

        .border4 {
            width: 70px;
            height: 70px;
            background: #e74c3c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .symbol18, .symbol19, .symbol20, .symbol21 {
            color: white;
            font-size: 28px;
        }

        .overlay-horizontal-border {
            border-top: 1px solid #34495e;
            padding-top: 30px;
            text-align: center;
            color: #95a5a6;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .nav-list {
                display: none;
            }
            
            .list4 {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .mobile-nav-overlay.active {
                display: block;
            }
            
            .mobile-nav {
                display: block;
            }

            .time-selection-container {
                grid-template-columns: 1fr;
            }

            .horizontal-border3 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .container13 {
                padding: 0 15px;
            }
            
            .logo {
                font-size: 20px;
            }
            
            .logo img {
                height: 28px;
            }

            .page-title {
                font-size: 36px;
            }

            .calendar-grid {
                gap: 5px;
            }

            .calendar-day {
                height: 40px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .container13 {
                padding: 0 10px;
            }
            
            .logo {
                font-size: 18px;
            }
            
            .mobile-nav {
                width: 250px;
            }

            .page-title {
                font-size: 32px;
            }

            .horizontal-border3 {
                grid-template-columns: 1fr;
            }

            .booking-steps {
                flex-direction: column;
                align-items: center;
            }

            .calendar-day {
                height: 35px;
                font-size: 12px;
            }
        }

/* Account Link Styles */
.item17 {
    display: inline-block;
}

.link17 {
    color: #333;
    font-weight: 600;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
}

.link17:hover, .link17.active {
    color: #e74c3c;
}

.link17:hover::after, .link17.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e74c3c;
}

/* ===== ACCOUNT DROPDOWN STYLES ===== */
.account-dropdown {
    position: relative;
    display: inline-block;
}

.account-toggle {
    background: none;
    border: none;
    color: #333;
    font-weight: 600;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.account-toggle:hover, .account-toggle.active {
    color: #e74c3c;
}

.account-toggle:hover::after, .account-toggle.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e74c3c;
}

.account-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.account-toggle.active i {
    transform: rotate(180deg);
}

.account-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.account-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-menu-item {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

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

.account-menu-item:hover {
    background: #f8f9fa;
    color: #e74c3c;
}

/* Account Page Styles */
.account-container {
    margin-top: 100px;
    padding: 40px 0;
}

.account-header {
    text-align: center;
    margin-bottom: 40px;
}

.account-title {
    font-size: 36px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.account-subtitle {
    color: #7f8c8d;
    font-size: 18px;
}

.account-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #2c3e50;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f1f1;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #e74c3c;
    outline: none;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    border: none;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

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

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.password-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .account-content {
        padding: 20px;
        margin: 0 15px;
    }

    .account-title {
        font-size: 28px;
    }
}


/* Price Filter Styles */
.price-filter-section {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    position: relative;
    transition: all 0.3s ease;
}

.price-filter-section:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.price-filter-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2c3e50;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
}

.price-slider-container {
    padding: 15px 0;
    position: relative;
}

.price-slider {
    position: relative;
    height: 6px;
    margin: 20px 0;
    background: #e0e0e0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.price-slider:hover {
    background: #d0d0d0;
}

.slider-track {
    position: absolute;
    height: 100%;
    background: #e74c3c;
    border-radius: 3px;
    z-index: 1;
    transition: all 0.3s ease;
}

.price-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 6px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    z-index: 2;
    top: 0;
    margin: 0;
    outline: none;
}

.price-slider input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e74c3c;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: pointer;
    -webkit-appearance: none;
    transition: all 0.3s ease;
}

.price-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    border-color: #c0392b;
}

.price-slider input[type="range"]::-moz-range-thumb {
    pointer-events: all;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e74c3c;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-slider input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    border-color: #c0392b;
}

.price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.price-display:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.price-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.price-value {
    font-weight: bold;
    color: #e74c3c;
    font-size: 16px;
}


/* Enhanced Accessibility and Focus States */
.price-slider input[type="range"]:focus {
    outline: none;
}

.price-slider input[type="range"]:focus::-webkit-slider-thumb {
    box-shadow: 0 2px 6px rgba(0,0,0,0.2), 0 0 0 2px rgba(231, 76, 60, 0.3);
}

.price-slider input[type="range"]:focus::-moz-range-thumb {
    box-shadow: 0 2px 6px rgba(0,0,0,0.2), 0 0 0 2px rgba(231, 76, 60, 0.3);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .price-filter-section {
        padding: 20px;
        margin-bottom: 25px;
    }

    .price-filter-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .price-slider {
        height: 6px;
        margin: 18px 0;
    }

    .price-slider input[type="range"]::-webkit-slider-thumb,
    .price-slider input[type="range"]::-moz-range-thumb {
        width: 18px;
        height: 18px;
    }

    .price-display {
        padding: 12px;
        margin: 16px 0;
    }

    .price-label {
        font-size: 13px;
    }

    .price-value {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .price-filter-section {
        padding: 15px;
        margin-bottom: 20px;
    }

    .price-filter-title {
        font-size: 15px;
    }

    .price-slider {
        margin: 15px 0;
    }

    .price-display {
        padding: 10px;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

/* ===== LOGIN AND REGISTER FORM STYLES ===== */
.login-container,
.register-container {
    max-width: 450px;
    margin: 120px auto 40px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
}

.login-container h2,
.register-container h2 {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
}

.login-container h2::after,
.register-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e74c3c;
    border-radius: 2px;
}

.login-container form,
.register-container form {
    text-align: left;
}

.login-container .form-group,
.register-container .form-group {
    margin-bottom: 25px;
}

.login-container label,
.register-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.login-container input[type="text"],
.login-container input[type="email"],
.login-container input[type="password"],
.register-container input[type="text"],
.register-container input[type="email"],
.register-container input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #f8f9fa;
}

.login-container input:focus,
.register-container input:focus {
    border-color: #e74c3c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    background: white;
}

.login-container button,
.register-container button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-container button:hover,
.register-container button:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.login-container button:active,
.register-container button:active {
    transform: translateY(0);
}

.login-container .error,
.register-container .error {
    background: linear-gradient(135deg, #fee 0%, #fdd 100%);
    color: #c0392b;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 600;
    border-left: 4px solid #e74c3c;
    text-align: center;
}

.login-container .success,
.register-container .success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 600;
    border-left: 4px solid #27ae60;
    text-align: center;
}

.register-container p {
    text-align: center;
    margin-top: 25px;
    color: #7f8c8d;
    font-size: 14px;
}

.register-container p a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-container p a:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* Responsive Design for Login/Register Forms */
@media (max-width: 768px) {
    .login-container,
    .register-container {
        margin: 100px 20px 40px;
        padding: 30px 25px;
        max-width: none;
    }

    .login-container h2,
    .register-container h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .login-container input[type="text"],
    .login-container input[type="email"],
    .login-container input[type="password"],
    .register-container input[type="text"],
    .register-container input[type="email"],
    .register-container input[type="password"] {
        padding: 12px 14px;
        font-size: 16px;
    }

    .login-container button,
    .register-container button {
        padding: 14px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .login-container,
    .register-container {
        margin: 80px 15px 30px;
        padding: 25px 20px;
    }

    .login-container h2,
    .register-container h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .login-container .form-group,
    .register-container .form-group {
        margin-bottom: 20px;
    }

    .login-container label,
    .register-container label {
        font-size: 14px;
    }

    .login-container input[type="text"],
    .login-container input[type="email"],
    .login-container input[type="password"],
    .register-container input[type="text"],
    .register-container input[type="email"],
    .register-container input[type="password"] {
        padding: 10px 12px;
        font-size: 16px;
    }

    .login-container button,
    .register-container button {
        padding: 12px;
        font-size: 16px;
    }

    .login-container .error,
    .login-container .success,
    .register-container .error,
    .register-container .success {
        padding: 10px 12px;
        font-size: 13px;
    }
}
