.store-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.store-header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.store-header p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0.3rem auto;
}

/* Professional Ecommerce Grid */
.ecommerce-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out;
    width: 100%;
    box-sizing: border-box;
}

/* Tablet responsive - 3 columns */
@media (max-width: 1024px) {
    .ecommerce-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        gap: 12px;
        padding: 15px;
    }
}

/* Mobile responsive - 2 columns */
@media (max-width: 768px) {
    .ecommerce-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 7px;
        padding: 10px 5px;
        max-width: 100%;
    }
    
    .card-image-wrapper {
        height: 120px;
    }
    
    .card-content {
        padding: 6px;
    }
    
    .product-name {
        font-size: 0.7rem;
        margin-bottom: 3px;
    }
    
    .price-section {
        padding: 4px 0;
        margin-bottom: 6px;
    }
    
    .price-value {
        font-size: 0.9rem;
    }
    
    .btn-add-cart, .btn-buy-now {
        padding: 5px 6px;
        font-size: 9px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .ecommerce-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 5px;
        padding: 8px 3px;
    }
    
    .card-image-wrapper {
        height: 100px;
    }
    
    .card-content {
        padding: 4px;
    }
    
    .product-name {
        font-size: 0.6rem;
    }
    
    .price-value {
        font-size: 0.8rem;
    }
    
    .btn-add-cart, .btn-buy-now {
        padding: 4px 5px;
        font-size: 8px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Professional Ecommerce Card */
.ecommerce-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.12);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: cardSlideIn 0.8s ease-out;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ecommerce-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.3);
}

.ecommerce-card:nth-child(1) { animation-delay: 0.1s; }
.ecommerce-card:nth-child(2) { animation-delay: 0.2s; }
.ecommerce-card:nth-child(3) { animation-delay: 0.3s; }
.ecommerce-card:nth-child(4) { animation-delay: 0.4s; }

/* Card Badge Styles */
.card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 10;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.card-badge.premium {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.card-badge.trending {
    background: linear-gradient(135deg, #ff9f43, #ff6348);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 159, 67, 0.4);
}

.card-badge.new {
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
    color: white;
    box-shadow: 0 4px 15px rgba(29, 209, 161, 0.4);
}

.card-badge.featured {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.card-badge.limited {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

/* Image Wrapper with Centered Images */
.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1.05);
}

.ecommerce-card:hover .product-image {
    transform: scale(1.1);
    filter: brightness(1.1) saturate(1.1);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.ecommerce-card:hover .image-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    transform: translateY(20px);
}

.ecommerce-card:hover .quick-view-btn {
    transform: translateY(0);
}

.quick-view-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Card Content */
.card-content {
    padding: 8px;
    background: white;
}

.product-category {
    color: #667eea;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    opacity: 0.8;
}

.product-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 4px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.ecommerce-card:hover .product-name {
    color: #667eea;
}

.product-summary {
    color: #718096;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* Price Section */
.price-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6px;
    padding: 3px 0;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 1px;
}

.currency-symbol {
    font-size: 0.7rem;
    font-weight: 600;
    color: #667eea;
}

.price-value {
    font-size: 0.9rem;
    font-weight: 800;
    color: #2d3748;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shipping-badge {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 3px 6px;
    border-radius: 8px;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    animation: shippingBounce 3s infinite;
}

@keyframes shippingBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.btn-add-cart, .btn-buy-now {
    padding: 6px 8px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-cart {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-buy-now {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-buy-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-buy-now:hover::before {
    left: 100%;
}

.btn-buy-now:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
    .container {
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .ecommerce-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        padding: 10px 5px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .ecommerce-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px 10px;
    }
    
    .card-image-wrapper {
        height: 180px;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .btn-add-cart, .btn-buy-now {
        font-size: 13px;
    }
    
    .price-value {
        font-size: 1.6rem;
    }
    
    .card-content {
        padding: 10px;
    }
}

/* Quick View Modal Styles */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quick-view-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.quick-view-modal.show .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    color: #666;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.modal-image {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .modal-image img {
        width: 100%;
        height: auto;
        max-height: 250px !important;
        object-fit: contain;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
}

.modal-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-category {
    color: #667eea;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.3;
}

.modal-description {
    color: #718096;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.modal-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
    padding: 12px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.modal-price .currency-symbol {
    font-size: 1rem;
    font-weight: 600;
    color: #667eea;
}

.modal-price .price-value {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 8px 8px 8px;
}

.modal-actions .btn-add-cart,
.modal-actions .btn-buy-now {
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .modal-image {
        height: 300px;
    }
    
    .modal-image img {
        max-height: 250px;
    }
    
    .modal-details {
        padding: 30px 25px;
    }
    
    .modal-actions {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
        overflow-y: auto;
    }
}

/* Enhanced Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    gap: 25px;
    padding: 0 20px;
}

.tab-button {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
    border: 2px solid rgba(102, 126, 234, 0.2);
    padding: 16px 32px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    justify-content: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.tab-button:hover::before {
    left: 100%;
}

.tab-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
}

.tab-button.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    border-color: transparent;
    transform: translateY(-2px);
}

.tab-button.active:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.tab-button i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.tab-button:hover i {
    transform: scale(1.1);
}

.tab-button.active i {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Category Section Styles */
.category-section {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.category-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Product Card Enhancements */
.product-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

/* Frame Image Styles */
.frame-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.25);
    transition: transform 0.3s ease;
}

.frame-image:hover {
    transform: scale(1.02);
}

/* Coming Soon Section */
.coming-soon-section {
    background: linear-gradient(135deg, #f6f8ff 0%, #e9ecf7 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 40px auto;
    border: 2px solid rgba(102, 126, 234, 0.1);
    max-width: 800px;
}

.coming-soon-section h2 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
}

.coming-soon-content {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.coming-soon-content strong {
    color: #667eea;
}

/* Responsive Design for Tabs */
@media (max-width: 768px) {
    .category-tabs {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    .tab-button {
        font-size: 13px;
        padding: 10px 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 20px 10px;
        gap: 20px;
    }
    
    .coming-soon-section {
        margin: 20px 10px;
        padding: 30px 20px;
    }
}

.product-card.featured {
    padding: 0;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #667eea;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.product-card.featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.25), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image-container {
    text-align: center;
    margin-bottom: 8px;
}

.book-cover {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s;
}

.book-cover:hover {
    transform: scale(1.05);
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.sale-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #667eea;
    text-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
}

.product-info {
    text-align: left;
    padding: 0 15px !important;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 5px;
    line-height: 1.2;
}

.product-description {
    font-size: 0.75rem;
    line-height: 1.3;
    color: #4a5568;
    margin-bottom: 8px;
    padding: 0;
}

.price-display {
    margin-bottom: 10px;
}

/* Product Pricing Section */
.product-pricing {
    margin: 10px 0 15px 0;
    padding: 8px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.price-display > div:first-child {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.currency {
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 600;
    margin-top: 2px;
}

.price-amount {
    font-size: 2.4rem;
    color: #2d3748;
    font-weight: 700;
    line-height: 0.9;
}

.price-text {
    font-size: 0.9rem;
    color: #38a169;
    font-weight: 600;
    padding: 3px 10px;
    background: #f0fff4;
    border-radius: 12px;
    border: 1px solid #38a169;
    display: inline-block;
}

.cost-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #667eea;
    text-align: center;
    display: block;
}
    margin: 25px 0;
}

.feature {
    background: #f0f9ff;
    color: #1e40af;
    padding: 10px 15px;
    border-radius: 25px;
    text-align: center;
    font-weight: 500;
    border: 2px solid #dbeafe;
}

.buy-button.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 8px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 25px;
    box-shadow: 0 1px 4px rgba(102, 126, 234, 0.2);
    letter-spacing: 0.1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    gap: 4px;
    border: 1px solid #667eea;
    margin: 0 2px;
}

.buy-button.primary:hover {
    transform: translateY(-0.5px);
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

.guarantee {
    text-align: center;
    color: #666;
    margin-top: 20px;
}

.testimonials {
    background: #f8fafc;
    padding: 40px;
    margin: 40px 20px;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials h2 {
    color: #667eea;
    margin-bottom: 30px;
    font-size: 2rem;
}

.testimonial {
    background: white;
    padding: 25px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-style: italic;
}

.testimonial cite {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #667eea;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.product-description {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 20px;
}

.buy-button {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 25px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    gap: 6px;
    border: 1px solid #ff6b35;
}

.buy-button:hover {
    background: linear-gradient(135deg, #ff5722 0%, #e65100 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    border-color: #ff5722;
}

.shopify-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}
    right: 10px;
    background: #96bf48;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.coming-soon {
    text-align: center;
    padding: 80px 20px;
    background: #f8fafc;
    margin: 40px auto;
    border-radius: 20px;
    max-width: 600px;
}

.coming-soon h2 {
    font-size: 2rem;
    color: #4a5568;
    margin-bottom: 15px;
}

.coming-soon p {
    font-size: 1rem;
    color: #718096;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Checkout Modal Styles - Mobile First, Minimal & Beautiful */
.checkout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px 0;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.checkout-container {
    background: white;
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    margin: 20px 8px;
    animation: slideUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px 16px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.checkout-header h2 {
    margin: 0;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 1.6rem;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.checkout-content {
    padding: 16px 18px;
}

.cart-section, .address-section {
    margin-bottom: 20px;
}

.previous-addresses-section {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #bfdbfe;
}

.previous-addresses-section h3 {
    color: #1e40af;
    margin: 0 0 10px 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.previous-addresses-section select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: white;
    font-size: 13px;
    color: #334155;
}

.previous-addresses-section select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.cart-section h3, .address-section h3 {
    margin: 0 0 12px 0;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 700;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.item-name {
    flex: 1;
    font-weight: 600;
    color: #374151;
    font-size: 13px;
    padding-right: 8px;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 10px 0 0;
}

.item-controls button {
    width: 26px;
    height: 26px;
    border: 1px solid #cbd5e1;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.item-controls button:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    transform: scale(1.08);
}

.item-controls .remove-btn {
    background: #fee2e2;
    border-color: #fca5a5;
    font-size: 12px;
}

.item-controls .remove-btn:hover {
    background: #fecaca;
    border-color: #f87171;
    transform: scale(1.12);
}

.quantity {
    font-weight: 700;
    min-width: 18px;
    text-align: center;
    font-size: 13px;
    color: #1f2937;
}

.item-price {
    font-weight: 700;
    color: #059669;
    font-size: 14px;
}

.cart-total {
    padding: 12px 0 6px;
    text-align: right;
    font-size: 1.1rem;
    color: #059669;
    border-top: 2px solid #e5e7eb;
    margin-top: 6px;
}

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.form-row input {
    flex: 1;
}

input, textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.2s;
    color: #1f2937;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

textarea {
    resize: vertical;
    min-height: 60px;
}

.payment-section {
    margin: 16px 0 12px;
}

.payment-section h3 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.payment-options label:hover {
    border-color: #667eea;
    background: #f8faff;
}

.payment-options input[type="radio"]:checked + label {
    border-color: #667eea;
    background: #eff6ff;
}

.payment-options input[type="radio"] {
    width: auto;
    margin: 0;
}

.payment-options i {
    color: #667eea;
}

.payment-section p {
    color: #6b7280;
    font-size: 0.75rem;
    margin: 8px 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.payment-section p i {
    color: #10b981;
}

.place-order-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.place-order-btn:active {
    transform: translateY(0);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    opacity: 0;
}

/* Mobile Responsive - Perfect for all screen sizes */
@media (max-width: 768px) {
    .checkout-overlay {
        padding: 0;
    }
    
    .checkout-container {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }
    
    .checkout-header {
        border-radius: 0;
        padding: 20px 16px 14px;
        padding-top: max(20px, env(safe-area-inset-top));
    }
    
    .checkout-header h2 {
        font-size: 1.1rem;
    }
    
    .close-btn {
        width: 36px;
        height: 36px;
        font-size: 1.8rem;
    }
    
    .checkout-content {
        padding: 14px 16px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .cart-item {
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px 0;
    }
    
    .item-name {
        width: 100%;
        padding-right: 0;
        margin-bottom: 6px;
    }
    
    .item-controls {
        margin: 0;
    }
    
    .item-price {
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .checkout-header h2 {
        font-size: 1rem;
    }
    
    input, textarea {
        font-size: 14px;
        padding: 11px 12px;
    }
    
    .place-order-btn {
        font-size: 14px;
        padding: 13px 18px;
    }
    
    .cart-total {
        font-size: 1rem;
    }
}

/* Address Preview Styling - Minimal & Clean */
.address-preview {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.preview-header h4 {
    margin: 0;
    color: #1f2937;
    font-size: 0.95rem;
    font-weight: 700;
}

.edit-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.edit-btn:hover {
    background: #5a67d8;
    transform: scale(1.05);
}

.address-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.customer-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.customer-info strong {
    color: #1f2937;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.customer-info .phone {
    color: #667eea;
    font-size: 0.85rem;
    display: block;
    margin-top: 3px;
    font-weight: 500;
}

.customer-info .language {
    display: block;
    color: #667eea;
    font-size: 0.85rem;
    margin-top: 3px;
    font-weight: 500;
}

.address-info {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.85rem;
}

.address-line {
    margin-bottom: 4px;
    color: #374151;
}

.location {
    color: #6b7280;
    font-weight: 500;
}

/* Mobile Adjustments for Address Preview */
@media (max-width: 768px) {
    .address-preview {
        padding: 12px;
        margin-bottom: 14px;
    }
    
    .preview-header h4 {
        font-size: 0.9rem;
    }
    
    .edit-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    
    .address-card {
        padding: 10px;
    }
    
    .customer-info strong {
        font-size: 0.9rem;
    }
    
    .customer-info .phone,
    .customer-info .language {
        font-size: 0.8rem;
    }
    
    .address-info {
        font-size: 0.8rem;
    }
}

.address-line {
    margin-bottom: 5px;
}

.location {
    font-weight: 500;
    color: #2d3748;
}

/* Button Group Styling */
.button-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 15px 15px 20px 15px;
    width: calc(100% - 30px);
    align-items: stretch;
}

.cart-button {
    background: linear-gradient(135deg, #ff9900 0%, #ff8c00 100%);
    color: #232f3e;
    border: none;
    padding: 10px 8px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 25px;
    box-shadow: 0 1px 4px rgba(255, 153, 0, 0.2);
    letter-spacing: 0.1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    gap: 4px;
    border: 1px solid #ff8c00;
    margin: 0 2px;
}

.cart-button.added {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white !important;
    border-color: #38a169;
}

.cart-button.added:hover {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    color: white !important;
    border-color: #2f855a;
}

.cart-button:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #ff7700 100%);
    transform: translateY(-0.5px);
    box-shadow: 0 2px 6px rgba(255, 153, 0, 0.3);
    border-color: #ff7700;
}

/* Language Section Styling */
.language-section {
    display: flex;
    align-items: center;
    margin-right: 10px;
    order: 1;
}

.language-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d 0%, #f093fb 100%);
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

.language-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, #ff5a8e 0%, #ee82ee 100%);
}

/* Header Cart Button - Matching Language Button Style */
.header-cart-btn {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    margin-right: 12px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    border: none;
}

.header-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.5);
    color: white;
    text-decoration: none;
}

.header-cart-btn i {
    font-size: 14px;
    color: white;
}

.header-cart-counter {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    padding: 0 4px;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

/* Remove old cart icon styles */
.cart-section {
    display: none !important;
}

.cart-icon {
    display: none !important;
}

.cart-counter {
    display: none !important;
}

/* Cart Page Styling */
.cart-header {
    margin-bottom: 40px;
}

.cart-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb-link {
    color: #667eea;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-link:hover {
    color: #5a67d8;
}

.cart-title {
    font-size: 1.3rem;
    color: #2d3748;
    margin: 0;
    padding: 10px 0;
    font-weight: 600;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.empty-cart {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.empty-cart-icon {
    font-size: 4rem;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.empty-cart h2 {
    color: #2d3748;
    margin-bottom: 10px;
}

.empty-cart p {
    color: #666;
    margin-bottom: 30px;
}

.continue-shopping-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.continue-shopping-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Cart Page Items - Separate from checkout modal cart items */
.cart-page-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Keep cart-item for checkout modal */
.cart-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #667eea;
    font-size: 1rem;
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 140px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f7fafc;
    padding: 5px 15px;
    border-radius: 25px;
}

.item-total {
    font-weight: 600;
    color: #059669;
    font-size: 1.1rem;
    text-align: center;
}

.qty-btn {
    background: #667eea;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #5a67d8;
    transform: scale(1.1);
}

.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    color: #2d3748;
}

.remove-btn {
    color: #e53e3e;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #fed7d7;
    color: #c53030;
}

.cart-summary {
    position: sticky;
    top: 20px;
}

.summary-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.summary-card h3 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2d3748;
    border-bottom: none;
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid #e2e8f0;
}

.free-shipping {
    color: #38a169;
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.secure-checkout {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

@media (max-width: 768px) {
    .cart-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 10px;
        padding: 15px;
    }
    
    .cart-title {
        font-size: 1.3rem;
        margin: 0 15px;
    }
    
    .cart-header {
        margin: 0 15px;
        padding: 15px 0;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cart-item-controls {
        justify-content: center;
    }
    
    .button-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .language-section {
        margin-right: 8px;
        order: 1;
    }
    
    .language-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .cart-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        margin-right: 10px;
        order: 2;
        margin-left: 0;
    }
    
    .cart-section * {
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .cart-icon {
        width: 38px;
        height: 38px;
        background: transparent;
        color: #232f3e !important;
        border: 2px solid transparent;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .cart-icon:hover {
        background: #f0f2f2;
        color: #e47911;
        border-color: #e47911;
    }
    
    .cart-counter {
        position: absolute;
        top: -4px;
        right: -4px;
        background: #ff9900;
        color: #232f3e;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #232f3e;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 24px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        order: 4;
        margin-left: auto;
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
        background: #232f3e;
        border-radius: 1px;
        transition: all 0.3s ease;
    }
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(72, 187, 120, 0.3);
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
    display: none;
}

.cart-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.notification-content i {
    font-size: 1.2rem;
}
