/* ====================================================
   MB BEAUTY STUDIO - PRODUCTS PAGE
   Professional Premium Design
==================================================== */

/* ====================================================
   1. HERO SECTION
==================================================== */
.products-page .products-hero {
    background: linear-gradient(135deg, #fff5f8 0%, #ffe6f0 50%, #ffd6e8 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.products-page .products-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 162, 192, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.products-page .products-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 147, 0.08) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -20px) rotate(3deg); }
    66% { transform: translate(-20px, 15px) rotate(-3deg); }
}

.products-page .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.products-page .hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 16px;
    line-height: 1.2;
}

.products-page .hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-page .hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.products-page .stat-item {
    text-align: center;
}

.products-page .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #e8a2c0;
    line-height: 1;
    margin-bottom: 8px;
}

.products-page .stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====================================================
   2. FILTER SECTION
==================================================== */
.products-page .filter-section {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
}

.products-page .filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.products-page .category-filter {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: #e8a2c0 transparent;
}

.products-page .category-filter::-webkit-scrollbar {
    height: 3px;
}

.products-page .category-filter::-webkit-scrollbar-thumb {
    background: #e8a2c0;
    border-radius: 10px;
}

.products-page .filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #666;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.products-page .filter-btn:hover {
    border-color: #e8a2c0;
    color: #e8a2c0;
}

.products-page .filter-btn.active {
    background: #e8a2c0;
    border-color: #e8a2c0;
    color: white;
}

.products-page .filter-btn i {
    font-size: 14px;
}

.products-page .sort-filter {
    display: flex;
    align-items: center;
}

.products-page .sort-select-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 8px;
}

.products-page .sort-select-wrapper i {
    color: #666;
    font-size: 14px;
}

.products-page .sort-select {
    border: none;
    background: transparent;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    outline: none;
    min-width: 150px;
}

.products-page .active-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.products-page .filter-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
}

.products-page .remove-filter {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-page .remove-filter:hover {
    color: #ff4757;
}

/* ====================================================
   3. PRODUCTS GRID SECTION
==================================================== */
.products-page .products-grid-section {
    padding: 60px 0;
    background: #fafafa;
}

.products-page .products-header {
    margin-bottom: 40px;
}

.products-page .products-count h3 {
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.products-page .count-text {
    color: #666;
    font-size: 15px;
}

.products-page .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.products-page .product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.products-page .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(232, 162, 192, 0.15);
}

.products-page .product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.products-page .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.products-page .product-card:hover .product-image img {
    transform: scale(1.05);
}

.products-page .image-link {
    display: block;
    height: 100%;
    width: 100%;
}

.products-page .product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.products-page .badge {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.products-page .sale-badge {
    background: #ff4757;
    color: white;
}

.products-page .new-badge {
    background: #2ed573;
    color: white;
}

.products-page .product-actions-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.products-page .product-card:hover .product-actions-hover {
    transform: translateY(0);
}

.products-page .quick-view-btn {
    width: 100%;
    background: white;
    color: #e8a2c0;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.products-page .quick-view-btn:hover {
    background: #e8a2c0;
    color: white;
}

.products-page .product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.products-page .product-category {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.products-page .product-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 12px;
    line-height: 1.4;
}

.products-page .product-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.products-page .product-name a:hover {
    color: #e8a2c0;
}

.products-page .product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.products-page .product-price {
    margin-bottom: 20px;
}

.products-page .current-price {
    font-size: 20px;
    font-weight: 700;
    color: #e8a2c0;
    margin-right: 8px;
}

.products-page .original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
}

.products-page .discount-percent {
    font-size: 12px;
    color: #ff4757;
    font-weight: 600;
    background: rgba(255, 71, 87, 0.1);
    padding: 3px 8px;
    border-radius: 10px;
}

.products-page .product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.products-page .add-cart-form {
    flex: 1;
}

.products-page .add-to-cart-btn {
    width: 100%;
    background: #e8a2c0;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.products-page .add-to-cart-btn:hover {
    background: #d489ad;
}

.products-page .add-to-cart-btn.loading {
    background: #ccc;
    cursor: not-allowed;
}

.products-page .add-to-cart-btn.success {
    background: #4CAF50;
}

.products-page .view-details-btn {
    flex-shrink: 0;
    background: white;
    color: #e8a2c0;
    border: 1px solid #e8a2c0;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.products-page .view-details-btn:hover {
    background: #e8a2c0;
    color: white;
}

/* ====================================================
   4. EMPTY STATES & NO RESULTS
==================================================== */
.products-page .empty-state,
.products-page .no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.products-page .empty-icon,
.products-page .no-results-icon {
    font-size: 60px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.products-page .empty-state h4,
.products-page .no-results h4 {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.products-page .empty-state p,
.products-page .no-results p {
    color: #666;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ====================================================
   5. LOAD MORE SECTION
==================================================== */
.products-page .load-more-section {
    text-align: center;
    margin-top: 40px;
}

.products-page .load-more-btn {
    background: white;
    color: #e8a2c0;
    border: 2px solid #e8a2c0;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.products-page .load-more-btn:hover {
    background: #e8a2c0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 162, 192, 0.3);
}

.products-page .load-more-info {
    color: #666;
    font-size: 14px;
}

/* ====================================================
   6. FEATURES SECTION
==================================================== */
.products-page .products-features {
    padding: 60px 0;
    background: white;
}

.products-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.products-page .feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.products-page .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.products-page .feature-icon {
    font-size: 36px;
    color: #e8a2c0;
    margin-bottom: 20px;
}

.products-page .feature-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.products-page .feature-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* ====================================================
   7. NEWSLETTER SECTION
==================================================== */
.products-page .products-newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe6f0 100%);
    text-align: center;
}

.products-page .newsletter-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.products-page .newsletter-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-page .newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 15px;
    gap: 10px;
}

.products-page .newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.products-page .newsletter-form input:focus {
    outline: none;
    border-color: #e8a2c0;
    box-shadow: 0 0 0 3px rgba(232, 162, 192, 0.1);
}

.products-page .newsletter-btn {
    background: #e8a2c0;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-page .newsletter-btn:hover {
    background: #d489ad;
    transform: translateY(-2px);
}

.products-page .newsletter-note {
    font-size: 12px;
    color: #888;
}

.products-page .newsletter-note a {
    color: #e8a2c0;
    text-decoration: none;
}

.products-page .newsletter-note a:hover {
    text-decoration: underline;
}

/* ====================================================
   8. RESPONSIVE DESIGN
==================================================== */
@media (max-width: 1200px) {
    .products-page .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .products-page .hero-title {
        font-size: 36px;
    }
    
    .products-page .hero-subtitle {
        font-size: 16px;
    }
    
    .products-page .filter-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .products-page .sort-filter {
        align-self: flex-end;
    }
}

@media (max-width: 768px) {
    .products-page .products-hero {
        padding: 80px 0 60px;
    }
    
    .products-page .hero-stats {
        gap: 20px;
    }
    
    .products-page .stat-number {
        font-size: 28px;
    }
    
    .products-page .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .products-page .product-image {
        height: 200px;
    }
    
    .products-page .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-page .newsletter-form {
        flex-direction: column;
    }
    
    .products-page .newsletter-form input,
    .products-page .newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .products-page .hero-title {
        font-size: 28px;
    }
    
    .products-page .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-page .category-filter {
        gap: 5px;
    }
    
    .products-page .filter-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .products-page .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-page .product-actions {
        flex-direction: column;
    }
    
    .products-page .view-details-btn {
        width: 100%;
    }
}
/* ====================================================
   ENHANCED PRODUCTS PAGE STYLES
==================================================== */

/* Current Category Badge */
.current-category-badge {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.category-indicator {
    background: #e8a2c0;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Stock Status in Product Cards */
.product-stock {
    margin: 10px 0 15px;
}

.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.stock-status.in-stock {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
}

.stock-status.low-stock {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.stock-status.out-of-stock {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
}

/* Stock Badge */
.badge.stock-badge {
    background: #ffc107;
    color: #333;
    font-weight: 600;
}

/* Product Short Description */
.product-short-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 8px 0 12px;
    flex-grow: 1;
}

/* Enhanced Product Actions */
.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.product-actions .add-cart-form {
    flex: 1;
}

.product-actions .add-to-cart-btn:disabled {
    background: #ccc !important;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Cart Notification System */
.cart-notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-notification {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 15px;
    border-left: 4px solid #4CAF50;
    animation: slideInRight 0.3s ease forwards;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-notification.error {
    border-left-color: #ff4757;
}

.cart-notification .notification-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CAF50;
    font-size: 16px;
    flex-shrink: 0;
}

.cart-notification.error .notification-icon {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
}

.notification-content {
    flex: 1;
}

.notification-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.notification-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Animation Keyframes */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Cart Count Animation */
.cart-count {
    transition: all 0.3s ease;
}

.cart-count.updated {
    animation: cartBounce 0.5s ease;
    color: #e8a2c0;
}

/* Product Loading Animation */
.add-to-cart-btn.loading {
    position: relative;
    background: #ccc !important;
    cursor: not-allowed;
}

.add-to-cart-btn.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: loading 1.5s infinite;
}

.add-to-cart-btn.success {
    background: #4CAF50 !important;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--animation-delay, 0s);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Product Card Hover */
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(232, 162, 192, 0.2) !important;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    .cart-notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .cart-notification {
        width: 100%;
    }
    
    .current-category-badge {
        justify-content: flex-start;
        margin-top: 10px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .view-details-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .current-category-badge {
        align-self: flex-start;
    }
    
    .filter-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .category-filter {
        order: 2;
    }
    
    .sort-filter {
        order: 1;
        align-self: flex-end;
    }
}

/* Staggered Animation Delays */
.products-grid .product-card:nth-child(1) { --animation-delay: 0.1s; }
.products-grid .product-card:nth-child(2) { --animation-delay: 0.2s; }
.products-grid .product-card:nth-child(3) { --animation-delay: 0.3s; }
.products-grid .product-card:nth-child(4) { --animation-delay: 0.4s; }
.products-grid .product-card:nth-child(5) { --animation-delay: 0.5s; }
.products-grid .product-card:nth-child(6) { --animation-delay: 0.6s; }
.products-grid .product-card:nth-child(7) { --animation-delay: 0.7s; }
.products-grid .product-card:nth-child(8) { --animation-delay: 0.8s; }
.products-grid .product-card:nth-child(9) { --animation-delay: 0.9s; }
.products-grid .product-card:nth-child(10) { --animation-delay: 1.0s; }
.products-grid .product-card:nth-child(11) { --animation-delay: 1.1s; }
.products-grid .product-card:nth-child(12) { --animation-delay: 1.2s; }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Overlay for AJAX */
.products-container {
    position: relative;
}

.products-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.products-container.loading::before {
    opacity: 0.8;
}

.products-container.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #e8a2c0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 11;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Newsletter Form Styling */
.newsletter-form input {
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #e8a2c0;
    box-shadow: 0 0 0 3px rgba(232, 162, 192, 0.2);
}

.newsletter-btn {
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 162, 192, 0.3);
}

/* Quick View Button Enhancement */
.quick-view-btn {
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
/* Add this to the end of your products.css file */

/* Fix for button states */
.add-to-cart-btn {
    transition: all 0.3s ease !important;
}

.add-to-cart-btn.loading {
    background: #ccc !important;
    cursor: not-allowed !important;
}

.add-to-cart-btn.success {
    background: #4CAF50 !important;
}

/* Ensure cart notifications are above everything */
.cart-notification-container {
    z-index: 999999 !important;
}

/* Fix for disabled buttons */
.add-to-cart-btn:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    background: #e0e0e0 !important;
}

/* Add to cart form styles */
.add-cart-form {
    display: block;
    width: 100%;
}