/* Container and Layout */
.vibe-bakery-dashboard {
    background-color: #e2e8e1;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.vibe-main-grid {
    display: grid;
    grid-template-columns: 1fr 0.4fr;
    grid-template-rows: 520px 420px;
    gap: 24px;
    max-width: 1300px;
    width: 100%;
}

.vibe-main-grid_1 {
    display: grid;
    grid-template-rows: 520px 420px;
    gap: 24px;
    max-width: 1300px;
    width: 100%;
}
.vibe-card {
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}



/* Promo Hero Block */
.vibe-promo-hero {
    background-color: #f9c46b;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vibe-mega-text {
    font-size: 140px;
    color: #ffffff;
    line-height: 0.85;
    margin: 0;
    font-weight: 900;
    letter-spacing: -6px;
    font-family: 'Fredoka', sans-serif;
}

.vibe-hero-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 100%;
    z-index: 2;
}

.vibe-floating-img { width: 100%; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.25)); }

.vibe-price-bubble {
    position: absolute;
    top: 35%;
    left: 0;
    background: #2a5d4d;
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.vibe-price-bubble span { font-size: 28px; }

/* School Module */
.vibe-school-module { background-color: #96c8e9; padding: 40px; text-align: center; }

.vibe-portrait-asset {
    width: 90%;
    position: absolute;
    bottom: -10px;
    left: 5%;
    object-fit: contain;
}

.vibe-action-trigger {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #f9c46b;
    border: none;
    padding: 15px 35px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Product Picks List */
.vibe-selection-list {
    background-color: #ffffff;
    padding: 50px;
    display: flex;
    gap: 50px;
}

.vibe-picks-title { font-size: 50px; line-height: 0.95; font-weight: 900; margin: 0; }

.vibe-items-container { flex: 1; }

.vibe-product-row {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 2px solid #f5f5f5;
    gap: 20px;
}

.vibe-product-art { width: 70px; height: 70px; border-radius: 50%; flex-shrink: 0; }
.vibe-bg-honey { background-color: #96c8e9; }
.vibe-bg-melon { background-color: #c9e4bb; }

.vibe-product-meta { flex: 1; }
.vibe-product-name { margin: 0; font-size: 20px; font-weight: 800; }
.vibe-product-desc { margin: 5px 0 0; font-size: 15px; color: #777; }

.vibe-add-to-cart {
    background: #2a5d4d;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: 0.2s;
}

/* Daily Spotlight */
.vibe-daily-spotlight { background-color: #ef9d5b; padding: 40px; text-align: center; }
.vibe-spotlight-visual img { width: 85%; margin: 20px 0; }

.vibe-floating-tag {
    position: absolute;
    top: 25%;
    right: 15%;
    background: #2a5d4d;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 900;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 1100px) {
    .vibe-main-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
    }
    .vibe-selection-list { flex-direction: column; }
}


:root {
    --plexo-yellow: #f5ee63;
    --plexo-dark: #121212;
    --plexo-grey-bg: #e9e9e9;
    --plexo-radius: 32px;
}

.plexo-bento-section {
    background-color: #f6f6f6;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.plexo-grid-container {
    display: grid;
    grid-template-columns: 1.2fr 0.5fr 0.5fr; /* 3-column layout */
    grid-template-rows: 400px 220px; /* Two row heights */
    gap: 20px;
    max-width: 1100px;
    width: 100%;
}

.plexo-card {
    border-radius: var(--plexo-radius);
    overflow: hidden;
    position: relative;
}

/* LEFT COLUMN: Large Hero Card */
.plexo-main-mockup {
    grid-row: 1 / 3; /* Spans both rows */
    background-color: var(--plexo-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 60px;
}

.plexo-phone-container {
    position: relative;
    width: 70%;
}

.plexo-mockup-img {
    width: 100%;
    display: block;
    opacity: 0.8;
}

/* The Floating Visa Card Effect */
.plexo-floating-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 110%; /* Makes it overlap the phone edges */
    aspect-ratio: 1.6 / 1;
    background-color: var(--plexo-yellow);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plexo-visa-logo {
    float: right;
    font-weight: 900;
    font-style: italic;
    font-size: 20px;
}

.plexo-card-brand {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 1;
}

/* Palette Bar */
.plexo-palette {
    position: absolute;
    bottom: 30px;
    display: flex;
    gap: 2px;
    background: #333;
    padding: 8px;
    border-radius: 12px;
}

.plexo-swatch { width: 50px; height: 35px; border-radius: 4px; }
.plexo-yellow { background: var(--plexo-yellow); }
.plexo-light-grey { background: #ccc; }
.plexo-mid-grey { background: #888; }
.plexo-dark-grey { background: #444; }
.plexo-black { background: #000; }

/* TOP RIGHT CARD: Image */
.plexo-image-feature {
    grid-column: 2 / 4; /* Spans two squares */
}

.plexo-image-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BOTTOM SQUARES */
.plexo-square-brand {
    background-color: var(--plexo-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plexo-logo-text {
    font-weight: 900;
    font-size: 32px;
    letter-spacing: -2px;
}

.plexo-square-crypto {
    background-color: var(--plexo-grey-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plexo-btc-icon {
    background: #1c1c1c;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Logic */
@media (max-width: 900px) {
    .plexo-grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .plexo-main-mockup { grid-row: auto; height: 600px; }
    .plexo-image-feature { grid-column: auto; height: 300px; }
    .plexo-floating-card { width: 90%; }
}

.plexo-swipe-wrapper {
    /* Main dark background */
    background-color: #1a1a1a; 
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.plexo-swipe-circle {
    /* Slightly lighter dark grey for the circle */
    background-color: #222222;
    width: 80vh; /* Scaled to screen height */
    height: 80vh;
    max-width: 700px;
    max-height: 700px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 100px rgba(0,0,0,0.5);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Optional hover interaction for a 'unique' feel */
.plexo-swipe-circle:hover {
    transform: scale(1.02);
}

.plexo-swipe-brand {
    display: block;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    opacity: 0.9;
}

.plexo-swipe-title {
    color: #ffffff;
    font-size: clamp(4rem, 12vw, 8rem); /* Fluid typography */
    font-weight: 900;
    line-height: 0.85; /* Extremely tight for that modern impact */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -4px;
}

.plexo-swipe-accent {
    color: #f5ee63; /* Signature Plexo Yellow */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .plexo-swipe-circle {
        width: 95vw;
        height: 95vw;
    }
    
    .plexo-swipe-title {
        font-size: 4rem;
        letter-spacing: -2px;
    }

    .plexo-swipe-brand {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
}

.plexo-cta-wrapper {
    position: relative;
    background-color: #f3f4f6; /* Soft light background */
    padding: 100px 20px;
    border-radius: 24px;
    margin: 40px;
    overflow: hidden; /* Clips the background blobs */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* Background decorative blobs */
.plexo-cta-blob {
    position: absolute;
    background: #ffffff;
    filter: blur(80px);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    opacity: 0.7;
    z-index: 1;
}

.plexo-cta-blob-1 { top: -100px; left: -100px; }
.plexo-cta-blob-2 { bottom: -100px; right: -50px; }

.plexo-cta-container {
    position: relative;
    z-index: 2; /* Sits above blobs */
    text-align: center;
    max-width: 700px;
}

.plexo-cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.plexo-cta-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
}

.plexo-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.plexo-cta-btn {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: #000000;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.plexo-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.plexo-cta-btn svg {
    margin-right: 12px;
}

.plexo-cta-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.plexo-cta-btn-text span {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.plexo-cta-btn-text strong {
    font-size: 18px;
}

/* Responsive adjustment */
@media (max-width: 640px) {
    .plexo-cta-wrapper { margin: 20px; padding: 60px 20px; }
    .plexo-cta-btn { width: 100%; justify-content: center; }
}


/* FAQ/Accordion behavior (new helper classes only) */
.vibe-faq-body{
  display: none;
  margin-top: 10px;
}

.vibe-faq-body ul{
  margin: 0;
  padding-left: 18px;
}

.vibe-faq-item.vibe-faq-open .vibe-faq-body{
  display: block;
}

/* Optional: rotate + icon when open */
.vibe-faq-item.vibe-faq-open .vibe-faq-toggle{
  transform: rotate(45deg);
}

.vibe-items-container {
    flex: 1;
    overflow-y: auto;
}