/* Cocktail-specific detail page styles */
/* Uses shared styles from detail-pages.css */

/* Cocktail-specific: pitcher button */
.pitcher-button {
    margin-bottom: 1.5rem;
}

.pitcher-btn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.75rem var(--spacing-lg);
    border-radius: 8px;
    font-size: var(--font-size-base);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
    font-family: inherit;
}

.pitcher-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.4);
}

/* Cocktail-specific: ingredient amount min-width */
.cocktail-ingredients .ingredient-amount {
    min-width: 4rem;
}

/* Cocktail-specific: tips icon */
.cocktail-tips li::before {
    content: "🍹";
    margin-right: 0.5rem;
}

