/* EXACT STYLES - PIXEL PERFECT MATCH TO SCREENSHOT */
        
        .exact-recipe-card {
            max-width: 800px;
            margin: 30px auto;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            border: 2px solid #E0E0E0;
            padding: 0;
        }
        
        /* HEADER */
        .exact-header {
            background: #FFF;
            padding: 25px 30px 15px 30px;
            text-align: center;
            border-bottom: 1px solid #E0E0E0;
        }
        
        .exact-main-title {
            color: #333;
            font-size: 28px;
            font-weight: 900;
            margin: 0 0 5px 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1.2;
        }
        
        .exact-subtitle {
            color: #666;
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            font-style: italic;
        }
        
        /* DESCRIPTION */
        .exact-description {
            padding: 20px 30px;
            background: #FFF;
            border-bottom: 1px solid #E0E0E0;
        }
        
        .desc-line {
            color: #333;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .photos-note {
            color: #4A90E2;
            font-size: 16px;
            font-weight: 600;
            font-style: italic;
        }
        
        .exact-icon {
            color: #FFA500;
            font-weight: bold;
            margin-right: 10px;
            font-size: 18px;
        }
        
        /* SAVE RECIPE SECTION */
        .save-section {
            padding: 25px 30px;
            background: #F8F8F8;
            border-bottom: 1px solid #E0E0E0;
        }
        
        .section-title {
            color: #333;
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 15px 0;
            display: flex;
            align-items: center;
        }
        
        .save-description {
            color: #666;
            font-size: 16px;
            margin: 0 0 20px 0;
            line-height: 1.5;
        }
        
        .email-form-exact {
            display: flex;
            gap: 10px;
            max-width: 500px;
        }
        
        .email-input-field {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #DDD;
            border-radius: 4px;
            font-size: 16px;
            color: #333;
            background: white;
        }
        
        .email-input-field:focus {
            outline: none;
            border-color: #FFA500;
            box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.2);
        }
        
        .send-button-exact {
            background: #FFA500;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            white-space: nowrap;
        }
        
        .send-button-exact:hover {
            background: #FF8C00;
        }
        
        /* INGREDIENTS */
        .ingredients-section-exact {
            padding: 25px 30px;
            background: white;
            border-bottom: 1px solid #E0E0E0;
        }
        
        .ingredients-table-exact {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
            border: 1px solid #E0E0E0;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .ingredients-table-exact thead {
            background: #F5F5F5;
            border-bottom: 2px solid #E0E0E0;
        }
        
        .ingredients-table-exact th {
            padding: 12px 15px;
            text-align: left;
            font-weight: 600;
            color: #333;
            font-size: 16px;
            border-right: 1px solid #E0E0E0;
        }
        
        .ingredients-table-exact th:last-child {
            border-right: none;
        }
        
        .ingredients-table-exact td {
            padding: 12px 15px;
            border-bottom: 1px solid #E0E0E0;
            border-right: 1px solid #E0E0E0;
            color: #333;
            font-size: 15px;
        }
        
        .ingredients-table-exact td:last-child {
            border-right: none;
        }
        
        .ingredients-table-exact tbody tr:last-child td {
            border-bottom: none;
        }
        
        .ingredients-table-exact .quantity {
            font-weight: 600;
            color: #333;
            text-align: center;
            width: 120px;
        }
        
        /* INSTRUCTIONS */
        .instructions-section-exact {
            padding: 25px 30px;
            background: white;
            border-bottom: 1px solid #E0E0E0;
        }
        
        .instruction-step-exact {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px dashed #E0E0E0;
        }
        
        .instruction-step-exact:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .step-title {
            color: #333;
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 10px 0;
            display: flex;
            align-items: center;
        }
        
        .step-icon {
            color: #FFA500;
            font-weight: bold;
            margin-right: 10px;
            font-size: 18px;
            min-width: 20px;
        }
        
        .step-desc {
            color: #333;
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
            padding-left: 30px;
        }
        
        /* TIPS */
        .tips-section-exact {
            padding: 25px 30px;
            background: #FFF9E6;
            border-bottom: 1px solid #E0E0E0;
            border-top: 2px solid #FFD700;
        }
        
        .tip-item {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .tip-item:last-child {
            margin-bottom: 0;
        }
        
        .tip-icon {
            color: #FFA500;
            font-weight: bold;
            margin-right: 10px;
            font-size: 16px;
            min-width: 20px;
            margin-top: 2px;
        }
        
        .tip-item p {
            color: #333;
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
            flex: 1;
        }
        
        /* NUTRITION */
        .nutrition-section-exact {
            padding: 25px 30px;
            background: white;
            border-bottom: 1px solid #E0E0E0;
        }
        
        .nutrition-note {
            color: #666;
            font-size: 15px;
            font-style: italic;
            margin: 0 0 20px 0;
            display: flex;
            align-items: center;
            background: #F8F8F8;
            padding: 12px 15px;
            border-radius: 4px;
            border-left: 4px solid #4A90E2;
        }
        
        .nutrition-grid-exact {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 15px;
        }
        
        .nutrition-item-exact {
            background: #F8F8F8;
            padding: 15px;
            border-radius: 4px;
            text-align: center;
            border: 1px solid #E0E0E0;
        }
        
        .nutrition-label {
            font-size: 13px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .nutrition-value {
            font-size: 20px;
            font-weight: 700;
            color: #333;
            margin-bottom: 5px;
        }
        
        .nutrition-sub {
            font-size: 12px;
            color: #888;
            font-style: italic;
        }
        
        /* TAKEDOWN SNACKS */
        .takedown-section-exact {
            padding: 25px 30px;
            background: #E8F4FD;
            text-align: center;
            border-top: 2px solid #4A90E2;
        }
        
        .takedown-desc {
            color: #333;
            font-size: 16px;
            margin: 10px 0 0 0;
            font-style: italic;
        }
        
        /* RESPONSIVE DESIGN */
        @media (max-width: 768px) {
            .exact-recipe-card {
                margin: 15px;
                border-radius: 8px;
            }
            
            .exact-main-title {
                font-size: 24px;
            }
            
            .exact-subtitle {
                font-size: 16px;
            }
            
            .exact-description,
            .save-section,
            .ingredients-section-exact,
            .instructions-section-exact,
            .tips-section-exact,
            .nutrition-section-exact,
            .takedown-section-exact {
                padding: 20px;
            }
            
            .email-form-exact {
                flex-direction: column;
            }
            
            .email-input-field,
            .send-button-exact {
                width: 100%;
            }
            
            .send-button-exact {
                margin-top: 10px;
            }
            
            .ingredients-table-exact {
                font-size: 14px;
            }
            
            .ingredients-table-exact th,
            .ingredients-table-exact td {
                padding: 10px 12px;
            }
            
            .nutrition-grid-exact {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .step-desc {
                padding-left: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .nutrition-grid-exact {
                grid-template-columns: 1fr;
            }
            
            .ingredients-table-exact {
                display: block;
                overflow-x: auto;
            }
            
            .exact-main-title {
                font-size: 22px;
            }
            
            .section-title {
                font-size: 18px;
            }
        }
        
        /* PRINT STYLES */
        @media print {
            .exact-recipe-card {
                box-shadow: none;
                border: 1px solid #000;
                margin: 0;
                max-width: 100%;
            }
            
            .send-button-exact {
                display: none;
            }
            
            .email-input-field {
                border: 1px solid #000;
            }
        }