* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #0D1B2A;
    background: linear-gradient(135deg, #F5F7FF 0%, #EBF0FF 100%);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #e8f0e0;
}

::-webkit-scrollbar-thumb {
    background: #2962FF;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1B3A6B;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 50px;
    transition: all 0.4s ease;
    background: rgb(164 124 208 / 95%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    padding: 10px 50px;
    background: rgb(164 124 208 / 95%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    /* background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%)); */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.logo-icon img.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.logo-icon i {
    /* transform: rotate(-45deg); */
    color: white;
    font-size: 24px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-text span {
    color: #2962FF;
}

/* Main Menu Bar */
.main-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0 auto;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link i {
    font-size: 14px;
    transition: transform 0.3s;
}

.nav-link:hover {
    color: #2962FF;
}

.nav-link:hover i {
    transform: translateY(-2px);
}

.nav-link.active {
    color: #2962FF;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #2962FF, #5B8AFF);
    border-radius: 2px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.dropdown-item i {
    width: 20px;
    color: #2962FF;
    font-size: 16px;
}

.dropdown-item:hover {
    background: #f0f7e9;
    color: #2962FF;
    padding-left: 25px;
}

.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 8px 0;
}

/* Mega Menu */
.mega-menu {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 90%;
    max-width: 1200px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.mega-column h4 {
    color: #0D1B2A;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2962FF;
}

.mega-links {
    list-style: none;
}

.mega-links li {
    margin-bottom: 10px;
}

.mega-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.mega-links a:hover {
    color: #2962FF;
    transform: translateX(5px);
}

.mega-links i {
    color: #2962FF;
    font-size: 12px;
}

.mega-featured {
    background: linear-gradient(135deg, #f0f7e9, #e1f0d4);
    border-radius: 15px;
    padding: 20px;
    margin-top: 15px;
}

.mega-featured h5 {
    color: #0D1B2A;
    font-size: 14px;
    margin-bottom: 10px;
}

.mega-featured .price {
    color: #2962FF;
    font-weight: 700;
    font-size: 18px;
}

/* Search Bar */
.search-container {
    position: relative;
    margin: 0 10px;
}

.search-input {
    padding: 10px 15px 10px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    width: 220px;
    transition: all 0.3s;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: #2962FF;
    width: 280px;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 12px;
    margin-left: 15px;
}

.btn {
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-login {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-login:hover {
    border-color: #1B47CC;
    background: rgba(27, 71, 204, 0.1);
}

.btn-register {
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    color: white;
    box-shadow: 0 4px 15px rgba(27, 71, 204, 0.3);
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 71, 204, 0.5);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    margin-left: 10px;
    color: white;
    font-size: 22px;
    cursor: pointer;
    transition: color 0.3s;
}

.cart-icon:hover {
    color: #2962FF;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #2962FF;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart Bounce Animation */
.cart-bounce {
    animation: cartBounce 0.5s ease;
}

@keyframes cartBounce {

    0%,
    100% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.3);
    }

    60% {
        transform: scale(0.9);
    }
}

/* Cart Overlay */
.cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10000;
}

.cart-overlay.active {
    display: block;
}

/* Cart Dropdown */
.cart-dropdown {
    position: fixed;
    top: 0;
    right: -380px;
    width: 370px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 10001;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.cart-dropdown.active {
    right: 0;
}

.cart-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: linear-gradient(135deg, #0D1B2A, #1B3A6B);
    color: #fff;
}

.cart-dropdown-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.cart-dropdown-header h4 i {
    margin-right: 8px;
}

.cart-dropdown-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.cart-dropdown-close:hover {
    opacity: 1;
}

.cart-dropdown-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #aaa;
}

.cart-empty i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ddd;
}

.cart-empty p {
    font-size: 16px;
    margin: 0;
}

/* Cart Item */
.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.cart-item:hover {
    background: #fafafa;
}

.cart-item-img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.cart-item-price {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-qty span {
    font-weight: 600;
    font-size: 14px;
    min-width: 20px;
    text-align: center;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    color: #fff;
    border-color: #1B47CC;
}

.cart-item-subtotal {
    text-align: right;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.cart-item-subtotal span {
    font-weight: 700;
    font-size: 14px;
    color: #1B3A6B;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 13px;
    padding: 2px;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: #e74c3c;
}

/* Cart Footer */
.cart-dropdown-footer {
    border-top: 2px solid #f0f0f0;
    padding: 16px 20px;
    background: #fafafa;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 700;
    color: #0D1B2A;
}

.cart-checkout-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    margin-bottom: 8px;
}

.cart-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 71, 204, 0.4);
}

.cart-clear-btn {
    width: 100%;
    padding: 8px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #999;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.cart-clear-btn:hover {
    color: #e74c3c;
    border-color: #e74c3c;
}

/* ===================== CHECKOUT MODAL ===================== */
.checkout-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkout-overlay.active {
    display: block;
    opacity: 1;
}

.checkout-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 95%;
    max-width: 560px;
    max-height: 90vh;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.checkout-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.checkout-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    color: #fff;
    border-radius: 16px 16px 0 0;
}

.checkout-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.checkout-modal-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.checkout-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@keyframes checkoutItemSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: #f9faf7;
    border-radius: 12px;
    border: 1px solid #eee;
    animation: checkoutItemSlide 0.4s ease forwards;
    opacity: 0;
    transition: box-shadow 0.2s;
}

.checkout-item:hover {
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.1);
}

.checkout-item-img-wrap {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8e8e8;
}

.checkout-item-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkout-item-details {
    flex: 1;
    min-width: 0;
}

.checkout-item-name {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.checkout-item-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    font-size: 13px;
    color: #777;
}

.checkout-item-unit {
    background: #E3F2FD;
    color: #1B47CC;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.checkout-item-subtotal {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 16px;
    color: #1B47CC;
}

.checkout-modal-footer {
    padding: 16px 24px 20px;
    border-top: 1px solid #eee;
}

/* Checkout Address Section */
.checkout-address-section {
    margin-top: 16px;
    border: 1px solid #E3F2FD;
    border-radius: 10px;
    overflow: hidden;
    background: #F5F7FF;
}

.checkout-address-header {
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    color: #fff;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-address-body {
    padding: 14px 16px;
}

.checkout-address-name {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.checkout-address-phone {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.checkout-address-text {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

.checkout-address-empty {
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #b8860b;
    font-size: 13px;
}

.checkout-address-empty i {
    font-size: 18px;
    margin-top: 1px;
    flex-shrink: 0;
}

.checkout-address-empty a {
    color: #1B47CC;
    font-weight: 600;
    text-decoration: none;
}

.checkout-summary {
    margin-bottom: 16px;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: #666;
}

.checkout-total-row {
    border-top: 2px solid #1B47CC;
    margin-top: 8px;
    padding-top: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1B47CC;
}

.checkout-place-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(27, 71, 204, 0.3);
}

.checkout-place-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 71, 204, 0.4);
}

.checkout-back-btn {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.checkout-back-btn:hover {
    border-color: #1B47CC;
    color: #1B47CC;
}

/* ===================== PAYMENT MODAL ===================== */
.payment-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-overlay.active {
    display: block;
    opacity: 1;
}

.payment-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 95%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.payment-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.payment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    color: #fff;
    border-radius: 18px 18px 0 0;
}

.payment-modal-header h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 22px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.payment-modal-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.payment-modal-body {
    padding: 20px 24px;
}

/* Payment Mode */
.payment-mode-box {
    margin-bottom: 16px;
}

.payment-mode-active {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #e8eaf6;
    border: 2px solid #3f51b5;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    color: #1B47CC;
}

.payment-mode-active i:first-child {
    font-size: 22px;
}

.payment-mode-active .text-success {
    margin-left: auto;
    color: #27ae60 !important;
}

/* Wallet Balance Box */
.wallet-balance-box {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #E3F2FD, #B3CBFF);
    border-radius: 14px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.wallet-balance-box.insufficient {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
}

.wallet-balance-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wallet-balance-amount {
    font-size: 32px;
    font-weight: 800;
    color: #1B47CC;
}

.wallet-balance-box.insufficient .wallet-balance-amount {
    color: #c62828;
}

.spinner-icon {
    font-size: 24px;
    color: #999;
}

/* Payment Amount Box */
.payment-amount-box {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 16px;
}

.payment-amount-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: #555;
}

.payment-order-total {
    font-weight: 700;
    font-size: 16px;
    color: #1B47CC;
}

.payment-remaining {
    font-weight: 600;
}

/* Insufficient Alert */
.payment-insufficient {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #fff3e0;
    border: 1px solid #ffb74d;
    border-radius: 12px;
    margin-bottom: 16px;
    animation: shakeAlert 0.5s ease;
}

@keyframes shakeAlert {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

.payment-insufficient i {
    font-size: 22px;
    color: #e65100;
    margin-top: 2px;
}

.payment-insufficient strong {
    color: #e65100;
    font-size: 14px;
}

.payment-insufficient p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Status Messages */
.payment-success-msg {
    text-align: center;
    padding: 16px;
    background: #E3F2FD;
    border-radius: 12px;
    color: #2962FF;
    font-weight: 600;
    font-size: 15px;
    margin-top: 10px;
    animation: fadeScaleIn 0.4s ease;
}

.payment-success-msg i {
    font-size: 28px;
    display: block;
    margin-bottom: 6px;
}

.payment-success-msg small {
    font-weight: 500;
    opacity: 0.8;
}

.payment-error-msg {
    text-align: center;
    padding: 12px;
    background: #ffebee;
    border-radius: 10px;
    color: #c62828;
    font-size: 14px;
    margin-top: 10px;
}

@keyframes fadeScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Payment Footer */
.payment-modal-footer {
    padding: 16px 24px 20px;
    border-top: 1px solid #eee;
}

.payment-pay-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(27, 71, 204, 0.3);
}

.payment-pay-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 71, 204, 0.4);
}

.payment-pay-btn:disabled {
    cursor: not-allowed;
}

.payment-back-btn {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.payment-back-btn:hover {
    border-color: #1B47CC;
    color: #1B47CC;
}

/* ===================== GUEST INFO MODAL ===================== */
.guest-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guest-overlay.active {
    display: block;
    opacity: 1;
}

.guest-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 95%;
    max-width: 560px;
    max-height: 92vh;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.guest-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.guest-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    color: #fff;
    border-radius: 16px 16px 0 0;
}

.guest-modal-header h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guest-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.guest-modal-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.guest-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.guest-form-section {
    margin-bottom: 18px;
    background: #fafbfd;
    border: 1px solid #e8ecf1;
    border-radius: 12px;
    padding: 16px;
}

.guest-section-title {
    font-weight: 700;
    font-size: 14px;
    color: #1B47CC;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8ecf1;
}

.guest-section-title i {
    font-size: 15px;
}

.guest-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.guest-form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.guest-form-group {
    margin-bottom: 12px;
}

.guest-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guest-form-group label .req {
    color: #e74c3c;
}

.guest-form-group label small {
    text-transform: none;
    letter-spacing: 0;
    color: #999;
}

.guest-form-group input,
.guest-form-group textarea,
.guest-form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #dde2e8;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
}

.guest-form-group input:focus,
.guest-form-group textarea:focus,
.guest-form-group select:focus {
    border-color: #1B47CC;
    box-shadow: 0 0 0 3px rgba(27, 71, 204, 0.1);
}

.guest-form-group textarea {
    resize: vertical;
}

.input-prefix-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #dde2e8;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-prefix-wrap:focus-within {
    border-color: #1B47CC;
    box-shadow: 0 0 0 3px rgba(27, 71, 204, 0.1);
}

.input-prefix {
    padding: 10px 10px 10px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    background: #f1f3f6;
    border-right: 1px solid #dde2e8;
    white-space: nowrap;
}

.input-prefix-wrap input {
    border: none !important;
    box-shadow: none !important;
    padding-left: 10px;
}

.guest-modal-footer {
    padding: 14px 24px 18px;
    border-top: 1px solid #eee;
}

.guest-proceed-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(27, 71, 204, 0.3);
}

.guest-proceed-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 71, 204, 0.4);
}

.guest-back-btn {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.guest-back-btn:hover {
    border-color: #1B47CC;
    color: #1B47CC;
}

/* ===================== PAYMENT SELECTION MODAL ===================== */
.payselect-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payselect-overlay.active {
    display: block;
    opacity: 1;
}

.payselect-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 95%;
    max-width: 480px;
    max-height: 90vh;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.payselect-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.payselect-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    color: #fff;
    border-radius: 16px 16px 0 0;
}

.payselect-modal-header h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payselect-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.payselect-modal-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.payselect-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.payselect-summary {
    background: #f5f7ff;
    border: 1px solid #e3e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 18px;
}

.payselect-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 15px;
}

/* Payment Options Cards */
.payment-options-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pay-option-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 2px solid #e8ecf1;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fff;
}

.pay-option-card:hover {
    border-color: #b0c4ff;
    background: #f8faff;
}

.pay-option-card.active {
    border-color: #1B47CC;
    background: linear-gradient(135deg, #f0f4ff, #f8f5ff);
    box-shadow: 0 3px 12px rgba(27, 71, 204, 0.12);
}

.pay-option-radio {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
}

.pay-option-card.active .pay-option-radio {
    border-color: #1B47CC;
}

.radio-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    transition: background 0.2s;
}

.pay-option-card.active .radio-dot {
    background: #1B47CC;
}

.pay-option-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.cod-icon {
    background: #e8f5e9;
    color: #2e7d32;
}

.payu-icon {
    background: #e3f2fd;
    color: #1565c0;
}

.wallet-icon {
    background: #fff3e0;
    color: #e65100;
}

.pay-option-info {
    flex: 1;
    min-width: 0;
}

.pay-option-title {
    font-weight: 600;
    font-size: 15px;
    color: #222;
}

.pay-option-desc {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.payselect-modal-footer {
    padding: 14px 24px 18px;
    border-top: 1px solid #eee;
}

.payselect-confirm-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(27, 71, 204, 0.3);
}

.payselect-confirm-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 71, 204, 0.4);
}

.payselect-confirm-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.payselect-back-btn {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.payselect-back-btn:hover {
    border-color: #1B47CC;
    color: #1B47CC;
}

/* Payment success / error messages in modals */
.payment-success-msg {
    text-align: center;
    padding: 14px;
    margin-top: 12px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 10px;
    font-weight: 600;
}

.payment-success-msg i {
    font-size: 20px;
    margin-right: 6px;
}

.payment-error-msg {
    text-align: center;
    padding: 14px;
    margin-top: 12px;
    background: #fce4ec;
    color: #c62828;
    border-radius: 10px;
    font-weight: 600;
}

.payment-error-msg i {
    font-size: 20px;
    margin-right: 6px;
}

/* ===================== CONFETTI / CRACKERS ===================== */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99999;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    top: -15px;
    opacity: 0;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    0% {
        opacity: 1;
        top: -15px;
        transform: translateX(0) rotate(0deg);
    }

    25% {
        opacity: 1;
        transform: translateX(30px) rotate(180deg);
    }

    50% {
        opacity: 1;
        transform: translateX(-20px) rotate(360deg);
    }

    75% {
        opacity: 0.8;
        transform: translateX(15px) rotate(540deg);
    }

    100% {
        opacity: 0;
        top: 105%;
        transform: translateX(-10px) rotate(720deg);
    }
}

.confetti-spark {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 0;
    animation: sparkBurst 1s ease-out forwards;
}

@keyframes sparkBurst {
    0% {
        opacity: 1;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(2.5);
    }

    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomEffect 10s infinite alternate;
}

@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 46, 5, 0.7), rgba(0, 0, 0, 0.4));
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 80%;
    max-width: 1000px;
}

.slide-subtitle {
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.slide-title span {
    color: #2962FF;
    display: inline-block;
}

.slide-description {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.2s;
}

.btn-primary {
    padding: 15px 40px;
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(27, 71, 204, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 71, 204, 0.6);
}

.btn-secondary {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #0D1B2A;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #2962FF;
    transform: scale(1.3);
}

/* ══════════ Featured Products Carousel ══════════ */
.featured-section {
    padding: 80px 50px 40px;
    background: linear-gradient(180deg, #F5F7FF 0%, #EBF0FF 100%);
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(27, 71, 204, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.featured-carousel-wrap {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}

/* Featured card */
.featured-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s, box-shadow 0.35s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(74, 124, 47, 0.15);
}

.fc-img-wrap {
    position: relative;
    overflow: hidden;
    background: #F5F7FF;
}

.fc-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.featured-card:hover .fc-img {
    transform: scale(1.06);
}

.fc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    color: #fff;
    padding: 3px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(27, 71, 204, 0.3);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.fc-badge i {
    font-size: 10px;
}

.fc-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fc-cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2962FF;
    margin-bottom: 4px;
}

.fc-name {
    font-size: 15px;
    font-weight: 700;
    color: #0D1B2A;
    margin: 0 0 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fc-desc {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fc-price-row {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 12px;
}

.fc-dealer small,
.fc-mrp small {
    display: block;
    font-size: 10px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.fc-amount {
    font-size: 20px;
    font-weight: 800;
    color: #2962FF;
}

.fc-mrp-val {
    font-size: 14px;
    color: #bbb;
    text-decoration: line-through;
    font-weight: 500;
}

.fc-cart-btn {
    margin-top: auto;
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.fc-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 71, 204, 0.45);
}

/* Featured Swiper navigation */
.featured-nav-next,
.featured-nav-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    color: #2962FF;
    font-size: 16px;
}

.featured-nav-next:hover,
.featured-nav-prev:hover {
    background: #2962FF;
    color: #fff;
    box-shadow: 0 6px 20px rgba(27, 71, 204, 0.35);
}

.featured-nav-next {
    right: 0;
}

.featured-nav-prev {
    left: 0;
}

.featured-pagination {
    text-align: center;
    margin-top: 25px;
}

.featured-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #B3CBFF;
    opacity: 1;
    transition: all 0.3s;
    margin: 0 5px;
}

.featured-pagination .swiper-pagination-bullet-active {
    background: #2962FF;
    width: 28px;
    border-radius: 5px;
}

/* Featured section responsive */
@media (max-width: 992px) {
    .featured-section {
        padding: 60px 20px 30px;
    }

    .featured-carousel-wrap {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .featured-section {
        padding: 50px 15px 25px;
    }

    .featured-carousel-wrap {
        padding: 0 35px;
    }

    .featured-nav-next,
    .featured-nav-prev {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .fc-img {
        height: 170px;
    }
}

@media (max-width: 576px) {
    .featured-section {
        padding: 40px 10px 20px;
    }

    .featured-carousel-wrap {
        padding: 0 30px;
    }

    .fc-img {
        height: 160px;
    }

    .fc-body {
        padding: 14px 16px 16px;
    }

    .fc-amount {
        font-size: 18px;
    }
}

/* Products Section */
.products-section {
    padding: 100px 50px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #2962FF;
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #0D1B2A;
    margin-bottom: 20px;
}

.section-title span {
    color: #2962FF;
}

/* â”€â”€ Category Tabs â”€â”€ */
.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.cat-tab {
    padding: 9px 22px;
    border: 2px solid #B3CBFF;
    border-radius: 50px;
    background: transparent;
    color: #2962FF;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.cat-tab:hover {
    background: #E8EEFF;
}

.cat-tab.active {
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(27, 71, 204, 0.35);
}

/* â”€â”€ Product Grid v2 â”€â”€ */
.product-grid-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 22px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card-v2 {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s, box-shadow 0.35s;
    display: flex;
    flex-direction: column;
}

.product-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(74, 124, 47, 0.15);
}

.product-card-v2.hide-card {
    display: none;
}

/* Image wrapper */
.pc-img-wrap {
    position: relative;
    overflow: hidden;
    background: #F5F7FF;
}

.pc-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.product-card-v2:hover .pc-img {
    transform: scale(1.06);
}

.pc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    color: #fff;
    padding: 3px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(27, 71, 204, 0.3);
}

/* Card body */
.pc-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pc-cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2962FF;
    margin-bottom: 4px;
}

.pc-name {
    font-size: 15px;
    font-weight: 700;
    color: #0D1B2A;
    margin: 0 0 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Price row */
.pc-price-row {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 12px;
}

.pc-dealer small,
.pc-mrp small {
    display: block;
    font-size: 10px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1px;
}

.pc-amount {
    font-size: 20px;
    font-weight: 800;
    color: #2962FF;
}

.pc-mrp-val {
    font-size: 14px;
    color: #bbb;
    text-decoration: line-through;
    font-weight: 500;
}

/* Cart button */
.pc-cart-btn {
    margin-top: auto;
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.pc-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 71, 204, 0.45);
}

/* Packages Section */
.packages-section {
    padding: 100px 50px;
    background: linear-gradient(135deg, #0D1B2A, #1B3A6B);
    position: relative;
    overflow: hidden;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.1), transparent);
    border-radius: 50%;
}

.packages-header {
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.packages-header .section-subtitle {
    color: #2962FF;
}

.packages-header .section-title {
    color: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.package-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 40px 30px;
    text-align: center;
    color: white;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #2962FF;
}

.package-card.popular {
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    transform: scale(1.05);
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #2962FF;
    color: #fff;
    padding: 8px 40px;
    font-weight: 600;
    font-size: 14px;
    transform: rotate(45deg);
}

.package-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.package-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.package-price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
}

.package-price small {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.8;
}

.package-features {
    list-style: none;
    margin: 30px 0;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.package-features li i {
    color: #2962FF;
}

.btn-package {
    width: 100%;
    padding: 15px;
    background: white;
    border: none;
    border-radius: 50px;
    color: #0D1B2A;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 71, 204, 0.3);
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    color: white;
}

/* Farm Beds Section */
.beds-section {
    padding: 100px 50px;
}

.beds-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.bed-card {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
}

.bed-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(74, 124, 47, 0.2);
}

.bed-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.bed-info {
    padding: 25px;
}

.bed-type {
    display: inline-block;
    padding: 5px 15px;
    background: #E3F2FD;
    color: #2962FF;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.bed-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0D1B2A;
}

.bed-specs {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    color: #666;
}

.bed-specs i {
    color: #2962FF;
}

.bed-price {
    font-size: 24px;
    color: #2962FF;
    font-weight: 700;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: white;
    border-radius: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-header {
    padding: 30px 30px 20px;
    text-align: center;
    position: relative;
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #0D1B2A;
    margin-bottom: 10px;
}

.modal-header p {
    color: #666;
    font-size: 14px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #ff4444;
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 20px 30px 30px;
    max-height: 88vh;
    overflow-y: auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #2962FF;
    font-size: 16px;
}

.form-control {
    width: 100%;
    padding: 15px 50px 15px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    border-color: #2962FF;
    outline: none;
    box-shadow: 0 0 0 4px rgba(27, 71, 204, 0.1);
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    user-select: none;
    z-index: 2;
    transition: all 0.2s ease;
}

.toggle-password:hover {
    opacity: 0.7;
    transform: translateY(-50%) scale(1.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.btn-modal {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    border: none;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-modal:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 71, 204, 0.4);
}

.modal-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.modal-footer a {
    color: #2962FF;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.modal-footer a:hover {
    text-decoration: none;
}

.social-login {
    margin-top: 20px;
}

.social-login p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    position: relative;
}

.social-login p::before,
.social-login p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #e0e0e0;
}

.social-login p::before {
    left: 0;
}

.social-login p::after {
    right: 0;
}

.social-buttons {
    display: flex;
    gap: 10px;
}

.btn-social {
    flex: 1;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
}

.btn-social:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.btn-social.google:hover {
    border-color: #DB4437;
    color: #DB4437;
}

.btn-social.facebook:hover {
    border-color: #4267B2;
    color: #4267B2;
}

/* Footer */
.footer {
    background: #0D1B2A;
    color: white;
    padding: 80px 50px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #2962FF;
}

.footer-about {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #1B47CC, rgb(164 124 208 / 95%));
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #142e8a, rgb(140 100 185 / 95%));
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2962FF;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #2962FF;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #2962FF;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* INR Currency Symbol */
.rupee-symbol {
    font-family: 'Poppins', sans-serif;
    margin-right: 2px;
}

/* Responsive */
@media (max-width: 1200px) {
    .main-menu {
        gap: 15px;
    }

    .nav-menu {
        gap: 15px;
    }

    .search-input {
        width: 180px;
    }

    .search-input:focus {
        width: 220px;
    }

    .mega-menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .products-section,
    .packages-section,
    .beds-section {
        padding: 80px 30px;
    }
}

@media (max-width: 992px) {
    .header {
        padding: 15px 20px;
    }

    .header.scrolled {
        padding: 10px 20px;
    }

    .main-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: #0D1B2A;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
        gap: 20px;
        z-index: 999;
    }

    .main-menu.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 10px 0;
        width: 100%;
    }

    .dropdown-menu,
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0 0 0 20px;
        display: none;
        width: 100%;
    }

    .nav-item.active .dropdown-menu,
    .nav-item.active .mega-menu {
        display: block;
    }

    .mega-menu {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px 0;
    }

    .dropdown-item {
        color: white;
        padding: 8px 0;
    }

    .dropdown-item:hover {
        background: transparent;
        color: #2962FF;
    }

    .mega-column h4 {
        color: #2962FF;
    }

    .mega-links a {
        color: rgba(255, 255, 255, 0.8);
    }

    .search-container {
        width: 100%;
    }

    .search-input,
    .search-input:focus {
        width: 100%;
    }

    .auth-buttons {
        width: 100%;
        margin: 10px 0 0 0;
        flex-direction: column;
    }

    .cart-icon {
        margin: 10px 0 0 0;
        align-self: flex-start;
    }

    .mobile-menu-btn {
        display: block;
    }

    .slide-title {
        font-size: 40px;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }

    .beds-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-section,
    .packages-section,
    .beds-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .footer {
        padding: 60px 20px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .cart-dropdown {
        max-width: 95vw;
    }

    .cart-dropdown.active {
        right: 2.5vw;
    }

    .checkout-modal,
    .payment-modal {
        max-width: 95vw;
        width: 95vw;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 15px;
    }

    .header.scrolled {
        padding: 8px 15px;
    }

    .slide-title {
        font-size: 28px;
    }

    .slide-subtitle {
        font-size: 14px;
    }

    .product-grid-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .beds-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
        text-align: center;
    }

    .footer-content>div:first-child,
    .footer-content>div:last-child {
        grid-column: 1 / -1;
    }

    .footer-links h4 {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-about {
        font-size: 14px;
        line-height: 1.7;
        max-width: 400px;
        margin: 0 auto 15px;
    }

    .social-links {
        justify-content: center;
    }

    .copyright {
        padding-top: 25px;
        margin-top: 25px;
        font-size: 13px;
    }

    .copyright p {
        font-size: 13px;
        line-height: 1.6;
    }

    .footer p {
        font-size: 14px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .products-section,
    .packages-section,
    .beds-section {
        padding: 50px 15px;
    }

    .footer {
        padding: 40px 15px 20px;
    }

    .footer-logo {
        font-size: 22px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .checkout-form-row {
        flex-direction: column;
        gap: 15px;
    }

    .cart-item-info h4 {
        font-size: 13px;
    }

    .hero-slide {
        min-height: 60vh;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 10px 12px;
    }

    .logo-text {
        font-size: 18px;
    }

    .slide-title {
        font-size: 22px;
        padding: 0 10px;
    }

    .slide-subtitle {
        font-size: 12px;
        padding: 0 10px;
    }

    .slide-buttons .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .section-title {
        font-size: 24px;
    }

    .product-card-v2 {
        border-radius: 12px;
    }

    .bed-card {
        border-radius: 20px;
    }

    .package-card,
    .bed-card {
        margin: 0;
    }

    .products-section,
    .packages-section,
    .beds-section {
        padding: 40px 10px;
    }

    .footer {
        padding: 30px 12px 15px;
    }

    .footer-logo {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .footer-about {
        font-size: 13px;
        line-height: 1.6;
    }

    .footer-links h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .copyright {
        padding-top: 18px;
        margin-top: 18px;
        font-size: 12px;
    }

    .copyright p {
        font-size: 12px;
    }

    .footer p {
        font-size: 13px;
    }

    .footer-bottom {
        padding-top: 30px;
        margin-top: 30px;
        font-size: 12px;
    }

    .hero-slide {
        min-height: 50vh;
    }

    .cart-dropdown {
        width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
        border-radius: 12px;
    }

    .cart-dropdown.active {
        right: 10px;
    }

    .checkout-modal,
    .payment-modal {
        border-radius: 15px;
        padding: 20px;
    }

    .checkout-modal-header h3,
    .payment-modal h3 {
        font-size: 18px;
    }

    .guest-modal,
    .payselect-modal {
        width: calc(100vw - 16px);
        max-height: 95vh;
        border-radius: 14px;
    }

    .guest-form-row {
        grid-template-columns: 1fr;
    }

    .guest-form-row-3 {
        grid-template-columns: 1fr;
    }

    .guest-modal-header h3,
    .payselect-modal-header h3 {
        font-size: 17px;
    }

    /* Login/Register modals mobile */
    .modal-container {
        width: 95%;
        border-radius: 20px;
    }

    .modal-header {
        padding: 20px 20px 15px;
    }

    .modal-header h2 {
        font-size: 22px;
    }

    .modal-body {
        padding: 0 20px 20px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

@media (max-width: 400px) {
    .logo-text {
        font-size: 16px;
    }

    .logo-text span {
        font-size: 8px;
    }

    .slide-title {
        font-size: 18px;
    }

    .section-title {
        font-size: 20px;
    }

    .products-section,
    .packages-section,
    .beds-section {
        padding: 30px 8px;
    }

    .product-grid-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .pc-img {
        height: 130px;
    }

    .pc-name {
        font-size: 13px;
    }

    .pc-amount {
        font-size: 16px;
    }

    .cat-tab {
        padding: 7px 14px;
        font-size: 12px;
    }

    .footer {
        padding: 24px 8px 12px;
    }

    .footer-logo {
        font-size: 18px;
    }

    .footer-about {
        font-size: 12px;
    }

    .footer-links h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .copyright {
        padding-top: 14px;
        margin-top: 14px;
    }

    .copyright p {
        font-size: 11px;
    }
}

/* Alert Messages */
#loginMessages,
#registerMessages {
    margin-bottom: 15px;
}

.alert {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 14px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert-error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.alert-success {
    background: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

/* Button Loader */
.btn-loader {
    display: none;
}

.btn-modal:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 30px;
    right: -400px;
    min-width: 320px;
    max-width: 420px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    z-index: 100000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #ccc;
}

.toast-notification.toast-success {
    border-left-color: #27ae60;
}

.toast-notification.toast-error {
    border-left-color: #e74c3c;
}

.toast-notification.toast-show {
    right: 30px;
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #0D1B2A;
    margin-bottom: 4px;
}

.toast-message {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.toast-close:hover {
    color: #333;
}

@media (max-width: 480px) {
    .toast-notification {
        min-width: unset;
        max-width: calc(100vw - 40px);
        right: -100vw;
        top: 16px;
    }

    .toast-notification.toast-show {
        right: 20px;
    }
}

/* ===================== SPINNER ANIMATION ===================== */
@keyframes spinnerRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.fa-spin {
    animation: spinnerRotate 1s linear infinite;
}