


.cart-icon {
    position: relative;
    background: rgba(25, 40, 53, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    margin-right: 12px;
}


.currency-select {
    background: rgba(20, 18, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.currency-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.currency-select option {
    background: #1a1a2e;
    color: #ffffff;
}

.cart-icon:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.cart-icon svg {
    width: 20px;
    height: 20px;
}


.floating-cart-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(25, 40, 53, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.floating-cart-icon:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.floating-cart-icon svg {
    width: 24px;
    height: 24px;
}


.shop-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #0A0812 50%, #000000 100%);
    position: relative;
    overflow: hidden;
    margin-top: -100px;
    padding-top: 100px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: min(800px, 90vw);
    height: min(800px, 90vw);
    background: radial-gradient(circle, rgba(88, 101, 242, 0.15) 0%, rgba(138, 43, 226, 0.1) 40%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    pointer-events: none;
}

.shop-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.shop-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease-out forwards;
}

.shop-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.shop-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.shop-search input {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(20, 18, 35, 0.6);
    color: #ffffff;
    font-size: 16px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.shop-search input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(20, 18, 35, 0.8);
}

.shop-search input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.search-btn svg {
    width: 18px;
    height: 18px;
    color: #000;
}


.filter-section {
    background: rgba(15, 13, 28, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 20px;
    backdrop-filter: blur(20px);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-group label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.filter-group select {
    background: rgba(20, 18, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.filter-group select option {
    background: #1a1a2e;
    color: #ffffff;
}


.view-toggle {
    display: flex;
    background: rgba(20, 18, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.view-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.view-btn svg {
    width: 18px;
    height: 18px;
}

.view-btn:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.view-btn.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.view-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.product-card {
    opacity: 0;
    animation: scaleIn 0.6s ease-out forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }
.product-card:nth-child(9) { animation-delay: 0.9s; }
.product-card:nth-child(10) { animation-delay: 1.0s; }
.product-card:nth-child(11) { animation-delay: 1.1s; }
.product-card:nth-child(12) { animation-delay: 1.2s; }
.product-card:nth-child(13) { animation-delay: 1.3s; }
.product-card:nth-child(14) { animation-delay: 1.4s; }
.product-card:nth-child(15) { animation-delay: 1.5s; }
.product-card:nth-child(16) { animation-delay: 1.6s; }


.products-grid.list-view {
    grid-template-columns: 1fr;
    gap: 20px;
}

.products-grid.list-view .product-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    max-width: none;
    animation: slideInFromLeft 0.6s ease-out forwards;
}

.products-grid.list-view .product-image {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
    margin-right: 24px;
    margin-bottom: 0;
}

.products-grid.list-view .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.products-grid.list-view .product-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.products-grid.list-view .product-code {
    margin-bottom: 4px;
}

.products-grid.list-view .product-price {
    font-size: 24px;
    margin-bottom: 12px;
}

.products-grid.list-view .product-actions {
    margin-top: 0;
    align-self: flex-start;
}

.products-grid.list-view .add-to-cart-btn {
    padding: 10px 20px;
    font-size: 14px;
}

.products-grid.list-view .click-hint {
    top: 20px;
    right: 20px;
}


.products-section {
    background: linear-gradient(180deg, #000000 0%, #0A0812 50%, #000000 100%);
    padding: 80px 20px;
    min-height: 100vh;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}


.product-card {
    background: rgba(15, 13, 28, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px;
    transition: all 0.4s ease;
    backdrop-filter: blur(30px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}


.wishlist-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.wishlist-icon svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    fill: none;
}

.wishlist-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.wishlist-icon:hover svg {
    color: #ff6b6b;
    transform: scale(1.1);
}

.wishlist-icon.active {
    background: rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

.wishlist-icon.active svg {
    color: #ff6b6b;
    fill: #ff6b6b;
}

.wishlist-icon.active:hover {
    background: rgba(255, 107, 107, 0.3);
    transform: scale(1.1);
}


.wishlist-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(15, 13, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    max-width: 300px;
}

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

.wishlist-notification .notification-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wishlist-notification .notification-icon.added {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid #ff6b6b;
}

.wishlist-notification .notification-icon.removed {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wishlist-notification .notification-icon svg {
    width: 14px;
    height: 14px;
}

.wishlist-notification .notification-icon.added svg {
    color: #ff6b6b;
    fill: #ff6b6b;
}

.wishlist-notification .notification-icon.removed svg {
    color: rgba(255, 255, 255, 0.6);
    fill: none;
}


.free-shipping-progress {
    background: rgba(15, 13, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    margin: 16px 0;
    backdrop-filter: blur(20px);
}

.shipping-progress-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.shipping-icon {
    width: 32px;
    height: 32px;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.shipping-icon svg {
    width: 18px;
    height: 18px;
    color: #22c55e;
}

.shipping-text {
    flex: 1;
}

.shipping-text span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.progress-bar-container {
    margin-top: 12px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
}

.current-amount {
    color: #22c55e;
    font-weight: 600;
}

.target-amount {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}


.free-shipping-progress.achieved {
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.1);
}

.free-shipping-progress.achieved .shipping-text span {
    color: #22c55e;
}

.free-shipping-progress.achieved .progress-fill {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}


.checkout-shipping-progress {
    margin: 20px 0;
    grid-column: 1 / -1;
}

.product-card:hover {
    transform: translateY(-8px);
    background: rgba(20, 18, 35, 0.6);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.product-card:hover .click-hint {
    opacity: 1;
    transform: translateY(0);
}

.click-hint {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.1);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center;
    transition: transform 0.3s ease;
    padding: 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    box-sizing: border-box;
    max-width: 100%;
    max-height: 100%;
}

.product-card:hover .product-image {
    box-shadow: inset 0 2px 15px rgba(255, 255, 255, 0.15);
}

.product-card:hover .product-image img {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.product-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder svg {
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.3);
}

.product-info h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-code {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-specs {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin-bottom: 12px;
    font-style: italic;
}

.product-info p {
    display: none; 
}

.product-price {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.product-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.add-to-cart-btn {
    flex: 1;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    color: #000000;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.product-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.product-price {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.add-to-cart-btn {
    flex: 1;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    color: #000000;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}




.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.cart-modal.active {
    display: flex;
}

.cart-modal-content {
    background: rgba(15, 13, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    backdrop-filter: blur(40px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-header h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}

.close-cart {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.close-cart:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.close-cart svg {
    width: 20px;
    height: 20px;
}

.cart-items {
    padding: 24px;
    max-height: 400px;
    overflow-y: auto;
}

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

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

.cart-item-image {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    flex-shrink: 0;
}

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

.cart-item-info h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

.cart-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-total {
    text-align: center;
    margin-bottom: 20px;
}

.cart-total span {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    color: #000000;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}


.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
}

.product-modal.active {
    display: flex;
}

.product-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.product-modal-content {
    position: relative;
    background: rgba(15, 13, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    backdrop-filter: blur(40px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.product-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-modal-header h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.close-modal svg {
    width: 24px;
    height: 24px;
}

.product-modal-body {
    display: flex;
    gap: 30px;
    padding: 24px;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
}

.product-modal-image {
    flex: 1;
    max-width: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-modal-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.product-modal-image img:hover {
    transform: scale(1.02);
}

.product-modal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-product-code {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-product-price {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
}

.modal-product-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.modal-product-specs {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-style: italic;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
}

.modal-product-details {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-product-details h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-product-details p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.modal-product-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
    padding-top: 20px;
}

.modal-add-to-cart-btn {
    flex: 1;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    color: #000000;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
}

.quantity-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.quantity-display {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}


.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.cart-modal.active {
    display: flex !important;
}

.cart-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.cart-modal-content {
    position: relative;
    background: rgba(15, 13, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    backdrop-filter: blur(40px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    z-index: 10003;
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.cart-modal-header h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.close-cart-modal {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.close-cart-modal svg {
    width: 24px;
    height: 24px;
}

.cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    min-height: 200px;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item-detailed {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.cart-item-detailed:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.cart-item-image-detailed {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-item-image-detailed img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.cart-item-name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.cart-item-code {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-item-specs {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-style: italic;
    line-height: 1.3;
}

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

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px;
}

.quantity-btn-small {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quantity-btn-small:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.quantity-display-small {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.cart-item-price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.cart-item-unit-price {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.cart-item-total-price {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.remove-item-btn {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item-btn:hover {
    background: rgba(255, 71, 87, 0.2);
    border-color: rgba(255, 71, 87, 0.5);
    transform: scale(1.05);
}

.remove-item-btn svg {
    width: 16px;
    height: 16px;
}

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-cart-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.empty-cart-icon svg {
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.3);
}

.cart-empty-state h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-empty-state p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.cart-modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    flex-shrink: 0;
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-total-items {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.cart-total-price {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

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

.continue-shopping-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.continue-shopping-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}


.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10003;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.checkout-modal.active {
    display: flex !important;
    opacity: 1;
}

.checkout-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.checkout-modal-content {
    position: relative;
    background: linear-gradient(145deg, rgba(15, 13, 28, 0.98) 0%, rgba(25, 23, 38, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    width: 95%;
    max-width: 1200px;
    max-height: 95vh;
    overflow: hidden;
    backdrop-filter: blur(40px);
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 10004;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.checkout-modal.active .checkout-modal-content {
    transform: scale(1) translateY(0);
}

.checkout-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 32px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.checkout-modal-header h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.close-checkout-modal {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.close-checkout-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.05);
}

.close-checkout-modal svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.close-checkout-modal:hover svg {
    transform: rotate(90deg);
}


.checkout-progress-container {
    padding: 0 32px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-color: #3b82f6;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transform: scale(1.1);
}

.progress-step.active .step-label {
    color: #ffffff;
    font-weight: 600;
}

.progress-step.completed .step-number {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #10b981;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.progress-step.completed .step-label {
    color: #10b981;
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 16px;
    position: relative;
    overflow: hidden;
}

.progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-step.completed + .progress-line::after {
    width: 100%;
}

.checkout-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 32px 24px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.checkout-modal-body::-webkit-scrollbar {
    width: 6px;
}

.checkout-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.checkout-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.checkout-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}




.checkout-sections {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-left-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout-right-column {
    position: sticky;
    top: 20px;
}

.checkout-sections .checkout-section {
    width: 100%;
    max-width: none;
}

.order-summary-sidebar {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
}

.order-summary-sidebar .section-header h3 {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-summary-sidebar .section-header h3::before {
    content: '🛍️';
    font-size: 18px;
    background: none;
    -webkit-text-fill-color: initial;
}

.checkout-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.checkout-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

.checkout-section:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.section-header h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

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

.checkout-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 16px 12px;
    margin: 0 -12px;
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-name {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;
}

.checkout-item-details {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.3;
}

.checkout-item-price {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.shipping-calculator {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.shipping-header h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shipping-header h4::before {
    content: '🚚';
    font-size: 18px;
}

.shipping-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shipping-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.shipping-row span:last-child {
    font-weight: 600;
    color: #ffffff;
}


.checkout-totals {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-top: 24px;
}

.checkout-subtotal,
.checkout-shipping,
.checkout-fee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.checkout-fee {
    color: rgba(255, 193, 7, 0.9);
    font-weight: 600;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    margin: 8px -12px 12px;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.checkout-options {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.checkout-option {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.checkout-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.checkout-option:hover::before {
    left: 100%;
}

.checkout-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.checkout-option.active {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.checkout-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #3b82f6;
}

.option-text {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}


.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.form-group select option {
    background: #1a1a2e;
    color: #ffffff;
    padding: 12px;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: rgba(16, 185, 129, 0.6);
    background: rgba(16, 185, 129, 0.05);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: rgba(239, 68, 68, 0.6);
    background: rgba(239, 68, 68, 0.05);
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.form-error {
    color: #ef4444;
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.3s ease;
}

.form-group.error .form-error {
    opacity: 1;
    transform: translateY(0);
}


.account-fields {
    overflow: hidden;
    transition: all 0.3s ease;
    max-height: 0;
    opacity: 0;
}

.account-fields.show {
    max-height: 200px;
    opacity: 1;
    margin-top: 16px;
}


.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.payment-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.payment-method:hover::before {
    left: 100%;
}

.payment-method:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.payment-method input[type="radio"]:checked + .payment-content {
    color: #3b82f6;
}

.payment-method:has(input[type="radio"]:checked) {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.payment-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.payment-method input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #3b82f6;
}

.payment-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.payment-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
}

.payment-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.payment-toggle svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
}

.payment-details {
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    display: none;
}

.payment-details.active {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}


.checkout-modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 32px;
    display: flex;
    gap: 20px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.back-to-cart-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.back-to-cart-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.place-order-btn {
    flex: 2;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.place-order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.place-order-btn:hover::before {
    left: 100%;
}

.place-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.place-order-btn:active {
    transform: translateY(-1px);
}

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

.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.loading-spinner svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}


@media (max-width: 1024px) {
    .checkout-sections {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .checkout-right-column {
        position: static;
        order: -1; 
    }
    
    .checkout-modal-content {
        width: 98%;
        max-height: 98vh;
    }
    
    .checkout-modal-header,
    .checkout-modal-body,
    .checkout-modal-footer {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 768px) {
    .checkout-modal-header h2 {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .checkout-options {
        flex-direction: column;
        gap: 12px;
    }
    
    .checkout-modal-footer {
        flex-direction: column;
        gap: 16px;
    }
    
    .checkout-progress {
        gap: 8px;
    }
    
    .progress-line {
        margin: 0 8px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 12px;
    }
    
    .checkout-sections {
        gap: 20px;
    }
    
    .checkout-modal-body {
        padding: 0 20px 20px;
    }
    
    .checkout-modal-header,
    .checkout-modal-footer {
        padding: 20px;
    }
    
    .checkout-progress-container {
        padding: 0 20px 20px;
    }
}


.order-confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10005;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.order-confirmation-modal.active {
    display: flex !important;
    opacity: 1;
}

.order-confirmation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.order-confirmation-content {
    background: linear-gradient(145deg, rgba(15, 13, 28, 0.98) 0%, rgba(25, 23, 38, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    padding: 48px;
    text-align: center;
    max-width: 520px;
    width: 90%;
    backdrop-filter: blur(40px);
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10006;
}

.order-confirmation-modal.active .order-confirmation-content {
    transform: scale(1) translateY(0);
}

.confirmation-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 
        0 20px 40px rgba(16, 185, 129, 0.4),
        0 0 0 8px rgba(16, 185, 129, 0.1);
    animation: successPulse 2s ease-in-out infinite;
    position: relative;
}

.confirmation-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: ripple 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.confirmation-icon svg {
    width: 48px;
    height: 48px;
    color: #ffffff;
    stroke-width: 3;
}

.order-confirmation-content h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.order-confirmation-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 500;
}

.order-details {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.order-details p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.order-details p:last-child {
    margin-bottom: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.order-details strong {
    color: #ffffff;
    font-weight: 600;
}

.order-details span {
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.continue-shopping-final-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    padding: 18px 36px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.continue-shopping-final-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.continue-shopping-final-btn:hover::before {
    left: 100%;
}

.continue-shopping-final-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.continue-shopping-final-btn:active {
    transform: translateY(-1px);
}


@media (max-width: 768px) {
    .order-confirmation-content {
        padding: 32px 24px;
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .confirmation-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }
    
    .confirmation-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .order-confirmation-content h2 {
        font-size: 24px;
    }
    
    .order-confirmation-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .order-details {
        padding: 20px;
        margin-bottom: 24px;
    }
    
    .continue-shopping-final-btn {
        padding: 16px 28px;
        font-size: 15px;
        width: 100%;
    }
}
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.order-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.order-details p:last-child {
    margin-bottom: 0;
}

.continue-shopping-final-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    color: #000000;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.continue-shopping-final-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}


.checkout-progress-container {
    margin-bottom: 30px;
}

.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 100px;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 1;
}

.progress-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 20px;
    transition: all 0.3s ease;
}

.progress-step.completed + .progress-line {
    background: rgba(255, 255, 255, 0.3);
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.progress-step.completed .step-number {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.step-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    transition: all 0.3s ease;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}


.checkout-options {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 4px;
}

.checkout-option {
    flex: 1;
    padding: 12px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.checkout-option input[type="radio"] {
    display: none;
}

.checkout-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.checkout-option.active {
    background: rgba(255, 255, 255, 0.1);
}

.option-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.checkout-option.active .option-text {
    color: #ffffff;
}


.account-fields {
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 16px 0;
}


.payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 8px;
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.payment-method:has(input:checked) {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.payment-method input[type="radio"] {
    margin: 0;
    accent-color: #ffffff;
}

.payment-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.payment-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.payment-toggle {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-toggle:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.payment-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}


.payment-details {
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    margin: 4px 0 12px 0;
}

.payment-details.active {
    max-height: 100px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-details p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}


.section-header h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 16px 0;
}


.trust-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 6px;
    font-size: 12px;
    color: rgba(74, 222, 128, 0.9);
    flex: 1;
    min-width: 0;
    justify-content: center;
}

.badge-icon {
    font-size: 14px;
    flex-shrink: 0;
}


.shipping-calculator {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.shipping-header h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 12px 0;
}

.shipping-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shipping-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.shipping-row span:first-child {
    color: rgba(255, 255, 255, 0.7);
}

.shipping-row span:last-child {
    color: #ffffff;
    font-weight: 500;
}


.checkout-totals {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
}

.checkout-subtotal,
.checkout-shipping,
.checkout-fee {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
}

.checkout-fee {
    color: rgba(255, 193, 7, 0.8);
    font-weight: 500;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.section-header h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header h3 span {
    font-size: 16px;
}

.required-note,
.security-badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.security-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
}

.required-note {
    background: rgba(255, 193, 7, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(255, 193, 7, 0.3);
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
}

.free-badge {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.fee-amount {
    color: #fbbf24;
    font-weight: 600;
}

.total-amount {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.form-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
    display: none;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.form-group.error .form-error {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.form-group.success::after {
    content: '✓';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #22c55e;
    font-weight: bold;
    font-size: 16px;
}

.form-group {
    position: relative;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.payment-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.payment-method:hover::before {
    left: 100%;
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.payment-method input[type="radio"]:checked + label {
    color: #ffffff;
}

.payment-method:has(input:checked) {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.payment-method:has(input:checked)::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    animation: checkmark 0.3s ease-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

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

.payment-name {
    font-weight: 600;
    font-size: 16px;
}

.payment-desc {
    font-size: 13px;
    opacity: 0.7;
}

.place-order-btn {
    flex: 2;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    color: #000000;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.place-order-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.place-order-btn:disabled {
    cursor: not-allowed;
    transform: none;
}

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

.loading-spinner {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
}

.loading-spinner svg {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

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

.checkout-btn {
    flex: 1;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    color: #000000;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}


@media (max-width: 1200px) {
    .shop-layout {
        flex-direction: column;
    }
    
    .cart-sidebar {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 20px auto 0;
        top: 0;
    }
    
    .cart-sidebar.collapsed {
        width: 100%;
    }
    
    .floating-cart-icon {
        top: 80px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
    
    .floating-cart-icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 768px) {
    .shop-title {
        font-size: 36px;
    }
    
    .shop-subtitle {
        font-size: 16px;
    }
    
    .filter-container {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .filter-group {
        justify-content: space-between;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shop-layout {
        padding: 0 15px;
    }
    
    .cart-sidebar {
        margin-top: 40px;
    }
    
    .floating-cart-icon {
        width: 50px;
        height: 50px;
        top: 70px;
        right: 10px;
    }
    
    .floating-cart-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .floating-cart-icon .cart-count {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .product-modal-content {
        width: 95%;
        margin: 20px;
        max-height: 95vh;
    }
    
    .product-modal-body {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-modal-image {
        max-width: 100%;
    }
    
    .modal-product-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .quantity-selector {
        align-self: center;
    }
    
    .cart-modal-content {
        width: 95%;
        margin: 10px;
        max-height: 95vh;
    }
    
    .cart-item-detailed {
        flex-direction: column;
        gap: 12px;
    }
    
    .cart-item-image-detailed {
        width: 60px;
        height: 60px;
        align-self: center;
    }
    
    .cart-item-controls {
        justify-content: center;
    }
    
    .cart-item-price-section {
        align-items: center;
        text-align: center;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .cart-summary {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .checkout-sections {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkout-modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .checkout-modal-footer {
        flex-direction: column;
    }
    
    .payment-logo {
        width: 35px;
        height: 22px;
    }
    
    .payment-icons {
        gap: 6px;
    }
    
    .payment-method label {
        gap: 10px;
        font-size: 13px;
    }
    
    .payment-instruction {
        padding: 16px;
        gap: 12px;
    }
    
    .instruction-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .instruction-text h4 {
        font-size: 14px;
    }
    
    .instruction-text p {
        font-size: 13px;
    }
    
    
    .checkout-progress {
        gap: 10px;
        padding: 16px;
    }
    
    .progress-step {
        max-width: 80px;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .step-label {
        font-size: 11px;
    }
    
    .progress-line {
        margin: 0 10px;
    }
    
    .checkout-options {
        flex-direction: column;
        gap: 8px;
        padding: 3px;
    }
    
    .checkout-option {
        padding: 10px 14px;
    }
    
    .option-text {
        font-size: 13px;
    }
    
    .payment-method {
        padding: 14px;
        gap: 10px;
    }
    
    .payment-name {
        font-size: 13px;
    }
    
    .payment-desc {
        font-size: 11px;
    }
    
    .payment-toggle svg {
        width: 14px;
        height: 14px;
    }
    
    .payment-details.active {
        padding: 10px 14px;
    }
    
    .payment-details p {
        font-size: 12px;
    }
    
    
    .trust-badges {
        gap: 6px;
    }
    
    .trust-badge {
        padding: 5px 8px;
        font-size: 11px;
        min-width: 0;
        flex: 1;
    }
    
    .badge-icon {
        font-size: 12px;
    }
    
    
    .shipping-calculator {
        padding: 12px;
    }
    
    .shipping-header h4 {
        font-size: 13px;
    }
    
    .shipping-row {
        font-size: 12px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .section-header h3 {
        font-size: 16px;
    }
    
    .payment-method {
        padding: 16px;
        gap: 12px;
    }
    
    .payment-method:has(input:checked)::after {
        top: 8px;
        right: 8px;
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    
    .required-note {
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .shop-hero {
        min-height: 50vh;
    }
    
    .shop-title {
        font-size: 28px;
    }
    
    .products-section {
        padding: 60px 15px;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-image img {
        padding: 10px;
    }
    
    .product-info h3 {
        font-size: 16px;
    }
    
    .product-price {
        font-size: 20px;
    }
    
    .click-hint {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .product-modal-image {
        max-width: 100%;
        padding: 20px;
    }
    
    .product-modal-image img {
        max-height: 300px;
        padding: 15px;
    }
    
    .product-actions {
        flex-direction: row;
    }
    
    
    .checkout-progress {
        padding: 12px;
        gap: 5px;
    }
    
    .progress-step {
        max-width: 60px;
    }
    
    .step-number {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
    
    .step-label {
        font-size: 10px;
    }
    
    .progress-line {
        margin: 0 8px;
    }
    
    .checkout-option {
        padding: 8px 12px;
    }
    
    .option-text {
        font-size: 12px;
    }
    
    .payment-method {
        padding: 12px;
        gap: 8px;
    }
    
    .payment-name {
        font-size: 12px;
    }
    
    .payment-desc {
        font-size: 10px;
    }
    
    .payment-toggle {
        padding: 2px;
    }
    
    .payment-toggle svg {
        width: 12px;
        height: 12px;
    }
    
    .payment-details.active {
        padding: 8px 12px;
    }
    
    .payment-details p {
        font-size: 11px;
    }
    
    
    .trust-badges {
        gap: 4px;
        flex-direction: column;
    }
    
    .trust-badge {
        padding: 4px 6px;
        font-size: 10px;
        justify-content: flex-start;
    }
    
    .badge-icon {
        font-size: 11px;
    }
    
    
    .shipping-calculator {
        padding: 10px;
    }
    
    .shipping-header h4 {
        font-size: 12px;
    }
    
    .shipping-row {
        font-size: 11px;
    }
}


.main-content {
    opacity: 1 !important;
}

.products-grid {
    display: grid !important;
}

.product-card {
    display: block !important;
    opacity: 1 !important;
}


body {
    overflow: auto !important;
}


.add-to-cart-confirmation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 13, 28, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0;
    z-index: 10010;
    backdrop-filter: blur(30px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: confirmationSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;
    width: 90%;
}

@keyframes confirmationSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) translateY(0);
    }
}

.confirmation-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.confirmation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: confirmationIconPulse 0.6s ease-out;
}

@keyframes confirmationIconPulse {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.confirmation-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.confirmation-text h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.confirmation-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.confirmation-price {
    color: #4ade80;
    font-size: 18px;
    font-weight: 700;
    margin-top: 4px;
}

.confirmation-actions {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: 8px;
}

.continue-shopping,
.view-cart {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.continue-shopping {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.continue-shopping:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.view-cart {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    color: #000000;
}

.view-cart:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}


.mini-cart-preview {
    position: fixed;
    background: rgba(15, 13, 28, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    width: 350px;
    max-height: 400px;
    z-index: 10005;
    backdrop-filter: blur(30px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: miniCartSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

@keyframes miniCartSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.mini-cart-header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.mini-cart-header h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.mini-cart-items {
    max-height: 240px;
    overflow-y: auto;
    padding: 12px 0;
}

.mini-cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    transition: background 0.2s ease;
    position: relative;
}

.mini-cart-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.mini-item-image {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.mini-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.mini-item-placeholder {
    color: rgba(0, 0, 0, 0.4);
    font-size: 10px;
    font-weight: 600;
}

.mini-item-info {
    flex: 1;
    min-width: 0;
}

.mini-item-name {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-item-details {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}

.mini-item-price {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    margin-right: 8px;
}

.mini-remove-btn {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.2s ease;
    opacity: 0;
    transform: scale(0.8);
}

.mini-cart-item:hover .mini-remove-btn {
    opacity: 1;
    transform: scale(1);
}

.mini-remove-btn:hover {
    background: rgba(255, 71, 87, 0.2);
    border-color: rgba(255, 71, 87, 0.5);
    transform: scale(1.1);
}

.mini-cart-more {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-style: italic;
    padding: 8px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-cart-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.mini-cart-total {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.mini-view-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    color: #000000;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mini-view-cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}


@media (max-width: 768px) {
    .add-to-cart-confirmation {
        max-width: 320px;
        width: 85%;
    }
    
    .confirmation-content {
        padding: 20px;
        gap: 14px;
    }
    
    .confirmation-icon {
        width: 50px;
        height: 50px;
    }
    
    .confirmation-icon svg {
        width: 24px;
        height: 24px;
    }

    
    .wishlist-icon {
        width: 32px;
        height: 32px;
        top: 12px;
        left: 12px;
    }

    .wishlist-icon svg {
        width: 16px;
        height: 16px;
    }

    .wishlist-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 12px 16px;
        font-size: 13px;
    }

    .wishlist-notification .notification-icon {
        width: 20px;
        height: 20px;
    }

    .wishlist-notification .notification-icon svg {
        width: 12px;
        height: 12px;
    }

    
    .free-shipping-progress {
        padding: 16px;
        margin: 12px 0;
    }

    .shipping-progress-header {
        gap: 10px;
        margin-bottom: 12px;
    }

    .shipping-icon {
        width: 28px;
        height: 28px;
    }

    .shipping-icon svg {
        width: 16px;
        height: 16px;
    }

    .shipping-text span {
        font-size: 13px;
    }

    .progress-bar {
        height: 6px;
    }

    .progress-labels {
        font-size: 11px;
        margin-top: 6px;
    }
}
    
    .confirmation-text h4 {
        font-size: 18px;
    }
    
    .confirmation-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .mini-cart-preview {
        width: 300px;
        max-width: 90vw;
    }
    
    .mini-cart-item {
        padding: 10px 16px;
        gap: 10px;
    }
    
    .mini-item-image {
        width: 35px;
        height: 35px;
    }
    
    .mini-item-name {
        font-size: 12px;
    }
    
    .mini-item-details {
        font-size: 10px;
    }
    
    .mini-item-price {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .add-to-cart-confirmation {
        max-width: 280px;
        width: 90%;
    }
    
    .mini-cart-preview {
        width: 280px;
        right: 10px !important;
    }
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}


.modal-blocked-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: rgba(15, 13, 28, 0.95);
    border: 1px solid rgba(239, 68, 68, 0.5);
    border-radius: 12px;
    padding: 16px 20px;
    color: #ffffff;
    z-index: 10001;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.modal-blocked-notification.show {
    transform: translateX(0);
}

.modal-blocked-notification .notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-blocked-notification svg {
    width: 20px;
    height: 20px;
    color: #ef4444;
}


.add-to-cart-confirmation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 13, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    color: #ffffff;
    z-index: 10002;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    min-width: 320px;
    animation: confirmationSlideIn 0.3s ease-out;
}

@keyframes confirmationSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.confirmation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.confirmation-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.confirmation-text h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
}

.confirmation-text p {
    margin: 0 0 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.confirmation-price {
    font-size: 16px;
    font-weight: 600;
    color: #4ade80;
}

.confirmation-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.continue-shopping, .view-cart {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.continue-shopping {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.continue-shopping:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.view-cart {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
}

.view-cart:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    transform: translateY(-1px);
}


.mini-cart-preview {
    position: fixed;
    background: rgba(15, 13, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    color: #ffffff;
    z-index: 10001;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    min-width: 300px;
    max-width: 400px;
    animation: miniCartSlideIn 0.2s ease-out;
}

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

.mini-cart-header h4 {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.mini-cart-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.mini-cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.mini-item-image {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    overflow: hidden;
}

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

.mini-item-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.mini-item-info {
    flex: 1;
}

.mini-item-name {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.9);
}

.mini-item-details {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.mini-item-price {
    font-size: 12px;
    font-weight: 600;
    color: #4ade80;
}

.mini-remove-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.mini-remove-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.mini-cart-more {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.mini-cart-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-cart-total {
    font-size: 14px;
    font-weight: 600;
    color: #4ade80;
}

.mini-view-cart-btn {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mini-view-cart-btn:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    transform: translateY(-1px);
}


.wishlist-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: rgba(15, 13, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    color: #ffffff;
    z-index: 10001;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wishlist-notification.show {
    transform: translateX(0);
}

.notification-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-icon.added svg {
    color: #ef4444;
    fill: #ef4444;
}

.notification-icon.removed svg {
    color: rgba(255, 255, 255, 0.5);
    fill: none;
}


@media (max-width: 768px) {
    .mini-cart-preview {
        left: 20px;
        right: 20px;
        min-width: auto;
        max-width: none;
    }
    
    .add-to-cart-confirmation {
        left: 20px;
        right: 20px;
        transform: translateY(-50%);
        min-width: auto;
    }
    
    .cart-badge {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: -6px;
        right: -6px;
    }
}

.bug-report-notice {
    animation: fadeInSlide 0.5s ease-out;
}

.bug-report-notice:hover {
    background: rgba(255, 193, 7, 0.15) !important;
    border-color: rgba(255, 193, 7, 0.4) !important;
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

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


@media (max-width: 768px) {
    .bug-report-notice {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .bug-report-notice p {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .bug-report-notice {
        margin: 12px 0;
        padding: 10px 12px;
    }
    
    .bug-report-notice p {
        font-size: 12px !important;
    }
}