/* ...existing code... */

/* Basket Styles */
.basket-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.basket-floating-btn:hover {
    transform: scale(1.1);
}

.basket-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary-color);
    color: white;
    font-size: 0.8rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.basket-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95); /* Darker, more opaque background */
    z-index: 1001;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.basket-content {
    background: var(--bg-card);
    width: 100%;
    height: 100%;
    max-width: none; /* Full width */
    border-radius: 0;
    padding: 40px;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
}

.basket-header {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 30px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.basket-header h2 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.basket-items-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.basket-items {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.basket-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.2s;
}

.basket-item:hover {
    transform: translateX(5px);
    background: rgba(255,255,255,0.05);
}

.item-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 30px;
}

.basket-footer {
    max-width: 1200px;
    width: 100%;
    margin: 30px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.coupon-section {
    display: flex;
    gap: 10px;
}

.coupon-input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2);
    color: white;
    font-family: var(--font-main);
}

.basket-summary {
    text-align: right;
}

.basket-total {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.btn-checkout {
    padding: 15px 40px;
    font-size: 1.2rem;
    width: auto;
    min-width: 250px;
}

/* Notification Toast */
.notification-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    border: 1px solid var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2000;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.notification-toast i {
    color: #4ade80;
    font-size: 1.2rem;
}

.notification-toast span {
    font-weight: 600;
    color: var(--text-color);
}
