/**
 * ShopWave Premium - Elementor Custom Styles
 *
 * @package ShopWave
 * @since 1.0.0
 */

/* ==========================================================================
   Elementor Luxury Styling
   ========================================================================== */

/* Premium Section Spacing */
.elementor-section {
    padding: 80px 0;
}

.elementor-section.section-luxury {
    padding: 120px 0;
}

/* Headings in Elementor */
.elementor-widget-heading .elementor-heading-title {
    font-family: var(--font-heading);
    letter-spacing: var(--letter-spacing-tight);
}

/* Product Grid Widget */
.shopwave-product-grid {
    margin: 40px 0;
}

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

/* Product Carousel Widget */
.shopwave-product-carousel {
    position: relative;
    overflow: hidden;
}

.shopwave-product-carousel .slick-slide {
    padding: 0 15px;
}

.shopwave-product-carousel .slick-arrow {
    background: var(--white);
    border: 1px solid var(--border-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition-base);
}

.shopwave-product-carousel .slick-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Testimonials Widget */
.shopwave-testimonials {
    padding: 60px 0;
}

.testimonial-item {
    text-align: center;
    padding: 40px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.testimonial-content {
    font-family: var(--font-accent);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Banner Widget */
.shopwave-banner {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.banner-content {
    padding: 80px 60px;
    text-align: center;
}

.banner-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}

.banner-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* Luxury Divider */
.elementor-widget-divider {
    margin: 60px 0;
}

.elementor-divider-separator {
    border-color: var(--border-color);
}

/* Button Widgets */
.elementor-button-wrapper {
    margin-top: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .elementor-section {
        padding: 40px 0;
    }

    .shopwave-product-grid .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .banner-content {
        padding: 40px 30px;
    }
}
