/* Premium Luxury Color Scheme Override for Shop Cards */

.card-v2 {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e8e9eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(243, 156, 18, 0.15), 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: #f39c12;
}

.card-v2-slideshow {
    height: 320px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1f2e 0%, #2c3e50 100%);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-y;
}

.card-v2-slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    filter: brightness(1.05) contrast(1.05);
}

.card-v2-slideshow img.active {
    opacity: 1;
}

.card-v2-status-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(243, 156, 18, 0.3);
    border-radius: 10px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(243, 156, 18, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-v2-status-badge svg {
    width: 20px;
    height: 20px;
    color: #f39c12;
    flex-shrink: 0;
}

.card-v2-status-badge span {
    color: #2c3e50;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-v2-dots {
    position: absolute;
    bottom: 20px;
    right: 16px;
    
    display: flex;
    gap: 10px;
    z-index: 10;
}

.card-v2-dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-v2-dot.active {
    background: #f39c12;
    border-color: #f39c12;
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(243, 156, 18, 0.6);
}

.card-v2-divider {
    height: 2px;
    background: linear-gradient(90deg, #f39c12 0%, #e67e22 50%, #d35400 100%);
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.4);
}

.card-v2-body {
    padding: 28px;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
}

.card-v2-body-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.card-v2-body-link:hover {
    background: #fafbfc;
}

.card-v2:has(.card-v2-body-link:hover) {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Card Original Styles - Premium Version */
.card-original-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f1f3;
}

.card-original-title-block h3 {
    color: #1a1f2e;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.card-original-title-block p {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.card-original-badge {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1.5px solid #fbbf24;
    box-shadow: 0 2px 6px rgba(251, 191, 36, 0.2);
    letter-spacing: 0.5px;
}

.card-original-stats {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 24px;
}

.card-original-stat {
    text-align: center;
    flex: 1;
    padding: 18px 12px;
    background: linear-gradient(145deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
}

.card-original-stat:hover {
    border-color: #f39c12;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.15);
}

.card-original-stat-value {
    font-size: clamp(16px, 1.8vw, 17px);
    font-weight: 800;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    word-break: break-word;
    overflow-wrap: break-word;
    margin-bottom: 6px;
}
    .card-original-stat-label {
        font-size: 9px;
    }

.card-original-stat-label {
    font-size: clamp(9px, 0.8vw, 10px);
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    word-break: break-word;
}

.card-original-features {
    margin-bottom: 24px;
}

.card-original-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
}

.card-original-feature::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 50%;
    color: #f39c12;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
    border: 2px solid #fbbf24;
    box-shadow: 0 2px 6px rgba(251, 191, 36, 0.2);
}

.card-v2-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 2px solid #f0f1f3;
}

.card-v2-price {
    flex: 1;
}

.card-v2-price-value {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #1a1f2e 0%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.card-v2-price-note {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
}

.card-v2-button {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.35), 0 2px 6px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
}

.card-v2-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.45), 0 3px 10px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.card-v2-button svg {
    width: 20px;
    height: 19px;
    flex-shrink: 0;
}
