/* ============================================================
   Moment — Telegram Mini App Styles
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: var(--tg-theme-bg-color, #ffffff);
    --text: var(--tg-theme-text-color, #000000);
    --hint: var(--tg-theme-hint-color, #999999);
    --link: var(--tg-theme-link-color, #3390ec);
    --btn-bg: var(--tg-theme-button-color, #3390ec);
    --btn-text: var(--tg-theme-button-text-color, #ffffff);
    --secondary-bg: var(--tg-theme-secondary-bg-color, #f0f0f0);
    --radius: 12px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* ============================================================
   Screen System
   ============================================================ */

.screen {
    display: none;
    min-height: 100vh;
    flex-direction: column;
}

.screen.active {
    display: flex;
}

/* ============================================================
   Common Components
   ============================================================ */

.btn {
    padding: 12px 20px;
    border-radius: var(--radius);
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s;
    -webkit-appearance: none;
}

.btn:active {
    opacity: 0.7;
    transform: scale(0.98);
}

.btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.btn-primary {
    background: var(--btn-bg);
    color: var(--btn-text);
    font-size: 16px;
    font-weight: 600;
}

.btn-secondary {
    background: var(--secondary-bg);
    color: var(--text);
}

.btn-large {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
}

.btn-icon {
    margin-right: 6px;
}

.back-btn {
    background: none;
    border: none;
    font-size: 22px;
    padding: 8px 12px;
    cursor: pointer;
    color: var(--link);
    line-height: 1;
}

.counter-badge {
    display: inline-block;
    background: var(--secondary-bg);
    color: var(--hint);
    font-size: 13px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    min-width: 40px;
    text-align: center;
}

.hint {
    text-align: center;
    font-size: 13px;
    color: var(--hint);
    padding: 8px 16px;
    line-height: 1.4;
}

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--secondary-bg);
    border-top-color: var(--btn-bg);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Progress bar for image loading */
.load-progress-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: var(--secondary-bg);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--btn-bg);
    width: 0;
    transition: width 0.2s ease;
}

.load-progress-text {
    font-size: 14px;
    color: var(--hint);
}

/* ============================================================
   Screen: Home
   ============================================================ */

#screen-home {
    justify-content: space-between;
    padding: 0 20px 32px;
}

.home-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0 20px;
}

.hero-visual {
    margin-bottom: 28px;
}

.hero-book {
    width: 120px;
    height: 90px;
    display: flex;
    gap: 3px;
    perspective: 600px;
}

.book-page {
    flex: 1;
    background: var(--secondary-bg);
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.book-page.left {
    transform: rotateY(8deg);
    background: linear-gradient(135deg, var(--secondary-bg) 0%, #e8e8e8 100%);
}

.book-page.right {
    transform: rotateY(-8deg);
    background: linear-gradient(225deg, var(--secondary-bg) 0%, #e8e8e8 100%);
}

.brand-name {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text);
    margin-bottom: 6px;
}

.brand-tagline {
    font-size: 15px;
    color: var(--hint);
    font-weight: 400;
}

.home-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ============================================================
   Screen: Preview
   ============================================================ */

.preview-header {
    display: flex;
    align-items: center;
    padding: 8px 12px 8px 4px;
    gap: 8px;
}

.preview-header h2 {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Spreads Gallery (horizontal scroll-snap) */
.spreads-gallery {
    flex: 1;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 0;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.spreads-gallery::-webkit-scrollbar {
    display: none;
}

.spread-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    position: relative;
    min-height: 200px;
    background: var(--bg);
}

.spread-img {
    max-width: 100%;
    max-height: 50vh;
    border-radius: 6px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spread-slide.loaded .spread-img {
    opacity: 1;
}

/* Loading placeholder per slide */
.spread-slide:not(.loaded):not(.error)::before {
    content: '';
    width: 30px;
    height: 30px;
    border: 3px solid var(--secondary-bg);
    border-top-color: var(--btn-bg);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    position: absolute;
}

.spread-slide.error::after {
    content: 'Ошибка загрузки';
    color: var(--hint);
    font-size: 14px;
    position: absolute;
}

.spread-label {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 10px;
}

.spread-placeholder {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: var(--hint);
    font-size: 14px;
}

/* Dots */
.preview-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary-bg);
    cursor: pointer;
    transition: all 0.2s;
}

.dot.active {
    background: var(--btn-bg);
    transform: scale(1.3);
}

/* Preview Info */
.preview-info {
    padding: 0 20px 8px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--secondary-bg);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row.total {
    font-weight: 600;
    font-size: 16px;
    padding-top: 8px;
    border-bottom: none;
}

/* Photo quality indicator */
.info-row.quality-high span:last-child {
    color: #34c759;
}

.info-row.quality-normal span:last-child {
    color: #ffcc00;
}

.info-row.quality-low span:last-child {
    color: #ff3b30;
    font-weight: 500;
}

.preview-actions {
    padding: 12px 20px 28px;
}

/* ============================================================
   Screen: Delivery (Simple Form)
   ============================================================ */

#screen-delivery {
    flex-direction: column;
    padding: 0;
}

#screen-delivery.active {
    display: flex;
}

#screen-delivery .screen-header {
    padding: 8px 16px;
    margin-bottom: 0;
}

.screen-header {
    display: flex;
    align-items: center;
    padding: 8px 0;
    gap: 8px;
    margin-bottom: 16px;
}

.screen-header h2 {
    font-size: 17px;
    font-weight: 600;
}

/* Delivery Form */
.delivery-form {
    padding: 16px;
    flex: 1;
}

.delivery-description {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.delivery-disclaimer {
    font-size: 13px;
    color: var(--hint);
    margin-top: 24px;
    padding: 12px;
    background: var(--secondary-bg);
    border-radius: var(--radius);
    line-height: 1.4;
}

.delivery-price-summary {
    margin-top: 24px;
    padding: 16px;
    background: var(--secondary-bg);
    border-radius: var(--radius);
}

.delivery-price-summary .price-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: var(--text);
    padding: 8px 0;
}

.delivery-price-summary .price-row.total {
    border-top: 1px solid var(--separator);
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 600;
}

.delivery-actions {
    padding: 12px 16px 28px;
}

.delivery-pvz-note {
    font-size: 12px;
    color: var(--hint);
    font-style: italic;
    margin-bottom: 2px;
}

.pvz-card-info p {
    font-size: 13px;
    color: var(--hint);
    margin: 0;
}

.pvz-card-info .pvz-worktime {
    font-size: 12px;
}

.pvz-card-price {
    text-align: right;
}

.pvz-card-price span {
    display: block;
}

#selected-pvz-days {
    font-size: 12px;
    color: var(--hint);
}

#selected-pvz-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.pvz-loading, .pvz-error {
    padding: 24px 16px;
    text-align: center;
    color: var(--hint);
    font-size: 14px;
}

/* Form inputs */
.form-section {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--hint);
    margin-bottom: 8px;
}

.text-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--secondary-bg);
    border-radius: var(--radius);
    font-size: 16px;
    background: var(--secondary-bg);
    color: var(--text);
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s;
}

.text-input:focus {
    border-color: var(--btn-bg);
}

.text-area {
    resize: vertical;
    min-height: 80px;
}

/* ============================================================
   Screen: Checkout (Payment)
   ============================================================ */

#screen-checkout {
    flex-direction: column;
    padding: 0 16px 32px;
}

#screen-checkout.active {
    display: flex;
}

#screen-checkout .screen-header {
    padding: 8px 0;
}

.checkout-content {
    flex: 1;
    overflow-y: auto;
}

.order-summary-card {
    background: var(--secondary-bg);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 12px;
}

.order-summary-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.summary-row:last-of-type:not(.total) {
    border-bottom: none;
}

.summary-row.total {
    font-weight: 600;
    font-size: 16px;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: none;
    padding-top: 10px;
    margin-top: 4px;
}

.delivery-info-card {
    background: var(--secondary-bg);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 12px;
}

.delivery-info-card h4 {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 600;
}

.delivery-info-card p {
    font-size: 14px;
    color: var(--hint);
    margin: 2px 0;
}

.delivery-days-info {
    color: var(--btn-bg) !important;
    font-weight: 500;
}

.payment-card {
    background: var(--secondary-bg);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 16px;
}

.payment-card h4 {
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 600;
}

.sbp-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg);
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.sbp-phone {
    font-family: 'SF Mono', Monaco, Consolas, monospace;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-copy {
    background: none;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 18px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.btn-copy:active {
    opacity: 1;
}

.btn-copy.copied {
    color: #4CAF50;
}

.sbp-bank {
    font-size: 14px;
    color: var(--hint);
    margin: 0 0 12px 0;
}

.payment-hint {
    font-size: 13px;
    color: var(--hint);
    text-align: center;
    margin: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.checkout-disclaimer {
    font-size: 13px;
    color: var(--hint);
    margin-top: 16px;
    padding: 12px;
    background: var(--secondary-bg);
    border-radius: var(--radius);
    line-height: 1.4;
}

.checkout-actions {
    padding: 12px 0 0;
}

/* Legacy summary styles */
.order-summary {
    flex: 1;
    padding: 8px 0 16px;
}

.summary-card {
    background: var(--secondary-bg);
    border-radius: var(--radius);
    padding: 16px;
}

.summary-card h3 {
    font-size: 17px;
    margin-bottom: 12px;
}

.summary-address {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-size: 14px;
}

.summary-address span {
    font-weight: 500;
}

.summary-address p {
    margin-top: 4px;
    color: var(--hint);
}

/* ============================================================
   Fullscreen Zoom Viewer
   ============================================================ */

.zoom-viewer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #000;
    flex-direction: column;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
}

.zoom-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    padding-top: calc(8px + env(safe-area-inset-top, 0px));
    background: rgba(0,0,0,0.6);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.zoom-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    padding: 4px 12px;
    cursor: pointer;
    line-height: 1;
}

.zoom-counter {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
}

.zoom-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    touch-action: none;
}

.zoom-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform-origin: center center;
    will-change: transform;
    pointer-events: none;
}

.zoom-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, opacity 0.2s;
}

.zoom-nav-btn:active {
    background: rgba(255,255,255,0.3);
}

.zoom-nav-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.zoom-prev {
    left: 12px;
}

.zoom-next {
    right: 12px;
}

/* ============================================================
   How It Works Screen
   ============================================================ */


/* ============================================================
   HOME SCREEN - Standard Theme with Orange Accents
   ============================================================ */

#screen-home {
    background: var(--bg);
    padding: 0 20px 32px;
}

.home-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #ff7043;
}

.home-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
}

.hero-image {
    width: 200px;
    height: 160px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-bg);
    border-radius: 16px;
}

.hero-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.hero-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin: 0 0 8px 0;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--hint);
    margin: 0;
}

.home-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
}

.btn-how { background: transparent !important; color: var(--text) !important; border: none !important; text-decoration: none; font-weight: 500; padding: 10px 0; } .btn-how-old {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    background: var(--secondary-bg);
    color: var(--text);
    border: none;
    cursor: pointer;
}

.btn-cta {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    background: #ff7043 \!important;
    border: none;
    color: white \!important;
}

.btn-view, #btn-view-album {
    background: #43a047 !important; box-shadow: 0 4px 15px rgba(67, 160, 71, 0.4) !important;
}

/* ============================================================
   How It Works Screen - Standard Theme
   ============================================================ */

#screen-how-it-works {
    padding: 0 20px 32px;
    background: var(--bg);
}

.how-header {
    display: flex;
    align-items: center;
    padding: 12px 0;
    gap: 12px;
}

.how-header h2 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
}

.how-content {
    flex: 1;
}

.how-steps {
    margin-bottom: 20px;
}

.how-step {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--secondary-bg);
}

.how-step:last-child {
    border-bottom: none;
}

.step-number {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: #ff7043;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.step-desc {
    font-size: 13px;
    color: var(--hint);
    line-height: 1.4;
}

.how-section {
    background: var(--secondary-bg);
    border-radius: var(--radius);
    padding: 14px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 10px 0;
}

.section-text {
    font-size: 14px;
    color: var(--hint);
    line-height: 1.5;
    margin: 0;
}

.price-table {
    font-size: 13px;
}

.price-row-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 6px 0;
    color: var(--hint);
    font-weight: 500;
    border-bottom: 1px solid rgba(128,128,128,0.2);
}

.price-row-data {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 8px 0;
    color: var(--text);
    border-bottom: 1px solid rgba(128,128,128,0.1);
}

.price-row-data:last-child {
    border-bottom: none;
}

.price-row-data span:last-child {
    font-weight: 600;
    color: #ff7043;
}

.price-note {
    font-size: 12px;
    color: var(--hint);
    margin: 8px 0 0 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 14px;
    color: var(--text);
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}

.feature-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ff7043;
}

/* ============================================================
   HOME SCREEN - Improved v26
   ============================================================ */

.hero-image {
    width: 280px;
    height: 220px;
    margin-bottom: 24px;
    background: transparent;
}

.hero-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.hero-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 10px 0;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
}

.btn-cta {
    background: #ff7043 !important;
    padding: 18px 24px;
    font-size: 17px;
    border-radius: 14px;
}

.btn-how { background: transparent !important; color: var(--text) !important; border: none !important; text-decoration: none; font-weight: 500; padding: 10px 0; } .btn-how-old {
    padding: 14px 20px;
    font-size: 15px;
}

/* ============================================================
   PVZ List Styles
   ============================================================ */

.pvz-list-container {
    margin: 16px 0;
}

.pvz-list-container label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

.pvz-list {
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid var(--secondary-bg);
    border-radius: 12px;
    background: var(--secondary-bg);
}

.pvz-item {
    padding: 12px;
    border-bottom: 1px solid rgba(128,128,128,0.1);
    cursor: pointer;
    transition: background 0.15s;
}

.pvz-item:last-child {
    border-bottom: none;
}

.pvz-item:active {
    background: rgba(255, 112, 67, 0.1);
}

.pvz-item.selected {
    background: rgba(255, 112, 67, 0.15);
    border-left: 3px solid #ff7043;
}

.pvz-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 2px;
}

.pvz-item-address {
    font-size: 13px;
    color: var(--hint);
    margin-bottom: 2px;
}

.pvz-item-time {
    font-size: 12px;
    color: var(--hint);
}

.pvz-loading {
    padding: 20px;
    text-align: center;
    color: var(--hint);
    font-size: 14px;
}

.selected-pvz {
    background: var(--secondary-bg);
    border-radius: 12px;
    padding: 12px;
    margin: 16px 0;
    border-left: 3px solid #ff7043;
}

.selected-pvz-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.selected-pvz-address {
    font-size: 13px;
    color: var(--hint);
    margin-bottom: 2px;
}

.selected-pvz-time {
    font-size: 12px;
    color: var(--hint);
}

select.text-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* ============================================================
   Typography - Montserrat for headings
   ============================================================ */

h1, h2, h3, .hero-title, .how-header h2, .screen-header h2, .preview-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.logo {
    height: 28px;
    width: auto;
}

/* ============================================================
   Button Overrides v31
   ============================================================ */

/* Как это работает - text only with emoji */
.btn-how {
    background: transparent !important;
    color: var(--text) !important;
    border: none !important;
    padding: 10px 0 !important;
    font-weight: 500 !important;
}

/* Создать альбом - #FF6B4A, white text */
.btn-cta, #btn-create {
    background: #FF6B4A !important;
    color: white !important;
}

/* Просмотреть альбом - #FFAD9B, black text */
.btn-view, #btn-view-album {
    background: #FFAD9B !important;
    color: #000000 !important;
    box-shadow: none !important;
}
