/* Premium Products Section Styles */
.premium-products-container {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 50px 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.premium-products-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #ffd700, #b8860b);
    animation: goldShimmer 3s ease-in-out infinite;
}

@keyframes goldShimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Premium Header */
.premium-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.premium-header-content {
    flex: 1;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    margin-bottom: 12px;
}

.premium-badge i {
    font-size: 14px;
    color: #b8860b;
}

.premium-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Premium Controls */
.premium-controls {
    display: flex;
    gap: 12px;
}

.premium-arrow {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.premium-arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.premium-arrow i {
    font-size: 16px;
}

/* Premium Slider */
.premium-slider {
    overflow: hidden;
    padding: 10px 0;
}

.premium-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

/* Premium Card */
.premium-card {
    width: 300px;
    flex-shrink: 0;
    margin-right: 20px;
}

.premium-card-inner {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e9ecef;
}

.premium-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

/* Premium Image Container */
.premium-image-container {
    position: relative;
    overflow: hidden;
}

.premium-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(212, 175, 55, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-card-inner:hover .premium-overlay {
    opacity: 1;
}

/* Premium Badges */
.premium-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 3;
}

.luxury-badge,
.award-badge,
.premium-discount-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.luxury-badge {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: white;
}

.award-badge {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #1a1a1a;
}

.premium-discount-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    flex-direction: column;
    padding: 8px 10px;
    text-align: center;
    line-height: 1.2;
}

.discount-percent {
    font-size: 12px;
    font-weight: 800;
}

.discount-text {
    font-size: 8px;
}

/* Premium Actions */
.premium-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.premium-card-inner:hover .premium-actions {
    opacity: 1;
    transform: translateX(0);
}

.premium-wishlist-btn,
.premium-quick-view {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.premium-wishlist-btn:hover,
.premium-quick-view:hover {
    background: #2c3e50;
    color: white;
    transform: scale(1.1);
}

.premium-wishlist-btn.active {
    background: #e74c3c;
    color: white;
}

/* Premium Content */
.premium-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.premium-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d4af37;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.premium-brand i {
    font-size: 14px;
}

.premium-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 12px 0;
    line-height: 1.3;
    min-height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Premium Rating */
.premium-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    font-size: 14px;
    color: #ffd700;
}

.rating-count {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

/* Premium Pricing */
.premium-pricing {
    margin-bottom: 20px;
}

.sale-price,
.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 4px;
}

.original-price {
    font-size: 1rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.savings {
    font-size: 12px;
    color: #27ae60;
    font-weight: 600;
    background: rgba(39, 174, 96, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

/* Premium Card Actions */
.premium-card-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.premium-add-cart {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.premium-add-cart:hover:not(:disabled) {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.premium-add-cart:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    opacity: 0.6;
}

.premium-view-details {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

.premium-view-details:hover:not(.disabled) {
    background: rgba(212, 175, 55, 0.1);
    color: #b8860b;
}

.premium-view-details.disabled {
    color: #95a5a6;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 992px) {
    .premium-products-container {
        padding: 40px 15px;
        margin: 30px 0;
    }
    
    .premium-header {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .premium-title {
        font-size: 2rem;
    }
    
    .premium-subtitle {
        font-size: 1rem;
    }
    
    .premium-card {
        width: 280px;
    }
    
    .premium-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .premium-products-container {
        padding: 30px 10px;
        border-radius: 15px;
    }
    
    .premium-title {
        font-size: 1.75rem;
    }
    
    .premium-subtitle {
        font-size: 0.95rem;
    }
    
    .premium-card {
        width: 260px;
        margin-right: 15px;
    }
    
    .premium-image {
        height: 180px;
    }
    
    .premium-content {
        padding: 20px;
    }
    
    .premium-name {
        font-size: 1.1rem;
        min-height: 2.2rem;
    }
    
    .premium-arrow {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .premium-card {
        width: 240px;
    }
    
    .premium-image {
        height: 160px;
    }
    
    .premium-content {
        padding: 15px;
    }
    
    .premium-title {
        font-size: 1.5rem;
    }
    
    .premium-name {
        font-size: 1rem;
    }
    
    .sale-price,
    .current-price {
        font-size: 1.25rem;
    }
}

/* Animation for premium cards loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-card {
    animation: fadeInUp 0.6s ease forwards;
}

.premium-card:nth-child(2) { animation-delay: 0.1s; }
.premium-card:nth-child(3) { animation-delay: 0.2s; }
.premium-card:nth-child(4) { animation-delay: 0.3s; }
.premium-card:nth-child(5) { animation-delay: 0.4s; }

/* Premium Notification Styles */
.premium-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #d4af37;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #2c3e50;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    min-width: 280px;
}

.premium-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.premium-notification.success {
    border-left-color: #27ae60;
}

.premium-notification.success i {
    color: #27ae60;
}

.premium-notification.info i {
    color: #3498db;
}

.premium-notification i {
    font-size: 18px;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .premium-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        transform: translateY(-100px);
    }
    
    .premium-notification.show {
        transform: translateY(0);
    }
}