/**
 * My Recipes Page - Matching lumo_v2/my-recipes.html Design
 * Clean, modern, professional UI
 */

/* Recipes Page Layout */
.recipes-page {
    padding-top: 1.5rem;
    position: relative;
    overflow-x: hidden; /* Prevent horizontal scrollbar flash during loading */
}

/* Coffee Particles Background for Recipes Page */
.recipes-page .coffee-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    opacity: 0.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    overflow: hidden; /* Prevent scrollbar flash during recipe card animations */
}

/* ==========================================
   ACTION BUTTONS (HORIZONTAL LAYOUT)
   ========================================== */
.recipes-action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease;
}

.recipes-page .action-card {
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.recipes-page .action-card:nth-child(1) {
    animation-delay: 0s;
}

.recipes-page .action-card:nth-child(2) {
    animation-delay: 0.1s;
}

/* ==========================================
   PAGE HEADER
   ========================================== */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    gap: 2rem;
}

.page-header-content {
    flex: 1;
}

.page-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.page-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    font-family: 'Quicksand', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-mid) 50%, var(--accent-brown) 100%);
    color: #0a0a0a;
    box-shadow: 0 4px 24px rgba(242, 207, 123, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(242, 207, 123, 0.5);
}

.btn-icon {
    position: relative;
    z-index: 1;
}

.btn-text {
    position: relative;
    z-index: 1;
}


/* ==========================================
   RECIPE TABS
   ========================================== */
.recipe-tabs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(4px); /* strength of blur */
  -webkit-backdrop-filter: blur(4px); /* Safari support */
    position: relative;
    z-index: 100;
    overflow: hidden; /* Prevent scrollbar flash during loading */
}

.recipe-tabs {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-button {
    font-family: 'Quicksand', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Allow clicks to pass through */
}

.tab-button:hover {
    color: var(--text-primary);
}

.tab-button:hover::before {
    opacity: 0.08;
}

.tab-button.active {
    background: rgba(242, 207, 123, 0.12);
    color: var(--accent-gold);
    box-shadow: 0 4px 16px rgba(242, 207, 123, 0.2);
}

.tab-button.active::before {
    opacity: 0.1;
}

.tab-button svg {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.tab-button .tab-text {
    position: relative;
    z-index: 1;
}

.tab-button .tab-count {
    position: relative;
    z-index: 1;
    min-width: 24px;
    height: 24px;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-left: 0.25rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.tab-button.active .tab-count {
    background: rgba(242, 207, 123, 0.2);
    color: var(--accent-gold);
    box-shadow: 0 0 12px rgba(242, 207, 123, 0.2);
}

.tab-button:hover .tab-count {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}

.filter-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ==========================================
   VIEW TOGGLE BUTTONS
   ========================================== */
.view-toggle {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 107, 62, 0.15);
    border-radius: 10px;
    padding: 3px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.view-toggle::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.25), rgba(168, 107, 62, 0.2));
    border-radius: 8px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.2);
}

.view-toggle:has(.view-toggle-btn[data-view="compact"].active)::before {
    transform: translateX(calc(100% + 3px));
}

.view-toggle-btn {
    position: relative;
    z-index: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(232, 220, 196, 0.5);
}

.view-toggle-btn svg {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.view-toggle-btn:hover {
    color: rgba(232, 220, 196, 0.8);
    transform: translateY(-1px);
}

.view-toggle-btn.active {
    color: #f2cf7b;
}

.view-toggle-btn.active svg {
    filter: drop-shadow(0 0 6px rgba(242, 207, 123, 0.4));
}

.view-toggle-btn:active {
    transform: translateY(0) scale(0.95);
}

/* Custom Select Dropdown */
.custom-select {
    position: relative;
    min-width: 220px;
    font-family: 'Quicksand', sans-serif;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    background: rgba(10, 9, 8, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 107, 62, 0.3);
    border-radius: 12px;
    color: #eccf83;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.custom-select-trigger:hover {
    border-color: rgba(168, 107, 62, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.custom-select.open .custom-select-trigger {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(168, 107, 62, 0.15),
                0 8px 24px rgba(0, 0, 0, 0.5);
}

.custom-select-trigger .arrow {
    transition: transform 0.3s ease;
}

.custom-select.open .custom-select-trigger .arrow {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(10, 9, 8, 0.95);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(168, 107, 62, 0.3);
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    padding: 8px;
    overflow: hidden;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.custom-option {
    padding: 12px 16px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-option:hover {
    background: rgba(168, 107, 62, 0.1);
    color: var(--accent-gold);
}

.custom-option.selected {
    background: rgba(168, 107, 62, 0.2);
    color: #f2cf7b;
    font-weight: 700;
}

.custom-option.selected::before {
    content: '✓';
    font-size: 14px;
    font-weight: 900;
}

/* ==========================================
   RECIPES GRID
   ========================================== */
.recipes-content {
    margin-top: 2rem;
    padding-bottom: 4rem; /* Add breathing room below the last recipes */
}

.recipe-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   COMPACT VIEW MODE - Clean & Readable
   ========================================== */
.recipe-grid-full.compact-view {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* Hide cover image in compact mode */
.recipe-grid-full.compact-view .recipe-card-header {
    display: none;
}

/* Compact cards - smaller, cleaner */
.recipe-grid-full.compact-view .recipe-card {
    min-height: auto;
    padding: 1.25rem;
    cursor: pointer;
}

.recipe-grid-full.compact-view .recipe-card:hover {
    transform: translateY(-3px);
}

/* Brew badge - top left */
.recipe-grid-full.compact-view .brew-type-badge-top-left {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    margin: 0;
}

.recipe-grid-full.compact-view .brew-type-badge-top-left svg {
    width: 13px;
    height: 13px;
}

/* AI badge - hide in compact view */
.recipe-grid-full.compact-view .recipe-card-ai-badge {
    display: none;
}

/* Menu - top right */
.recipe-grid-full.compact-view .recipe-card-menu {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
}

/* Content - add top padding for badges */
.recipe-grid-full.compact-view .recipe-card-content {
    padding-top: 2.5rem;
    gap: 1rem;
}

/* Recipe name */
.recipe-grid-full.compact-view .recipe-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* Roaster and rating on same line */
.recipe-grid-full.compact-view .recipe-card-roaster-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.recipe-grid-full.compact-view .recipe-card-roaster {
    font-size: 0.85rem;
    color: rgba(244, 241, 234, 0.5);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recipe-grid-full.compact-view .recipe-card-rating-inline {
    flex-shrink: 0;
}

/* Parameters - clean 3-column grid */
.recipe-grid-full.compact-view .recipe-card-params {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.recipe-grid-full.compact-view .param-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
}

.recipe-grid-full.compact-view .param-icon {
    font-size: 1.1rem;
    color: rgba(242, 207, 123, 0.6);
}

.recipe-grid-full.compact-view .param-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f4f1ea;
}

.recipe-grid-full.compact-view .param-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(244, 241, 234, 0.4);
}

/* Dose/Yield section */
.recipe-grid-full.compact-view .recipe-card-dose-yield-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: rgba(242, 207, 123, 0.05);
    border: 1px solid rgba(242, 207, 123, 0.15);
    border-radius: 10px;
}

.recipe-grid-full.compact-view .dose-yield-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.recipe-grid-full.compact-view .dose-item,
.recipe-grid-full.compact-view .yield-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.recipe-grid-full.compact-view .dose-label,
.recipe-grid-full.compact-view .yield-label {
    font-size: 0.65rem;
    color: rgba(244, 241, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recipe-grid-full.compact-view .dose-value,
.recipe-grid-full.compact-view .yield-value {
    font-size: 1rem;
    font-weight: 700;
    color: #f2cf7b;
}

.recipe-grid-full.compact-view .ratio-badge {
    padding: 0.4rem 0.85rem;
    background: rgba(242, 207, 123, 0.1);
    border: 1px solid rgba(242, 207, 123, 0.25);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #f2cf7b;
}

/* Footer - hide tags in compact mode */
.recipe-grid-full.compact-view .recipe-card-footer {
    display: none;
}

/* Favorite button - keep visible */
.recipe-grid-full.compact-view .recipe-card-favorite-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

/* Add smooth transitions for all elements */
.recipe-card-header,
.recipe-card-content,
.recipe-card-params,
.recipe-card-footer,
.recipe-card-actions,
.recipe-card-menu,
.brew-type-badge-top-left,
.recipe-card-ai-badge {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Recipe cards use dashboard styles from styles.css */
/* No additional styling needed here as we match dashboard exactly */

/* ==========================================
   EMPTY STATE - GLASSMORPHISM DESIGN
   ========================================== */
.empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    min-height: 500px;
}

.empty-state-container {
    max-width: 640px;
    width: 100%;
    background: rgba(10, 9, 8, 0.7);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1.5px solid rgba(212, 165, 116, 0.3);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(212, 165, 116, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 0;
    overflow: hidden;
    position: relative;
    animation: fadeInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Animated Shimmer Border */
.empty-state-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        #f2cf7b 0%, 
        #d29658 25%, 
        #7d3f26 50%, 
        #d29658 75%, 
        #f2cf7b 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

.empty-state-content {
    padding: 48px 40px 32px;
    text-align: center;
}

/* Icon with Pulse Effect */
.empty-state-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, rgba(242, 207, 123, 0.15) 0%, rgba(125, 63, 38, 0.1) 100%);
    border: 2px solid rgba(242, 207, 123, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(242, 207, 123, 0.4),
                    0 0 30px rgba(242, 207, 123, 0.2);
    }
    50% { 
        box-shadow: 0 0 0 16px rgba(242, 207, 123, 0),
                    0 0 40px rgba(242, 207, 123, 0.3);
    }
}

/* Outer Ring Pulse */
.empty-state-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(242, 207, 123, 0.25);
    border-radius: 50%;
    animation: ringPulse 2.5s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: scale(1.15);
        opacity: 0;
    }
}

.empty-state-icon .material-symbols-rounded {
    font-size: 56px;
    color: #f2cf7b;
    filter: drop-shadow(0 0 12px rgba(242, 207, 123, 0.4));
    position: relative;
    z-index: 1;
}

/* Title with Gradient */
.empty-state-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, rgba(242, 207, 123, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
    line-height: 1.3;
}

.empty-state-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.05rem;
    color: rgba(232, 220, 196, 0.7);
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
    max-width: 460px;
    margin: 0 auto;
}

/* Action Buttons */
.empty-state-actions {
    padding: 0 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.empty-state-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(20, 18, 16, 0.6);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(212, 165, 116, 0.25);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    font-family: 'Quicksand', sans-serif;
}

.empty-state-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(242, 207, 123, 0.08) 0%, 
        rgba(125, 63, 38, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.empty-state-btn:hover::before {
    opacity: 1;
}

.empty-state-btn:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(242, 207, 123, 0.5);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5),
                0 0 24px rgba(242, 207, 123, 0.15);
}

.empty-state-btn:active {
    transform: translateY(-2px) scale(1);
}

/* Button Icon */
.empty-state-btn-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.empty-state-btn:hover .empty-state-btn-icon {
    transform: scale(1.08);
}

.empty-state-btn-primary .empty-state-btn-icon {
    background: linear-gradient(135deg, rgba(242, 207, 123, 0.2) 0%, rgba(210, 150, 88, 0.15) 100%);
    border: 1.5px solid rgba(242, 207, 123, 0.3);
    box-shadow: 0 0 20px rgba(242, 207, 123, 0.15);
}

.empty-state-btn-secondary {
    background: radial-gradient(at 0% 0%, rgba(168, 85, 247, 0.3) 0%, transparent 50%),
                radial-gradient(at 100% 100%, rgba(232, 121, 249, 0.3) 0%, transparent 50%),
                radial-gradient(at 0% 100%, rgba(147, 51, 234, 0.2) 0%, transparent 50%),
                rgba(5, 5, 5, 0.9);
}

.empty-state-btn-secondary .empty-state-btn-icon {
    background: linear-gradient(135deg, rgba(168, 107, 236, 0.2) 0%, rgba(125, 63, 236, 0.15) 100%);
    border: 1.5px solid rgba(168, 107, 236, 0.3);
    box-shadow: 0 0 20px rgba(168, 107, 236, 0.15);
}

.empty-state-btn-icon svg {
    width: 22px;
    height: 22px;
    stroke: #f2cf7b;
    filter: drop-shadow(0 0 6px rgba(242, 207, 123, 0.3));
}

.empty-state-btn-secondary .empty-state-btn-icon svg,
.empty-state-btn-secondary .empty-state-btn-icon .material-symbols-rounded {
    color: #a855f7;
    filter: drop-shadow(0 0 6px rgba(168, 107, 236, 0.3));
}

.empty-state-btn-icon .material-symbols-rounded {
    font-size: 26px;
    color: #f2cf7b;
}

/* Button Content */
.empty-state-btn-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.empty-state-btn-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.empty-state-btn-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.empty-state-btn:hover .empty-state-btn-desc {
    opacity: 1;
}

/* Button Arrow */
.empty-state-btn-arrow {
    width: 22px;
    height: 22px;
    stroke: rgba(242, 207, 123, 0.6);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.empty-state-btn:hover .empty-state-btn-arrow {
    stroke: #f2cf7b;
    transform: translateX(6px);
}

.empty-state-btn-secondary:hover .empty-state-btn-arrow {
    stroke: #a855f7;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Recipe card entrance animation after skeleton loading */
.recipe-grid-full .recipe-card {
    animation: recipeCardEnter 0.4s ease-out backwards;
}

@keyframes recipeCardEnter {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
    .recipe-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Large screens - keep 3 columns even on very large screens */
@media (min-width: 1600px) {
    .recipe-grid-full.compact-view {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .recipes-page {
        padding-top: 0.75rem;
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .recipes-content {
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .recipe-grid-full {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    /* ==========================================
       MOBILE ACTION BUTTONS - Compact Horizontal
       ========================================== */
    .recipes-action-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 1.25rem;
    }
    
    .recipes-page .action-card {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 12px 14px;
        border-radius: 14px;
    }
    
    .recipes-page .action-card-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 10px;
    }
    
    .recipes-page .action-card-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .recipes-page .action-card-content {
        flex: 1;
        gap: 0;
    }
    
    .recipes-page .action-card-title {
        font-size: 13px;
        margin-bottom: 0;
    }
    
    .recipes-page .action-card-desc,
    .recipes-page .action-card-footer {
        display: none;
    }
    
    .page-header {
        flex-direction: column;
        margin-bottom: 1.25rem;
    }
    
    /* ==========================================
       MOBILE FILTER TABS - Vertical Icon + Text
       ========================================== */
    .recipe-tabs-container {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .recipe-tabs {
        display: flex;
        width: 100%;
        padding: 6px;
        gap: 4px;
        border-radius: 14px;
        background: rgba(15, 12, 10, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-sizing: border-box;
    }
    
    .tab-button {
        flex: 1 1 0;
        min-width: 0;
        max-width: 25%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 12px 6px;
        gap: 6px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid transparent;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(242, 207, 123, 0.2);
        box-sizing: border-box;
    }
    
    .tab-button::before {
        display: none;
    }
    
    .tab-button svg {
        width: 20px;
        height: 20px;
        pointer-events: none;
        flex-shrink: 0;
    }
    
    .tab-button .tab-text {
        display: block;
        font-size: 10px;
        font-weight: 600;
        text-align: center;
        line-height: 1.2;
        pointer-events: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    .tab-button .tab-count {
        display: none;
    }
    
    .tab-button:hover {
        transform: none;
    }
    
    .tab-button.active {
        background: linear-gradient(135deg, rgba(242, 207, 123, 0.18) 0%, rgba(125, 63, 38, 0.12) 100%);
        border: 1px solid rgba(242, 207, 123, 0.35);
        color: var(--accent-gold);
        box-shadow: 0 2px 12px rgba(242, 207, 123, 0.2);
    }
    
    .tab-button:active {
        transform: scale(0.96);
        opacity: 0.9;
    }
    
    /* ==========================================
       MOBILE FILTER CONTROLS - Compact Row
       ========================================== */
    .filter-controls {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }
    
    .view-toggle {
        flex-shrink: 0;
    }
    
    .view-toggle-btn {
        padding: 10px 12px;
    }
    
    .view-toggle-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .custom-select {
        flex: 1;
        min-width: 0;
    }
    
    .custom-select-trigger {
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 10px;
    }
    
    .recipes-content {
        margin-top: 1rem;
        max-width: 100%;
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
        padding-bottom: 80px; /* Increased to 80px for a better scroll feel */
    }
    
    .recipe-grid-full {
        max-width: 100%;
        width: 100%;
    }
    
    /* Compact view adjustments for tablet - single column */
    .recipe-grid-full.compact-view {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* ==========================================
       MOBILE FLOATING ACTION BUTTON (FAB)
       Transform the "New Recipe" card on mobile
       ========================================== */
    .create-recipe-card {
        position: fixed !important;
        bottom: 30px !important;
        right: 30px !important;
        z-index: 9999 !important;
        width: 64px !important;
        height: 64px !important;
        margin: 0 !important;
        padding: 0 !important;
        pointer-events: auto !important;
        transform: none !important;
        opacity: 1 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* Remove from grid flow on mobile */
    #recipesGrid > .create-recipe-card {
        display: block; /* Ensure it stays in DOM but fixed */
    }

    .create-recipe-card-inner {
        position: absolute !important;
        bottom: 0 !important;
        right: 0 !important;
        width: 60px !important;
        height: 60px !important;
        min-height: 60px !important;
        border-radius: 50% !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: linear-gradient(135deg, #f2cf7b 0%, #d29658 50%, #a67c52 100%) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        box-shadow: 
            0 8px 24px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(168, 107, 62, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
        transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
        overflow: hidden !important;
        cursor: pointer !important;
        z-index: 10001;
    }

    /* Pulse effect for the FAB */
    .create-recipe-card-inner::after {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        background: var(--accent-gold);
        opacity: 0.2;
        z-index: -1;
        animation: fabPulse 2s infinite;
    }

    @keyframes fabPulse {
        0% { transform: scale(1); opacity: 0.2; }
        70% { transform: scale(1.3); opacity: 0; }
        100% { transform: scale(1.3); opacity: 0; }
    }

    /* Hide background and other elements initially */
    .create-recipe-bg,
    .create-recipe-header .create-recipe-title,
    .create-recipe-header .create-recipe-subtitle,
    .create-recipe-divider,
    .create-recipe-actions {
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        display: none;
    }

    .create-recipe-header {
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
    }

    .create-recipe-icon-container {
        margin: 0 !important;
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .create-recipe-icon {
        background: transparent !important;
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
    }

    .create-recipe-icon .material-symbols-rounded {
        color: #000000 !important; /* Pure black for maximum contrast on mobile */
        font-size: 34px !important; /* Slightly larger */
        font-weight: 700 !important; /* Extra bold */
        font-variation-settings: 'FILL' 1, 'wght' 700 !important; /* Force solid fill */
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    /* OPEN STATE - Mobile Menu */
    .create-recipe-card.mobile-fab-open .create-recipe-card-inner {
        width: 260px !important;
        height: auto !important;
        border-radius: 24px !important;
        padding: 24px !important;
        bottom: 15px !important;
        right: -5px !important;
        background: #0f0c0a !important; /* Solid dark background for contrast */
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(242, 207, 123, 0.4) !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9) !important;
        overflow: visible !important;
        cursor: default !important;
    }

    .create-recipe-card.mobile-fab-open .create-recipe-card-inner::after {
        display: none;
    }

    /* Staggered animation for options */
    .create-recipe-card.mobile-fab-open .create-recipe-btn {
        animation: fabOptionIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    }

    .create-recipe-card.mobile-fab-open .create-recipe-btn-manual { animation-delay: 0.1s; }
    .create-recipe-card.mobile-fab-open .create-recipe-divider { animation: fabOptionIn 0.3s ease both; animation-delay: 0.15s; }
    .create-recipe-card.mobile-fab-open .create-recipe-btn-ai { animation-delay: 0.2s; }

    @keyframes fabOptionIn {
        from { opacity: 0; transform: translateY(20px) scale(0.9); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .create-recipe-card.mobile-fab-open .create-recipe-header {
        display: block !important;
        opacity: 1;
        visibility: visible;
        text-align: center;
        margin-bottom: 24px !important;
    }

    .create-recipe-card.mobile-fab-open .create-recipe-header .create-recipe-title,
    .create-recipe-card.mobile-fab-open .create-recipe-header .create-recipe-subtitle {
        display: block !important;
        opacity: 1;
        visibility: visible;
    }

    .create-recipe-card.mobile-fab-open .create-recipe-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        opacity: 1;
        visibility: visible;
    }

    .create-recipe-card.mobile-fab-open .create-recipe-divider {
        display: flex !important;
        opacity: 1;
        visibility: visible;
    }

    .create-recipe-card.mobile-fab-open .create-recipe-icon-container {
        transform: translateY(-10px) scale(0.8);
        margin-bottom: 8px !important;
    }

    .create-recipe-card.mobile-fab-open .create-recipe-icon .material-symbols-rounded {
        color: #000000 !important; /* Keep it dark when open too */
        transform: rotate(135deg); /* Turn + into x */
    }

    /* Overlay */
    .mobile-fab-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        pointer-events: none;
    }

    .create-recipe-card.mobile-fab-open .mobile-fab-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Button adjustments in FAB mode */
    .create-recipe-card.mobile-fab-open .create-recipe-btn {
        width: 100% !important;
        padding: 16px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 16px !important;
    }

    .create-recipe-card.mobile-fab-open .create-recipe-btn:active {
        background: rgba(242, 207, 123, 0.15) !important;
        border-color: var(--accent-gold) !important;
        transform: scale(0.98);
    }
}

@media (max-width: 600px) {
    /* ==========================================
       SMALL MOBILE ACTION BUTTONS
       ========================================== */
    .recipes-action-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .recipes-page .action-card {
        padding: 10px 12px;
        gap: 8px;
    }
    
    .recipes-page .action-card-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        border-radius: 8px;
    }
    
    .recipes-page .action-card-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .recipes-page .action-card-title {
        font-size: 12px;
    }
    
    /* ==========================================
       MOBILE RECIPE GRID
       ========================================== */
    .recipe-grid-full {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }
    
    /* Compact view on mobile - smaller cards */
    .recipe-grid-full.compact-view {
        gap: 0.85rem;
    }
    
    .recipe-grid-full.compact-view .recipe-card {
        padding: 1rem;
    }
    
    .recipe-grid-full.compact-view .recipe-card-name {
        font-size: 1rem;
    }
    
    .recipe-grid-full.compact-view .recipe-card-roaster {
        font-size: 0.8rem;
    }
    
    .recipe-grid-full.compact-view .recipe-card-params {
        padding: 0.85rem;
        gap: 0.65rem;
    }
    
    .recipe-grid-full.compact-view .param-icon {
        display: none;
    }
    
    .recipe-grid-full.compact-view .param-value {
        font-size: 1rem; /* Reduced by 15% for better fit on mobile */
    }
    
    .recipe-grid-full.compact-view .param-label {
        font-size: 0.8rem;
    }
    
    .recipe-grid-full.compact-view .dose-value,
    .recipe-grid-full.compact-view .yield-value {
        font-size: 0.9rem;
    }
    
    .recipe-grid-full.compact-view .ratio-badge {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }
    
    .recipe-grid-full.compact-view .brew-type-badge-top-left {
        top: 0.85rem;
        left: 0.85rem;
        font-size: 0.65rem;
        padding: 0.3rem 0.65rem;
    }
    
    .recipe-grid-full.compact-view .brew-type-badge-top-left svg {
        width: 12px;
        height: 12px;
    }
    
    .recipe-grid-full.compact-view .recipe-card-ai-badge {
        display: none;
    }
    
    .recipe-grid-full.compact-view .recipe-card-menu {
        top: 0.75rem;
        right: 0.75rem;
    }
    
    .recipe-grid-full.compact-view .menu-button {
        width: 30px;
        height: 30px;
    }
    
    .recipe-grid-full.compact-view .recipe-card-favorite-btn {
        bottom: 0.85rem;
        right: 0.85rem;
    }
    
    /* ==========================================
       MOBILE FILTER TABS - Even More Compact
       ========================================== */
    .recipe-tabs {
        padding: 4px;
        gap: 3px;
    }
    
    .tab-button {
        padding: 10px 4px;
        gap: 4px;
    }
    
    .tab-button svg {
        width: 18px;
        height: 18px;
    }
    
    .tab-button .tab-text {
        font-size: 9px;
    }
    
    /* ==========================================
       MOBILE VIEW TOGGLE & SORT
       ========================================== */
    .view-toggle-btn {
        padding: 8px 10px;
    }
    
    .view-toggle-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .custom-select-trigger {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .custom-select-trigger .arrow {
        width: 14px;
        height: 14px;
    }
    
    /* ==========================================
       EMPTY STATE - Mobile Optimized
       ========================================== */
    .empty-state {
        padding: 1.5rem 1rem;
        min-height: 350px;
    }
    
    .empty-state-container {
        border-radius: 20px;
    }
    
    .empty-state-content {
        padding: 28px 20px 20px;
    }
    
    .empty-state-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .empty-state-icon .material-symbols-rounded {
        font-size: 36px;
    }
    
    .empty-state-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .empty-state-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .empty-state-actions {
        padding: 0 20px 24px;
        gap: 10px;
    }
    
    .empty-state-btn {
        padding: 14px 16px;
        gap: 12px;
        border-radius: 14px;
    }
    
    .empty-state-btn-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .empty-state-btn-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .empty-state-btn-icon .material-symbols-rounded {
        font-size: 20px;
    }
    
    .empty-state-btn-title {
        font-size: 0.95rem;
    }
    
    .empty-state-btn-desc {
        font-size: 0.75rem;
    }
    
    .empty-state-btn-arrow {
        width: 18px;
        height: 18px;
    }
}

/* ==========================================
   SKELETON LOADING CARDS
   Premium shimmer animation for loading state
   ========================================== */

/* Shimmer Animation */
@keyframes skeletonShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes skeletonPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes skeletonFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Skeleton Card Container */
.skeleton-card {
    background: var(--bg-card);
    border: 1px solid rgba(242, 207, 123, 0.08);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    animation: skeletonFadeIn 0.4s ease-out backwards;
}

.skeleton-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(242, 207, 123, 0.03) 50%,
        transparent 100%
    );
    pointer-events: none;
}

/* Skeleton Content Wrapper */
.skeleton-content {
    padding: 20px 24px 24px;
}

/* Staggered animation delays for cards */
.skeleton-card:nth-child(1) { animation-delay: 0.05s; }
.skeleton-card:nth-child(2) { animation-delay: 0.1s; }
.skeleton-card:nth-child(3) { animation-delay: 0.15s; }
.skeleton-card:nth-child(4) { animation-delay: 0.2s; }
.skeleton-card:nth-child(5) { animation-delay: 0.25s; }
.skeleton-card:nth-child(6) { animation-delay: 0.3s; }

/* Skeleton Shimmer Base */
.skeleton-shimmer {
    background: linear-gradient(
        90deg,
        rgba(30, 26, 22, 0.8) 0%,
        rgba(45, 38, 32, 0.9) 25%,
        rgba(60, 50, 40, 1) 50%,
        rgba(45, 38, 32, 0.9) 75%,
        rgba(30, 26, 22, 0.8) 100%
    );
    background-size: 200% 100%;
    animation: skeletonShimmer 1.8s ease-in-out infinite;
    border-radius: 8px;
}

/* Skeleton Header (Image Area) */
.skeleton-header {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.skeleton-header::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(242, 207, 123, 0.1);
    border-radius: 50%;
    animation: skeletonPulse 1.5s ease-in-out infinite;
}

/* Skeleton Badge (Top Left) */
.skeleton-badge {
    position: absolute;
    top: 36px;
    left: 36px;
    width: 90px;
    height: 28px;
    border-radius: 20px;
    z-index: 2;
}

/* Skeleton Title Section */
.skeleton-title-section {
    margin-bottom: 20px;
}

.skeleton-title {
    height: 22px;
    width: 70%;
    margin-bottom: 10px;
    border-radius: 6px;
}

.skeleton-roaster {
    height: 14px;
    width: 45%;
    border-radius: 4px;
}

/* Skeleton Brewing Params */
.skeleton-params {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(15, 12, 10, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(242, 207, 123, 0.05);
}

.skeleton-param {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.skeleton-param-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.skeleton-param-label {
    width: 40px;
    height: 10px;
    border-radius: 3px;
}

.skeleton-param-value {
    width: 50px;
    height: 16px;
    border-radius: 4px;
}

/* Skeleton Dose/Yield Section */
.skeleton-dose-yield {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: rgba(15, 12, 10, 0.4);
    border-radius: 10px;
}

.skeleton-dose-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.skeleton-dose-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.skeleton-dose-label {
    width: 24px;
    height: 10px;
    border-radius: 3px;
}

.skeleton-dose-value {
    width: 40px;
    height: 18px;
    border-radius: 4px;
}

.skeleton-arrow {
    width: 20px;
    height: 8px;
    border-radius: 4px;
    opacity: 0.5;
}

.skeleton-ratio {
    width: 70px;
    height: 32px;
    border-radius: 8px;
}

/* Skeleton Tags */
.skeleton-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skeleton-tag {
    height: 26px;
    border-radius: 13px;
}

.skeleton-tag:nth-child(1) { width: 70px; }
.skeleton-tag:nth-child(2) { width: 55px; }
.skeleton-tag:nth-child(3) { width: 85px; }
.skeleton-tag:nth-child(4) { width: 60px; }

/* Compact View Skeleton */
.compact-view .skeleton-card {
    padding: 20px;
}

.compact-view .skeleton-header {
    display: none;
}

.compact-view .skeleton-badge {
    position: static;
    margin-bottom: 12px;
}

.compact-view .skeleton-params {
    padding: 12px;
}

.compact-view .skeleton-param-icon {
    width: 28px;
    height: 28px;
}

/* Responsive Skeleton Styles */
@media (max-width: 768px) {
    .skeleton-card {
        padding: 0;
        border-radius: 20px;
    }
    
    .skeleton-header {
        height: 140px;
        margin-bottom: 0;
        border-radius: 20px 20px 0 0;
    }
    
    .skeleton-badge {
        top: 12px;
        left: 12px;
        width: 80px;
        height: 24px;
    }
    
    .skeleton-content {
        padding: 16px;
    }
    
    .skeleton-title {
        height: 18px;
    }
    
    .skeleton-roaster {
        height: 12px;
    }
    
    .skeleton-params {
        padding: 12px;
        gap: 8px;
    }
    
    .skeleton-param-icon {
        width: 28px;
        height: 28px;
    }
    
    .skeleton-param-label {
        width: 32px;
        height: 8px;
    }
    
    .skeleton-param-value {
        width: 40px;
        height: 14px;
    }
    
    .skeleton-dose-yield {
        padding: 10px 12px;
    }
    
    .skeleton-tag {
        height: 22px;
    }
    
    .skeleton-tag:nth-child(1) { width: 60px; }
    .skeleton-tag:nth-child(2) { width: 45px; }
    .skeleton-tag:nth-child(3) { width: 70px; }
}
