/* Extracted page styles from recipe.php (perf: cacheable external CSS) */
.tweak-upload-slot {
    aspect-ratio: 1;
    background: #F3F4F6;
    border: 2px dashed #D1D5DB;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}
.tweak-upload-slot:hover {
    border-color: #F43F5E;
    background: #FFF1F2;
}
.tweak-upload-slot .slot-content {
    text-align: center;
    color: #6B7280;
}
.tweak-upload-slot .slot-content i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}
.tweak-upload-slot .slot-content span {
    font-size: 0.7rem;
    font-weight: 600;
}
.remove-tweak-img {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #EF4444;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 10;
}

/* Tweak Gallery Lightbox */
.tweak-gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.tweak-gallery-content {
    position: relative;
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}
.tweak-gallery-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    opacity: 0; /* Managed by JS, but good to have default */
}
.tweak-gallery-close {
    position: absolute;
    top: -20px;
    right: -20px;
    background: white;
    color: #1F2937;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10002;
    font-size: 1.25rem;
}
.tweak-gallery-close:hover {
    background: #F43F5E;
    color: white;
    transform: rotate(90deg) scale(1.1);
}
.tweak-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.25rem;
    z-index: 10001;
}
.tweak-gallery-nav:hover {
    background: white;
    color: #1F2937;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}
.tweak-gallery-nav:active {
    transform: translateY(-50%) scale(0.95);
}
.tweak-gallery-prev { left: -80px; }
.tweak-gallery-next { right: -80px; }

@media (max-width: 1024px) {
    .tweak-gallery-prev { left: 10px; }
    .tweak-gallery-next { right: 10px; }
    .tweak-gallery-close { top: 10px; right: 10px; }
}

@media (max-width: 640px) {
    .tweak-gallery-nav {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .tweak-gallery-image {
        border-radius: 12px;
    }
}

/* Generic Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
}
.modal-content {
    background-color: white;
    border-radius: 32px;
    width: 100%;
    max-width: 550px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.15);
    animation: modalSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(0,0,0,0.05);
}
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.close-button {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #F3F4F6;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #6B7280;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    z-index: 10;
}
.close-button:hover {
    background: #F43F5E;
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.modal-content h2 {
    font-family: serif;
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

/* Modal Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    padding-left: 0.25rem;
}
/* Interactive star widget (review modal) */
.star-rating .star-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-size: inherit;
    color: inherit;
    line-height: 1;
    cursor: pointer;
}
.star-rating .star-btn:focus-visible {
    outline: 2px solid #F43F5E;
    outline-offset: 3px;
    border-radius: 4px;
}
.rating-error {
    color: #E11D48;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0 0.5rem 0;
}
.rating-error[hidden] {
    display: none;
}
.form-group textarea,
.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    background: #F9FAFB;
    border: 2px solid #F3F4F6;
    border-radius: 18px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #1F2937;
    transition: all 0.2s ease;
    outline: none;
}
.form-group textarea:focus, 
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    background: white;
    border-color: #F43F5E;
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.1);
}

/* Custom File Upload */
.custom-file-upload {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 2px dashed #D1D5DB;
    padding: 1.5rem;
    border-radius: 20px;
    width: 100%;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6B7280;
    font-weight: 600;
}
.custom-file-upload:hover {
    border-color: #F43F5E;
    background: #FFF1F2;
    color: #F43F5E;
}
.custom-file-upload i {
    font-size: 1.5rem;
}
input[type="file"] {
    display: none;
}

/* Modal Buttons */
.modal-content .btn-primary {
    width: 100%;
    padding: 1.15rem;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 99px;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 15px -3px rgba(244, 63, 94, 0.3);
}

/* 3-Zone Photo Upload Styles */
.tweak-upload-zones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}
.upload-zone {
    aspect-ratio: 1;
    background: #F9FAFB;
    border: 2px dashed #D1D5DB;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.upload-zone:hover {
    border-color: #F43F5E;
    background: #FFF1F2;
}
.upload-zone label {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #9CA3AF;
    font-size: 1.5rem;
    margin: 0;
    position: relative;
    z-index: 5;
}
.upload-zone label i {
    transition: all 0.3s ease;
}
.upload-zone:hover label i {
    transform: scale(1.2);
    color: #F43F5E;
}
.upload-zone .preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
    border-radius: 18px;
    z-index: 1;
}
.upload-zone.has-image {
    border-style: solid;
    border-color: #F3F4F6;
}
.upload-zone.has-image .preview-overlay {
    display: block;
}
.upload-zone.has-image label {
    background: rgba(0,0,0,0.4);
    color: white;
    opacity: 0;
    z-index: 10;
    transition: opacity 0.3s ease;
}
.upload-zone.has-image:hover label {
    opacity: 1;
}
.upload-zone.has-image label::after {
    content: '\f2ed'; /* Trash icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}
.upload-zone.has-image label i {
    display: none;
}

/* Share Modal Styles */
.share-social-grid {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-start;
    margin: 1.5rem 0 2rem 0;
    flex-wrap: wrap;
}
.social-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid #F3F4F6;
    background: white;
}
.social-circle i {
    transition: transform 0.3s ease;
}
.social-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.social-circle.fb { color: #1877F2; border-color: #DBEAFE; }
.social-circle.tw { color: #1DA1F2; border-color: #E8F5FE; }
.social-circle.pn { color: #E60023; border-color: #FEE2E2; }
.social-circle.ig { color: #E1306C; border-color: #FCE7F3; }
.social-circle.wa { color: #25D366; border-color: #DCFCE7; }

.share-copy-section {
    margin-top: 1.5rem;
}
.share-copy-label {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    display: block;
}
.share-copy-group {
    display: flex;
    align-items: center;
    background: #F9FAFB;
    border: 1.5px solid #E5E7EB;
    border-radius: 16px;
    padding: 0.5rem 0.5rem 0.5rem 1.25rem;
    gap: 0.75rem;
    transition: all 0.2s ease;
}
.share-copy-group:focus-within {
    border-color: #7C3AED;
    background: white;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}
.share-copy-group i {
    color: #6B7280;
    font-size: 1.1rem;
}
.share-copy-group input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: #374151;
    background: transparent;
    font-family: inherit;
    font-weight: 500;
}
.btn-copy-link {
    background: #7C3AED;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-copy-link:hover {
    background: #6D28D9;
    transform: scale(1.02);
}
.btn-copy-link:active {
    transform: scale(0.98);
}

/* Redesigned Report Modal Styles */
.report-reasons-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}
.report-reason-card {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem;
    border: 1.5px solid #F3F4F6;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #F9FAFB;
    gap: 1rem;
}
.report-reason-card:hover {
    border-color: #E5E7EB;
    background: #F3F4F6;
}
.report-reason-card.selected {
    border-color: #F43F5E;
    background: white;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.08);
}
.report-radio-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #D1D5DB;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: all 0.2s ease;
    background: white;
}
.report-reason-card.selected .report-radio-custom {
    border-color: #F43F5E;
}
.report-radio-inner {
    width: 12px;
    height: 12px;
    background: #F43F5E;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.report-reason-card.selected .report-radio-inner {
    transform: scale(1);
}
.report-reason-info {
    flex: 1;
}
.report-reason-title {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.25rem;
}
.report-reason-desc {
    display: block;
    font-size: 0.85rem;
    color: #6B7280;
    font-weight: 500;
}
.report-other-input-container {
    margin-top: 0.75rem;
    display: none;
}
.report-other-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease;
}
.report-other-input:focus {
    border-color: #F43F5E;
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.1);
}
.btn-submit-report {
    width: 100%;
    background: #F43F5E;
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(244, 63, 94, 0.25);
}
.btn-submit-report:hover {
    background: #E11D48;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.35);
}
.btn-submit-report:active {
    transform: translateY(0);
}

/* Board Modal Refactored Styles */
.boards-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 0.5rem;
    margin-bottom: 1.5rem;
}
.board-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #F9FAFB;
    border: 2px solid #F3F4F6;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.board-item:hover {
    border-color: #F43F5E;
    background: white;
}
.board-item.saved {
    border-color: #F43F5E;
    background: #FFF1F2;
}
.board-item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: #374151;
}
.board-item-info i {
    color: #9CA3AF;
    font-size: 1.1rem;
}
.board-item.saved .board-item-info i {
    color: #F43F5E;
}
.board-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #D1D5DB;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: white;
}
.board-item.saved .board-checkbox {
    background: #F43F5E;
    border-color: #F43F5E;
}
.board-checkbox i {
    color: white;
    font-size: 0.8rem;
    display: none;
}
.board-item.saved .board-checkbox i {
    display: block;
}

/* New Board Section */
.new-board-section {
    padding-top: 1.5rem;
    border-top: 1px solid #F3F4F6;
    margin-top: 1rem;
}
.new-board-input-group {
    display: flex;
    gap: 0.75rem;
}
.new-board-input {
    flex: 1;
    background: #F9FAFB !important;
    border: 2px solid #F3F4F6 !important;
    border-radius: 12px !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
}
.new-board-input:focus {
    border-color: #F43F5E !important;
    background: white !important;
}
.btn-create-board {
    background: #111827;
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-create-board:hover {
    background: #1F2937;
    transform: translateY(-2px);
}
.boards-group-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #9CA3AF;
    letter-spacing: 0.05em;
    margin: 1rem 0 0.5rem 0.5rem;
}
.board-item.owner-board:hover {
    border-color: #F3F4F6;
    background: #F9FAFB;
}

/* Success Modal Styles */
.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #DCFCE7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #16A34A;
    font-size: 2.5rem;
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes successPop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Custom Question Form (Inline) */
#question-form {
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}
#question-form h3 {
    font-family: serif;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* Premium Select */
.premium-select {
    width: 100%;
    background: #F9FAFB;
    border: 2px solid #F3F4F6;
    border-radius: 18px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #1F2937;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.25rem;
    transition: all 0.2s ease;
    outline: none;
}
.premium-select:focus {
    background-color: white;
    border-color: #F43F5E;
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.1);
}

/* Ingredients & Directions Styles */
.ingredients-list, .directions-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ingredients-list li {
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s;
}
.ingredients-list li:hover {
    background: #F9FAFB;
}
.custom-checkbox {
    display: flex;
    align-items: center; /* Changed from flex-start to center for single line ingredients */
    gap: 0.85rem;
    cursor: pointer;
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
    position: relative;
    user-select: none;
    transition: all 0.2s;
    padding-left: 0px!important;
}
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    height: 22px;
    width: 22px;
    background-color: white;
    border: 2px solid #E5E7EB;
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.2s;
    top:11px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.custom-checkbox:hover .checkmark {
    border-color: #F43F5E;
}
.custom-checkbox input:checked ~ .checkmark {
    background-color: #10B981; /* Green for completion */
    border-color: #10B981;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox input:checked ~ .ingredient-text,
.custom-checkbox input:checked ~ .step-content {
    text-decoration: line-through;
    color: #9CA3AF;
    opacity: 0.8;
}

.step-item {
    margin-bottom: 1.25rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #F3F4F6;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.step-item:hover {
    border-color: #F43F5E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.step-number {
    background: #FFF1F2;
    color: #F43F5E;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-right: 0.5rem;
}
.step-item .custom-checkbox {
    align-items: flex-start; /* Direction steps need flex-start for multi-line */
}
.step-content {
    line-height: 1.6;
    color: #1F2937;
}
.ingredient-group-header, .direction-group-header {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: 1rem !important;
}
.ingredient-group-header h4, .direction-group-header h4 {
    font-size: 0.85rem !important;
    color: #6B7280 !important;
}

.community-section.photos-section {
    margin-top: 5rem;
    padding-top: 3rem;
     padding-bottom: 3rem;
    border-top: 1px solid #F3F4F6;
}
.photos-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.photos-section .section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #111827;
}
.photos-section .section-title i {
    font-size: 1.25rem;
    color: #F43F5E;
}
.photo-count {
    background: #FFF1F2;
    color: #F43F5E;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(244, 63, 94, 0.08);
}
.photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.photos-section .empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #F9FAFB;
    border-radius: 24px;
    border: 2px dashed #E5E7EB;
    color: #6B7280;
}
.photos-section .empty-state p {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 1024px) {
    /* Maintained 4 columns as per user request */
}

@media (max-width: 768px) {
    #question-form {
        flex-direction: column;
        align-items: stretch !important;
        gap: 1rem !important;
    }
    .user-info-side {
        width: 100% !important;
    }
}

/* Popular Asked Questions Styles */
.faq-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.faq-section-title {

    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
}
.faq-icon {
    background: #F43F5E;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.faq-card {
    background: white;
    border: 1px solid #F3F4F6;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}
.faq-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}
.faq-q-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.q-label {
    color: #F43F5E;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.q-text {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.4;
}
.faq-a-row {
    display: flex;
    gap: 0.75rem;
}
.a-label {
    color: #9CA3AF;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.a-text {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}
    .photos-grid {
        grid-template-columns: repeat(4, 2fr);
    }
.btn-ask-submit:hover {
    background: #22d3ee !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.2);
}
.btn-write-review-modern:hover {
    background: #FFB300 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}
.btn-ask-submit:active, .btn-primary:active, .btn-write-review-modern:active {
    transform: translateY(0);
}
.sort-dropdown-modern:hover {
    border-color: #D1D5DB;
    background: #F9FAFB !important;
}

@media (max-width: 768px) {
    .reviews-section .section-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1.5rem !important;
    }
    .reviews-section .header-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch !important;
    }
    .sort-dropdown-modern {
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .photos-grid {
        grid-template-columns: 1fr;
    }
}
.photo-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #F3F4F6;
}
.photo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.photo-card:hover img {
    transform: scale(1.1);
}
.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
}
.photo-card:hover .photo-overlay {
    opacity: 1;
}
.photo-overlay span {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}
.photo-card:hover .photo-overlay span {
    transform: translateY(0);
}
.btn-load-more:hover {
    background: #F9FAFB !important;
    border-color: #D1D5DB !important;
    transform: translateY(1px);
}

/* Premium Sidebar Styles */
.recipe-sidebar {
    gap: 2.5rem !important;
}
.sidebar-section {
    background: white;
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #F3F4F6;
}
.sidebar-title {
    font-family: serif; /* Elegant title font */
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: #111827;
    margin-bottom: 1.75rem !important;
    letter-spacing: -0.01em !important;
}
.sidebar-recipe-card {
    transition: all 0.3s ease !important;
    padding: 0 !important;
    margin-bottom: 0.5rem;
}
.sidebar-recipe-card:hover {
    transform: translateX(5px);
}
.sidebar-recipe-card img {
    width: 85px !important;
    height: 85px !important;
    flex-shrink: 0 !important;
    object-fit: cover !important;
    border-radius: 14px !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.sidebar-recipe-info h4 {
    font-size: 0.9rem !important;
    margin-bottom: 0.35rem !important;
    color: #1F2937 !important;
    line-height: 1.4 !important;
}
.sidebar-recipe-meta {
    color: #6B7280 !important;
    font-size: 0.8rem !important;
}

/* Join Premium Card */
.premium-card {
    background: #881337; /* Deep maroon/burgundy */
    border-radius: 20px;
    padding: 2.5rem 1.75rem;
    text-align: center;
    color: white;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}
.premium-card::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}
.premium-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: white;
}
.premium-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.75rem;
    line-height: 1.5;
}
.btn-premium-learn {
    display: inline-block;
    background: white;
    color: #881337;
    padding: 0.85rem 2.5rem;
    border-radius: 99px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}
.btn-premium-learn:hover {
    transform: scale(1.05);
    background: #F9FAFB;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
/* Cooking Progress Bar */
.cooking-progress-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #FFEDF0;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 0.85rem 0;
    display: none; /* Show when scrolling to ingredients or when progress starts */
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.progress-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.progress-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.progress-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #6B7280;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.progress-track {
    flex-grow: 1;
    height: 6px;
    background: #F3F4F6;
    border-radius: 99px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: #F43F5E;
    transition: width 0.4s cubic-bezier(0.1, 0, 0.1, 1);
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.2);
}

.progress-percentage {
    font-size: 0.9rem;
    font-weight: 800;
    color: #F43F5E;
    min-width: 35px;
    font-family: 'Merriweather', serif;
}

.progress-tip {
    font-size: 0.75rem;
    color: #9CA3AF;
    font-style: italic;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .progress-tip {
        display: none;
    }
    .progress-info {
        gap: 1rem;
    }
    .progress-container {
        padding: 0 1rem;
    }
}

/* Story Content List Styles */
.story-content ul, .story-content ol {
    padding-left: 2rem;
    margin-bottom: 1rem;
}
.story-content ul {
    list-style-type: disc;
}
.story-content ol {
    list-style-type: decimal;
}
.story-content li {
    margin-bottom: 0.5rem;
}

/* ===== Premium Story Card ===== */
.recipe-story-section {
    margin: 28px 0;
}
.recipe-story-card {
    position: relative;
    padding: 26px 28px;
    border: 1px solid #f3f4f6;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(90, 35, 55, 0.07);
    overflow: hidden;
}
.recipe-story-card::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 0;
    width: 5px;
    height: 72px;
    background: linear-gradient(180deg, #e94b6d, #ff9aae);
    border-radius: 0 999px 999px 0;
}
.recipe-story-header {
    margin-bottom: 16px;
    padding-left: 6px;
}
.recipe-story-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: #fff1f4;
    color: #e94b6d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.recipe-story-header h2 {
    margin: 0;
    color: #2b1b22;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 800;
}
.recipe-story-header p {
    margin: 7px 0 0;
    color: #7a6670;
    font-size: 14px;
}
.recipe-story-content {
    color: #3b2a31;
    font-size: 16px;
    line-height: 1.85;
    padding-left: 6px;
}
.recipe-story-content p {
    margin: 0 0 14px;
}
.recipe-story-content p:last-child {
    margin-bottom: 0;
}
.recipe-story-content p:first-child::first-letter {
    font-size: 34px;
    font-weight: 800;
    color: #e94b6d;
    line-height: 1;
    padding-right: 2px;
}
@media (max-width: 768px) {
    .recipe-story-section {
        margin: 22px 0;
    }
    .recipe-story-card {
        padding: 22px 20px;
        border-radius: 20px;
    }
    .recipe-story-header h2 {
        font-size: 22px;
    }
    .recipe-story-content {
        font-size: 15px;
        line-height: 1.75;
    }
}
.confetti-piece {
    position: fixed;
    width: 10px;
    height: 10px;
    z-index: 10001;
    pointer-events: none;
}

/* ===== Premium Table of Contents (compact) ===== */
html { scroll-behavior: smooth; }
.recipe-toc {
    margin: 22px 0;
    padding: 26px 28px;
    border: 1px solid #f3f4f6;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(90, 35, 55, 0.08);
}
.recipe-toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}
.recipe-toc-heading { min-width: 0; }
.recipe-toc h2 {
    margin: 0;
    color: #2b1b22;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}
.recipe-toc h2 i { color: #e94b6d; font-size: 14px; }
.recipe-toc p {
    margin: 2px 0 0;
    color: #7a6670;
    font-size: 12px;
}
.recipe-toc-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
.recipe-toc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border-radius: 12px;
    color: #2b1b22;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.recipe-toc-item:hover {
    background: #fff1f4;
    border-color: #e94b6d;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 75, 109, 0.12);
}
.recipe-toc-number {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: #fff1f4;
    color: #e94b6d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.recipe-toc-text {
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Collapsed by default: hide items after the first 4 (keeps card ~150px tall) */
.recipe-toc:not(.is-expanded) .recipe-toc-item:nth-child(n+5) {
    display: none;
}
.recipe-toc-toggle {
    flex: 0 0 auto;
    border: 1px solid #f3d9df;
    background: #fff1f4;
    color: #e94b6d;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.recipe-toc-toggle:hover {
    background: #e94b6d;
    color: #ffffff;
    transform: translateY(-1px);
}
@media (max-width: 768px) {
    .recipe-toc { padding: 14px; border-radius: 16px; }
    .recipe-toc-grid { grid-template-columns: 1fr; }
}

.recipe-image-caption {
                    font-size: 0.9rem;
                    color: #6B7280;
                    font-style: italic;
                    text-align: center;
                    margin-top: 0.75rem;
                    margin-bottom: 2rem;
                    line-height: 1.4;
                    font-weight: 500;
                }

                /* Responsive recipe header (title + stats bar use inline styles,
                   so these overrides need !important on mobile). */
                @media (max-width: 768px) {
                    .recipe-header {
                        margin-bottom: 1.5rem !important;
                    }
                    .recipe-main-title {
                        font-size: clamp(1.7rem, 7vw, 2.4rem) !important;
                        line-height: 1.2 !important;
                        margin-bottom: 1rem !important;
                    }
                    .recipe-stats-bar {
                        flex-wrap: wrap;
                        gap: 0.6rem 1.25rem !important;
                    }
                    .recipe-intro {
                        font-size: 1rem !important;
                        margin-bottom: 2.5rem !important;
                    }
                }
                @media (max-width: 480px) {
                    .recipe-main-title {
                        font-size: clamp(1.5rem, 8vw, 2rem) !important;
                    }
                    .recipe-stats-bar {
                        gap: 0.5rem 1rem !important;
                    }
                }

.author-section-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.25rem;
            color: #64748B;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .author-section-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #E2E8F0;
        }

        .author-level-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            background: #FFF1F4;
            color: #E11D48;
            border: 1px solid #FBCFE0;
            padding: 0.12rem 0.55rem;
            border-radius: 999px;
            font-size: 0.68rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            margin-top: -16px;
        }
        .author-name-group {
            text-align: center;
            margin-top: 10px;
        }
        .author-premium-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 999px;
            background: linear-gradient(135deg, #facc15, #f97316);
            color: #fff;
            font-size: 13px;
            box-shadow: 0 6px 14px rgba(249, 115, 22, 0.25);
            position: absolute;
            top: -2px;
            right: 50%;
            margin-right: -50px;
        }

        .author-card-new {
            background: white;
            border: 1px solid #F1F5F9;
            border-radius: 24px;
            box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }
        .author-card-new::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
        }

        .author-card-grid {
            display: grid;
            grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
            gap: 22px;
            align-items: start;
        }

        /* Premium author profile card */
        .author-left-col {
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 0.85rem;
            padding: 26px 22px;
            background: #ffffff;
            border: 1px solid rgba(233, 79, 124, 0.14);
            border-radius: 24px;
            box-shadow: 0 18px 45px rgba(23, 20, 39, 0.08);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .author-left-col::before {
            content: "";
            position: absolute;
            inset: 0 0 auto 0;
            height: 90px;
            background: linear-gradient(135deg, rgba(233, 79, 124, 0.14), rgba(155, 60, 255, 0.12));
            pointer-events: none;
        }
        .author-left-col:hover {
            transform: translateY(-2px);
            box-shadow: 0 24px 55px rgba(23, 20, 39, 0.11);
        }
        /* Keep inner content above the accent strip */
        .author-left-col > * { position: relative; z-index: 1; }

        /* Identity Group */
        .author-identity-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            width: 100%;
        }

        .author-avatar-new {
            width: 88px;
            height: 88px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid #ffffff;
            box-shadow: 0 12px 28px rgba(23, 20, 39, 0.14);
        }

        .author-avatar-new img, .avatar-placeholder {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .avatar-placeholder {
            background: #FBBF24;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            color: #78350F;
        }

        .author-name-new {
            font-size: 21px;
            line-height: 1.25;
            color: #171427;
            font-weight: 800;
            margin: 0;
            font-family: 'Outfit', sans-serif;
        }

        .author-location {
            font-size: 0.75rem;
            color: #94A3B8;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        /* Follow Button */
        .author-follow-wrapper {
            width: 100%;
        }

        .btn-follow-yellow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            min-height: 44px;
            padding: 11px 18px;
            border: 0;
            border-radius: 999px;
            background: linear-gradient(135deg, #e94f7c, #9b3cff);
            color: #ffffff;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            cursor: pointer;
            box-shadow: 0 12px 24px rgba(233, 79, 124, 0.24);
            transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
        }

        .btn-follow-yellow:hover {
            transform: translateY(-1px);
            box-shadow: 0 16px 30px rgba(233, 79, 124, 0.30);
            opacity: 0.96;
        }

        .btn-follow-yellow.following {
            background: #F3F4F6;
            color: #6B7280;
            box-shadow: none;
        }

        /* Stats */
        .author-stats-new {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
            width: 100%;
            margin-top: 6px;
        }

        .stat-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: linear-gradient(180deg, #fff8fa, #ffffff);
            border: 1px solid rgba(233, 79, 124, 0.11);
            border-radius: 14px;
            padding: 12px 8px;
        }

        .stat-num {
            font-size: 18px;
            font-weight: 800;
            color: #171427;
            line-height: 1;
        }

        .stat-lbl {
            font-size: 11px;
            color: #7d7789;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            margin-top: 5px;
        }

        /* Right Column */
        .author-right-col {
            padding-left: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .author-bio-text {
            color: #475569;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .link-view-profile {
            color: #2563EB;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .link-view-profile:hover {
            text-decoration: underline;
        }

        @media (max-width: 1024px) {
            .author-card-grid {
                grid-template-columns: 1fr;
            }
            .author-right-col {
                border-left: none;
                padding-left: 0;
                border-top: 1px solid #F1F5F9;
                padding-top: 2.5rem;
            }
            .author-left-col {
                padding: 24px 18px;
                border-radius: 20px;
            }
        }

        @media (max-width: 640px) {
            .author-card-new {
                padding: 2rem 1.5rem;
            }
            .author-left-col {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .author-identity-group {
                flex-direction: column;
                align-items: center;
                min-width: unset;
            }
            .author-follow-wrapper {
                width: 100%;
            }
            .author-location {
                justify-content: center;
            }
            .author-stats-new {
                padding: 1.5rem 0;
            }
            .stat-num {
                font-size: 1rem;
            }
            /* Section spacing + Top Recipes showcase (inline styles need !important) */
            .author-section-redesign {
                margin-top: 2.5rem !important;
                margin-bottom: 2.5rem !important;
            }
            .author-recipes-header {
                margin-bottom: 1rem !important;
            }
            .author-recipes-showcase {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 0.75rem !important;
            }
        }
        @media (max-width: 400px) {
            .author-card-new {
                padding: 1.5rem 1.1rem !important;
            }
            .author-recipes-showcase {
                grid-template-columns: 1fr !important;
            }
        }


/* ---- Recipe serving scaler ---- */
.serving-scaler {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    background: #FFF7F8;
    border: 1px solid #FFE4E6;
    border-radius: 0.75rem;
    padding: 0.6rem 0.85rem;
    margin-bottom: 1.25rem;
}
.serving-scaler .scaler-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #9F1239;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.serving-scaler .scaler-buttons {
    display: inline-flex;
    background: white;
    border: 1px solid #FECDD3;
    border-radius: 999px;
    overflow: hidden;
}
.serving-scaler .scaler-btn {
    border: none;
    background: transparent;
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #6B7280;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.serving-scaler .scaler-btn + .scaler-btn {
    border-left: 1px solid #FFE4E6;
}
.serving-scaler .scaler-btn:hover {
    background: #FFF1F2;
    color: #E11D48;
}
.serving-scaler .scaler-btn.active {
    background: #F43F5E;
    color: white;
}
.serving-scaler .scaler-servings {
    font-size: 0.8rem;
    font-weight: 600;
    color: #BE123C;
    margin-left: auto;
}
.ingredients-list .scaled-qty {
    color: #E11D48;
    font-weight: 800;
}
