/* Premium Collection Section Styles */
.premium-collection-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.premium-collection-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="1000,100 0,100 0,0 1000,30"/></svg>');
    background-size: cover;
    z-index: 1;
}

.premium-collection-section .container {
    position: relative;
    z-index: 2;
}

.premium-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.premium-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 400;
    margin-bottom: 2rem;
}

.premium-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

.premium-products-wrapper {
    padding: 2rem 0;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.premium-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    transform: translateY(0);
}

.premium-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.premium-card-inner {
    position: relative;
    height: 100%;
}

.premium-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

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

.premium-product-image {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.premium-card:hover .premium-product-image {
    transform: scale(1.1) rotate(3deg);
}

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-card:hover .premium-overlay {
    opacity: 1;
}

.premium-overlay-content {
    text-align: center;
}

.premium-view-btn,
.premium-inquiry-btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 5px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-view-btn {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 2px solid transparent;
}

.premium-view-btn:hover {
    background: transparent;
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
}

.premium-inquiry-btn {
    background: linear-gradient(45deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: 2px solid transparent;
}

.premium-inquiry-btn:hover {
    background: transparent;
    border-color: #25d366;
    color: #25d366;
    transform: translateY(-2px);
}

.premium-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.premium-product-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.premium-tags {
    margin-bottom: 1.5rem;
}

.premium-tag {
    display: inline-block;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-price {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
}

.premium-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.stars {
    color: #ffc107;
}

.stars i {
    margin: 0 2px;
}

.rating-text {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.premium-cta {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.premium-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-cta-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.premium-cta-btn i {
    transition: transform 0.3s ease;
}

.premium-cta-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-title {
        font-size: 2.2rem;
    }
    
    .premium-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .premium-card {
        margin: 0 1rem;
    }
    
    .premium-cta {
        padding: 2rem 1rem;
        margin: 2rem 1rem 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .premium-title {
        font-size: 1.8rem;
    }
    
    .premium-image-wrapper {
        height: 200px;
    }
    
    .premium-content {
        padding: 1.5rem 1rem;
    }
    
    .premium-product-name {
        font-size: 1.2rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* AOS Animation Support */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
