/* =============================================
   WOO PRODUCTS CAROUSEL - MAIN STYLES
   ============================================= */

/* =============================================
   CSS VARIABLES & BASE
   ============================================= */
:root {
    --wpc-primary: #6c5ce7;
    --wpc-primary-light: #a29bfe;
    --wpc-secondary: #00cec9;
    --wpc-dark: #1a1a2e;
    --wpc-text: #2d3436;
    --wpc-text-light: #636e72;
    --wpc-white: #ffffff;
    --wpc-bg: #f8f9fa;
    --wpc-danger: #ff6b6b;
    --wpc-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --wpc-shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --wpc-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --wpc-shadow-glow: 0 8px 32px rgba(108, 92, 231, 0.25);
    --wpc-radius: 16px;
    --wpc-radius-sm: 10px;
    --wpc-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --wpc-transition-fast: all 0.25s ease;
}

/* =============================================
   WRAPPER & LAYOUT
   ============================================= */
.wpc-carousel-wrapper {
    position: relative;
    padding: 10px 0 50px;
}

.wpc-carousel-wrapper .swiper {
    overflow: hidden;
    padding: 10px 5px 10px;
    margin: 0 -5px;
}

.wpc-no-products {
    text-align: center;
    padding: 60px 20px;
    color: var(--wpc-text-light);
    font-size: 16px;
    background: var(--wpc-bg);
    border-radius: var(--wpc-radius);
    border: 2px dashed #ddd;
}

/* =============================================
   IMAGE RATIO UTILITIES
   ============================================= */
.wpc-product-image.wpc-ratio-1-1 {
    aspect-ratio: 1 / 1;
}

.wpc-product-image.wpc-ratio-4-3 {
    aspect-ratio: 4 / 3;
}

.wpc-product-image.wpc-ratio-3-4 {
    aspect-ratio: 3 / 4;
}

.wpc-product-image.wpc-ratio-16-9 {
    aspect-ratio: 16 / 9;
}

.wpc-product-image.wpc-ratio-auto {
    aspect-ratio: unset !important;
}

/* Override all card styles when auto ratio is used */
.wpc-carousel-wrapper .wpc-product-card .wpc-product-image.wpc-ratio-auto img {
    width: 100% !important;
    height: auto !important;
    object-fit: unset !important;
    display: block;
}

/* Override all card styles when contain fit is used */
.wpc-carousel-wrapper .wpc-product-card .wpc-product-image img[style*="contain"] {
    object-fit: contain !important;
    background: var(--wpc-bg);
}

/* =============================================
   NAVIGATION ARROWS
   ============================================= */
.wpc-navigation {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 24px;
}

.wpc-nav-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wpc-white);
    border: 2px solid rgba(108, 92, 231, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--wpc-transition);
    box-shadow: var(--wpc-shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.wpc-nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--wpc-primary), var(--wpc-primary-light));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 50%;
}

.wpc-nav-btn:hover::before {
    opacity: 1;
}

.wpc-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--wpc-primary);
    transition: var(--wpc-transition-fast);
    position: relative;
    z-index: 1;
}

.wpc-nav-btn:hover {
    border-color: var(--wpc-primary);
    box-shadow: var(--wpc-shadow-glow);
    transform: scale(1.08);
}

.wpc-nav-btn:hover svg {
    stroke: var(--wpc-white);
}

.wpc-nav-btn:active {
    transform: scale(0.95);
}

.wpc-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.wpc-nav-btn.swiper-button-disabled:hover {
    box-shadow: var(--wpc-shadow-sm);
}

.wpc-nav-btn.swiper-button-disabled::before {
    opacity: 0;
}

/* =============================================
   PAGINATION DOTS
   ============================================= */
.wpc-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 8px 0;
}

.wpc-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 10px;
    opacity: 1;
    transition: var(--wpc-transition);
    cursor: pointer;
    border: none;
    display: inline-block;
}

.wpc-pagination .swiper-pagination-bullet:hover {
    background: var(--wpc-primary-light);
    transform: scale(1.2);
}

.wpc-pagination .swiper-pagination-bullet-active {
    background: var(--wpc-primary);
    width: 28px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(108, 92, 231, 0.4);
}

/* =============================================
   SALE BADGE
   ============================================= */
.wpc-sale-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: var(--wpc-white);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: wpc-badge-pulse 2s ease-in-out infinite;
}

@keyframes wpc-badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* =============================================
   STAR RATING
   ============================================= */
.wpc-star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 6px 0;
}

.wpc-star {
    font-size: 14px;
    line-height: 1;
}

.wpc-star.filled {
    color: #f39c12;
}

.wpc-star.empty {
    color: #ddd;
}

.wpc-rating-count {
    font-size: 12px;
    color: var(--wpc-text-light);
    margin-right: 4px;
}

/* =============================================
   ADD TO CART BUTTON BASE
   ============================================= */
.wpc-add-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--wpc-primary), var(--wpc-primary-light));
    color: var(--wpc-white);
    border: none;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--wpc-transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.wpc-add-to-cart::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #5f4dd0, #8c7ae6);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wpc-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: var(--wpc-shadow-glow);
}

.wpc-add-to-cart:hover::before {
    opacity: 1;
}

.wpc-add-to-cart svg,
.wpc-add-to-cart span {
    position: relative;
    z-index: 1;
}

.wpc-add-to-cart:active {
    transform: translateY(0) scale(0.97);
}

.wpc-add-to-cart.wpc-adding {
    pointer-events: none;
    opacity: 0.75;
}

.wpc-add-to-cart.wpc-added {
    background: linear-gradient(135deg, #00b894, #55efc4) !important;
}

.wpc-add-to-cart.wpc-added::before {
    opacity: 0 !important;
}

/* =============================================
   PRODUCT CATEGORY
   ============================================= */
.wpc-product-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--wpc-primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

/* =============================================
   PRODUCT TITLE
   ============================================= */
.wpc-product-title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.wpc-product-title a {
    color: var(--wpc-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wpc-product-title a:hover {
    color: var(--wpc-primary);
}

/* =============================================
   PRODUCT PRICE
   ============================================= */
.wpc-product-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--wpc-primary);
    margin: 8px 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.wpc-product-price del {
    font-size: 14px;
    color: #999;
    font-weight: 500;
    text-decoration: line-through;
}

.wpc-product-price ins {
    text-decoration: none;
    color: var(--wpc-primary);
}

/* ==============================================
   ██  STYLE 1 - CLASSIC CARD  ██
   ============================================= */
.wpc-card-style-1 {
    background: var(--wpc-white);
    border-radius: var(--wpc-radius);
    overflow: hidden;
    transition: var(--wpc-transition);
    box-shadow: var(--wpc-shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wpc-card-style-1:hover {
    transform: translateY(-8px);
    box-shadow: var(--wpc-shadow-lg);
}

.wpc-card-style-1 .wpc-product-image {
    position: relative;
    overflow: hidden;
    background: var(--wpc-bg);
}

.wpc-card-style-1 .wpc-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wpc-card-style-1:hover .wpc-product-image img {
    transform: scale(1.08);
}

/* Quick actions overlay */
.wpc-card-style-1 .wpc-quick-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    justify-content: center;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.wpc-card-style-1:hover .wpc-quick-actions {
    transform: translateY(0);
}

.wpc-card-style-1 .wpc-quick-actions .wpc-add-to-cart {
    width: 100%;
    justify-content: center;
    backdrop-filter: blur(10px);
    background: rgba(108, 92, 231, 0.9);
    border-radius: 12px;
}

.wpc-card-style-1 .wpc-product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wpc-card-style-1 .wpc-product-price {
    margin-top: auto;
}

/* ==============================================
   ██  STYLE 2 - OVERLAY MODERN  ██
   ============================================= */
.wpc-card-style-2 {
    position: relative;
    border-radius: var(--wpc-radius);
    overflow: hidden;
    height: 420px;
    cursor: pointer;
    transition: var(--wpc-transition);
}

.wpc-card-style-2:hover {
    transform: translateY(-6px);
    box-shadow: var(--wpc-shadow-lg);
}

.wpc-card-style-2 .wpc-product-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.wpc-card-style-2 .wpc-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wpc-card-style-2:hover .wpc-product-image img {
    transform: scale(1.12);
}

.wpc-card-style-2 .wpc-product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 30, 0.92) 0%,
        rgba(10, 10, 30, 0.6) 40%,
        rgba(10, 10, 30, 0.1) 70%,
        transparent 100%
    );
    z-index: 1;
    transition: background 0.4s ease;
}

.wpc-card-style-2:hover .wpc-product-image::after {
    background: linear-gradient(
        to top,
        rgba(10, 10, 30, 0.95) 0%,
        rgba(10, 10, 30, 0.65) 45%,
        rgba(10, 10, 30, 0.15) 75%,
        transparent 100%
    );
}

.wpc-card-style-2 .wpc-product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 24px;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wpc-card-style-2:hover .wpc-product-content {
    transform: translateY(0);
}

.wpc-card-style-2 .wpc-product-category {
    color: var(--wpc-secondary);
    font-size: 11px;
}

.wpc-card-style-2 .wpc-product-title a {
    color: var(--wpc-white);
    font-size: 17px;
}

.wpc-card-style-2 .wpc-product-title a:hover {
    color: var(--wpc-secondary);
}

.wpc-card-style-2 .wpc-product-price {
    color: var(--wpc-white);
}

.wpc-card-style-2 .wpc-product-price ins {
    color: var(--wpc-secondary);
}

.wpc-card-style-2 .wpc-product-price del {
    color: rgba(255, 255, 255, 0.5);
}

.wpc-card-style-2 .wpc-star.filled {
    color: #ffd32a;
}

.wpc-card-style-2 .wpc-star.empty {
    color: rgba(255, 255, 255, 0.3);
}

.wpc-card-style-2 .wpc-rating-count {
    color: rgba(255, 255, 255, 0.6);
}

.wpc-card-style-2 .wpc-add-to-cart {
    opacity: 0;
    transform: translateY(10px);
    transition: var(--wpc-transition);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.wpc-card-style-2 .wpc-add-to-cart::before {
    background: rgba(255, 255, 255, 0.25);
}

.wpc-card-style-2:hover .wpc-add-to-cart {
    opacity: 1;
    transform: translateY(0);
}

.wpc-card-style-2 .wpc-sale-badge {
    top: 16px;
    right: 16px;
}

/* Glassmorphism highlight line */
.wpc-card-style-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wpc-card-style-2:hover::before {
    opacity: 1;
}

/* ==============================================
   ██  STYLE 3 - MINIMAL ELEGANT  ██
   ============================================= */
.wpc-card-style-3 {
    background: var(--wpc-white);
    border-radius: var(--wpc-radius);
    overflow: hidden;
    transition: var(--wpc-transition);
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.wpc-card-style-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wpc-primary), var(--wpc-secondary), var(--wpc-primary-light));
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: right;
    z-index: 2;
}

.wpc-card-style-3:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.wpc-card-style-3:hover {
    border-color: transparent;
    box-shadow: var(--wpc-shadow-md);
    transform: translateY(-4px);
}

.wpc-card-style-3 .wpc-product-image {
    position: relative;
    overflow: hidden;
    background: var(--wpc-bg);
    margin: 14px;
    border-radius: 12px;
}

.wpc-card-style-3 .wpc-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wpc-card-style-3:hover .wpc-product-image img {
    transform: scale(1.05);
}

.wpc-card-style-3 .wpc-product-content {
    padding: 4px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wpc-card-style-3 .wpc-product-category {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.08), rgba(162, 155, 254, 0.08));
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    width: fit-content;
    color: var(--wpc-primary);
}

.wpc-card-style-3 .wpc-product-title {
    font-size: 15px;
}

.wpc-card-style-3 .wpc-product-price {
    font-size: 17px;
}

.wpc-card-style-3 .wpc-add-to-cart {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    padding: 12px;
    border-radius: var(--wpc-radius-sm);
    background: var(--wpc-dark);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.wpc-card-style-3 .wpc-add-to-cart::before {
    background: linear-gradient(135deg, var(--wpc-primary), var(--wpc-primary-light));
}

.wpc-card-style-3 .wpc-sale-badge {
    top: 8px;
    right: 8px;
    font-size: 11px;
    padding: 4px 10px;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes wpc-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wpc-carousel-wrapper .swiper-slide {
    height: auto;
    animation: wpc-fade-in-up 0.6s ease forwards;
}

.wpc-carousel-wrapper .swiper-slide:nth-child(2) { animation-delay: 0.1s; }
.wpc-carousel-wrapper .swiper-slide:nth-child(3) { animation-delay: 0.2s; }
.wpc-carousel-wrapper .swiper-slide:nth-child(4) { animation-delay: 0.3s; }
.wpc-carousel-wrapper .swiper-slide:nth-child(5) { animation-delay: 0.4s; }
.wpc-carousel-wrapper .swiper-slide:nth-child(6) { animation-delay: 0.5s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .wpc-card-style-2 {
        height: 380px;
    }
}

@media (max-width: 767px) {
    .wpc-carousel-wrapper {
        padding: 5px 0 40px;
    }

    .wpc-nav-btn {
        width: 40px;
        height: 40px;
    }

    .wpc-nav-btn svg {
        width: 16px;
        height: 16px;
    }

    .wpc-card-style-1 .wpc-product-content {
        padding: 14px;
    }

    .wpc-card-style-2 {
        height: 350px;
    }

    .wpc-card-style-2 .wpc-product-content {
        padding: 16px;
    }

    .wpc-card-style-3 .wpc-product-image {
        margin: 10px;
    }

    .wpc-card-style-3 .wpc-product-content {
        padding: 4px 14px 14px;
    }

    .wpc-product-title {
        font-size: 14px;
    }

    .wpc-product-price {
        font-size: 16px;
    }

    .wpc-add-to-cart {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* =============================================
   RTL ADJUSTMENTS
   ============================================= */
[dir="rtl"] .wpc-sale-badge {
    right: 14px;
    left: auto;
}

[dir="ltr"] .wpc-sale-badge {
    right: auto;
    left: 14px;
}

/* =============================================
   LOADING SPINNER
   ============================================= */
.wpc-add-to-cart.wpc-adding::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--wpc-white);
    border-radius: 50%;
    animation: wpc-spin 0.6s linear infinite;
    position: relative;
    z-index: 1;
}

@keyframes wpc-spin {
    to { transform: rotate(360deg); }
}

/* =============================================
   SWIPER OVERRIDES
   ============================================= */
.wpc-carousel-wrapper .swiper-wrapper {
    align-items: stretch;
}

.wpc-carousel-wrapper .swiper-slide {
    height: auto;
}

/* ==============================================
   ██  SECTION TITLE STYLES  ██
   ============================================= */

/* Base heading styles */
.wpc-section-heading {
    --wpc-accent: #6c5ce7;
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.wpc-section-title-text {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.wpc-section-subtitle {
    font-size: 15px;
    color: #636e72;
    margin: 8px 0 0;
    font-weight: 400;
    line-height: 1.6;
}

/* ----- Title Style 1: Gradient Underline ----- */
.wpc-title-underline {
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--wpc-accent), transparent);
    border-radius: 4px;
    margin: 4px auto 0;
}

/* ----- Title Style 2: Side Lines ----- */
.wpc-title-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.wpc-title-line {
    display: block;
    flex: 1;
    height: 2px;
    background: var(--wpc-accent);
    max-width: 120px;
    border-radius: 2px;
    opacity: 0.35;
}

.wpc-title-with-lines .wpc-section-title-text {
    margin: 0;
    white-space: nowrap;
}

.wpc-section-heading.title-style-2 .wpc-section-subtitle {
    width: 100%;
}

/* ----- Title Style 3: Colored Badge ----- */
.wpc-section-heading.title-style-3 {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(108, 92, 231, 0.03));
    padding: 24px 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.wpc-title-side-accent {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--wpc-accent);
    border-radius: 0 0 4px 4px;
}

.wpc-section-heading.title-style-3 .wpc-section-title-text {
    font-size: 26px;
}

.wpc-section-heading.title-style-3 .wpc-section-subtitle {
    font-size: 14px;
}

/* ----- Title Style 4: Glowing ----- */
.wpc-section-heading.title-style-4 {
    padding: 10px 0;
}

.wpc-section-heading.title-style-4 .wpc-section-title-text {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-shadow: 0 0 40px rgba(108, 92, 231, 0.3);
}

.wpc-title-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--wpc-accent);
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
    animation: wpc-dot-pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.5);
}

@keyframes wpc-dot-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

.wpc-section-heading.title-style-4 .wpc-section-subtitle {
    margin-top: 10px;
    font-size: 16px;
    opacity: 0.8;
}

/* ----- Title Style 5: Modern Box ----- */
.wpc-section-heading.title-style-5 {
    border: 2px solid rgba(108, 92, 231, 0.18);
    border-radius: 16px;
    padding: 24px 36px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), transparent);
    position: relative;
    overflow: hidden;
}

.wpc-title-top-bar {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wpc-accent), rgba(108, 92, 231, 0.3));
    border-radius: 3px 3px 0 0;
}

.wpc-section-heading.title-style-5 .wpc-section-title-text {
    font-size: 24px;
}

.wpc-section-heading.title-style-5 .wpc-section-subtitle {
    font-size: 14px;
}

/* ==============================================
   ██  SLIDER AREA & SIDE ARROWS  ██
   ============================================= */
.wpc-slider-area {
    position: relative;
}

/* Side arrows layout */
.wpc-arrows-sides .wpc-slider-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wpc-arrows-sides .wpc-slider-area > .wpc-swiper {
    flex: 1;
    min-width: 0;
}

.wpc-arrows-sides .wpc-slider-area > .wpc-nav-btn {
    flex-shrink: 0;
    position: relative;
    z-index: 5;
}

@media (max-width: 767px) {
    .wpc-arrows-sides .wpc-slider-area {
        gap: 6px;
    }

    .wpc-arrows-sides .wpc-slider-area > .wpc-nav-btn {
        width: 36px;
        height: 36px;
    }

    .wpc-arrows-sides .wpc-slider-area > .wpc-nav-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* ==============================================
   ELEMENTOR EDITOR FALLBACK
   ============================================= */
.wpc-carousel-wrapper .wpc-swiper:not(.swiper-initialized) {
    overflow: hidden !important;
}

.wpc-carousel-wrapper .wpc-swiper:not(.swiper-initialized) .swiper-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
}

.wpc-carousel-wrapper .wpc-swiper:not(.swiper-initialized) .swiper-slide {
    flex-shrink: 0 !important;
    width: 25% !important;
    box-sizing: border-box !important;
    padding: 0 12px !important;
}


