/**
 * Recipe Manager - Custom Styles
 * Modern, clean design with Bootstrap 5
 */

/* ============================================
   CSS VARIABLES & THEME
   ============================================ */
:root {
    /* Brand Colors */
    --brand-primary: #e85d04;
    --brand-secondary: #faa307;
    --brand-accent: #dc2f02;
    
    /* Light Theme */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-muted: #adb5bd;
    --border-color: #dee2e6;
    --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.12);
    
    /* Font Stack */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 400ms ease;
}

/* Dark Theme */
[data-bs-theme="dark"] {
    --bg-primary: #1a1a2e;
    --bg-secondary: #16213e;
    --bg-tertiary: #0f3460;
    --text-primary: #edf2f4;
    --text-secondary: #adb5bd;
    --text-muted: #6c757d;
    --border-color: #2d3748;
    --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    --card-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* ============================================
   BASE STYLES
   ============================================ */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--brand-primary);
    color: white;
    padding: 8px 16px;
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background-color: var(--bg-primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary) !important;
}

.brand-icon {
    font-size: 1.75rem;
    color: var(--brand-primary);
}

.brand-accent {
    color: var(--brand-primary);
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-primary) !important;
    background-color: rgba(232, 93, 4, 0.1);
}

/* Search Bar */
.search-container {
    width: 100%;
    max-width: 400px;
}

.search-group {
    background: var(--bg-secondary);
    border-radius: 50px;
    overflow: hidden;
}

.search-group .input-group-text {
    border: none;
    background: transparent;
    color: var(--text-muted);
}

.search-group .form-control {
    border: none;
    background: transparent;
    box-shadow: none !important;
}

.search-group .btn {
    border: none;
    border-radius: 0 50px 50px 0;
}

/* Dark Mode Toggle */
.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: none;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.btn-icon:hover {
    background: var(--brand-primary);
    color: white;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding: 2rem 0;
}

.hero-section h1 {
    font-family: var(--font-display);
    color: var(--text-primary);
}

.hero-section .lead {
    font-size: 1.1rem;
}

/* Tag Pills in Hero */
#tagPills .badge {
    font-weight: 500;
    padding: 0.5em 1em;
    cursor: pointer;
    transition: all var(--transition-fast);
    background-color: var(--bg-tertiary) !important;
    color: var(--text-secondary) !important;
    border: 1px solid transparent;
}

#tagPills .badge:hover,
#tagPills .badge.active {
    background-color: var(--brand-primary) !important;
    color: white !important;
}

/* ============================================
   RECIPE CARDS
   ============================================ */
.recipe-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--bg-primary);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-normal);
    height: 100%;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.recipe-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.recipe-card .placeholder-img {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 3rem;
}

.recipe-card .card-body {
    padding: 1.25rem;
}

.recipe-card .card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.recipe-card .card-title a {
    color: inherit;
    text-decoration: none;
}

.recipe-card .card-title a:hover {
    color: var(--brand-primary);
}

.recipe-card .author {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Recipe Meta */
.recipe-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Difficulty Badges */
.badge-easy {
    background-color: #198754 !important;
}

.badge-medium {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.badge-hard {
    background-color: #dc3545 !important;
}

/* Tag Pills */
.tag-pill {
    font-size: 0.75rem;
    padding: 0.25em 0.6em;
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
    border-radius: 50px;
}

/* Star Rating */
.stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.stars .bi-star {
    color: var(--text-muted);
}

/* Card Actions */
.card-actions {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.recipe-card:hover .card-actions {
    opacity: 1;
}

.card-actions .btn {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--text-secondary);
    backdrop-filter: blur(4px);
}

.card-actions .btn:hover {
    background: var(--brand-primary);
    color: white;
}

/* Compact Card Density */
.compact-cards .recipe-card .card-img-top,
.compact-cards .recipe-card .placeholder-img {
    height: 150px;
}

.compact-cards .recipe-card .card-body {
    padding: 1rem;
}

.compact-cards .recipe-card .card-title {
    font-size: 1.1rem;
}

/* ============================================
   ACTIVE FILTERS
   ============================================ */
#activeFilters {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    background-color: var(--brand-primary);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
}

.filter-chip .btn-close {
    width: 0.5rem;
    height: 0.5rem;
    filter: invert(1);
    opacity: 0.8;
}

.filter-chip .btn-close:hover {
    opacity: 1;
}

/* ============================================
   WIZARD FORM
   ============================================ */
.wizard-steps {
    padding: 0 1rem;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-tertiary);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.wizard-step.active .step-circle,
.wizard-step.completed .step-circle {
    background-color: var(--brand-primary);
    color: white;
}

.wizard-step.completed .step-circle::after {
    content: '\2713';
    font-size: 1.25rem;
}

.wizard-step.completed .step-circle {
    font-size: 0;
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-align: center;
}

.wizard-step.active .step-label {
    color: var(--brand-primary);
    font-weight: 600;
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 3px;
    background-color: var(--bg-tertiary);
    z-index: 1;
}

/* Ingredient/Instruction Rows */
.ingredient-row,
.instruction-row {
    display: flex;
    /* gap: 0.5rem; */
    margin-bottom: 0.75rem;
    align-items: flex-start;
}

.ingredient-row .form-control,
.instruction-row .form-control {
    flex: 1;
}

.instruction-row .step-number {
    width: 32px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-tertiary);
    border-radius: 0.375rem;
    font-weight: 600;
    color: var(--text-secondary);
    flex-shrink: 0;
}

/* ============================================
   IMAGE UPLOAD
   ============================================ */
.dropzone {
    border: 2px dashed var(--border-color);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    transition: all var(--transition-fast);
    background-color: var(--bg-secondary);
}

.dropzone.dragover {
    border-color: var(--brand-primary);
    background-color: rgba(232, 93, 4, 0.05);
}

.image-preview {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--bg-tertiary);
    aspect-ratio: 1;
}

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

.image-preview .drag-handle {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    cursor: grab;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.image-preview .remove-image {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.image-preview:hover .remove-image {
    opacity: 1;
}

.image-preview .keyboard-controls {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.25rem;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.image-preview:hover .keyboard-controls,
.image-preview:focus-within .keyboard-controls {
    opacity: 1;
}

.keyboard-controls button {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 0.25rem;
}

/* Sortable ghost */
.sortable-ghost {
    opacity: 0.4;
}

.sortable-chosen {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ============================================
   RECIPE DETAIL VIEW
   ============================================ */
.recipe-detail-header {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.recipe-detail-header img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.recipe-detail-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
}

.meta-sidebar {
    position: sticky;
    top: 100px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.meta-item:last-child {
    border-bottom: none;
}

.meta-item i {
    font-size: 1.25rem;
    color: var(--brand-primary);
    width: 28px;
    text-align: center;
}

.meta-item .label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.meta-item .value {
    font-weight: 600;
    color: var(--text-primary);
}

/* Servings Scaler */
.servings-scaler {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.servings-scaler button {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.servings-scaler .servings-value {
    font-weight: 700;
    font-size: 1.25rem;
    min-width: 30px;
    text-align: center;
}

/* Ingredients Checklist */
.ingredient-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.ingredient-check:last-child {
    border-bottom: none;
}

.ingredient-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.ingredient-check.checked .ingredient-text {
    text-decoration: line-through;
    color: var(--text-muted);
}

.ingredient-amount {
    font-weight: 600;
    color: var(--brand-primary);
}

/* Instructions */
.instruction-step {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.instruction-step:last-child {
    border-bottom: none;
}

.instruction-number {
    width: 36px;
    height: 36px;
    background: var(--brand-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.instruction-step.done .instruction-number {
    background: #198754;
}

.instruction-step.done .instruction-number::after {
    content: '\2713';
}

.instruction-step.done .instruction-number span {
    display: none;
}

.instruction-text {
    flex: 1;
    cursor: pointer;
}

.instruction-step.done .instruction-text {
    text-decoration: line-through;
    color: var(--text-muted);
}

/* Image Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.gallery-item:hover {
    transform: scale(1.05);
}

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

/* ============================================
   REVIEWS
   ============================================ */
.review-card {
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-primary);
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-comment {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Review Form */
.star-rating {
    display: flex;
    gap: 0.25rem;
    font-size: 1.75rem;
}

.star-rating .star {
    cursor: pointer;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.star-rating .star.active,
.star-rating .star:hover {
    color: #ffc107;
}

/* ============================================
   TOASTS
   ============================================ */
.toast {
    border: none;
    border-radius: 0.75rem;
    box-shadow: var(--card-shadow-hover);
}

.toast-success {
    background-color: #d1e7dd;
    color: #0f5132;
}

.toast-error {
    background-color: #f8d7da;
    color: #842029;
}

.toast-info {
    background-color: #cff4fc;
    color: #055160;
}

/* ============================================
   OFFCANVAS
   ============================================ */
.offcanvas {
    max-width: 350px;
}

.offcanvas-header {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

/* ============================================
   EMPTY STATE
   ============================================ */
#emptyState {
    padding: 4rem 2rem;
}

#emptyState i {
    opacity: 0.5;
}

/* ============================================
   UTILITIES
   ============================================ */
.cursor-pointer {
    cursor: pointer;
}

/* Loading Spinner */
.spinner-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .recipe-detail-title {
        font-size: 1.75rem;
    }
    
    .recipe-detail-header img {
        height: 250px;
    }
    
    .meta-sidebar {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .wizard-steps {
        padding: 0;
    }
    
    .step-label {
        display: none;
    }
    
    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
    
    .recipe-card .card-img-top,
    .recipe-card .placeholder-img {
        height: 180px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    .card-actions,
    .btn,
    #activeFilters,
    footer {
        display: none !important;
    }
    
    .recipe-card {
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
:focus-visible {
    outline: 3px solid var(--brand-primary);
    outline-offset: 2px;
}

.form-control:focus,
.form-select:focus,
.btn:focus {
    box-shadow: 0 0 0 0.25rem rgba(232, 93, 4, 0.25);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   RECIPE DETAIL VIEW
   ============================================ */

.recipe-detail-meta {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
}

.recipe-detail-meta > div {
    min-width: 80px;
}

/* Recipe Carousel */
#recipeCarousel .carousel-inner {
    border-radius: 0.5rem;
    overflow: hidden;
}

#recipeCarousel .carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    cursor: pointer;
    transition: transform var(--transition-normal);
}

#recipeCarousel .carousel-item img:hover {
    transform: scale(1.02);
}

#recipeCarousel .carousel-control-prev,
#recipeCarousel .carousel-control-next {
    width: 10%;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

#recipeCarousel:hover .carousel-control-prev,
#recipeCarousel:hover .carousel-control-next {
    opacity: 1;
}

#recipeCarousel .carousel-indicators {
    margin-bottom: 0.5rem;
}

#recipeCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
}

#recipeCarousel .carousel-indicators button.active {
    background-color: var(--brand-primary);
}

/* Ingredient Checklist */
.ingredient-checklist li {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.ingredient-checklist li:hover {
    background-color: var(--bg-secondary);
}

.ingredient-checklist li:last-child {
    border-bottom: none;
}

.ingredient-checklist li.checked {
    opacity: 0.5;
    text-decoration: line-through;
}

.ingredient-checklist .ingredient-check {
    width: 20px;
    height: 20px;
    accent-color: var(--brand-primary);
}

.ingredient-checklist .ingredient-amount {
    color: var(--brand-primary);
    font-weight: 600;
    min-width: 100px;
}

/* Instruction Steps */
.instruction-steps {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.instruction-steps li {
    position: relative;
    padding: 1rem 1rem 1rem 4rem;
    margin-bottom: 1rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.instruction-steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: var(--brand-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.instruction-steps li:hover {
    background: var(--bg-tertiary);
}

.instruction-steps li.step-done {
    opacity: 0.5;
}

.instruction-steps li.step-done::before {
    background: var(--text-muted);
}

.instruction-steps li.step-done::after {
    content: '✓';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    font-size: 1.5rem;
}

/* Star Rating Input */
.star-rating {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.star-rating .star {
    cursor: pointer;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.star-rating .star:hover {
    transform: scale(1.2);
}

.star-rating .star.active,
.star-rating .star.hovered {
    color: #ffc107;
}

.star-rating .star.active::before,
.star-rating .star.hovered::before {
    content: '\F586';  /* bi-star-fill */
}

/* Reviews List */
.review-item {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-author {
    font-weight: 600;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-stars {
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.review-comment {
    color: var(--text-secondary);
}

/* Lightbox Modal */
#lightboxModal .modal-content {
    background: rgba(0, 0, 0, 0.95);
}

#lightboxModal .btn-close {
    z-index: 1060;
    padding: 1rem;
    filter: invert(1);
}

#lightboxCarousel {
    height: 100vh;
}

#lightboxCarousel .carousel-inner {
    height: 100%;
}

#lightboxCarousel .carousel-item {
    height: 100%;
    text-align: center;
}

#lightboxCarousel .carousel-item.active,
#lightboxCarousel .carousel-item-next,
#lightboxCarousel .carousel-item-prev {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

#lightboxCarousel .carousel-item img {
    max-width: 95%;
    max-height: 90vh;
    object-fit: contain;
    margin: auto;
}

#lightboxCarousel .carousel-control-prev,
#lightboxCarousel .carousel-control-next {
    width: 10%;
    z-index: 1050;
}

#lightboxCarousel .carousel-indicators {
    bottom: 20px;
    z-index: 1050;
}

#lightboxCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* No images placeholder */
.no-images-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    color: var(--text-muted);
}

.no-images-placeholder i {
    font-size: 3rem;
    margin-right: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #recipeCarousel .carousel-item img {
        height: 250px;
    }
    
    .recipe-detail-meta {
        gap: 1rem;
    }
    
    .recipe-detail-meta > div {
        min-width: 60px;
    }
    
    .instruction-steps li {
        padding-left: 3.5rem;
    }
    
    .instruction-steps li::before {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}
