/* Google Fonts: Nunito */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
    --snack-orange: #ff6b35;
    --snack-orange-rgb: 255, 107, 53;
    --snack-cream: #fff9f3;
    --snack-dark: #1a1a1a;
    --snack-gray: #6b7280;
    --snack-card-bg: #ffffff;
    --snack-gap: 32px;
    --soba-font-display: 'Nunito', sans-serif;
    --soba-font-body: 'Nunito', sans-serif;
}

.snack-builder-container {
    font-family: 'Nunito', sans-serif;
    background-color: #fefefe;
    padding: 60px 20px;
    max-width: 1440px;
    margin: 0 auto;
}

.snack-builder-main {
    display: flex;
    gap: var(--snack-gap);
    align-items: flex-start;
}

/* Sidebar Styling */
.snack-sidebar {
    flex: 0 0 420px;
    position: sticky;
    top: 40px;
}

.sidebar-header .badge {
    background: #fff3e0;
    color: #e65100;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 16px;
}

.sidebar-header h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--snack-dark);
}

.sidebar-header .highlight {
    color: var(--snack-orange);
}

.sidebar-header p {
    color: var(--snack-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Visual Box */
.visual-box-wrapper {
    background: #fdf2e9;
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.visual-box {
    position: relative;
    aspect-ratio: 1.25;
}

.box-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slots-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    width: 80%;
    height: 70%;
}

.slot {
    background: rgba(255, 255, 255, 0.4);
    border: 2px dashed rgba(var(--snack-orange-rgb), 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.slot.filled {
    border-style: solid;
    border-color: transparent;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slot-label {
    font-size: 12px;
    color: rgba(var(--snack-orange-rgb), 0.4);
    font-weight: 600;
}

/* Summary Card */
.summary-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f1f1;
}

.summary-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.price-display .currency {
    font-size: 24px;
    font-weight: 700;
    vertical-align: super;
}

.price-display .amount {
    font-size: 40px;
    font-weight: 800;
}

.price-display .per {
    color: var(--snack-gray);
    font-size: 14px;
}

.quantity-picker {
    display: flex;
    align-items: center;
    background: #f8f8f8;
    border-radius: 30px;
    padding: 4px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--snack-dark);
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.quantity-picker input {
    width: 40px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.progress-section {
    margin-bottom: 32px;
}

.progress-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--snack-orange);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(var(--snack-orange-rgb), 0.1);
}

.status-text {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--snack-dark);
}

.count-text {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
    color: var(--snack-gray);
}

.progress-bar-bg {
    height: 12px;
    background: #f1f1f1;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff9e7d, var(--snack-orange));
    border-radius: 6px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.status-msg {
    font-size: 13px;
    font-weight: 600;
    color: var(--snack-orange);
    margin: 0;
}

.btn-add-cart {
    width: 100%;
    background: #a1a1a1;
    color: #fff;
    border: none;
    padding: 20px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: not-allowed;
    transition: all 0.3s ease;
}

.btn-add-cart.ready {
    background: var(--snack-dark);
    cursor: pointer;
}

.btn-add-cart.ready:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Grid Section */
.snack-grid-section {
    flex: 1;
}

.filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 12px 24px;
    border-radius: 30px;
    border: 1.5px solid #eee;
    background: #fff;
    font-weight: 600;
    color: var(--snack-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-pill:hover {
    border-color: var(--snack-orange);
}

.filter-pill.active {
    background: var(--snack-dark);
    color: #fff;
    border-color: var(--snack-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.snack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.snack-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.snack-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #f1f1f1;
}

.snack-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.snack-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
}

.btn-select {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: var(--snack-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.btn-select:hover {
    background: var(--snack-orange);
    color: #fff;
}

.snack-card-info {
    padding: 20px;
}

.snack-card-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--snack-dark);
}

.snack-card-info p {
    font-size: 14px;
    color: var(--snack-gray);
    line-height: 1.4;
    margin-bottom: 16px;
}

.snack-tags {
    display: flex;
    gap: 6px;
}

.tag {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.tag.sweet {
    background: #fce4ec;
    color: #d81b60;
}

.tag.savory {
    background: #e8f5e9;
    color: #2e7d32;
}

.tag.vegan {
    background: #f1f8e9;
    color: #558b2f;
}

.tag.gf {
    background: #e1f5fe;
    color: #0288d1;
}

.grid-footer {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #eee;
    background: transparent;
    color: var(--snack-gray);
    cursor: pointer;
    transition: all 0.2s ease;
}

.load-more-btn:hover {
    border-color: var(--snack-orange);
    color: var(--snack-orange);
}

/* Loader */
.snack-loader {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px;
    font-weight: 600;
    color: var(--snack-gray);
}

/* Custom Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.snack-card {
    animation: fadeIn 0.5s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .snack-builder-main {
        flex-direction: column;
    }

    .snack-sidebar {
        flex: 1;
        position: static;
        width: 100%;
    }
}

/* ==========================================================================
   Single Product Redesign Styles
   ========================================================================== */

.snack-single-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px;
    font-family: 'Inter', sans-serif;
}

.snack-breadcrumb {
    font-size: 12px;
    font-weight: 700;
    color: #a1a1a1;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.snack-breadcrumb a {
    text-decoration: none;
    color: #a1a1a1;
    transition: color 0.2s;
}

.snack-breadcrumb a:hover {
    color: var(--snack-orange);
}

.snack-breadcrumb .active {
    color: var(--snack-orange);
}

.snack-product-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Gallery Section */
.snack-gallery {
    flex: 1;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    margin-bottom: 60px;
}

.bento-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #f8f8f8;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bento-item.main-image {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
}

.bento-item.sub-image-1,
.bento-item.sub-image-2 {
    aspect-ratio: 1.25;
}

.badge-bestseller {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #ffda79;
    color: #7d5a00;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.gallery-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: #4caf50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 3px solid #fff;
}

/* Features Promo Section */
.snack-features-promo {
    background: #fffcf8;
    padding: 60px;
    border-radius: 40px;
    border: 1px solid #f9eede;
    margin-bottom: 60px;
}

.snack-features-promo h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    color: var(--snack-dark);
}

.snack-features-promo .highlight-italic {
    color: var(--snack-orange);
    font-style: italic;
    font-family: inherit;
}

.snack-features-promo p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--snack-gray);
    max-width: 600px;
    margin-bottom: 40px;
}

.feature-cards {
    display: flex;
    gap: 20px;
}

.feature-card {
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.icon-box.blue {
    background: #e3f2fd;
    color: #2196f3;
}

.icon-box.green {
    background: #e8f5e9;
    color: #4caf50;
}

.text-box h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--snack-dark);
}

.text-box p {
    font-size: 13px;
    margin: 0;
    color: var(--snack-gray);
    font-weight: 500;
}

/* Configurator Card */
.snack-config-card {
    flex: 0 0 460px;
    background: #fff;
    border-radius: 40px;
    padding: 40px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 40px;
}

.config-header {
    text-align: center;
    margin-bottom: 40px;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: #ffda79;
    font-size: 12px;
}

.rating-text {
    font-size: 13px;
    font-weight: 800;
    color: var(--snack-gray);
}

.product-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--snack-dark);
    line-height: 1.1;
}

.product-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--snack-dark);
}

.option-group {
    margin-bottom: 40px;
}

.group-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
}

.step-num {
    width: 28px;
    height: 28px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.group-header h3 {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0;
}

.guide-link {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
    color: #ff6b35;
    text-decoration: none;
}

.limit-text {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
    color: #a1a1a1;
}

.badge-unlimited {
    background: #fff3e0;
    color: #e65100;
    padding: 4px 10px;
    border-radius: 6px;
}

/* Size Selectors */
.size-selectors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.size-option input {
    display: none;
}

.size-box {
    border: 1.5px solid #f1f1f1;
    border-radius: 20px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    background: #fff;
}

.size-option input:checked+.size-box {
    border-color: #ff6b35;
    background: #fffcfb;
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.size-label {
    display: block;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.size-sub {
    display: block;
    font-size: 13px;
    color: #a1a1a1;
    font-weight: 600;
    margin-bottom: 12px;
}

.size-price {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #ff6b35;
}

.badge-hot {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #ffda79;
    color: #7d5a00;
    font-size: 9px;
    font-weight: 900;
    padding: 5px 10px;
    border-radius: 6px;
    transform: rotate(12deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Base Options */
.base-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.base-option input {
    display: none;
}

.base-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1.5px solid #f1f1f1;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.base-box img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
}

.base-info {
    flex: 1;
}

.base-info h4 {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 4px 0;
}

.base-info p {
    font-size: 12px;
    color: #a1a1a1;
    margin: 0;
    font-weight: 600;
}

.check-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #eee;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s;
}

.base-option input:checked+.base-box {
    border-color: #4caf50;
    background: #f8fcf8;
}

.base-option input:checked+.base-box .check-circle {
    border-color: #4caf50;
    background: #4caf50;
}

.base-option input:checked+.base-box .check-circle::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
}

/* Mixin Pills */
.mixin-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-option input {
    display: none;
}

.pill-option span {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    border: 1.5px solid #f1f1f1;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s ease;
}

.pill-option input:checked+span {
    background: #ffda79;
    border-color: #ffda79;
    color: #7d5a00;
    box-shadow: 0 4px 12px rgba(255, 218, 121, 0.3);
}

/* Footer Action */
.config-footer {
    border-top: 1px dashed #eee;
    padding-top: 32px;
}

.add-to-cart-action {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.qty-selector {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #f1f1f1;
    border-radius: 40px;
    padding: 6px;
}

.qty-selector button {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    color: #a1a1a1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-selector input {
    width: 36px;
    border: none;
    text-align: center;
    font-weight: 800;
    font-size: 18px;
    background: transparent;
}

.btn-primary-add {
    flex: 1;
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 20px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-add:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3);
}

.shipping-info {
    font-size: 14px;
    font-weight: 800;
    color: #4caf50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Responsive Single Product */
@media (max-width: 1200px) {
    .snack-product-layout {
        flex-direction: column;
        padding: 0 20px;
    }

    .snack-config-card {
        width: 100%;
        flex: none;
        position: static;
    }

    .snack-gallery {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .snack-single-container {
        padding: 20px;
    }

    .snack-features-promo {
        padding: 40px 30px;
        border-radius: 30px;
    }

    .feature-cards {
        flex-direction: column;
    }

    .snack-features-promo h2 {
        font-size: 36px;
    }
}

/* ==========================================================================
   Home Page Elementor Widgets
   ========================================================================== */

/* Hero Section */
.snackems-hero {
    padding: 80px 40px;
    background: #fff;
    overflow: hidden;
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    color: #16a34a;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 80px;
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 32px;
    color: var(--snack-dark);
}

.hero-title .highlight {
    color: var(--snack-orange);
}

.hero-desc {
    font-size: 20px;
    line-height: 1.6;
    color: var(--snack-gray);
    max-width: 500px;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-shop-all {
    background: var(--snack-orange);
    color: #fff;
    padding: 18px 40px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-shop-all:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3);
}

.btn-view-menu {
    border: 1.5px solid #eee;
    color: var(--snack-dark);
    padding: 18px 40px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-view-menu:hover {
    border-color: var(--snack-dark);
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-rating-floating {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 200px;
}

.hero-rating-floating .stars {
    color: #ffda79;
    font-size: 10px;
    margin-bottom: 8px;
}

.hero-rating-floating p {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.hero-rating-floating span {
    font-size: 11px;
    color: #a1a1a1;
    font-weight: 600;
}

/* Pack Grid */
.snackems-pack-grid {
    padding: 100px 40px;
    background: #fff;
}

.grid-header {
    text-align: center;
    margin-bottom: 64px;
}

.subtile-glow {
    color: #4dbfb6;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--snack-dark);
    margin-bottom: 24px;
}

.pack-cards {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pack-card {
    background: #fff;
    border: 1.5px solid #f1f1f1;
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 40px;
}

.pack-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.pack-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 900;
}

.pack-badge.yellow {
    background: #ffda79;
    color: #7d5a00;
}

.pack-badge.green {
    background: #dcfce7;
    color: #166534;
}

.pack-image {
    margin-bottom: 32px;
    background: #f8f8f8;
    border-radius: 24px;
    aspect-ratio: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.pack-info h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pack-info .price {
    color: var(--snack-orange);
}

.pack-info p {
    font-size: 15px;
    color: var(--snack-gray);
    margin-bottom: 32px;
    line-height: 1.5;
}

.pack-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.pack-features li {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pack-features li i {
    color: #4caf50;
    font-size: 12px;
}

.btn-pack-add {
    display: block;
    width: 100%;
    background: var(--snack-dark);
    color: #fff;
    text-align: center;
    padding: 18px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-pack-add:hover {
    background: #333;
}

/* Ingredients Section */
.snackems-ingredients {
    padding: 100px 40px;
    background: #fff5f0;
}

.ingredients-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: center;
}

.ingredients-text {
    flex: 1;
}

.ingredients-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
}

.ingredients-title .highlight {
    color: var(--snack-orange);
    font-style: italic;
}

.ingredient-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ingredient-item {
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.icon-circle.red {
    background: #fee2e2;
    color: #ef4444;
}

.icon-circle.yellow {
    background: #fef9c3;
    color: #ca8a04;
}

.icon-circle.dark {
    background: #f3f4f6;
    color: var(--snack-dark);
}

.ingredients-visual {
    flex: 1;
}

.bento-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.collage-item {
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-item.item-1 {
    aspect-ratio: 1;
}

.collage-item.item-2 {
    aspect-ratio: 1.4;
}

.collage-item.item-3 {
    aspect-ratio: 1.4;
}

.collage-item.item-4 {
    aspect-ratio: 1;
}

/* Office CTA */
.snackems-office-cta {
    padding: 0 40px 100px;
    background: #fff5f0;
}

.cta-card {
    max-width: 1440px;
    margin: 0 auto;
    background: var(--snack-dark);
    border-radius: 40px;
    padding: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
}

.cta-content {
    flex: 1;
}

.cta-badge {
    color: #ffda79;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: block;
}

.cta-content h2 {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.cta-content p {
    color: #a1a1a1;
    font-size: 18px;
    max-width: 500px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
}

.btn-quote {
    background: #ffda79;
    color: #7d5a00;
    padding: 20px 48px;
    border-radius: 40px;
    font-weight: 800;
    text-decoration: none;
    font-size: 18px;
}

.btn-learn {
    border: 1.5px solid #444;
    color: #fff;
    padding: 20px 48px;
    border-radius: 40px;
    font-weight: 800;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s;
}

.btn-learn:hover {
    border-color: #fff;
}

/* Scribble Highlights */
.scribble-highlight {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.scribble-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='238' height='12' viewBox='0 0 238 12' fill='none'%3E%3Cpath d='M2.5 9.5C64.5 4.5 131.5 1.5 235.5 8.5' stroke='%23FF6B23' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
    z-index: -1;
    opacity: 0.8;
}

.hero-title .scribble-highlight::after {
    bottom: -12px;
}

.ingredients-title .scribble-highlight {
    color: var(--snack-orange);
    font-style: italic;
}

/* Pack Card Adjustments */
.pack-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.pack-title-row h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
}

.pack-title-row .price {
    font-size: 28px;
    font-weight: 800;
    color: var(--snack-orange);
}

.pack-card .pack-image {
    position: relative;
    margin-bottom: 32px;
    background: #f8f8f8;
    border-radius: 24px;
    aspect-ratio: 1.2;
    overflow: hidden;
}

.pack-card .pack-badge {
    top: 16px;
    left: 16px;
    z-index: 10;
}

/* Better Organic Hero Shapes */
.hero-shapes .shape-blob {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 107, 35, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.hero-shapes .shape-star {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: #e1f5fe;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    z-index: 3;
    transform: rotate(-15deg);
}

/* Responsive */
@media (max-width: 1024px) {

    .hero-container,
    .ingredients-container,
    .cta-card {
        flex-direction: column;
        text-align: center;
    }

    .hero-title,
    .ingredients-title {
        font-size: 48px;
    }

    .pack-cards {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .cta-actions {
        justify-content: center;
    }

    .hero-desc,
    .cta-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================================================
   Premium Snack Builder (soba template)
   ========================================================================== */

:root {
    --soba-primary: #ff7e33;
    --soba-primary-dark: #e85d2a;
    --soba-secondary: #ffc83d;
    --soba-accent: #98D2EB;
    --soba-success: #8dd7bf;
    --soba-background-light: #fffaf5;
    --soba-background-dark: #1a120b;
    --soba-surface-light: #ffffff;
    --soba-surface-dark: #261e18;
    --soba-secondary-surface: #ffeed6;
    --soba-text-light: #2d2422;
    --soba-text-dark: #f2eae8;
    --soba-gray-400: #9ca3af;
    --soba-orange-100: #ffedd5;
    --soba-orange-50: #fff7ed;

    --soba-font-display: 'Nunito', sans-serif;
    --soba-font-body: 'Nunito', sans-serif;

    --soba-shadow-soft: 0 8px 30px -4px rgba(255, 126, 51, 0.1);
    --soba-shadow-float: 0 20px 50px -10px rgba(255, 107, 53, 0.15);
    --soba-shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --soba-shadow-button: 0 6px 0 0 #e85d2a;
    --soba-shadow-button-hover: 0 4px 0 0 #e85d2a;
}

.soba_body_wrapper {
    background-color: var(--soba-background-light);
    background-image: radial-gradient(var(--soba-secondary) 0.8px, transparent 0.8px), radial-gradient(var(--soba-primary) 0.8px, var(--soba-background-light) 0.8px);
    background-size: 32px 32px;
    background-position: 0 0, 16px 16px;
    color: var(--soba-text-light);
    font-family: var(--soba-font-body);
    -webkit-font-smoothing: antialiased;
}

.soba_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .soba_container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .soba_container {
        padding: 0 2rem;
    }
}

/* Main Layout */
.soba_main {
    flex-grow: 1;
    padding: 2rem 0;
}

@media (min-width: 1024px) {
    .soba_main {
        padding: 3rem 0;
    }
}

.soba_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .soba_grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 4rem;
    }
}

.soba_sidebar {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .soba_sidebar {
        grid-column: span 5;
        position: sticky;
        top: 112px;
    }
}

.soba_product_content {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .soba_product_content {
        grid-column: span 7;
    }
}

/* Typography */
.soba_h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 0.95;
    font-family: var(--soba-font-display);
    color: var(--soba-text-light);
    margin-bottom: 1rem;
}

.soba_primary_text {
    color: var(--soba-primary);
    position: relative;
    display: inline-block;
}

.soba_underline_svg {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 12px;
    color: var(--soba-secondary);
}

/* Box Preview */
.soba_box_preview {
    position: relative;
    width: 100%;
    aspect-ratio: 4/4;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: var(--soba-shadow-float);
    background: #fff5eb;
    border: 4px solid white;
}

.soba_box_bg {
    position: absolute;
    inset: 0;
    background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuCc0iIPykg_jH0ROERvk89Bc4BLB-qkAvUbfMWpmM5PQlGhl8LKb38sExUCyQqSBOqYIlUmjxVh4zleZfGbWqoecbsPsNFCsx66yfqumxdwq8p28Ykte2Soexep4vS_qVZIVaDnqlgfYX0Uh5-uWy7EP85qmmgrQpuUioo-Mi-uz1cFA-2jiiL6dQHUApc-OaK3Sc0jCcW74jih_M_nY_AkELm6PJs3xyKvT1VrcblsvjDcPTiBMZBFgSsbc85iyVPKSXQFvS6j_Og');
    background-size: 150%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.soba_box_content {
    position: relative;
    z-index: 10;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .soba_box_content {
        padding: 2rem;
    }
}

.soba_box_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.soba_badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--soba-primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 126, 51, 0.1);
}

.soba_icon_circle {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.625rem;
    border-radius: 50%;
    color: var(--soba-primary);
    box-shadow: var(--soba-shadow-card);
	width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soba_box_slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: auto;
}

.soba_slot {
    position: relative;
    aspect-ratio: 1/1;
    background: white;
    border-radius: 1.5rem;
    padding: 0.375rem;
    box-shadow: var(--soba-shadow-card);
    transition: transform 0.2s;
}

.soba_slot:hover {
    transform: translateY(-4px);
}

.soba_slot_inner {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.soba_slot_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.soba_slot:hover .soba_slot_img {
    transform: scale(1.1);
}

.soba_slot_label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 0.5rem;
    padding-top: 1.5rem;
}

.soba_slot_name {
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.soba_remove_item {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #fee2e2;
    color: #ef4444;
    border: 2px solid white;
    border-radius: 50%;
    padding: 0.25rem;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.soba_remove_item:hover {
    background: #ef4444;
    color: white;
}

.soba_slot_empty {
    aspect-ratio: 1/1;
    border: 3px dashed var(--soba-orange-100);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fdba74;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.2s;
}

.soba_slot_empty:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--soba-primary);
    color: var(--soba-primary);
}

.soba_slot_empty_icon {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem;
    border-radius: 50%;
    margin-bottom: 0.25rem;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soba_slot_empty:hover .soba_slot_empty_icon {
    transform: scale(1.1);
}

.soba_slot_empty_text {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Total Card */
.soba_total_card {
    background: white;
    padding: 1.5rem;
    border-radius: 2rem;
    box-shadow: var(--soba-shadow-float);
    border: 2px solid var(--soba-orange-100);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .soba_total_card {
        padding: 2rem;
    }
}

.soba_total_card_glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 200, 61, 0.2);
    border-radius: 50%;
    filter: blur(32px);
    pointer-events: none;
}

.soba_total_card_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.soba_total_label {
    font-size: 12px;
    color: #926054;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.soba_total_price_wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.soba_total_amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--soba-primary);
    font-family: var(--soba-font-display);
}

.soba_total_unit {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--soba-gray-400);
}

.soba_qty_stepper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--soba-background-light);
    border-radius: 1.25rem;
    padding: 0.5rem;
    border: 2px solid var(--soba-orange-100);
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

.soba_qty_btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.soba_qty_btn:hover {
    color: var(--soba-primary);
}

.soba_qty_btn_primary {
    background: var(--soba-primary);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(255, 126, 51, 0.3);
}

.soba_qty_btn_primary:hover {
    background: var(--soba-primary-dark);
    color: white;
}

.soba_qty_value {
    width: 24px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 900;
    font-family: var(--soba-font-display);
}

/* Progress Section */
.soba_progress_section {
    background: var(--soba-orange-50);
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--soba-orange-100);
    margin-bottom: 2rem;
}

.soba_progress_header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #926054;
    margin-bottom: 1rem;
}

.soba_progress_indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.soba_progress_dot {
    width: 8px;
    height: 8px;
    background: var(--soba-primary);
    border-radius: 50%;
    animation: soba_pulse 2s infinite;
}

.soba_progress_bar_bg {
    height: 16px;
    width: 100%;
    background: white;
    border-radius: 9999px;
    border: 1px solid var(--soba-orange-100);
    padding: 2px;
    margin-bottom: 1rem;
}

.soba_progress_bar_fill {
    height: 100%;
    background: linear-gradient(to right, var(--soba-secondary), var(--soba-primary));
    border-radius: 9999px;
    transition: width 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

.soba_progress_shimmer {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    animation: soba_shimmer 2s infinite;
}

.soba_progress_msg {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--soba-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

/* Add to Cart Button */
.soba_add_to_cart {
    width: 100%;
    padding: 1rem;
    border-radius: 1.25rem;
    background: var(--soba-primary);
    color: white;
    font-size: 1.125rem;
    font-weight: 900;
    border: none;
    cursor: pointer;
    box-shadow: var(--soba-shadow-button);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.2s;
}

.soba_add_to_cart:hover:not(:disabled) {
    background: var(--soba-primary-dark);
    box-shadow: var(--soba-shadow-button-hover);
}

.soba_add_to_cart:active:not(:disabled) {
    transform: translateY(6px);
    box-shadow: none;
}

.soba_add_to_cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.soba_shipping_info {
    text-align: center;
    margin-top: 1rem;
    font-size: 10px;
    color: var(--soba-gray-400);
}

/* Category Filter */
.soba_filter_container {
    position: sticky;
    top: 80px;
    z-index: 40;
    padding: 1rem 0;
    background: rgba(255, 250, 245, 0.8);
    backdrop-filter: blur(8px);
}

.soba_filter_scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
}

.soba_filter_scroll::-webkit-scrollbar {
    display: none;
}

.soba_filter_btn {
    flex-shrink: 0;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
    border: 2px solid var(--soba-orange-100);
    color: #6b5854;
}

.soba_filter_btn:hover {
    border-color: var(--soba-secondary);
    background: var(--soba-orange-50);
    color: var(--soba-text-light);
    transform: scale(1.05);
}

.soba_filter_btn_active {
    background: var(--soba-text-light);
    color: white;
    border-color: var(--soba-text-light);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Snack Grid */
.soba_snack_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding-bottom: 5rem;
}

@media (min-width: 768px) {
    .soba_snack_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.soba_snack_card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--soba-shadow-card);
    border: 2px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.soba_snack_card:hover {
    box-shadow: var(--soba-shadow-float);
    border-color: var(--soba-primary);
}

.soba_snack_img_wrapper {
    aspect-ratio: 1/1;
    background: var(--soba-secondary-surface);
    overflow: hidden;
    position: relative;
}

.soba_snack_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.soba_snack_card:hover .soba_snack_img {
    transform: scale(1.1);
}

.soba_snack_check {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--soba-success);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.2s;
}

.soba_snack_card_selected .soba_snack_check {
    opacity: 1;
    animation: soba_bounce 0.5s;
}

.soba_snack_add_hover {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: white;
    color: var(--soba-text-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.2s;
}

.soba_snack_card:hover .soba_snack_add_hover {
    opacity: 1;
    transform: scale(1);
}

.soba_snack_add_hover:hover {
    background: var(--soba-primary);
    color: white;
}

.soba_snack_tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.soba_snack_tag_text {
    font-size: 10px;
    font-weight: 700;
    color: var(--soba-primary);
}

.soba_snack_info {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.soba_snack_title {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--soba-text-light);
    line-height: 1.2;
    margin-bottom: 0.25rem;
    font-family: var(--soba-font-display);
    transition: color 0.2s;
}

.soba_snack_card:hover .soba_snack_title {
    color: var(--soba-primary);
}

.soba_snack_desc {
    font-size: 12px;
    color: #926054;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.soba_snack_badges {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.soba_snack_badge {
    padding: 0.125rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.soba_badge_gf {
    background: rgba(255, 237, 213, 0.5);
    color: #c2410c;
}

.soba_badge_veg {
    background: #dcfce7;
    color: #15803d;
}

.soba_badge_sweet {
    background: #fce7f3;
    color: #be185d;
}

.soba_badge_salty {
    background: #dbeafe;
    color: #1d4ed8;
}

.soba_badge_savory {
    background: #dbeafe;
    color: #1d4ed8;
}

.soba_badge_keto {
    background: #f3e8ff;
    color: #7e22ce;
}

/* Load More */
.soba_load_more_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
    opacity: 0.6;
}

.soba_load_more_info {
    font-size: 14px;
    font-weight: 700;
    color: var(--soba-gray-400);
}

.soba_load_more_btn {
    background: white;
    border: 2px solid var(--soba-orange-100);
    color: var(--soba-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.soba_load_more_btn:hover {
    background: var(--soba-orange-50);
}

/* Animations */
@keyframes soba_shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes soba_pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

@keyframes soba_bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ==========================================================================
   Toaster Notification Styles
   ========================================================================== */

.soba_toaster_container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.soba_toast {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: all;
    animation: soba-toast-slide-in 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid;
}

.soba_toast.soba_toast_hiding {
    animation: soba-toast-slide-out 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.soba_toast_icon {
    font-size: 24px;
    flex-shrink: 0;
}

.soba_toast_content {
    flex: 1;
}

.soba_toast_message {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
}

.soba_toast_close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #6b7280;
    font-size: 18px;
    line-height: 1;
    transition: color 0.2s;
}

.soba_toast_close:hover {
    color: #1a1a1a;
}

/* Toast variants */
.soba_toast_error {
    border-left-color: #ef4444;
}

.soba_toast_error .soba_toast_icon {
    color: #ef4444;
}

.soba_toast_success {
    border-left-color: #10b981;
}

.soba_toast_success .soba_toast_icon {
    color: #10b981;
}

.soba_toast_info {
    border-left-color: #3b82f6;
}

.soba_toast_info .soba_toast_icon {
    color: #3b82f6;
}

.soba_toast_warning {
    border-left-color: #f59e0b;
}

.soba_toast_warning .soba_toast_icon {
    color: #f59e0b;
}

/* Animations */
@keyframes soba-toast-slide-in {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes soba-toast-slide-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Mobile responsive */
@media (max-width: 640px) {
    .soba_toaster_container {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    .soba_toast {
        min-width: auto;
        max-width: none;
    }
}