/* ===========================================
   PRODUCT CAROUSEL - Clean CSS
   Inherits from bith-widgets-master.css
   =========================================== */

/* Base Variables */
.bith-product-carousel-wrapper {
    --carousel-gap: 20px;
    --card-radius: var(--bith-widget-radius-xl, 20px);
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: var(--carousel-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 4px;
    scroll-behavior: smooth;
    width: 100%;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 calc(33.333% - var(--carousel-gap));
    min-width: 260px;
    background: var(--bith-widget-surface, #fff);
    border-radius: var(--card-radius);
    overflow: hidden;
    scroll-snap-align: start;
    transition: all 0.4s var(--bith-widget-ease-out, ease);
    box-shadow: var(--bith-widget-shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.08));
    position: relative;
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Common Elements */
.product-category {
    font-size: 0.75rem;
    color: var(--bith-widget-primary, #4FD1C5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bith-widget-text-heading, #1A202C);
    margin: 8px 0;
    line-height: 1.4;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.product-rating .stars {
    color: var(--bith-widget-accent, #F6AD55);
    font-size: 0.85rem;
}

.product-rating .count {
    color: var(--bith-widget-text-muted, #718096);
    font-size: 0.8rem;
}

.product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bith-widget-text-heading, #1A202C);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price del {
    font-size: 0.9rem;
    color: var(--bith-widget-text-muted, #718096);
    font-weight: 400;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--bith-widget-primary, #4FD1C5);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.sale {
    background: var(--bith-widget-accent, #F6AD55);
}

/* ===========================================
   SKIN 1: CLASSIC ARROWS OUT
   =========================================== */
.skin-1.bith-product-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.skin-1 .carousel-track {
    padding: 20px 0;
    flex: 1;
}

.skin-1 .carousel-arrow {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bith-widget-surface, #fff);
    border: 2px solid var(--bith-widget-border, #E2E8F0);
    color: var(--bith-widget-text-heading, #1A202C);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--bith-widget-shadow-sm);
}

.skin-1 .carousel-arrow:hover {
    background: var(--bith-widget-primary, #4FD1C5);
    border-color: var(--bith-widget-primary, #4FD1C5);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 30px -10px rgba(79, 209, 197, 0.35);
}

.skin-1 .product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--bith-widget-shadow-lg);
}

.skin-1 .product-image {
    height: 200px;
    background: var(--bith-widget-bg-subtle, #F7FAFC);
    overflow: hidden;
}

.skin-1 .product-image img {
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease;
}

.skin-1 .product-card:hover .product-image img {
    transform: scale(1.08);
}

.skin-1 .product-info,
.skin-2 .product-info,
.skin-4 .product-info,
.skin-6 .product-info,
.skin-8 .product-info,
.skin-12 .product-info {
    padding: 20px;
}

/* ===========================================
   SKIN 2: CENTER MODE HIGHLIGHT
   =========================================== */
.skin-2 .carousel-track {
    padding: 40px 100px;
    gap: 30px;
}

.skin-2 .product-card {
    flex: 0 0 280px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    transform: scale(0.85);
    filter: blur(1px);
}

.skin-2 .product-card.is-active {
    opacity: 1;
    transform: scale(1.15);
    filter: blur(0);
    box-shadow: 0 20px 40px -15px rgba(79, 209, 197, 0.3);
    z-index: 10;
}

.skin-2 .product-image {
    height: 220px;
    overflow: hidden;
}

.skin-2 .product-info {
    text-align: center;
    background: linear-gradient(to bottom, var(--bith-widget-surface, #fff) 0%, var(--bith-widget-bg-subtle, #F7FAFC) 100%);
}

.skin-2 .product-price .current {
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--bith-widget-primary, #4FD1C5), var(--bith-widget-secondary, #6366F1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skin-2 .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

/* ===========================================
   SKIN 3: PEEK-A-BOO (OFFSET)
   =========================================== */
.skin-3 .carousel-track {
    padding-right: calc(33.333% - 80px);
}

.skin-3 .product-card {
    flex: 0 0 calc(28% - 15px);
    min-width: 250px;
    height: 380px;
    cursor: pointer;
}

.skin-3 .product-image {
    position: absolute;
    inset: 0;
}

.skin-3 .product-image img {
    height: 100%;
    transition: transform 0.6s ease;
}

.skin-3 .product-card:hover .product-image img {
    transform: scale(1.1);
}

.skin-3 .product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    color: white;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.skin-3 .product-card:hover .product-overlay {
    transform: translateY(0);
    opacity: 1;
}

.skin-3 .product-brand {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bith-widget-primary-light, #81E6D9);
    display: block;
    margin-bottom: 8px;
}

.skin-3 .product-title {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.skin-3 .product-price {
    color: var(--bith-widget-accent, #F6AD55);
}

.skin-3 .carousel-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
    padding: 15px 20px;
    color: var(--bith-widget-text-muted);
    font-size: 0.85rem;
    animation: hintPulse 2s ease-in-out infinite;
}

@keyframes hintPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(5px);
    }
}

/* ===========================================
   SKIN 4: PROGRESS BAR NAVIGATION
   =========================================== */
.skin-4.bith-product-carousel-wrapper {
    background: var(--bith-widget-surface, #fff);
    border-radius: var(--bith-widget-radius-xl, 20px);
    padding: 30px;
    box-shadow: var(--bith-widget-shadow-md);
}

.skin-4 .carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.skin-4 .carousel-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bith-widget-text-heading);
}

.skin-4 .carousel-nav-buttons {
    display: flex;
    gap: 10px;
}

.skin-4 .nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bith-widget-bg-subtle, #EDF2F7);
    border: none;
    color: var(--bith-widget-text-heading);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.skin-4 .nav-btn:hover {
    background: var(--bith-widget-primary, #4FD1C5);
    color: white;
}

.skin-4 .carousel-track {
    padding-bottom: 25px;
}

.skin-4 .product-card {
    flex: 0 0 230px;
    background: var(--bith-widget-bg-subtle, #EDF2F7);
}

.skin-4 .product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bith-widget-shadow-md);
}

.skin-4 .product-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.skin-4 .quick-view {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bith-widget-text-heading, #1A202C);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}

.skin-4 .product-card:hover .quick-view {
    bottom: 15px;
}

.skin-4 .product-desc {
    font-size: 0.8rem;
    color: var(--bith-widget-text-muted);
    margin-bottom: 15px;
}

.skin-4 .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skin-4 .add-cart {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--bith-widget-primary, #4FD1C5);
    color: white;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.skin-4 .add-cart:hover {
    background: var(--bith-widget-primary-dark, #38B2AC);
    transform: scale(1.15) rotate(90deg);
}

.skin-4 .progress-bar-container {
    height: 4px;
    background: var(--bith-widget-bg-subtle, #EDF2F7);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 5px;
}

.skin-4 .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--bith-widget-primary, #4FD1C5), var(--bith-widget-secondary, #6366F1));
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
}

/* ===========================================
   SKIN 5: FULL IMAGE OVERLAY
   =========================================== */
.skin-5 .product-card {
    flex: 0 0 200px;
    height: 320px;
    cursor: pointer;
    box-shadow: var(--bith-widget-shadow-md);
}

.skin-5 .product-card img {
    height: 100%;
    transition: transform 0.5s ease;
}

.skin-5 .product-card:hover img {
    transform: scale(1.1);
}

.skin-5 .product-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    pointer-events: none;
}

.skin-5 .product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    color: white;
    z-index: 2;
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.skin-5 .product-card:hover .product-content {
    transform: translateY(0);
}

.skin-5 .product-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.skin-5 .product-title {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.skin-5 .product-price {
    font-size: 1.25rem;
    color: var(--bith-widget-primary-light, #81E6D9);
}

/* ===========================================
   SKIN 6: GLASSMORPHISM CONTROLS
   =========================================== */
.skin-6.bith-product-carousel-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: var(--bith-widget-radius-xl, 20px);
    padding: 30px 0;
}

.skin-6 .carousel-track {
    padding: 20px 60px;
    gap: 25px;
}

.skin-6 .product-card {
    flex: 0 0 300px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.skin-6 .product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.skin-6 .product-image {
    height: 180px;
    overflow: hidden;
}

.skin-6 .product-image img {
    transition: transform 0.5s ease;
}

.skin-6 .product-card:hover .product-image img {
    transform: scale(1.08);
}

.skin-6 .product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.skin-6 .product-category {
    font-size: 0.75rem;
    color: var(--bith-widget-secondary, #6366F1);
}

.skin-6 .product-rating {
    font-size: 0.8rem;
    color: var(--bith-widget-accent, #F6AD55);
    font-weight: 600;
}

.skin-6 .product-author {
    font-size: 0.85rem;
    color: var(--bith-widget-text-muted);
    margin-bottom: 12px;
}

.skin-6 .product-price {
    font-size: 1.2rem;
}

.skin-6 .glass-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.skin-6 .glass-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.skin-6 .glass-arrow-prev {
    left: 15px;
}

.skin-6 .glass-arrow-next {
    right: 15px;
}

/* ===========================================
   SKIN 7: CONTINUOUS TICKER
   =========================================== */
.skin-7.bith-product-carousel-wrapper {
    background: var(--bith-widget-surface, #fff);
    border-radius: var(--bith-widget-radius-xl, 20px);
    padding: 30px 0;
    box-shadow: var(--bith-widget-shadow-md);
    overflow: hidden;
}

.skin-7 .ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 25s linear infinite;
    padding: 0;
    overflow: visible;
}

.skin-7 .ticker-track:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.skin-7 .ticker-content {
    display: flex;
    gap: 40px;
    padding: 0 20px;
}

.skin-7 .brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: var(--bith-widget-radius-sm, 12px);
    background: var(--bith-widget-bg-subtle, #F7FAFC);
    transition: all 0.3s ease;
    cursor: pointer;
}

.skin-7 .brand-item:hover {
    background: var(--bith-widget-bg-alt, #EDF2F7);
    transform: translateY(-5px);
    box-shadow: var(--bith-widget-shadow-md);
}

.skin-7 .brand-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--bith-widget-radius-xs, 8px);
}

.skin-7 .brand-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bith-widget-text-heading);
}

.skin-7 .brand-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bith-widget-primary, #4FD1C5);
}

/* ===========================================
   SKIN 8: NEUMORPHIC CARDS
   =========================================== */
.skin-8.bith-product-carousel-wrapper {
    background: #E4EBF5;
    border-radius: var(--bith-widget-radius-xl, 20px);
    padding: 40px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.skin-8 .carousel-track {
    flex: 1;
    padding: 20px 10px;
}

.skin-8 .product-card {
    flex: 0 0 220px;
    background: #E4EBF5;
    box-shadow: 10px 10px 20px #c8d0e7, -10px -10px 20px #ffffff;
    border-radius: 20px;
    padding: 25px;
}

.skin-8 .product-card:hover {
    transform: translateY(-8px);
}

.skin-8 .product-image-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: #E4EBF5;
    box-shadow: inset 5px 5px 10px #c8d0e7, inset -5px -5px 10px #ffffff;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skin-8 .product-image-wrapper img {
    border-radius: 50%;
}

.skin-8 .product-info {
    text-align: center;
    padding: 0;
}

.skin-8 .product-rating {
    justify-content: center;
    color: var(--bith-widget-accent, #F6AD55);
}

.skin-8 .product-price {
    justify-content: center;
    color: var(--bith-widget-primary, #4FD1C5);
    margin-bottom: 18px;
}

.skin-8 .neu-button {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    background: #E4EBF5;
    color: var(--bith-widget-text-body, #2D3748);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 5px 5px 10px #c8d0e7, -5px -5px 10px #ffffff;
    transition: all 0.2s ease;
    text-align: center;
    display: block;
    text-decoration: none;
}

.skin-8 .neu-button:hover {
    color: var(--bith-widget-primary, #4FD1C5);
}

.skin-8 .neu-button:active {
    box-shadow: inset 3px 3px 6px #c8d0e7, inset -3px -3px 6px #ffffff;
}

.skin-8 .neu-arrow {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #E4EBF5;
    border: none;
    color: var(--bith-widget-text-body, #2D3748);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 8px 8px 16px #c8d0e7, -8px -8px 16px #ffffff;
}

.skin-8 .neu-arrow:hover {
    color: var(--bith-widget-primary, #4FD1C5);
}

.skin-8 .neu-arrow:active {
    box-shadow: inset 4px 4px 8px #c8d0e7, inset -4px -4px 8px #ffffff;
}

/* ===========================================
   SKIN 9: 3D COVERFLOW
   =========================================== */
.skin-9.bith-product-carousel-wrapper {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--bith-widget-radius-xl, 20px);
    padding: 60px 20px;
    perspective: 1000px;
}

.skin-9 .coverflow-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.skin-9 .carousel-track {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    padding: 0;
    width: auto;
    overflow: visible;
}

.skin-9 .product-card {
    flex: 0 0 250px;
    margin: 0 -30px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    background: transparent;
    box-shadow: none;
}

.skin-9 .product-card[data-index="0"] {
    transform: translateX(-120px) rotateY(45deg) scale(0.8);
    opacity: 0.6;
}

.skin-9 .product-card[data-index="1"] {
    transform: translateX(-60px) rotateY(25deg) scale(0.9);
    opacity: 0.8;
}

.skin-9 .product-card[data-index="2"] {
    transform: rotateY(0deg) scale(1.1);
    z-index: 10;
    opacity: 1;
}

.skin-9 .product-card[data-index="3"] {
    transform: translateX(60px) rotateY(-25deg) scale(0.9);
    opacity: 0.8;
}

.skin-9 .product-card[data-index="4"] {
    transform: translateX(120px) rotateY(-45deg) scale(0.8);
    opacity: 0.6;
}

.skin-9 .card-inner {
    position: relative;
    border-radius: var(--bith-widget-radius-lg, 15px);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.skin-9 .card-inner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.skin-9 .card-reflection {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    transform: scaleY(-1) translateY(-100%);
    opacity: 0.3;
    pointer-events: none;
}

.skin-9 .product-info {
    text-align: center;
    padding: 20px 10px;
    color: white;
}

.skin-9 .product-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.skin-9 .product-price {
    justify-content: center;
    font-size: 1.2rem;
    color: var(--bith-widget-primary-light, #81E6D9);
}

.skin-9 .coverflow-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.skin-9 .coverflow-prev,
.skin-9 .coverflow-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.skin-9 .coverflow-prev:hover,
.skin-9 .coverflow-next:hover {
    background: var(--bith-widget-primary, #4FD1C5);
    border-color: var(--bith-widget-primary, #4FD1C5);
    transform: scale(1.1);
}

/* ===========================================
   SKIN 10: POLAROID STACK
   =========================================== */
.skin-10.bith-product-carousel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}

.skin-10 .carousel-track {
    position: relative;
    width: 320px;
    height: 400px;
    overflow: visible;
}

.skin-10 .polaroid-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: transparent;
    box-shadow: none;
}

.skin-10 .polaroid-card:nth-child(1) {
    z-index: 5;
}

.skin-10 .polaroid-card:nth-child(2) {
    z-index: 4;
    transform: translateY(10px) rotate(2deg);
}

.skin-10 .polaroid-card:nth-child(3) {
    z-index: 3;
    transform: translateY(20px) rotate(-1deg);
}

.skin-10 .polaroid-card:nth-child(4) {
    z-index: 2;
    transform: translateY(30px) rotate(3deg);
}

.skin-10 .polaroid-card:nth-child(5) {
    z-index: 1;
    transform: translateY(40px) rotate(-2deg);
}

.skin-10 .polaroid-card.swiped {
    transform: translateX(400px) rotate(30deg) !important;
    opacity: 0;
    pointer-events: none;
}

.skin-10 .polaroid-frame {
    background: white;
    padding: 15px 15px 60px;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1), 0 10px 30px rgba(0, 0, 0, 0.15);
}

.skin-10 .polaroid-frame img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 2px;
}

.skin-10 .polaroid-caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skin-10 .polaroid-caption .product-title {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Caveat', cursive, 'Inter', sans-serif;
}

.skin-10 .polaroid-caption .product-price {
    font-size: 1.1rem;
    color: var(--bith-widget-primary, #4FD1C5);
}

.skin-10 .polaroid-card:hover {
    transform: translateY(-10px) rotate(0deg) scale(1.02);
}

.skin-10 .polaroid-hint {
    margin-top: 80px;
    color: var(--bith-widget-text-muted);
    font-size: 0.9rem;
    animation: hintPulse 2s ease-in-out infinite;
}

/* ===========================================
   SKIN 11: SPLIT REVEAL
   =========================================== */
.skin-11 .product-card {
    flex: 0 0 260px;
    height: 360px;
}

.skin-11 .split-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--card-radius);
    overflow: hidden;
    cursor: pointer;
}

.skin-11 .split-top,
.skin-11 .split-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 50%;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.skin-11 .split-top {
    top: 0;
}

.skin-11 .split-bottom {
    bottom: 0;
}

.skin-11 .split-top img,
.skin-11 .split-bottom img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.skin-11 .split-top img {
    transform: translateY(0);
}

.skin-11 .split-bottom img {
    transform: translateY(-50%);
}

.skin-11 .split-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--bith-widget-primary, #4FD1C5) 0%, var(--bith-widget-secondary, #6366F1) 100%);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skin-11 .product-card:hover .split-top {
    transform: translateY(-30%);
}

.skin-11 .product-card:hover .split-bottom {
    transform: translateY(30%);
}

.skin-11 .product-card:hover .split-content {
    opacity: 1;
}

.skin-11 .split-content .product-category {
    font-size: 0.7rem;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 10px;
    color: white;
}

.skin-11 .split-content .product-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.skin-11 .split-content .product-desc {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.skin-11 .split-content .product-price {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 20px;
    justify-content: center;
}

.skin-11 .split-cta {
    background: white;
    color: var(--bith-widget-secondary, #6366F1);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.skin-11 .split-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===========================================
   SKIN 12: HOLOGRAPHIC SHIMMER
   =========================================== */
.skin-12 .product-card {
    flex: 0 0 260px;
    position: relative;
}

.skin-12 .product-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: var(--bith-widget-shadow-xl);
}

.skin-12 .holo-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.2) 0%, rgba(0, 255, 255, 0.2) 25%, rgba(255, 255, 0, 0.2) 50%, rgba(0, 255, 128, 0.2) 75%, rgba(128, 0, 255, 0.2) 100%);
    background-size: 400% 400%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 5;
    mix-blend-mode: overlay;
}

.skin-12 .product-card:hover .holo-layer {
    opacity: 1;
    animation: holoShimmer 2s linear infinite;
}

@keyframes holoShimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.skin-12 .product-image {
    height: 200px;
    overflow: hidden;
}

.skin-12 .product-image img {
    transition: transform 0.5s ease;
}

.skin-12 .product-card:hover .product-image img {
    transform: scale(1.1);
}

.skin-12 .product-badge {
    position: static;
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #48dbfb 100%);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    margin-bottom: 12px;
}

.skin-12 .product-info {
    text-align: center;
}

.skin-12 .product-price {
    font-size: 1.3rem;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================================
   SKIN 13: MAGNETIC FLOAT
   =========================================== */
.skin-13.bith-product-carousel-wrapper {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    border-radius: var(--bith-widget-radius-xl, 20px);
    padding: 50px 20px;
}

.skin-13 .carousel-track {
    padding: 30px;
    gap: 30px;
}

.skin-13 .magnetic-card {
    flex: 0 0 250px;
    position: relative;
    transition: transform 0.2s ease-out;
}

.skin-13 .magnetic-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--bith-widget-radius-xl, 20px);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.skin-13 .magnetic-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--bith-widget-primary, #4FD1C5), var(--bith-widget-secondary, #6366F1), var(--bith-widget-accent, #F6AD55));
    border-radius: var(--bith-widget-radius-xl, 20px);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
    filter: blur(8px);
}

.skin-13 .magnetic-card:hover .magnetic-glow {
    opacity: 0.6;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.7;
    }
}

.skin-13 .product-image {
    height: 180px;
    overflow: hidden;
}

.skin-13 .product-image img {
    transition: transform 0.5s ease;
}

.skin-13 .magnetic-card:hover .product-image img {
    transform: scale(1.1);
}

.skin-13 .product-info {
    padding: 20px;
    text-align: center;
    color: white;
}

.skin-13 .product-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.skin-13 .product-price {
    justify-content: center;
    font-size: 1.2rem;
    color: var(--bith-widget-primary-light, #81E6D9);
    margin-bottom: 15px;
}

.skin-13 .magnetic-btn {
    background: linear-gradient(135deg, var(--bith-widget-primary, #4FD1C5) 0%, var(--bith-widget-secondary, #6366F1) 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.skin-13 .magnetic-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(79, 209, 197, 0.4);
}

/* ===========================================
   SKIN 14: ACCORDION EXPAND
   =========================================== */
.skin-14.bith-product-carousel-wrapper {
    background: var(--bith-widget-surface, #fff);
    border-radius: var(--bith-widget-radius-xl, 20px);
    padding: 30px;
    box-shadow: var(--bith-widget-shadow-md);
}

.skin-14 .carousel-track {
    display: flex;
    gap: 10px;
    height: 400px;
    padding: 0;
    overflow: visible;
}

.skin-14 .product-card {
    flex: 1;
    min-width: 80px;
    border-radius: var(--bith-widget-radius-sm, 12px);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.skin-14 .product-card:hover {
    flex: 4;
}

.skin-14 .accordion-image {
    position: absolute;
    inset: 0;
}

.skin-14 .accordion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.skin-14 .product-card:hover .accordion-image img {
    transform: scale(1.1);
}

.skin-14 .accordion-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.skin-14 .product-card:hover .accordion-content {
    opacity: 1;
    transform: translateY(0);
}

.skin-14 .product-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bith-widget-primary, #4FD1C5);
    opacity: 0.8;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.skin-14 .product-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.skin-14 .product-desc {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.5;
}

.skin-14 .product-price {
    color: var(--bith-widget-primary-light, #81E6D9);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 15px;
}

.skin-14 .accordion-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.skin-14 .accordion-btn:hover {
    background: white;
    color: var(--bith-widget-text-heading, #1A202C);
}

/* ===========================================
   SKIN 15: FLIP CARD SHOWCASE
   =========================================== */
.skin-15 .carousel-track {
    padding: 30px 20px;
    perspective: 1000px;
}

.skin-15 .flip-card {
    flex: 0 0 240px;
    height: 360px;
    perspective: 1000px;
}

.skin-15 .flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.skin-15 .flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

.skin-15 .flip-front,
.skin-15 .flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: var(--bith-widget-radius-xl, 20px);
    overflow: hidden;
}

.skin-15 .flip-front {
    background: var(--bith-widget-surface, #fff);
}

.skin-15 .flip-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skin-15 .flip-front-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skin-15 .flip-card:hover .flip-front-overlay {
    opacity: 1;
}

.skin-15 .flip-hint {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
}

.skin-15 .flip-back {
    background: linear-gradient(135deg, var(--bith-widget-primary, #4FD1C5) 0%, var(--bith-widget-secondary, #6366F1) 100%);
    transform: rotateY(180deg);
    padding: 25px;
    display: flex;
    align-items: center;
}

.skin-15 .flip-back-content {
    text-align: center;
    color: white;
    width: 100%;
}

.skin-15 .flip-back .product-category {
    font-size: 0.7rem;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 12px;
    display: block;
    color: white;
}

.skin-15 .flip-back .product-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.skin-15 .flip-back .product-desc {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 15px;
    line-height: 1.5;
}

.skin-15 .flip-back .product-specs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.8rem;
}

.skin-15 .flip-back .product-price {
    color: white;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 18px;
}

.skin-15 .flip-cta {
    background: white;
    color: var(--bith-widget-secondary, #6366F1);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.skin-15 .flip-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===========================================
   SKIN 16: NEON CYBERPUNK
   =========================================== */
.skin-16.bith-product-carousel-wrapper {
    position: relative;
    background: #0a0a0f;
    border-radius: var(--bith-widget-radius-xl, 20px);
    padding: 40px 20px;
    overflow: hidden;
}

.skin-16 .cyber-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 49.5%, rgba(0, 255, 255, 0.03) 49.5%, rgba(0, 255, 255, 0.03) 50.5%, transparent 50.5%),
        linear-gradient(transparent 49.5%, rgba(0, 255, 255, 0.03) 49.5%, rgba(0, 255, 255, 0.03) 50.5%, transparent 50.5%);
    background-size: 50px 50px;
    pointer-events: none;
}

.skin-16 .carousel-track {
    position: relative;
    z-index: 2;
    padding: 30px;
    gap: 25px;
}

.skin-16 .cyber-card {
    flex: 0 0 260px;
    position: relative;
}

.skin-16 .cyber-border {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #00ffff, #ff00ff, #00ffff);
    border-radius: var(--bith-widget-radius-xl, 20px);
    z-index: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.skin-16 .cyber-card:hover .cyber-border {
    opacity: 1;
    animation: neonPulse 1.5s ease-in-out infinite;
}

@keyframes neonPulse {

    0%,
    100% {
        filter: blur(3px) brightness(1);
        opacity: 0.8;
    }

    50% {
        filter: blur(5px) brightness(1.3);
        opacity: 1;
    }
}

.skin-16 .cyber-content {
    position: relative;
    background: #0a0a0f;
    border-radius: calc(var(--bith-widget-radius-xl, 20px) - 2px);
    overflow: hidden;
    z-index: 1;
}

.skin-16 .product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.skin-16 .product-image img {
    filter: saturate(0.8);
    transition: all 0.4s ease;
}

.skin-16 .cyber-card:hover .product-image img {
    filter: saturate(1.2);
}

.skin-16 .cyber-scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.1) 2px, rgba(0, 0, 0, 0.1) 4px);
    pointer-events: none;
    animation: scanlineMove 8s linear infinite;
}

@keyframes scanlineMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(100%);
    }
}

.skin-16 .product-info {
    padding: 20px;
    text-align: center;
}

.skin-16 .cyber-tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: #00ffff;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
    display: block;
    margin-bottom: 10px;
}

.skin-16 .cyber-glitch {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.skin-16 .cyber-card:hover .cyber-glitch {
    animation: glitchText 0.3s infinite;
}

@keyframes glitchText {
    0% {
        text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff;
    }

    25% {
        text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff;
    }

    50% {
        text-shadow: 2px 2px #ff00ff, -2px -2px #00ffff;
    }

    75% {
        text-shadow: -2px 2px #ff00ff, 2px -2px #00ffff;
    }

    100% {
        text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff;
    }
}

.skin-16 .product-title {
    color: white;
}

.skin-16 .product-price {
    color: #ff00ff;
    margin-top: 10px;
    font-family: 'Courier New', monospace;
    justify-content: center;
}

.skin-16 .cyber-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.skin-16 .cyber-arrow {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid #00ffff;
    color: #00ffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}

.skin-16 .cyber-arrow:hover {
    background: #00ffff;
    color: #0a0a0f;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 1024px) {
    .skin-1 .product-card {
        flex: 0 0 220px;
    }

    .skin-3 .product-card {
        flex: 0 0 calc(40% - 10px);
        min-width: 220px;
    }

    .skin-6 .glass-arrow {
        width: 45px;
        height: 45px;
    }

    .skin-14 .carousel-track {
        height: 350px;
    }

    .skin-14 .product-card {
        min-width: 60px;
    }
}

@media (max-width: 768px) {
    .skin-1 {
        flex-direction: column;
        gap: 15px;
    }

    .skin-1 .carousel-arrow {
        display: none;
    }

    .skin-2 .carousel-track {
        padding: 30px 50px;
    }

    .skin-2 .product-card.is-active {
        transform: scale(1.08);
    }

    .skin-3 .product-card {
        flex: 0 0 calc(70% - 10px);
        height: 320px;
    }

    .skin-4 .carousel-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .skin-5 .product-card {
        flex: 0 0 170px;
        height: 280px;
    }

    .skin-6 {
        padding: 20px 0;
    }

    .skin-6 .carousel-track {
        padding: 15px 20px;
        gap: 15px;
    }

    .skin-6 .product-card {
        flex: 0 0 260px;
    }

    .skin-6 .glass-arrow {
        width: 40px;
        height: 40px;
    }

    .skin-6 .glass-arrow-prev {
        left: 10px;
    }

    .skin-6 .glass-arrow-next {
        right: 10px;
    }

    .skin-8 {
        flex-direction: column;
        padding: 30px 20px;
    }

    .skin-8 .neu-arrow {
        display: none;
    }

    .skin-8 .product-card {
        flex: 0 0 200px;
    }

    .skin-9 .product-card {
        flex: 0 0 200px;
        margin: 0 -20px;
    }

    .skin-9 .coverflow-container {
        min-height: 350px;
    }

    .skin-10 .carousel-track {
        width: 280px;
        height: 360px;
    }

    .skin-10 .polaroid-frame img {
        height: 240px;
    }

    .skin-11 .product-card {
        flex: 0 0 240px;
        height: 320px;
    }

    .skin-14 {
        padding: 20px;
    }

    .skin-14 .carousel-track {
        flex-direction: column;
        height: auto;
    }

    .skin-14 .product-card {
        min-height: 100px;
        flex: 1;
    }

    .skin-14 .product-card:hover {
        flex: 3;
    }

    .skin-15 .flip-card {
        flex: 0 0 220px;
        height: 320px;
    }

    .skin-16 .cyber-card {
        flex: 0 0 240px;
    }
}

@media (max-width: 480px) {
    .skin-1 .product-card {
        flex: 0 0 85%;
    }

    .skin-3 .product-card {
        flex: 0 0 85%;
    }

    .skin-4 .product-card {
        flex: 0 0 200px;
    }

    .skin-5 .product-card {
        flex: 0 0 160px;
        height: 260px;
    }

    .skin-6 .product-card {
        flex: 0 0 85%;
    }

    .skin-9 .carousel-track {
        flex-direction: column;
        align-items: center;
    }

    .skin-9 .product-card {
        margin: 10px 0;
        transform: none !important;
        opacity: 1 !important;
    }

    .skin-10 .carousel-track {
        width: 260px;
        height: 340px;
    }

    .skin-11 .product-card {
        flex: 0 0 85%;
    }

    .skin-12 .product-card {
        flex: 0 0 85%;
    }

    .skin-13 .magnetic-card {
        flex: 0 0 85%;
    }

    .skin-15 .flip-card {
        flex: 0 0 85%;
        height: 300px;
    }

    .skin-16 .cyber-card {
        flex: 0 0 85%;
    }
}