/* ================================================
   UNITY 2B3 - GETTING STARTED WIZARD
   Stunning full-screen onboarding experience
   2-Column Layout: Text (Left) | Action (Right)
   ================================================ */

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    --gsw-primary: #7c3aed;
    --gsw-secondary: #a855f7;
    --gsw-accent: #f472b6;
    --gsw-dark: #0a0a0f;
    --gsw-darker: #050507;
    --gsw-card: rgba(20, 20, 30, 0.85);
    --gsw-border: rgba(124, 58, 237, 0.2);
    --gsw-text: #ffffff;
    --gsw-text-muted: rgba(255, 255, 255, 0.6);
    --gsw-success: #22c55e;
    --gsw-whatsapp: #25D366;
    --gsw-instagram: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --gsw-facebook: #1877F2;
    --gsw-tiktok: #000000;
    --gsw-youtube: #FF0000;
    --gsw-transition: cubic-bezier(0.4, 0, 0.2, 1);
    --gsw-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ==========================================
   OVERLAY & CONTAINER
   ========================================== */
.gsw-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--gsw-transition), visibility 0.5s var(--gsw-transition);
}

.gsw-overlay.active {
    opacity: 1;
    visibility: visible;
}

.gsw-overlay[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   ANIMATED BACKGROUND
   ========================================== */
.gsw-bg-animation {
    position: absolute;
    inset: 0;
    background: var(--gsw-darker);
    overflow: hidden;
}

.gsw-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: gsw-float 20s ease-in-out infinite;
}

.gsw-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gsw-primary);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.gsw-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--gsw-secondary);
    bottom: -150px;
    right: -150px;
    animation-delay: -7s;
}

.gsw-orb-3 {
    width: 400px;
    height: 400px;
    background: var(--gsw-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes gsw-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.95); }
    75% { transform: translate(30px, 30px) scale(1.05); }
}

/* Particles */
.gsw-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gsw-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: gsw-particle-float 15s linear infinite;
}

@keyframes gsw-particle-float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ==========================================
   MAIN CONTAINER
   ========================================== */
.gsw-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: calc(100vh - 80px);
    background: var(--gsw-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gsw-border);
    border-radius: 24px;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 100px rgba(124, 58, 237, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    opacity: 0;
    transition: transform 0.6s var(--gsw-bounce), opacity 0.5s var(--gsw-transition);
}

.gsw-overlay.active .gsw-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* ==========================================
   CLOSE BUTTON
   ========================================== */
.gsw-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--gsw-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--gsw-transition);
    z-index: 100;
}

.gsw-close-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
    transform: rotate(90deg);
}

.gsw-close-btn svg {
    width: 20px;
    height: 20px;
}

/* ==========================================
   HEADER & PROGRESS
   ========================================== */
.gsw-header {
    padding: 20px 32px;
    border-bottom: 1px solid var(--gsw-border);
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.gsw-logo img {
    height: 32px;
    width: auto;
}

.gsw-progress-wrapper {
    flex: 1;
    max-width: 400px;
}

.gsw-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.gsw-progress-fill {
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, var(--gsw-primary), var(--gsw-secondary), var(--gsw-accent));
    background-size: 200% 100%;
    border-radius: 3px;
    transition: width 0.5s var(--gsw-bounce);
    animation: gsw-progress-shimmer 2s linear infinite;
}

@keyframes gsw-progress-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.gsw-progress-glow {
    position: absolute;
    top: -2px;
    height: 10px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--gsw-primary), transparent);
    border-radius: 5px;
    filter: blur(4px);
    transition: left 0.5s var(--gsw-bounce);
}

.gsw-progress-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.gsw-step-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s var(--gsw-transition);
    cursor: pointer;
}

.gsw-step-dot.active {
    background: var(--gsw-primary);
    box-shadow: 0 0 12px var(--gsw-primary);
    transform: scale(1.2);
}

.gsw-step-dot.completed {
    background: var(--gsw-success);
}

.gsw-step-label {
    font-size: 14px;
    color: var(--gsw-text-muted);
    white-space: nowrap;
}

.gsw-step-label span:first-child {
    color: var(--gsw-text);
    font-weight: 600;
}

.gsw-step-name {
    display: block;
    font-size: 12px;
    color: var(--gsw-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* ==========================================
   SLIDES WRAPPER
   ========================================== */
.gsw-slides-wrapper {
    flex: 1;
    overflow-y: auto;
    position: relative;
    overflow-x: hidden;
}

.gsw-slides {
    display: flex;
    height: 100%;
    transition: transform 0.6s var(--gsw-transition);
}

.gsw-slide {
    min-width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s var(--gsw-transition), transform 0.5s var(--gsw-transition);
    overflow-y: auto;
    padding: 0px 10% 32px 10%;
    margin: auto;
}

.gsw-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================
   TWO-COLUMN LAYOUT
   ========================================== */
.gsw-slide-content {
    max-width: 100%;
    height: 100%;
}

.gsw-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    height: 100%;
}

.gsw-col-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.gsw-col-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top:5rem;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
.gsw-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--gsw-text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.gsw-gradient-text {
    background: linear-gradient(135deg, var(--gsw-primary), var(--gsw-secondary), var(--gsw-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gsw-subtitle {
    font-size: 15px;
    color: var(--gsw-text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ==========================================
   SLIDE ICONS (Inline with Title)
   ========================================== */
.gsw-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.gsw-slide-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: linear-gradient(135deg, var(--gsw-primary), var(--gsw-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    animation: gsw-icon-bounce 2s ease-in-out infinite;
}

.gsw-slide-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes gsw-icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.gsw-whatsapp-icon {
    background: var(--gsw-whatsapp);
}

/* Title when in row with icon */
.gsw-title-row .gsw-title {
    margin-bottom: 0;
}

/* ==========================================
   WELCOME SLIDE
   ========================================== */
.gsw-welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    margin-bottom: 20px;
    animation: gsw-badge-pulse 2s ease-in-out infinite;
    width: fit-content;
}

@keyframes gsw-badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); }
}

.gsw-badge-icon {
    font-size: 18px;
    animation: gsw-wiggle 1s ease-in-out infinite;
}

@keyframes gsw-wiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.gsw-badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--gsw-primary);
}

/* Video Container */
.gsw-video-container {
    width: 100%;
    max-width: 480px;
}

.gsw-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gsw-border);
}

.gsw-video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(168, 85, 247, 0.1));
    cursor: pointer;
    transition: all 0.3s var(--gsw-transition);
}

.gsw-video-placeholder:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(168, 85, 247, 0.2));
}

.gsw-video-placeholder:hover .gsw-play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.5);
}

.gsw-play-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gsw-primary), var(--gsw-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
    transition: all 0.3s var(--gsw-transition);
}

.gsw-play-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
    color: white;
}

.gsw-video-placeholder span {
    color: var(--gsw-text-muted);
    font-size: 13px;
}

.gsw-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.gsw-video-caption {
    margin-top: 12px;
    font-size: 12px;
    color: var(--gsw-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Welcome Features */
.gsw-welcome-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 0px;
}

.gsw-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 13px;
    color: var(--gsw-text);
    transition: all 0.3s var(--gsw-transition);
}

.gsw-feature-item:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-2px);
}

.gsw-feature-icon {
    font-size: 18px;
}

/* ==========================================
   QR CODE CARD (WhatsApp)
   ========================================== */
.gsw-qr-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gsw-border);
    border-radius: 20px;
    padding: 28px;
    overflow: hidden;
}

.gsw-qr-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--gsw-whatsapp), transparent, transparent);
    animation: gsw-qr-rotate 4s linear infinite;
    opacity: 0.3;
}

@keyframes gsw-qr-rotate {
    100% { transform: rotate(360deg); }
}

.gsw-qr-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.gsw-qr-image {
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 12px;
    padding: 10px;
    flex-shrink: 0;
}

.gsw-qr-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gsw-qr-info {
    text-align: left;
    flex: 1;
    min-width: 160px;
}

.gsw-qr-info h4 {
    font-size: 18px;
    color: var(--gsw-text);
    margin-bottom: 6px;
}

.gsw-qr-info p {
    font-size: 13px;
    color: var(--gsw-text-muted);
    margin-bottom: 12px;
}

.gsw-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
    color: var(--gsw-text-muted);
    font-size: 11px;
}

.gsw-divider::before,
.gsw-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================
   BUTTONS
   ========================================== */
.gsw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--gsw-primary), var(--gsw-secondary));
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s var(--gsw-transition);
    width:100%;
}

.gsw-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.gsw-btn-whatsapp {
    background: var(--gsw-whatsapp);
}

.gsw-btn-whatsapp:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.gsw-btn-outline {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gsw-text);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s var(--gsw-transition);
    margin-top: 10px;
    width: 100%;
}

.gsw-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Benefits */
.gsw-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.gsw-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gsw-text-muted);
}

.gsw-benefit span {
    font-size: 18px;
}

/* ==========================================
   SOCIAL MEDIA - Step 3
   ========================================== */
.gsw-social-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 0px;
}

.gsw-highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.gsw-highlight-icon {
    font-size: 24px;
}

.gsw-highlight-item strong {
    display: block;
    color: var(--gsw-text);
    font-size: 14px;
    margin-bottom: 2px;
}

.gsw-highlight-item p {
    color: var(--gsw-text-muted);
    font-size: 12px;
    margin: 0;
}

.gsw-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 400px;
}

.gsw-social-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gsw-border);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s var(--gsw-transition);
}

.gsw-social-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.gsw-social-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.gsw-social-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gsw-social-logo svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.gsw-social-logo.gsw-instagram {
    background: var(--gsw-instagram);
}

.gsw-social-logo.gsw-facebook {
    background: var(--gsw-facebook);
}

.gsw-social-logo.gsw-tiktok {
    background: linear-gradient(135deg, #25F4EE, #FE2C55);
}

.gsw-social-logo.gsw-youtube {
    background: var(--gsw-youtube);
}

.gsw-social-info {
    text-align: left;
}

.gsw-social-info h4 {
    font-size: 14px;
    color: var(--gsw-text);
    margin: 0;
}

.gsw-social-info span {
    font-size: 11px;
    color: var(--gsw-text-muted);
}

.gsw-social-btn {
    display: block;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gsw-text);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s var(--gsw-transition);
}

.gsw-social-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ==========================================
   DISCOUNT SLIDE - Step 4
   ========================================== */
.gsw-gift-icon {
    background: linear-gradient(135deg, #f472b6, #ec4899);
    animation: gsw-gift-shake 1s ease-in-out infinite;
}

@keyframes gsw-gift-shake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.gsw-shop-icon {
    background: linear-gradient(135deg, var(--gsw-primary), var(--gsw-accent));
}

.gsw-discount-card {
    width: 100%;
    max-width: 360px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(168, 85, 247, 0.1));
    border: 2px solid var(--gsw-primary);
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.gsw-discount-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--gsw-primary), transparent, transparent);
    animation: gsw-qr-rotate 6s linear infinite;
    opacity: 0.1;
}

.gsw-discount-badge {
    position: absolute;
    top: 14px;
    right: -32px;
    background: var(--gsw-accent);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 5px 36px;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
}

.gsw-discount-amount {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.gsw-percent {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gsw-primary), var(--gsw-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.gsw-off {
    font-size: 22px;
    font-weight: 700;
    color: var(--gsw-text);
}

.gsw-discount-code-wrapper {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 14px;
    padding: 16px;
}

.gsw-discount-label {
    font-size: 11px;
    color: var(--gsw-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.gsw-discount-code {
    font-size: 26px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    color: var(--gsw-success);
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.gsw-copy-code-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gsw-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--gsw-transition);
}

.gsw-copy-code-btn:hover {
    background: var(--gsw-secondary);
    transform: scale(1.05);
}

.gsw-copy-code-btn svg {
    width: 16px;
    height: 16px;
}

.gsw-discount-valid {
    position: relative;
    margin-top: 14px;
    font-size: 12px;
    color: var(--gsw-text-muted);
}

.gsw-areas-preview {
    margin-top: 24px;
}

.gsw-areas-label {
    font-size: 13px;
    color: var(--gsw-text-muted);
    margin-bottom: 14px;
}

.gsw-areas-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gsw-areas-icons span {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: default;
    transition: all 0.3s var(--gsw-transition);
}

.gsw-areas-icons span:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.4);
    transform: scale(1.1);
}

/* ==========================================
   MERCHANDISE - Step 5
   ========================================== */
.gsw-merch-carousel {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.gsw-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--gsw-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--gsw-transition);
    z-index: 10;
}

.gsw-carousel-btn:hover {
    background: var(--gsw-primary);
    border-color: var(--gsw-primary);
}

.gsw-carousel-prev { left: -18px; }
.gsw-carousel-next { right: -18px; }

.gsw-carousel-btn svg {
    width: 18px;
    height: 18px;
}

.gsw-merch-track {
    display: flex;
    gap: 16px;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 8px 0;
}

.gsw-merch-item {
    min-width: calc(50% - 8px);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gsw-border);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s var(--gsw-transition);
}

.gsw-merch-item:hover {
    transform: translateY(-4px);
    border-color: var(--gsw-primary);
}

.gsw-merch-image {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.gsw-merch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gsw-merch-item h4 {
    font-size: 14px;
    color: var(--gsw-text);
    margin-bottom: 6px;
}

.gsw-merch-price {
    font-size: 13px;
    color: var(--gsw-text-muted);
}

.gsw-merch-price s {
    margin-right: 6px;
    opacity: 0.5;
}

.gsw-merch-price span {
    color: var(--gsw-success);
    font-weight: 600;
}

.gsw-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.gsw-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s var(--gsw-transition);
}

.gsw-dot.active {
    background: var(--gsw-primary);
    width: 20px;
    border-radius: 4px;
}

.gsw-merch-discount {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
}

.gsw-merch-code {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed var(--gsw-border);
    border-radius: 10px;
}

.gsw-code-label {
    font-size: 12px;
    color: var(--gsw-text-muted);
}

.gsw-code-value {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    color: var(--gsw-success);
    letter-spacing: 1px;
}

.gsw-copy-sm {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s;
}

.gsw-copy-sm:hover {
    opacity: 1;
    transform: scale(1.1);
}

.gsw-btn-shop {
    background: linear-gradient(135deg, var(--gsw-primary), var(--gsw-accent));
}

/* ==========================================
   FOOTER NAVIGATION
   ========================================== */
.gsw-footer {
    padding: 16px 32px;
    border-top: 1px solid var(--gsw-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-shrink: 0;
}

.gsw-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gsw-text);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s var(--gsw-transition);
}

.gsw-nav-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.gsw-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

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

.gsw-next-btn {
    background: linear-gradient(135deg, var(--gsw-primary), var(--gsw-secondary));
    border: none;
}

.gsw-next-btn:hover {
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.gsw-footer-center {
    flex: 1;
    text-align: center;
}

.gsw-skip-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gsw-text-muted);
    cursor: pointer;
}

.gsw-skip-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: var(--gsw-primary);
}

/* ==========================================
   CONFETTI
   ========================================== */
.gsw-confetti {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100001;
}

/* ==========================================
   COPY SUCCESS ANIMATION
   ========================================== */
.gsw-copied {
    position: relative;
}

.gsw-copied::after {
    content: '✓ Copied!';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gsw-success);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    animation: gsw-copied-pop 1.5s ease forwards;
}

@keyframes gsw-copied-pop {
    0% { opacity: 0; transform: translateX(-50%) translateY(10px); }
    20% { opacity: 1; transform: translateX(-50%) translateY(0); }
    80% { opacity: 1; }
    100% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
}

/* ==========================================
   RESPONSIVE - TABLET & MOBILE
   ========================================== */
@media (max-width: 1024px) {
    .gsw-overlay {
        padding: 24px;
    }

    .gsw-two-col {
        gap: 32px;
    }

    .gsw-title {
        font-size: clamp(22px, 3vw, 30px);
    }
}

@media (max-width: 900px) {
    /* Switch to single column */
    .gsw-two-col {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gsw-col-left {
        text-align: center;
        align-items: center;
    }

    .gsw-col-right {
        width: 100%;
    }

    .gsw-slide {
        overflow-y: auto;
    }

    .gsw-welcome-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .gsw-welcome-features {
        justify-content: center;
    }

    .gsw-benefits {
        align-items: center;
    }

    .gsw-social-highlights {
        align-items: center;
    }

    .gsw-areas-icons {
        justify-content: center;
    }

    .gsw-merch-discount {
        align-items: center;
    }

    .gsw-qr-content {
        flex-direction: column;
        text-align: center;
    }

    .gsw-qr-info {
        text-align: center;
    }

    /* Title row stays row but centered */
    .gsw-title-row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .gsw-overlay {
        padding: 12px;
    }

    .gsw-container {
        max-height: calc(92vh - 24px);
        border-radius: 16px;
    }

    .gsw-header {
        flex-wrap: wrap;
        padding: 14px 20px;
        gap: 12px;
    }

    .gsw-progress-wrapper {
        order: 3;
        max-width: 100%;
        width: 100%;
    }

    .gsw-slide {
        padding: 20px;
    }

    .gsw-title {
        font-size: 22px;
    }

    .gsw-subtitle {
        font-size: 14px;
    }

    .gsw-social-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }

    .gsw-footer {
        padding: 14px 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .gsw-footer-center {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

    .gsw-nav-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .gsw-merch-item {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .gsw-slide.active {
            height: auto;
    margin-top: 10%;
    }

    .category-filters {
    display: grid;}

    .gsw-close-btn {top:85px;}

    .gsw-discount-card {
        padding: 20px 16px;
    }

    .gsw-percent {
        font-size: 48px;
    }

    .gsw-discount-code {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .gsw-welcome-features {
        grid-template-columns: 1fr;
    }

    .gsw-feature-item {
        justify-content: center;
    }

    .gsw-qr-image {
        width: 120px;
        height: 120px;
    }

    /* Title row adjustments for small screens */
    .gsw-title-row {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .gsw-title-row .gsw-title {
        text-align: center;
    }

    .gsw-slide-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 28px;
    }

    .gsw-slide-icon svg {
        width: 28px;
        height: 28px;
    }
}