/* Recipe Card Styles */
.rc-recipecard {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.rc-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.rc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rc-image-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
}
.rc-image-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}
.rc-image-btn:hover {
    background: rgba(0,0,0,0.9);
    transform: scale(1.1);
}

.rc-body {
    padding: 30px;
}

.rc-header {
    margin-bottom: 30px;
}
.rc-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.2;
}
.rc-byline {
    font-size: 16px;
    color: #666;
    margin: 0 0 20px 0;
}

/* NEW: Header Actions Row */
.rc-header-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.rc-course-badge {
    background: #F6C85F;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rc-action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}
.rc-btn-print {
    background: #6c757d;
    color: white;
}
.rc-btn-print:hover {
    background: #5a6268;
}
.rc-btn-pinterest {
    background: #bd081c;
    color: white;
}
.rc-btn-pinterest:hover {
    background: #a0070f;
}
.rc-btn-facebook {
    background: #1877f2;
    color: white;
}
.rc-btn-facebook:hover {
    background: #166fe5;
}

/* Meta Grid */
.rc-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
    margin: 30px 0;
}

.rc-meta-item {
    padding: 20px 15px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
}
.rc-meta-item:last-child {
    border-right: none;
}

.rc-meta-icon {
    margin: 0 auto 8px;
    width: 24px;
    height: 24px;
}
.rc-meta-value {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}
.rc-meta-label {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Sections */
.rc-ingredients, .rc-directions {
    margin: 30px 0;
}
.rc-ingredients h3, .rc-directions h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #F6C85F;
}
.rc-ingredients ul, .rc-directions ol {
    margin: 0;
    padding-left: 20px;
}
.rc-ingredients li, .rc-directions li {
    margin-bottom: 8px;
    color: #555;
}

.rc-footer {
    background: #f8f9fa;
    padding: 15px 30px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-top: 1px solid #e9ecef;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .rc-header-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .rc-action-buttons {
        justify-content: center;
    }
    .rc-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
