/* ===== DELICE RECIPE - CLEAN FINAL ===== */

* { box-sizing: border-box; margin: 0; padding: 0; }

/* RECIPE CARD WRAPPER */
.delice-recipe-card {
    display: block;
    width: 100%;
}

.delice-recipe-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    background: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* HEADER */
.delice-recipe-header {
    padding: 40px 24px 28px 24px;
    text-align: center;
    background: white;
    border: none;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: none;
}

.delice-recipe-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.delice-recipe-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 24px 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* IMAGE */
.delice-recipe-image-wrapper {
    margin: 0 auto 24px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 720px;
}

.delice-recipe-image {
    width: 100%;
    height: auto;
    display: block;
}

/* HIDE TOP ACTION BUTTONS */
.delice-recipe-action-buttons {
    display: none !important;
}

/* ATTRIBUTION - CENTERED BELOW IMAGE */
.delice-recipe-attribution {
    text-align: center;
    padding: 0 24px 24px 24px;
    margin: 0;
    background: transparent;
    border: none;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: none;
}

.delice-recipe-attribution-text {
    font-size: 14px;
    color: #666;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-weight: 400;
    background: transparent;
    border: none;
    border-left: none;
}

.delice-recipe-attribution-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    border: none;
}

.delice-recipe-attribution-link:hover {
    text-decoration: underline;
}

/* META CARDS */
.delice-recipe-meta {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0 24px 32px 24px;
    background: white;
    flex-wrap: wrap;
}

.delice-recipe-meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.delice-recipe-meta-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #FF6B35;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.delice-recipe-meta-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.12);
    border-color: #FF6B35;
}

.delice-recipe-meta-item:hover::before {
    transform: scaleX(1);
}

.delice-recipe-meta-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #999;
    font-weight: 600;
    margin-bottom: 6px;
}

.delice-recipe-meta-value {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
}

/* SECTION HEADERS */
.delice-recipe-ingredients h3,
.delice-recipe-instructions h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

/* INGREDIENTS */
.delice-recipe-ingredients {
    padding: 40px 24px;
    background: white;
}

.delice-recipe-ingredients-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    max-width: 600px;
}

.delice-recipe-ingredient {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.delice-recipe-ingredient:hover {
    background: #fafafa;
    padding-left: 12px;
    padding-right: 12px;
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 4px;
}

.delice-recipe-ingredient-checkbox {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: #FF6B35;
    flex-shrink: 0;
    margin-top: 2px;
}

.delice-recipe-ingredient-name {
    flex: 1;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.delice-recipe-ingredient-quantity {
    font-size: 14px;
    color: #FF6B35;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: auto;
}

/* COPY BUTTON */
.delice-recipe-copy-ingredients {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    background: white;
    color: #FF6B35;
    border: 2px solid #FF6B35;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.delice-recipe-copy-ingredients:hover {
    background: #FFF5F0;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
}

.delice-recipe-copy-ingredients:active {
    background: #FF6B35;
    color: white;
    transform: translateY(0);
}

/* INSTRUCTIONS */
.delice-recipe-instructions {
    padding: 40px 24px;
    background: white;
}

.delice-recipe-instructions-list {
    list-style: none;
    padding: 28px;
    margin: 0;
    counter-reset: step;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
}

.delice-recipe-instruction {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    margin-bottom: 12px;
    counter-increment: step;
    border: 1px solid #f0f0f0;
}

.delice-recipe-instruction:last-child {
    margin-bottom: 0;
}

.delice-recipe-instruction::before {
    content: counter(step);
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.delice-recipe-instruction-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    flex: 1;
}

/* NOTES */
.delice-recipe-notes {
    margin: 24px 0 0 0;
    padding: 20px;
    background: #FFF8E7;
    border-left: 3px solid #FF6B35;
    border-radius: 8px;
}

.delice-recipe-notes h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.delice-recipe-notes p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    color: #555;
}

/* NUTRITION */
.delice-recipe-nutrition {
    padding: 40px 24px;
    background: white;
}

.delice-recipe-nutrition h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 24px 0;
    color: #1a1a1a;
    text-align: center;
}

.delice-recipe-nutrition-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.delice-recipe-nutrition-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.delice-recipe-nutrition-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #FF8C5A 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.delice-recipe-nutrition-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.15);
    border-color: #FF6B35;
}

.delice-recipe-nutrition-item:hover::before {
    transform: scaleX(1);
}

.delice-recipe-nutrition-label {
    font-size: 11px;
    color: #999;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.delice-recipe-nutrition-value {
    font-size: 26px;
    font-weight: 700;
    color: #FF6B35;
    line-height: 1;
}

/* FAQ */
.delice-recipe-faqs {
    background: #fafafa;
    padding: 40px 24px;
}

.delice-recipe-faqs-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
}

.delice-recipe-modern-faqs-list {
    max-width: 800px;
}

.delice-recipe-modern-faq-item {
    background: white;
    margin-bottom: 10px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.delice-recipe-modern-faq-item.faq-open {
    border-color: #FF6B35;
}

.delice-recipe-modern-faq-question {
    width: 100%;
    background: white;
    padding: 16px 18px;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.delice-recipe-modern-faq-question:hover {
    background: #fafafa;
}

.faq-open .delice-recipe-modern-faq-question {
    background: #fff4f0;
    color: #1a1a1a;
    border-left: 3px solid #FF6B35;
}

.delice-recipe-modern-faq-question-text {
    flex: 1;
}

.delice-recipe-modern-faq-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 24px;
    width: 24px;
    height: 24px;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    color: #FF6B35;
    transition: transform 0.25s ease;
}

.faq-open .delice-recipe-modern-faq-toggle {
    transform: rotate(45deg);
    color: #FF6B35;
}

.delice-recipe-modern-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-open .delice-recipe-modern-faq-answer {
    max-height: 1000px;
}

.delice-recipe-modern-faq-answer p {
    padding: 16px 18px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    border-top: 1px solid #e8e8e8;
    background: #fafafa;
}

/* BOTTOM ACTIONS */
.delice-recipe-bottom-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 32px 24px;
    background: white;
    border-top: 1px solid #f0f0f0;
}

.delice-recipe-bottom-actions .delice-recipe-print-btn,
.delice-recipe-bottom-actions .delice-recipe-share-btn,
.delice-recipe-bottom-actions .delice-recipe-action-button {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    background: white;
    color: #666;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.delice-recipe-bottom-actions .delice-recipe-print-btn:hover,
.delice-recipe-bottom-actions .delice-recipe-share-btn:hover {
    background: #FF6B35;
    border-color: #FF6B35;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.delice-recipe-bottom-actions .delice-recipe-action-button-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

.delice-recipe-bottom-actions .delice-recipe-share-dropdown {
    position: relative;
}

.delice-recipe-bottom-actions .delice-recipe-share-menu {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    padding: 8px;
    margin-bottom: 8px;
    min-width: 200px;
    z-index: 9999;
    display: none;
}

.delice-recipe-bottom-actions .delice-recipe-share-menu.active {
    display: block;
}

.delice-recipe-bottom-actions .delice-recipe-share-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s;
}

.delice-recipe-bottom-actions .delice-recipe-share-item:hover {
    background: #FF6B35;
    color: white;
}

.delice-recipe-bottom-actions .delice-recipe-share-item-icon {
    width: 18px;
    height: 18px;
}

/* REVIEWS */
.delice-recipe-review-section {
    padding: 40px 24px;
    background: white;
}

/* FOOTER */
.delice-recipe-footer {
    padding: 28px 24px;
    text-align: center;
    font-size: 13px;
    color: #666;
    background: #fafafa;
    border-top: 1px solid #e8e8e8;
}

/* COPY MESSAGE */
.delice-copy-message {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #43B649;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(67, 182, 73, 0.3);
}

/* MOBILE */
@media (max-width: 768px) {
    .delice-recipe-title { font-size: 30px; }
    .delice-recipe-header { padding: 32px 16px 24px 16px; }
    .delice-recipe-attribution { padding: 0 16px 16px 16px; }
    .delice-recipe-meta { gap: 10px; padding: 0 16px 28px 16px; }
    .delice-recipe-meta-item { min-width: 80px; padding: 12px 16px; }
    .delice-recipe-meta-value { font-size: 16px; }
    .delice-recipe-ingredients { padding: 32px 16px; }
    .delice-recipe-instructions { padding: 32px 16px; }
    .delice-recipe-instructions-list { padding: 20px; }
    .delice-recipe-ingredient { flex-direction: column; align-items: flex-start; }
    .delice-recipe-ingredient-quantity { margin-left: 36px; margin-top: 4px; }
    .delice-recipe-instruction { padding: 16px; gap: 14px; }
    .delice-recipe-instruction::before { min-width: 28px; height: 28px; font-size: 14px; }
    .delice-recipe-nutrition { padding: 32px 16px; }
    .delice-recipe-nutrition-grid { gap: 12px; }
    .delice-recipe-nutrition-item { min-width: 90px; padding: 16px 20px; }
    .delice-recipe-nutrition-value { font-size: 22px; }
    .delice-recipe-faqs { padding: 32px 16px; }
    .delice-recipe-bottom-actions { flex-direction: column; padding: 24px 16px; gap: 10px; }
    .delice-recipe-bottom-actions .delice-recipe-print-btn,
    .delice-recipe-bottom-actions .delice-recipe-share-btn { width: 100%; justify-content: center; }
}

/* PRINT STYLES */
@media print {
    /* Hide everything on page except recipe */
    body > *:not(.delice-recipe-card) {
        display: none !important;
    }
    
    /* Show recipe card */
    .delice-recipe-card,
    .delice-recipe-container {
        display: block !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Hide buttons and interactive elements */
    .delice-recipe-action-buttons,
    .delice-recipe-bottom-actions,
    .delice-recipe-copy-ingredients,
    .delice-recipe-ingredient-checkbox,
    .delice-recipe-review-section,
    .delice-recipe-footer {
        display: none !important;
    }
    
    /* Force display of content */
    .delice-recipe-header,
    .delice-recipe-header-meta,
    .delice-recipe-attribution,
    .delice-recipe-meta,
    .delice-recipe-image-wrapper,
    .delice-recipe-ingredients,
    .delice-recipe-ingredients-list,
    .delice-recipe-instruction s,
    .delice-recipe-instructions-list,
    .delice-recipe-nutrition,
    .delice-recipe-nutrition-grid,
    .delice-recipe-faqs {
        display: block !important;
    }
    
    /* Flex for specific elements */
    .delice-recipe-meta,
    .delice-recipe-nutrition-grid {
        display: flex !important;
    }
    
    .delice-recipe-ingredient,
    .delice-recipe-instruction {
        display: flex !important;
    }
    
    /* Force colors */
    .delice-recipe-instruction::before {
        background: #FF6B35 !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    /* Remove effects */
    * {
        box-shadow: none !important;
        transition: none !important;
    }
}
/* PRINT ONLY RECIPE - BULLETPROOF */
@media print {
    @page {
        margin: 0.5in;
    }
    
    /* Hide website chrome */
    body > header,
    body > nav,
    body > aside,
    body > footer,
    .site-header,
    .site-nav,
    .site-footer,
    #header,
    #navigation,
    #sidebar {
        display: none !important;
    }
    
    /* Force recipe to show */
    .delice-recipe-card,
    .delice-recipe-container,
    .delice-recipe-header,
    .delice-recipe-title,
    .delice-recipe-description,
    .delice-recipe-image-wrapper,
    .delice-recipe-image,
    .delice-recipe-attribution,
    .delice-recipe-meta,
    .delice-recipe-ingredients,
    .delice-recipe-instructions,
    .delice-recipe-nutrition,
    .delice-recipe-faqs {
        display: block !important;
        position: static !important;
        visibility: visible !important;
    }
    
    .delice-recipe-meta,
    .delice-recipe-nutrition-grid {
        display: flex !important;
    }
    
    .delice-recipe-ingredient,
    .delice-recipe-instruction {
        display: flex !important;
    }
    
    /* Hide buttons */
    button,
    .delice-recipe-action-buttons,
    .delice-recipe-bottom-actions,
    .delice-recipe-copy-ingredients,
    .delice-recipe-ingredient-checkbox {
        display: none !important;
    }
    
    /* Orange numbers */
    .delice-recipe-instruction::before {
        background: #FF6B35 !important;
        color: white !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
}

/* PRINT - WHEN PRINTING CLASS IS ACTIVE */
@media print {
    /* Hide WordPress theme elements */
    body.recipe-printing > *:not(.delice-recipe-card) {
        display: none !important;
    }
    
    body.recipe-printing .site-header,
    body.recipe-printing .site-footer,
    body.recipe-printing header:not(.delice-recipe-header),
    body.recipe-printing nav,
    body.recipe-printing aside,
    body.recipe-printing .sidebar {
        display: none !important;
    }
    
    /* Show recipe */
    body.recipe-printing .delice-recipe-card,
    body.recipe-printing .delice-recipe-container {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Hide buttons */
    body.recipe-printing button,
    body.recipe-printing .delice-recipe-action-buttons,
    body.recipe-printing .delice-recipe-bottom-actions,
    body.recipe-printing .delice-recipe-copy-ingredients,
    body.recipe-printing .delice-recipe-ingredient-checkbox,
    body.recipe-printing .delice-recipe-review-section,
    body.recipe-printing .delice-recipe-footer {
        display: none !important;
    }
    
    /* Show content */
    body.recipe-printing .delice-recipe-header,
    body.recipe-printing .delice-recipe-title,
    body.recipe-printing .delice-recipe-description,
    body.recipe-printing .delice-recipe-image-wrapper,
    body.recipe-printing .delice-recipe-attribution,
    body.recipe-printing .delice-recipe-ingredients,
    body.recipe-printing .delice-recipe-instructions,
    body.recipe-printing .delice-recipe-nutrition,
    body.recipe-printing .delice-recipe-faqs {
        display: block !important;
    }
    
    body.recipe-printing .delice-recipe-meta,
    body.recipe-printing .delice-recipe-nutrition-grid {
        display: flex !important;
    }
    
    body.recipe-printing .delice-recipe-ingredient,
    body.recipe-printing .delice-recipe-instruction {
        display: flex !important;
    }
    
    /* Orange numbers */
    body.recipe-printing .delice-recipe-instruction::before {
        background: #FF6B35 !important;
        color: white !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    
    /* Compact spacing */
    body.recipe-printing .delice-recipe-title {
        font-size: 28px !important;
    }
    
    body.recipe-printing .delice-recipe-image-wrapper {
        max-width: 500px !important;
    }
    
    body.recipe-printing .delice-recipe-ingredient {
        font-size: 14px !important;
    }
}

/* ==========================================================================
   v3.6.0 — New Feature Styles
   ========================================================================== */

/* ── Breadcrumb ─────────────────────────────────────────────────────────── */
.delice-recipe-breadcrumb {
    margin: 0 0 14px !important;
    padding: 0 !important;
}
.delice-recipe-breadcrumb-list {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 4px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 13px !important;
    color: #9ca3af !important;
}
.delice-recipe-breadcrumb-list li { padding: 0 !important; margin: 0 !important; background: none !important; border: none !important; }
.delice-recipe-breadcrumb-list li::before { content: none !important; display: none !important; }
.delice-recipe-breadcrumb-list li + li::before {
    content: '›' !important;
    display: inline !important;
    margin-right: 4px !important;
    color: #d1d5db !important;
}
.delice-recipe-breadcrumb-list a { color: #f97316 !important; text-decoration: none !important; }
.delice-recipe-breadcrumb-list a:hover { text-decoration: underline !important; }
.delice-recipe-breadcrumb-list [aria-current="page"] { color: #6b7280 !important; }

/* ── Rating Summary Display ─────────────────────────────────────────────── */
.delice-recipe-rating-summary {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    margin: 6px 0 0 !important;
}
.delice-recipe-rating-stars-display {
    display: flex !important;
    gap: 1px !important;
    line-height: 1 !important;
}
.delice-rating-star-display { font-size: 16px !important; color: #d6d3d1 !important; }
.delice-rating-star-display.filled { color: #f59e0b !important; }
.delice-recipe-rating-score {
    font-weight: 700 !important;
    font-size: 15px !important;
    color: #1a1a2e !important;
}
.delice-recipe-rating-count { font-size: 13px !important; color: #9ca3af !important; }

/* ── Last Updated ────────────────────────────────────────────────────────── */
.delice-recipe-updated .delice-recipe-meta-label { color: #9ca3af !important; font-size: 11px !important; }
.delice-recipe-updated .delice-recipe-meta-value { color: #6b7280 !important; font-size: 13px !important; }

/* ── Nutrition Disclaimer ────────────────────────────────────────────────── */
.delice-recipe-nutrition-disclaimer {
    font-size: 11px !important;
    color: #9ca3af !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 10px 20px 14px !important;
    font-style: italic !important;
    line-height: 1.5 !important;
    display: block !important;
}

/* ── Checked ingredient strike-through ─────────────────────────────────── */
.delice-ingredient-checked .delice-recipe-ingredient-name,
.delice-ingredient-checked .delice-recipe-ingredient-quantity {
    text-decoration: line-through !important;
    opacity: 0.5 !important;
}

/* ── Servings Scaler ─────────────────────────────────────────────────────── */
.delice-servings-control {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0 !important;
    background: #fff !important;
    border: 2px solid #FF6B35 !important;
    border-radius: 50px !important;
    padding: 3px !important;
    box-shadow: 0 2px 10px rgba(255,107,53,0.18) !important;
}
.delice-servings-btn {
    background: transparent !important;
    color: #FF6B35 !important;
    border: none !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 22px !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
    font-weight: 300 !important;
    transition: background 0.15s, color 0.15s !important;
}
.delice-servings-btn:hover:not(:disabled) {
    background: #FF6B35 !important;
    color: #fff !important;
}
.delice-servings-btn:disabled { color: #d1d5db !important; cursor: not-allowed !important; }
.delice-servings-value {
    min-width: 38px !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 17px !important;
    color: #1a1a2e !important;
    cursor: pointer !important;
    padding: 0 2px !important;
    user-select: none !important;
}
.delice-servings-input {
    width: 44px !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 17px !important;
    border: 1px solid #FF6B35 !important;
    border-radius: 4px !important;
    padding: 0 4px !important;
    outline: none !important;
    background: #fff !important;
}
.delice-servings-label {
    font-size: 13px !important;
    color: #6b7280 !important;
    font-weight: 500 !important;
    padding: 0 10px 0 4px !important;
    white-space: nowrap !important;
}
.delice-servings-live { display: none !important; }

/* ── Cook Mode Button ────────────────────────────────────────────────────── */
.delice-cook-mode-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
    background: #f3f4f6 !important;
    color: #374151 !important;
    border: 1px solid #e5e7eb !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    transition: background 0.15s, color 0.15s !important;
}
.delice-cook-mode-btn:hover { background: #e5e7eb !important; }
.delice-cook-mode-btn.delice-cook-mode-active {
    background: #16a34a !important;
    color: #fff !important;
    border-color: #16a34a !important;
}
.delice-cook-mode-btn.delice-cook-mode-active:hover { background: #15803d !important; }

/* ── Step Timer Triggers ─────────────────────────────────────────────────── */
.delice-timer-trigger {
    background: #fef3c7 !important;
    border-radius: 4px !important;
    padding: 0 3px !important;
    cursor: pointer !important;
    border-bottom: 1px dashed #f59e0b !important;
    transition: background 0.15s !important;
}
.delice-timer-trigger:hover { background: #fde68a !important; }
.delice-timer-icon { font-size: 13px !important; }

/* ── Timer Panel (fixed bottom-right) ───────────────────────────────────── */
.delice-timer-panel {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    pointer-events: none !important;
}
.delice-timer-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: #1a1a2e !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3) !important;
    pointer-events: auto !important;
    min-width: 200px !important;
    animation: delice-timer-in 0.2s ease !important;
}
.delice-timer-label { font-size: 12px !important; color: #9ca3af !important; flex: 1 !important; }
.delice-timer-time { font-size: 16px !important; font-weight: 700 !important; font-variant-numeric: tabular-nums !important; }
.delice-timer-cancel {
    background: transparent !important;
    border: none !important;
    color: #9ca3af !important;
    font-size: 14px !important;
    cursor: pointer !important;
    padding: 0 !important;
    line-height: 1 !important;
}
.delice-timer-cancel:hover { color: #fff !important; }
.delice-timer-done .delice-timer-time { color: #4ade80 !important; }
.delice-timer-urgent .delice-timer-time { color: #f87171 !important; }
@keyframes delice-timer-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
