/**
 * The header mega menu's right-side promo panel renders one portrait image
 * (see components/layout/store-header/mega-menu.tsx): a fixed 310px-tall card
 * whose AppImage frame is declared 400 × 520 (a 10:13 portrait) and stretched
 * with object-fill. AI Studio can only emit 1:1, 2:3, or 3:2, so the promo
 * generates at the closest model size (2:3) and is center-cropped down to this
 * exact frame before it is applied — the same lock-and-crop contract the
 * home-page promo cards use.
 *
 * The locked dimensions below are the storefront ratio scaled ×3, keeping the
 * exact 10:13 aspect while staying near the generated image's resolution.
 */

export const MEGA_MENU_PROMO_WIDTH = 1200 as const; // 400 × 3
export const MEGA_MENU_PROMO_HEIGHT = 1560 as const; // 520 × 3
