/* ========================================
   SPARKLEVIDA SHORTCODES CSS
   Advanced homepage components
   ======================================== */

/* ----------------------------------------
   VIDEO HERO
   ---------------------------------------- */
.sv-hero-video {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1a1a1a;
}

.sv-hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.sv-hero-video-overlay {
    position: absolute;
    inset: 0;
}

.sv-hero-video-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 60px 20px;
    color: #fff;
}

.sv-hero-video-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.sv-hero-video-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    opacity: 0.9;
    margin: 0 0 30px 0;
}

.sv-hero-video-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: inherit;
}

.sv-hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    opacity: 0.7;
    text-align: center;
    animation: svBounce 2s infinite;
}

.sv-hero-scroll-indicator span {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
}

@keyframes svBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ----------------------------------------
   ANNOUNCEMENT BAR
   ---------------------------------------- */
.sv-announcement-bar {
    padding: 12px 20px;
    text-align: center;
    color: #fff;
    position: relative;
}

.sv-announce-gradient {
    background: linear-gradient(135deg, var(--sv-accent, #B76E79), var(--sv-accent2, #D4AF37));
}

.sv-announce-sticky {
    position: sticky;
    top: 0;
    z-index: 999;
}

.sv-announce-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sv-announce-icon {
    font-size: 18px;
}

.sv-announce-text {
    font-weight: 500;
}

.sv-announce-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.sv-announce-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
}

/* ----------------------------------------
   PAGE HEADER
   ---------------------------------------- */
.sv-page-header {
    position: relative;
    padding: 40px 20px;
}

.sv-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sv-text, #2D2D2D);
    margin: 0 0 15px 0;
}

.sv-page-subtitle {
    font-size: 1.1rem;
    color: var(--sv-text-secondary, #666);
    margin: 0;
}

.sv-header-small .sv-page-title { font-size: 1.8rem; }
.sv-header-large .sv-page-title { font-size: 3rem; }

.sv-header-sparkle {
    position: absolute;
    color: var(--sv-accent, #B76E79);
    font-size: 24px;
    animation: svSparkle 2s infinite;
}

.sv-header-sparkle-1 { top: 20px; left: 10%; }
.sv-header-sparkle-2 { top: 30px; right: 15%; animation-delay: 0.5s; }

@keyframes svSparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ----------------------------------------
   COLOR EXPLORER
   ---------------------------------------- */
.sv-color-explorer {
    display: grid;
    grid-template-columns: repeat(var(--columns, 4), 1fr);
    gap: 20px;
    padding: 20px 0;
}

.sv-color-card {
    background: var(--sv-bg-card, #fff);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--sv-border, #eee);
}

.sv-color-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.sv-color-swatch-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-hex);
    margin: 0 auto 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.sv-color-shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.5) 50%, transparent 60%);
    animation: svShimmerMove 3s infinite;
}

@keyframes svShimmerMove {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.sv-color-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.sv-color-icon { font-size: 20px; }
.sv-color-title { 
    font-weight: 600; 
    font-size: 16px;
    color: var(--sv-text, #2D2D2D);
}

.sv-color-uses {
    font-size: 13px;
    color: var(--sv-text-muted, #999);
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.sv-color-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--sv-accent, #B76E79);
    text-decoration: none;
}

.sv-color-link:hover {
    text-decoration: underline;
}

/* Explorer style: circles */
.sv-explorer-circles .sv-color-card {
    background: transparent;
    border: none;
    padding: 10px;
}

.sv-explorer-circles .sv-color-swatch-large {
    width: 100px;
    height: 100px;
}

/* Explorer style: swatches */
.sv-explorer-swatches {
    gap: 5px;
}

.sv-explorer-swatches .sv-color-card {
    padding: 0;
    border: none;
    aspect-ratio: 1;
    background: var(--color-hex);
    border-radius: 8px;
}

.sv-explorer-swatches .sv-color-swatch-large,
.sv-explorer-swatches .sv-color-uses,
.sv-explorer-swatches .sv-color-link { display: none; }

.sv-explorer-swatches .sv-color-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.sv-explorer-swatches .sv-color-card {
    position: relative;
    overflow: hidden;
}

.sv-explorer-swatches .sv-color-card:hover .sv-color-info {
    opacity: 1;
}

/* ----------------------------------------
   COLOR SPOTLIGHT
   ---------------------------------------- */
.sv-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 40px;
    background: var(--sv-bg-elevated, #f5f5f5);
    border-radius: 20px;
}

.sv-spotlight-right {
    direction: rtl;
}

.sv-spotlight-right > * {
    direction: ltr;
}

.sv-spotlight-center {
    grid-template-columns: 1fr;
    text-align: center;
}

.sv-spotlight-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.sv-spotlight-swatch {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--spotlight-color);
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.sv-spotlight-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: var(--spotlight-color);
    opacity: 0.3;
    filter: blur(30px);
    animation: svPulse 3s infinite;
}

@keyframes svPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.sv-spotlight-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
}

.sv-spotlight-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sv-accent, #B76E79);
    margin-bottom: 10px;
}

.sv-spotlight-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--sv-text, #2D2D2D);
}

.sv-spotlight-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--sv-text-secondary, #666);
    margin: 0 0 25px 0;
}

/* ----------------------------------------
   QUICK SHOP
   ---------------------------------------- */
.sv-quick-shop {
    text-align: center;
    padding: 40px 0;
}

.sv-quick-shop-title {
    font-size: 1.8rem;
    margin: 0 0 10px 0;
}

.sv-quick-shop-subtitle {
    color: var(--sv-text-muted, #999);
    margin: 0 0 30px 0;
}

.sv-quick-shop-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.sv-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--sv-bg-card, #fff);
    border: 2px solid var(--sv-border, #eee);
    border-radius: 30px;
    text-decoration: none;
    color: var(--sv-text, #2D2D2D);
    font-weight: 500;
    transition: all 0.3s ease;
}

.sv-quick-btn:hover {
    border-color: var(--btn-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.sv-quick-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--btn-color);
}

/* Style: pills */
.sv-qs-pills .sv-quick-btn {
    padding: 8px 16px;
    font-size: 14px;
}

/* Style: circles */
.sv-qs-circles .sv-quick-btn {
    flex-direction: column;
    padding: 15px;
    border-radius: 15px;
}

.sv-qs-circles .sv-quick-swatch {
    width: 50px;
    height: 50px;
}

/* ----------------------------------------
   BUNDLE SHOWCASE
   ---------------------------------------- */
.sv-bundle-showcase {
    padding: 40px 0;
    text-align: center;
}

.sv-bundle-showcase-title {
    font-size: 1.8rem;
    margin: 0 0 10px 0;
}

.sv-bundle-showcase-subtitle {
    color: var(--sv-text-muted, #999);
    margin: 0 0 30px 0;
}

.sv-bundle-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 3), 1fr);
    gap: 25px;
}

.sv-bundle-card {
    background: var(--sv-bg-card, #fff);
    border: 1px solid var(--sv-border, #eee);
    border-radius: 15px;
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.sv-bundle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.sv-bundle-colors {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.sv-bundle-dot {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.sv-bundle-more {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--sv-bg-elevated, #f5f5f5);
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-bundle-name {
    font-size: 1.2rem;
    margin: 0 0 10px 0;
}

.sv-bundle-desc {
    font-size: 14px;
    color: var(--sv-text-secondary, #666);
    margin: 0 0 15px 0;
}

.sv-bundle-count {
    font-size: 13px;
    color: var(--sv-accent, #B76E79);
    font-weight: 500;
}

/* ----------------------------------------
   TESTIMONIALS
   ---------------------------------------- */
.sv-testimonials {
    padding: 40px 0;
}

.sv-testimonials-title {
    text-align: center;
    font-size: 1.8rem;
    margin: 0 0 40px 0;
}

.sv-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 3), 1fr);
    gap: 25px;
}

.sv-testimonial-card {
    background: var(--sv-bg-card, #fff);
    border: 1px solid var(--sv-border, #eee);
    border-radius: 15px;
    padding: 30px;
}

.sv-testimonial-rating {
    margin-bottom: 15px;
}

.sv-testimonial-quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--sv-text-secondary, #666);
    margin: 0 0 20px 0;
    font-style: italic;
}

.sv-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sv-testimonial-name {
    font-weight: 600;
    color: var(--sv-text, #2D2D2D);
}

.sv-testimonial-location {
    font-size: 13px;
    color: var(--sv-text-muted, #999);
}

.sv-testimonial-product {
    display: inline-block;
    margin-top: 15px;
    font-size: 12px;
    color: var(--sv-accent, #B76E79);
    background: var(--sv-accent-glow, rgba(183, 110, 121, 0.1));
    padding: 5px 12px;
    border-radius: 20px;
}

/* ----------------------------------------
   STATS COUNTER
   ---------------------------------------- */
.sv-stats {
    padding: 40px 0;
}

.sv-stats-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 4), 1fr);
    gap: 30px;
    text-align: center;
}

.sv-stat-item {
    padding: 20px;
}

.sv-stat-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.sv-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--sv-accent, #B76E79);
    display: block;
    line-height: 1;
}

.sv-stat-label {
    font-size: 14px;
    color: var(--sv-text-secondary, #666);
    margin-top: 10px;
    display: block;
}

/* Minimal style */
.sv-stats-minimal .sv-stat-icon { display: none; }
.sv-stats-minimal .sv-stat-number { font-size: 2.5rem; }

/* Bold style */
.sv-stats-bold {
    background: var(--sv-bg-elevated, #f5f5f5);
    border-radius: 20px;
    padding: 60px 40px;
}

/* ----------------------------------------
   TRUST BADGES
   ---------------------------------------- */
.sv-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30px 0;
}

.sv-trust-horizontal {
    flex-wrap: wrap;
}

.sv-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.sv-trust-vertical {
    flex-direction: column;
    align-items: flex-start;
}

.sv-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sv-trust-icon {
    font-size: 28px;
}

.sv-trust-small .sv-trust-icon { font-size: 20px; }
.sv-trust-large .sv-trust-icon { font-size: 36px; }

.sv-trust-text {
    display: flex;
    flex-direction: column;
}

.sv-trust-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--sv-text, #2D2D2D);
}

.sv-trust-desc {
    font-size: 12px;
    color: var(--sv-text-muted, #999);
}

/* ----------------------------------------
   SOCIAL PROOF
   ---------------------------------------- */
.sv-social-proof {
    position: fixed;
    z-index: 1000;
    background: var(--sv-bg-card, #fff);
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
    padding: 15px 20px;
    max-width: 320px;
    animation: svSlideIn 0.5s ease;
}

.sv-social-proof[data-position="bottom-left"] {
    bottom: 20px;
    left: 20px;
}

.sv-social-proof[data-position="bottom-right"] {
    bottom: 20px;
    right: 20px;
}

@keyframes svSlideIn {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.sv-sp-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sv-sp-icon {
    font-size: 24px;
}

.sv-sp-message {
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.sv-sp-time {
    display: block;
    font-size: 12px;
    color: var(--sv-text-muted, #999);
}

/* Inline style */
.sv-sp-inline {
    position: relative;
    display: inline-flex;
    max-width: none;
    box-shadow: none;
    background: var(--sv-bg-elevated, #f5f5f5);
}

/* ----------------------------------------
   INSTAGRAM GRID
   ---------------------------------------- */
.sv-instagram {
    text-align: center;
    padding: 40px 0;
}

.sv-instagram-title {
    font-size: 2rem;
    margin: 0 0 10px 0;
    color: var(--sv-accent, #B76E79);
}

.sv-instagram-subtitle {
    color: var(--sv-text-secondary, #666);
    margin: 0 0 30px 0;
}

.sv-instagram-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 4), 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.sv-instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
}

.sv-instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sv-instagram-item:hover img {
    transform: scale(1.1);
}

.sv-instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.sv-instagram-item:hover .sv-instagram-overlay {
    opacity: 1;
}

.sv-instagram-icon {
    font-size: 32px;
}

.sv-instagram-placeholder {
    padding: 60px;
    background: var(--sv-bg-elevated, #f5f5f5);
    border-radius: 15px;
    color: var(--sv-text-muted, #999);
}

/* ----------------------------------------
   HOW IT WORKS
   ---------------------------------------- */
.sv-how-it-works {
    padding: 60px 0;
    text-align: center;
}

.sv-hiw-title {
    font-size: 2rem;
    margin: 0 0 10px 0;
}

.sv-hiw-subtitle {
    color: var(--sv-text-secondary, #666);
    margin: 0 0 50px 0;
}

.sv-hiw-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.sv-hiw-step {
    flex: 1;
    max-width: 280px;
    padding: 30px;
    background: var(--sv-bg-card, #fff);
    border-radius: 15px;
    border: 1px solid var(--sv-border, #eee);
    position: relative;
}

.sv-hiw-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--sv-accent, #B76E79);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-hiw-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.sv-hiw-step-title {
    font-size: 1.1rem;
    margin: 0 0 10px 0;
}

.sv-hiw-step-desc {
    font-size: 14px;
    color: var(--sv-text-secondary, #666);
    margin: 0;
    line-height: 1.6;
}

.sv-hiw-arrow {
    font-size: 24px;
    color: var(--sv-accent, #B76E79);
    align-self: center;
    margin-top: 40px;
}

/* Vertical style */
.sv-hiw-vertical .sv-hiw-steps {
    flex-direction: column;
    align-items: center;
}

.sv-hiw-vertical .sv-hiw-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
}

/* Cards style */
.sv-hiw-cards .sv-hiw-step {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ----------------------------------------
   USE CASES
   ---------------------------------------- */
.sv-use-cases {
    padding: 60px 0;
}

.sv-uc-title {
    text-align: center;
    font-size: 2rem;
    margin: 0 0 40px 0;
}

.sv-uc-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.sv-uc-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--sv-bg-elevated, #f5f5f5);
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sv-uc-tab.active,
.sv-uc-tab:hover {
    background: var(--sv-bg-card, #fff);
    border-color: var(--sv-accent, #B76E79);
    color: var(--sv-accent, #B76E79);
}

.sv-uc-tab-icon {
    font-size: 20px;
}

.sv-uc-panel {
    display: none;
}

.sv-uc-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    animation: svFadeIn 0.4s ease;
}

.sv-uc-content h4 {
    font-size: 1.6rem;
    margin: 0 0 15px 0;
}

.sv-uc-content p {
    color: var(--sv-text-secondary, #666);
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.sv-uc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.sv-uc-list li {
    padding: 8px 0;
    color: var(--sv-text-secondary, #666);
}

.sv-uc-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ----------------------------------------
   COMPARISON TABLE
   ---------------------------------------- */
.sv-comparison {
    padding: 60px 0;
}

.sv-comparison-title {
    text-align: center;
    font-size: 2rem;
    margin: 0 0 40px 0;
}

.sv-comparison-table {
    max-width: 700px;
    margin: 0 auto;
    background: var(--sv-bg-card, #fff);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.sv-comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--sv-bg-elevated, #f5f5f5);
    font-weight: 600;
    font-size: 14px;
}

.sv-comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-top: 1px solid var(--sv-border, #eee);
}

.sv-comparison-header > div,
.sv-comparison-row > div {
    padding: 18px 20px;
}

.sv-comparison-us {
    background: rgba(183, 110, 121, 0.05);
    color: var(--sv-accent, #B76E79);
}

.sv-comparison-them {
    color: var(--sv-text-muted, #999);
}

/* ----------------------------------------
   FAQ SECTION
   ---------------------------------------- */
.sv-faq-section {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.sv-faq-title {
    text-align: center;
    font-size: 2rem;
    margin: 0 0 40px 0;
}

.sv-faq-item {
    border: 1px solid var(--sv-border, #eee);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.sv-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--sv-bg-card, #fff);
    border: none;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}

.sv-faq-question:hover {
    background: var(--sv-bg-elevated, #f5f5f5);
}

.sv-faq-toggle {
    font-size: 24px;
    color: var(--sv-accent, #B76E79);
    transition: transform 0.3s;
}

.sv-faq-item.active .sv-faq-toggle {
    transform: rotate(45deg);
}

.sv-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sv-faq-item.active .sv-faq-answer {
    max-height: 300px;
}

.sv-faq-answer > div {
    padding: 0 25px 20px;
    color: var(--sv-text-secondary, #666);
    line-height: 1.7;
}

/* ----------------------------------------
   PROCESS TIMELINE
   ---------------------------------------- */
.sv-timeline {
    padding: 60px 0;
    text-align: center;
}

.sv-timeline-title {
    font-size: 2rem;
    margin: 0 0 10px 0;
}

.sv-timeline-subtitle {
    color: var(--sv-text-secondary, #666);
    margin: 0 0 50px 0;
}

.sv-timeline-track {
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.sv-timeline-track::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--sv-accent, #B76E79), var(--sv-accent2, #D4AF37));
    z-index: 0;
}

.sv-timeline-item {
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

.sv-timeline-dot {
    width: 60px;
    height: 60px;
    background: var(--sv-bg-card, #fff);
    border: 3px solid var(--sv-accent, #B76E79);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-timeline-icon {
    font-size: 24px;
}

.sv-timeline-content h4 {
    font-size: 1rem;
    margin: 0 0 8px 0;
}

.sv-timeline-content p {
    font-size: 13px;
    color: var(--sv-text-muted, #999);
    margin: 0;
}

/* ----------------------------------------
   OCCASIONS
   ---------------------------------------- */
.sv-occasions {
    padding: 60px 0;
    text-align: center;
}

.sv-occasions-title {
    font-size: 2rem;
    margin: 0 0 10px 0;
}

.sv-occasions-subtitle {
    color: var(--sv-text-secondary, #666);
    margin: 0 0 40px 0;
}

.sv-occasions-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 4), 1fr);
    gap: 20px;
}

.sv-occasion-card {
    display: block;
    padding: 30px 20px;
    background: var(--sv-bg-card, #fff);
    border: 1px solid var(--sv-border, #eee);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sv-occasion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--sv-accent, #B76E79);
}

.sv-occasion-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.sv-occasion-title {
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    color: var(--sv-text, #2D2D2D);
}

.sv-occasion-colors {
    font-size: 13px;
    color: var(--sv-text-muted, #999);
    margin: 0;
}

/* ----------------------------------------
   COUNTDOWN
   ---------------------------------------- */
.sv-countdown {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--sv-accent, #B76E79), var(--sv-accent2, #D4AF37));
    border-radius: 20px;
    color: #fff;
}

.sv-countdown-title {
    font-size: 1.3rem;
    margin: 0 0 25px 0;
    font-weight: 500;
}

.sv-countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.sv-countdown-unit {
    text-align: center;
}

.sv-countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    background: rgba(255,255,255,0.2);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 80px;
}

.sv-countdown-label {
    display: block;
    font-size: 12px;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.sv-countdown-separator {
    font-size: 2.5rem;
    font-weight: 300;
    opacity: 0.7;
}

/* Minimal style */
.sv-countdown-minimal {
    background: var(--sv-bg-elevated, #f5f5f5);
    color: var(--sv-text, #2D2D2D);
}

.sv-countdown-minimal .sv-countdown-number {
    background: var(--sv-bg-card, #fff);
    color: var(--sv-accent, #B76E79);
}

/* ----------------------------------------
   NEWSLETTER
   ---------------------------------------- */
.sv-newsletter {
    padding: 60px 40px;
    background: linear-gradient(135deg, #fef7f8, #fff9f5);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sv-newsletter-sparkle {
    position: absolute;
    font-size: 100px;
    opacity: 0.1;
    top: -20px;
    right: -20px;
}

.sv-newsletter-content {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.sv-newsletter-title {
    font-size: 1.8rem;
    margin: 0 0 10px 0;
}

.sv-newsletter-subtitle {
    color: var(--sv-text-secondary, #666);
    margin: 0 0 30px 0;
}

.sv-newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.sv-newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--sv-border, #eee);
    border-radius: 30px;
    font-size: 15px;
}

.sv-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--sv-accent, #B76E79);
}

.sv-newsletter-privacy {
    font-size: 12px;
    color: var(--sv-text-muted, #999);
    margin: 0;
}

/* Inline style */
.sv-newsletter-inline {
    padding: 30px;
}

.sv-newsletter-inline .sv-newsletter-form {
    max-width: 100%;
}

/* Boxed style */
.sv-newsletter-boxed {
    border: 2px solid var(--sv-accent, #B76E79);
}

/* ----------------------------------------
   CTA BANNER
   ---------------------------------------- */
.sv-cta-banner {
    padding: 80px 40px;
    text-align: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.sv-cta-gradient {
    background: linear-gradient(135deg, var(--sv-accent, #B76E79), var(--sv-accent2, #D4AF37));
    color: #fff;
}

.sv-cta-image {
    background-size: cover;
    background-position: center;
    color: #fff;
}

.sv-cta-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.sv-cta-content {
    position: relative;
    z-index: 1;
}

.sv-cta-title {
    font-size: 2.5rem;
    margin: 0 0 15px 0;
}

.sv-cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0 0 30px 0;
}

/* ----------------------------------------
   FLOATING SPARKLES
   ---------------------------------------- */
.sv-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    overflow: hidden;
}

.sv-sparkle-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: svFloat 8s infinite ease-in-out;
}

@keyframes svFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

.sv-sparkles-fall .sv-sparkle-particle {
    animation-name: svFall;
}

@keyframes svFall {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

/* ----------------------------------------
   DIVIDERS
   ---------------------------------------- */
.sv-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
}

.sv-divider-sparkle .sv-divider-sparkle {
    color: var(--sv-accent, #B76E79);
    font-size: 14px;
    animation: svSparkle 2s infinite;
}

.sv-divider-sparkle .sv-divider-sparkle:nth-child(2) {
    animation-delay: 0.3s;
}

.sv-divider-sparkle .sv-divider-sparkle:nth-child(3) {
    animation-delay: 0.6s;
}

.sv-divider-gradient {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sv-accent, #B76E79), transparent);
}

.sv-divider-dots::before {
    content: '• • •';
    letter-spacing: 10px;
    color: var(--sv-accent, #B76E79);
}

.sv-divider-line {
    height: 1px;
    background: var(--sv-border, #eee);
}

/* ----------------------------------------
   BUTTONS
   ---------------------------------------- */
.sv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.sv-btn-primary {
    background: var(--sv-accent, #B76E79);
    color: #fff;
    border-color: var(--sv-accent, #B76E79);
}

.sv-btn-primary:hover {
    background: #9d5e68;
    border-color: #9d5e68;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(183, 110, 121, 0.4);
}

.sv-btn-outline {
    background: transparent;
    color: var(--sv-accent, #B76E79);
    border-color: var(--sv-accent, #B76E79);
}

.sv-btn-outline:hover {
    background: var(--sv-accent, #B76E79);
    color: #fff;
}

.sv-btn-lg {
    padding: 18px 36px;
    font-size: 17px;
}

/* ----------------------------------------
   RESPONSIVE
   ---------------------------------------- */
@media (max-width: 1024px) {
    .sv-color-explorer { --columns: 3 !important; }
    .sv-occasions-grid { --columns: 3 !important; }
    .sv-bundle-grid { --columns: 2 !important; }
}

@media (max-width: 768px) {
    .sv-color-explorer { --columns: 2 !important; }
    .sv-quick-shop-grid { --columns: 3 !important; }
    .sv-occasions-grid { --columns: 2 !important; }
    .sv-testimonials-grid { --columns: 1 !important; }
    .sv-stats-grid { --columns: 2 !important; }
    .sv-bundle-grid { --columns: 1 !important; }
    
    .sv-spotlight {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sv-spotlight-right { direction: ltr; }
    
    .sv-hiw-steps {
        flex-direction: column;
    }
    
    .sv-hiw-arrow {
        transform: rotate(90deg);
        margin: 5px 0;
    }
    
    .sv-uc-panel.active {
        grid-template-columns: 1fr;
    }
    
    .sv-comparison-table {
        font-size: 14px;
    }
    
    .sv-countdown-number {
        font-size: 2rem;
        padding: 10px 15px;
        min-width: 60px;
    }
    
    .sv-newsletter-form {
        flex-direction: column;
    }
    
    .sv-timeline-track {
        flex-direction: column;
        gap: 30px;
    }
    
    .sv-timeline-track::before {
        display: none;
    }
    
    .sv-hero-video-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .sv-color-explorer { --columns: 2 !important; }
    .sv-occasions-grid { --columns: 1 !important; }
    .sv-stats-grid { --columns: 2 !important; }
    
    .sv-countdown-timer {
        flex-wrap: wrap;
    }
    
    .sv-uc-tabs {
        flex-direction: column;
    }
}
