/* Shop Hero Section */
.shop-hero {
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Space for fixed header */
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/img/hero-bg.jpg') center/cover;
    opacity: 0.05;
    z-index: 1;
}

.shop-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 0;
}

.shop-hero h1 {
    font-size: 3rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

.shop-hero p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Shop Section */
.shop-section {
    padding: 0 0 8rem;
    position: relative;
    flex: 1;
}

.shop-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
}

/* Product Card */
.product-card {
    background: linear-gradient(145deg, #1c1c1c, #161616);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(
        45deg,
        transparent,
        transparent,
        #ff4757,
        #ff4757,
        #ff4757,
        transparent,
        transparent
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-lighter);
}

.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-slider img.active {
    opacity: 1;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-nav i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav:hover i {
    color: white;
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

.view-full-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.view-full-btn i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.view-full-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.view-full-btn:hover i {
    color: white;
}

.view-full-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.product-overlay {
    display: none;
}

.product-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
}

.product-info > div {
    margin-bottom: 0.75rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff4757;
    margin-bottom: 0.75rem;
}

.size-selector {
    margin-bottom: 1rem;
}

.size-selector label {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}

.size-options {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.size-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #2a2a2a;
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-btn:hover {
    background: #333333;
    border-color: rgba(255, 255, 255, 0.2);
}

.size-btn.active {
    background: #ff4757;
    border-color: #ff4757;
}

.size-btn.out-of-stock {
    opacity: 0.5;
    cursor: not-allowed;
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.05);
    position: relative;
}

.size-btn.out-of-stock::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(-45deg);
}

.add-to-cart {
    padding: 0.8rem;
    font-size: 0.9rem;
    border-radius: 10px;
    width: 100%;
    background: linear-gradient(45deg, #ff4757, #ff6b81);
    color: #ffffff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.add-to-cart:hover {
    background: linear-gradient(45deg, #ff2e42, #ff5268);
}

.add-to-cart i {
    font-size: 1.1rem;
}

/* Shopping Cart Button */
.cart-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(45deg, #ff4757, #ff6b81);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cart-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.cart-button:active {
    transform: scale(0.95);
}

.cart-button i {
    font-size: 1.6rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cart-count-bubble {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #2ecc71;
    color: #fff;
    border-radius: 50%;
    min-width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0 4px;
    box-shadow: 0 4px 8px rgba(46, 204, 113, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Shopping Cart Panel */
.shopping-cart {
    position: fixed;
    top: 0;
    right: -400px; /* Start off-screen */
    bottom: 0;
    width: 400px;
    background: #1a1a1a;
    padding: 1.5rem;
    padding-top: 5rem; /* Add space for the navbar */
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.shopping-cart.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    background: #1a1a1a;
    z-index: 10000;
}

.cart-header h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10001;
}

.close-cart:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

.close-cart i {
    transition: transform 0.3s ease;
}

.close-cart:hover i {
    transform: translateX(3px);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1rem;
}

.item-details {
    flex: 1;
}

.item-name {
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.25rem;
}

.item-price {
    color: #ff4757;
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #fff;
}

.quantity-btn:hover {
    background: #333;
    border-color: rgba(255, 255, 255, 0.2);
}

.quantity {
    font-weight: 500;
    min-width: 30px;
    text-align: center;
    color: #fff;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    font-weight: 600;
    color: #fff;
}

.checkout-btn {
    width: 100%;
    padding: 0.8rem;
    background: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.checkout-btn:hover {
    background: #27ae60;
}

.checkout-btn:disabled {
    background: #1a1a1a;
    cursor: not-allowed;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Order Modal */
.order-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    padding: 1rem;
}

.order-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(145deg, #1c1c1c, #161616);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: linear-gradient(to right, rgba(98, 0, 234, 0.1), rgba(41, 121, 255, 0.1));
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.modal-header h3 {
    font-size: 1.25rem;
    color: #fff;
    margin: 0;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.close-modal:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.order-form {
    padding: 1.25rem;
    overflow-y: auto;
    flex-grow: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.form-group {
    margin-bottom: 0.75rem;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(98, 0, 234, 0.1);
}

.form-group textarea {
    min-height: 60px;
    max-height: 120px;
    resize: vertical;
}

.form-grid .form-group.full-width {
    grid-column: 1 / -1;
}

.submit-order {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.submit-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.submit-order:active {
    transform: translateY(0);
}

.submit-order i {
    font-size: 1.1rem;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 12px;
    color: white;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    width: 300px;
    max-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.success {
    background-color: #2ecc71;
}

.notification.error {
    background-color: #ff4757;
}

/* Empty Cart State */
.empty-cart {
    text-align: center;
    padding: 2rem;
    color: #b0b0b0;
}

.empty-cart i {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.empty-cart p {
    margin: 0;
    font-size: 1.1rem;
}

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

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid #333;
    border-top: 3px solid #ff4757;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
}

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

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

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-hero {
        margin-top: 60px;
        padding: 1rem 0;
    }

    .shop-hero .container {
        padding: 0.5rem 0;
    }

    .shop-hero h1 {
        font-size: 2.2rem;
    }

    .shop-hero p {
        font-size: 0.95rem;
    }

    .shop-section {
        padding: 0 0 8rem;
    }

    .products-grid {
        margin: 0;
        padding: 0.5rem;
    }

    .product-image {
        height: 250px;
    }

    .slider-nav,
    .view-full-btn {
        width: 35px;
        height: 35px;
    }

    .product-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.5);
    }

    .add-to-cart {
        transform: translateY(0);
        opacity: 1;
    }

    .cart-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 58px;
        height: 58px;
    }

    .cart-button i {
        font-size: 1.4rem;
    }

    .cart-count-bubble {
        min-width: 22px;
        height: 22px;
        font-size: 0.8rem;
    }

    .notification {
        right: 10px;
        width: 250px;
        padding: 14px 20px;
        min-height: 50px;
    }

    .shopping-cart {
        width: 100%;
        right: -100%;
        padding-top: 4rem; /* Slightly less padding on mobile */
    }

    .shopping-cart.open {
        right: 0;
    }

    .cart-header {
        padding: 1rem;
        margin: -1rem -1rem 1rem -1rem;
        width: calc(100% + 2rem);
    }

    .modal-content {
        max-height: 95vh;
    }

    .modal-header {
        padding: 0.75rem;
    }

    .order-form {
        padding: 1rem;
    }

    .form-group {
        margin-bottom: 0.5rem;
    }

    .form-grid {
        gap: 0.5rem;
    }
}

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

    .modal-content {
        max-height: 98vh;
    }
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container {
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lightbox-nav i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav:hover i {
    color: white;
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lightbox-close i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.lightbox-close:hover i {
    color: white;
}

.lightbox-close:active {
    transform: scale(0.95);
}

.lightbox-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 1001;
}

.lightbox-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-dots .dot.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slider-nav,
    .view-full-btn {
        width: 35px;
        height: 35px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
}

/* Notification Center */
.notification-center {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    pointer-events: none;
}

.notification-item {
    background: linear-gradient(145deg, #1c1c1c, #161616);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
}

.notification-item.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-item.completed {
    border-left: 4px solid #2ecc71;
}

.notification-item i {
    font-size: 1.2rem;
    color: #2ecc71;
}

.notification-item .notification-content {
    flex: 1;
}

.notification-item .notification-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.notification-item .notification-message {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.notification-item .close-notification {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.notification-item .close-notification:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .notification-center {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .notification-item {
        padding: 12px;
    }
} 