:root {
    --primary: #778899;
    --primary-light: #B0C4DE;
    --primary-dark: #4a5866;
    --secondary: #1a1a1a;
    --bg-body: #F8F9FA;
    --bg-card: #FFFFFF;
    --text-main: #2d3436;
    --text-light: #636e72;
    --success: #00b894;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --radius: 20px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-body: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-script: 'Great Vibes', cursive;
}

/* ========================================
   RESET E BASE - MOBILE FIRST
   ======================================== */

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    -webkit-tap-highlight-color: transparent; 
}

html, body { 
    width: 100%; 
    max-width: 100vw;
    overflow-x: hidden !important; 
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    padding-bottom: 100px;
}

h1, h2, h3 { font-family: var(--font-display); color: var(--secondary); font-weight: 700; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }
button { font-family: var(--font-body); border: none; outline: none; cursor: pointer; }

/* Container - CRÍTICO PARA MOBILE */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 12px; 
    width: 100%; 
    overflow-x: hidden !important;
}

#app {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
}

main {
    overflow-x: hidden !important;
}

.hidden { display: none !important; }
.text-center { text-align: center; }
.text-light { color: var(--text-light); }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes spin { to { transform: rotate(360deg); } }
.animate-enter { animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; opacity: 0; }

/* ========================================
   BOTÕES
   ======================================== */

.btn {
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    padding: 12px 20px; 
    border-radius: 50px; 
    font-weight: 600; 
    font-size: 0.9rem;
    transition: var(--transition); 
    gap: 6px;
    box-shadow: var(--shadow-sm); 
    user-select: none;
    white-space: nowrap;
}
.btn:active { transform: scale(0.95); }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 0.8rem; }

/* ========================================
   HEADER
   ======================================== */

header {
    background: rgba(255,255,255,0.95); 
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky; 
    top: 0; 
    z-index: 50;
    padding: 10px 0; 
    width: 100%;
}

.nav-wrapper { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 12px;
}

.brand-container { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .adda { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--secondary); }
.brand-text .moments { font-family: var(--font-script); font-size: 1.6rem; color: #282828; margin-top: -5px; }

.desktop-actions { display: none; gap: 15px; align-items: center; }
.cart-icon-wrapper { position: relative; cursor: pointer; }
.cart-badge {
    position: absolute; top: -5px; right: -8px;
    background: var(--secondary); color: white;
    font-size: 0.65rem; width: 18px; height: 18px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

@media (min-width: 769px) { 
    .desktop-actions { display: flex; }
    .brand-text .adda { font-size: 1.7rem; }
    .brand-text .moments { font-size: 1.9rem; }
}

/* ========================================
   MOBILE NAV
   ======================================== */

.mobile-nav {
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%;
    background: white; 
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
    display: flex; 
    justify-content: space-around; 
    padding: 8px 0;
    z-index: 100; 
    border-radius: 20px 20px 0 0;
}

.nav-item {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 2px;
    color: #b2bec3; 
    font-size: 0.7rem; 
    font-weight: 500;
    background: none; 
    flex: 1;
    padding: 5px 2px;
}
.nav-item i { font-size: 1.3rem; }
.nav-item.active { color: var(--primary); }

@media (min-width: 769px) { 
    .mobile-nav { display: none; } 
}

/* ========================================
   HERO
   ======================================== */

.hero {
    position: relative; 
    height: 55vh; 
    min-height: 350px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: white; 
    text-align: center; 
    overflow: hidden;
    margin-bottom: 30px; 
    width: 100%;
    padding: 0 15px;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(160deg, #000 0%, #778899 100%);
    z-index: -1;
}
.hero h2 { font-size: 2rem; color: white; margin-bottom: 0.8rem; }
.hero p { font-size: 1rem; margin-bottom: 1.5rem; opacity: 0.9; }

.btn-hero {
    background: linear-gradient(160deg, #778899, #C0C0C0);
    color: #000; 
    border-radius: 40px; 
    padding: 12px 24px;
    font-weight: 600; 
    border: 2px solid #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.3);
    font-size: 0.85rem;
}

@media (min-width: 600px) {
    .hero { height: 70vh; min-height: 500px; }
    .hero h2 { font-size: 3rem; }
    .hero p { font-size: 1.2rem; }
    .btn-hero { padding: 16px 38px; font-size: 1rem; }
}

/* ========================================
   CARDS - CATÁLOGO
   ======================================== */

.catalog-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px; 
    padding: 15px 0 60px; 
}

@media (min-width: 600px) {
    .catalog-grid { 
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); 
        gap: 20px;
    }
}

.card {
    background: var(--bg-card); 
    border-radius: 16px; 
    overflow: hidden;
    box-shadow: var(--shadow-sm); 
    transition: var(--transition);
    display: flex; 
    flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.card-img-wrapper { height: 120px; overflow: hidden; }
.card-img { width: 100%; height: 100%; transition: transform 0.6s ease; }
.card:hover .card-img { transform: scale(1.05); }

.card-body { padding: 10px; flex: 1; display: flex; flex-direction: column; }
.card-title { 
    font-size: 0.85rem; 
    margin-bottom: 4px; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-price { color: var(--primary); font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.card .btn { padding: 8px 12px; font-size: 0.75rem; }

@media (min-width: 600px) {
    .card-img-wrapper { height: 200px; }
    .card-body { padding: 16px; }
    .card-title { font-size: 1.1rem; white-space: normal; }
    .card-price { font-size: 1.2rem; margin-bottom: 12px; }
    .card .btn { padding: 12px 20px; font-size: 0.9rem; }
}

.basket-items-list { 
    background: #f8f9fa; 
    border-radius: 10px; 
    padding: 10px; 
    margin-bottom: 12px; 
}
.basket-items-list h5 { font-size: 0.75rem; color: var(--primary); margin-bottom: 8px; }
.basket-items-list ul { display: flex; flex-wrap: wrap; gap: 5px; }
.basket-items-list li { 
    background: white; 
    padding: 4px 8px; 
    border-radius: 15px; 
    font-size: 0.7rem; 
    border: 1px solid #eee; 
}

/* ========================================
   BUILDER - PERSONALIZAÇÃO
   ======================================== */

.builder-container { 
    padding: 15px 0 220px; /* Mais espaço no fundo para os botões fixos */
    overflow-x: hidden !important;
}

@media (min-width: 900px) {
    .builder-container { 
        padding-bottom: 40px; /* Menos espaço no desktop */
    }
}

.builder-grid { 
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

@media (min-width: 900px) {
    .builder-grid { 
        display: grid;
        grid-template-columns: 1fr 320px; 
        gap: 24px; 
    }
}

.builder-content { 
    display: flex; 
    flex-direction: column; 
    min-height: auto;
    overflow-x: hidden !important;
    width: 100%;
}

/* Steps indicator */
.steps-indicator {
    display: flex; 
    justify-content: center; 
    gap: 6px; 
    margin-bottom: 15px;
}
.step-dot {
    width: 8px; 
    height: 8px; 
    border-radius: 50%;
    background: #ddd; 
    transition: var(--transition);
}
.step-dot.active { background: var(--primary); width: 25px; border-radius: 4px; }

/* Categories scroll */
.categories-scroll {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 8px 0 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin: 0 -12px;
    padding-left: 12px;
    padding-right: 12px;
}
.categories-scroll::-webkit-scrollbar { display: none; }

.cat-btn {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-body);
    background: white;
    color: var(--text-light);
    border: 2px solid #e0e0e0;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
}
.cat-btn:hover { border-color: var(--primary); color: var(--primary); }
.cat-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ========================================
   PRODUCTS GRID - PERSONALIZAÇÃO STEP 2
   ======================================== */

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 45vh;
    overflow-y: auto;
    overflow-x: hidden !important;
    padding: 2px;
    scrollbar-width: thin;
    width: 100%;
}

@media (min-width: 600px) {
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 10px;
        max-height: 55vh;
    }
}

/* Product Item */
.product-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border: 2px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.product-item:hover { 
    border-color: var(--primary-light); 
    background: #fafbfc; 
}

.product-item.selected {
    border-color: var(--success);
    background: #f0faf6;
}

.product-item-img {
    width: 45px;
    height: 45px;
    min-width: 45px;
    max-width: 45px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.product-item-img-placeholder {
    width: 45px;
    height: 45px;
    min-width: 45px;
    max-width: 45px;
    background: #f8f9fa;
    border-radius: 8px;
    flex-shrink: 0;
}

.product-item-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.product-item-name {
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.product-item-category {
    font-size: 0.65rem;
    color: #888;
}

.product-item-price {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 2px;
}

.product-item-qty {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.product-qty-btn {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.product-qty-btn.plus {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.product-qty-value {
    min-width: 18px;
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
}

.product-add-btn {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.product-add-btn i {
    font-size: 1rem;
    color: var(--primary);
}

/* ========================================
   CESTAS GRID - STEP 1
   ======================================== */

.cestas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 500px) {
    .cestas-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 15px; }
}

.cesta-option {
    border: 2px solid #eee;
    border-radius: 14px;
    padding: 12px;
    cursor: pointer;
    text-align: center;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.cesta-option:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cesta-option.selected { border-color: var(--primary); background: linear-gradient(135deg, #f0f4f8, #e8ecf1); }
.cesta-option img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 8px;
}
.cesta-option strong { 
    font-size: 0.8rem; 
    display: block; 
    line-height: 1.3; 
    margin-bottom: 4px;
    min-height: 2.6em;
}
.cesta-option .price { color: var(--primary); font-size: 0.9rem; font-weight: 600; }

@media (min-width: 400px) {
    .cesta-option img {
        height: 110px;
    }
}

@media (min-width: 600px) {
    .cesta-option img {
        height: 130px;
    }
    .cesta-option strong {
        font-size: 0.85rem;
    }
}

/* ========================================
   BUILDER NAV BUTTONS
   ======================================== */

.builder-nav-buttons {
    display: flex; 
    justify-content: space-between; 
    gap: 10px; 
    margin-top: 15px;
    position: fixed; 
    bottom: 65px; 
    left: 0; 
    right: 0;
    background: white; 
    padding: 10px 12px; 
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1); 
    z-index: 90;
}
.builder-nav-buttons .btn { 
    flex: 1; 
    padding: 10px; 
    font-size: 0.85rem;
}

@media (min-width: 900px) {
    .builder-nav-buttons {
        position: relative;
        bottom: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
        margin-top: 20px;
    }
}

/* ========================================
   PREVIEW SIDEBAR
   ======================================== */

.preview-sidebar { 
    background: white; 
    padding: 15px; 
    border-radius: 16px; 
    box-shadow: var(--shadow-md); 
    height: fit-content;
    margin-bottom: 180px; /* Espaço para os botões fixos + nav no mobile */
}

@media (min-width: 900px) {
    .preview-sidebar { 
        position: sticky; 
        top: 80px;
        padding: 20px;
        margin-bottom: 0; /* Sem margem no desktop */
    }
}

.preview-box { 
    background: #fcfcfc; 
    border: 2px dashed #dcdde1; 
    padding: 10px; 
    margin-bottom: 12px; 
    border-radius: 10px; 
    min-height: 80px;
    max-height: 150px; 
    overflow-y: auto;
    overflow-x: hidden;
}

.preview-item { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    font-size: 0.8rem; 
    margin-bottom: 5px; 
    padding-bottom: 5px; 
    border-bottom: 1px solid #f1f1f1;
    gap: 8px;
}

.preview-item span:first-child {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preview-item span:last-child {
    flex-shrink: 0;
    font-weight: 600;
}

/* ========================================
   CARTÕES GRID
   ======================================== */

.cartoes-grid {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 8px;
}

@media (min-width: 400px) {
    .cartoes-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
}

.cartao-option {
    border: 2px solid transparent; 
    border-radius: 10px; 
    padding: 8px;
    cursor: pointer; 
    text-align: center; 
    background: white;
    box-shadow: var(--shadow-sm);
}
.cartao-option.selected { border-color: var(--primary); background: #f8f9fa; }
.cartao-option img { 
    width: 100%; 
    height: 50px; 
    object-fit: cover; 
    border-radius: 6px; 
    margin-bottom: 4px; 
}
.cartao-option strong { font-size: 0.65rem; }
.cartao-option .price { font-size: 0.7rem; color: var(--primary); }

/* ========================================
   CARRINHO
   ======================================== */

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.cart-item-card {
    background: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    gap: 8px 10px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.cart-item-img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    max-width: 50px;
    border-radius: 8px;
    object-fit: cover;
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    align-self: center;
}

.cart-item-info {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    min-width: 0;
    overflow: hidden;
}

.cart-item-name {
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.cart-item-badge {
    background: #f1f2f6;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.6rem;
    display: inline-block;
}

.cart-item-unit-price {
    font-size: 0.7rem;
    color: #888;
    margin-top: 2px;
}

.cart-item-actions {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 6px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    border-color: var(--primary);
    background: #f8f9fa;
}

.qty-value {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.cart-item-price {
    text-align: right;
}

.cart-item-price .price-value {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.cart-item-price .remove-btn {
    color: #d63031;
    font-size: 0.7rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px 0;
    display: block;
}

@media (min-width: 500px) {
    .cart-item-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .cart-item-img {
        grid-row: auto;
        grid-column: auto;
    }
    
    .cart-item-info {
        flex: 1;
    }
    
    .cart-item-actions {
        border-top: none;
        padding-top: 0;
        gap: 15px;
    }
    
    .cart-item-qty {
        order: 1;
    }
    
    .cart-item-price {
        order: 2;
        min-width: 80px;
    }
}

/* ========================================
   FORMULÁRIOS
   ======================================== */

.form-group { margin-bottom: 15px; }
.form-label { display: block; margin-bottom: 5px; font-weight: 500; font-size: 0.85rem; }
.form-input, textarea {
    width: 100%; 
    padding: 10px 12px; 
    border: 2px solid #dfe6e9; 
    border-radius: 10px;
    font-family: var(--font-body); 
    font-size: 0.95rem;
}
.form-input:focus, textarea:focus { border-color: var(--primary); outline: none; }

.message-box { margin-top: 10px; padding: 10px; background: #f0f4f8; border-radius: 10px; }
.char-counter { font-size: 0.7rem; color: var(--text-light); text-align: right; margin-top: 4px; }

/* ========================================
   TOAST
   ======================================== */

#toast-container { 
    position: fixed; 
    bottom: 80px; 
    right: 12px; 
    left: 12px;
    z-index: 1000; 
}

@media(min-width: 769px) { 
    #toast-container { 
        bottom: 20px; 
        left: auto;
        right: 20px;
        width: auto;
    } 
}

.toast { 
    background: white; 
    padding: 12px 15px; 
    border-radius: 10px; 
    box-shadow: var(--shadow-lg); 
    border-left: 4px solid var(--primary); 
    display: flex; 
    align-items: center; 
    gap: 8px;
    animation: slideInRight 0.4s ease;
    font-size: 0.85rem;
}
.toast.error { border-color: #d63031; }
@keyframes slideInRight { 
    from { transform: translateX(100%); opacity: 0; } 
    to { transform: translateX(0); opacity: 1; } 
}

/* ========================================
   FEATURE BOXES
   ======================================== */

.feature-box { 
    padding: 20px 15px; 
    text-align: center; 
    background: white; 
    border-radius: 16px; 
}
.feature-icon {
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    background: #f1f2f6;
    color: var(--primary); 
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin: 0 auto 12px; 
    font-size: 1.5rem;
}
.feature-box h4 { font-size: 0.9rem; }

/* ========================================
   LOADING
   ======================================== */

.loading { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 40px; 
    color: var(--text-light); 
}
.loading::after { 
    content: ''; 
    width: 25px; 
    height: 25px; 
    border: 3px solid #eee; 
    border-top-color: var(--primary); 
    border-radius: 50%; 
    animation: spin 1s linear infinite; 
    margin-left: 12px; 
}

/* ========================================
   READY BASKET DETAIL
   ======================================== */

.ready-basket-detail { 
    max-width: 900px; 
    margin: 0 auto; 
    padding: 15px 0; 
}
.ready-basket-image { 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    border-radius: 16px; 
    margin-bottom: 20px; 
}

@media (min-width: 600px) {
    .ready-basket-image { height: 350px; }
}

.ready-basket-info { 
    background: white; 
    padding: 20px; 
    border-radius: 16px; 
    box-shadow: var(--shadow-md); 
    margin-bottom: 20px; 
}

.ready-basket-items { 
    background: #f8f9fa; 
    border-radius: 10px; 
    padding: 15px; 
    margin-top: 15px; 
}
.ready-basket-items h4 { margin-bottom: 12px; color: var(--primary); font-size: 0.9rem; }
.ready-basket-items ul { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 8px; 
}
.ready-basket-items li { 
    background: white; 
    padding: 6px 10px; 
    border-radius: 8px; 
    font-size: 0.75rem; 
    display: flex; 
    align-items: center; 
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ready-basket-items li i { color: var(--primary); flex-shrink: 0; }

/* ========================================
   OPTIONS GRID
   ======================================== */

.options-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 8px;
}

@media (min-width: 500px) {
    .options-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
}

.option-card {
    border: 2px solid transparent; 
    border-radius: 10px; 
    padding: 8px;
    cursor: pointer; 
    text-align: center; 
    background: white;
    box-shadow: var(--shadow-sm); 
    transition: var(--transition);
}
.option-card.selected { border-color: var(--primary); background: #f8f9fa; }
.option-card img { 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    margin: 0 auto 6px; 
    object-fit: cover; 
}
.option-card strong { font-size: 0.7rem; display: block; line-height: 1.2; }
.option-card .price { color: var(--primary); font-size: 0.75rem; margin-top: 3px; }

/* ========================================
   EXTRAS GRID
   ======================================== */

.extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.extra-option {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 12px 8px;
    cursor: pointer;
    text-align: center;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.extra-option.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, #f0f4f8, #e8ecf1);
}
.extra-option img {
    width: 100%;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

/* ========================================
   CESTA INFO
   ======================================== */

.cesta-info { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.cesta-info span { 
    font-size: 0.7rem; 
    color: var(--text-light); 
    display: flex; 
    align-items: center; 
    gap: 3px; 
}
