:root {
    --wp-sell-bg: #111111;
    --wp-sell-white: #ffffff;
    --wp-sell-orange: #f58220;
    --wp-sell-gray: #888888;
}

.wp-sell-section {
    background-color: var(--wp-sell-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Device Toolbar */
.wp-sell-toolbar {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.wp-sell-device-btn {
    background: none;
    border: none;
    color: var(--wp-sell-gray);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
}

.wp-sell-device-btn.active {
    color: var(--wp-sell-white);
}

/* Viewport Container */
.wp-sell-viewport-area {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    padding: 0 40px 100px 40px; /* Space for bottom bar */
    overflow-y: auto;
}

.wp-sell-viewport {
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.wp-sell-viewport.desktop {
    width: 100%;
    max-width: 1400px;
    height: clamp(520px, calc(100vh - 240px), 860px);
}

.wp-sell-viewport.mobile {
    width: 375px;
    height: 667px; /* Standard mobile ratio */
    margin-top: 20px;
    border: 12px solid #333; /* Phone frame look */
    border-radius: 40px;
}

.wp-sell-iframe {
    width: 100%;
    height: 100%;
    background-color: #fff;
}

/* Sticky Bottom Bar */
.wp-sell-bottom-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: var(--wp-sell-white);
    border-radius: 100px;
    padding: 12px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 100;
}

.wp-sell-brand { font-weight: 800; font-size: 1.2rem; margin-right: 15px; }
.wp-sell-meta { color: var(--wp-sell-gray); font-size: 0.9rem; }

.wp-sell-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

.wp-sell-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.wp-sell-plan-select {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #111;
    cursor: pointer;
}

.wp-sell-plan-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.12);
}

.wp-sell-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
    color: inherit;
}

.wp-sell-btn-secondary {
    background: #fff;
    border: 1px solid #ddd;
}

.wp-sell-btn-primary {
    background: #000;
    color: #fff;
}

/* Scrollbar styling for a cleaner look */
.wp-sell-viewport-area::-webkit-scrollbar { width: 6px; }
.wp-sell-viewport-area::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }

@media (max-width: 768px) {
    .wp-sell-bottom-bar {
        border-radius: 30px;
        padding: 14px 16px;
        gap: 12px;
    }

    .wp-sell-brand { margin-right: 10px; }
}








:root {
    --sw-bg-orange: #fff4e6;
    --sw-bg-blue: #eef6ff;
    --sw-bg-purple: #f8f3ff;
    --sw-bg-green: #f2f9f1;
    --sw-text-dark: #1a1a1b;
    --sw-text-gray: #555c63;
}

.sw-features-section {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--sw-text-dark);
}

.sw-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sw-main-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.sw-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sw-feature-card {
    position: relative;
    border-radius: 20px;
    padding: 40px;
    min-height: 280px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sw-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

/* Card Colors */
.sw-orange { background-color: var(--sw-bg-orange); }
.sw-blue { background-color: var(--sw-bg-blue); }
.sw-purple { background-color: var(--sw-bg-purple); }
.sw-green { background-color: var(--sw-bg-green); }

/* Card Elements */
.sw-card-content {
    position: relative;
    z-index: 2;
    max-width: 75%;
}

.sw-card-tag {
    background: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    display: inline-block;
    margin-bottom: 20px;
}

.sw-card-heading {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.sw-card-desc {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--sw-text-gray);
    margin-bottom: 25px;
}

.sw-card-link {
    text-decoration: none;
    font-weight: 700;
    color: var(--sw-text-dark);
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}

.sw-card-link:hover {
    border-color: var(--sw-text-dark);
}

/* Background Abstract Shapes (CSS Mockup) */
.sw-shape-decor {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 200px;
    height: 200px;
    opacity: 0.4;
    z-index: 1;
}

/* Custom gradients to match image patterns */
.sw-orange .sw-shape-decor {
    background: radial-gradient(circle, #ffcc8e 0%, transparent 70%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}
.sw-blue .sw-shape-decor {
    background: linear-gradient(135deg, #a7d1ff 0%, transparent 80%);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.sw-purple .sw-shape-decor {
    background: radial-gradient(circle at center, #d8bcff 0%, transparent 75%);
    border-radius: 50%;
}
.sw-green .sw-shape-decor {
    background: linear-gradient(to top right, #b8e986 0%, transparent 70%);
    border-radius: 50px;
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 900px) {
    .sw-features-grid {
        grid-template-columns: 1fr;
    }
    .sw-card-content {
        max-width: 100%;
    }
}