/**
 * Nutella My Name Campaign — Complete Styles
 * 4-Frame Flow: Welcome → Name Input → Jar Preview → Print Label
 */

/* ================================
   FONT FACE
   ================================ */
@font-face {
    font-family: 'Montserrat-Arabic';
    src: url('/fonts/Montserrat-Arabic-Bold.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ================================
   GLOBAL RESET
   ================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #000;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    background-color: #E40613;
    margin: 0;
    padding: 0;
    width: 1024px;
    height: 600px;
    position: relative;
    overflow: hidden;
    border: 12px solid #FFFFFF;
    border-radius: 8px;
}

/* ================================
   SPLASH / LOADING SCREEN
   ================================ */
.splash-screen {
    position: absolute;
    /* Changed to absolute to fit within the 1024x600 body */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #E40613;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash-screen.splash-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.splash-logo {
    width: 600px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

@keyframes splashPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInSimple {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-10px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 4px 35px rgba(255, 255, 255, 0.6);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInSimple 0.5s ease-in;
}

.shake {
    animation: shake 0.5s;
}

/* ================================
   SECTION BASE
   ================================ */
.nutella-section {
    width: 100%;
    height: 100%;
    position: relative;
}

/* ================================
   LANDING SCREEN (no frame)
   ================================ */
.nutella-landing {
    height: calc(100% + 24px);
    width: calc(100% + 24px);
    margin: -12px;
    background-color: #E40613;
    display: block;
    position: relative;
    overflow: hidden;
    border: none !important;
    border-radius: 0 !important;
    z-index: 5;
}

.landing-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.landing-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ================================
   FRAME 1: WELCOME SCREEN
   ================================ */
.nutella-welcome {
    height: 100%;
    background-color: #E40613;
    display: block;
    position: relative;
    overflow: hidden;
}

.welcome-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.welcome-hero-img {
    width: 600px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    animation: fadeInSimple 0.8s ease-in;
}

.welcome-next-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    border: none;
    border-radius: 35px;
    padding: 16px 50px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease 0.3s both, pulseGlow 2s ease-in-out infinite 1.1s;
    z-index: 10;
}

.welcome-next-btn:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.35);
}

.welcome-next-btn:active {
    transform: translateX(-50%) scale(0.97);
}

.welcome-next-text {
    font-family: 'Montserrat-Arabic', 'Montserrat', Arial, sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #E40613;
    line-height: 1.3;
}

.welcome-next-sub {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #E40613;
    font-style: italic;
    line-height: 1.2;
}

/* ================================
   FRAME 2: NAME INPUT + LABEL PREVIEW
   ================================ */
.nutella-input-section {
    height: 100%;
    background-color: #E40613;
    display: none;
    position: relative;
}

.input-section-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 30px 30px;
    position: relative;
}

/* Section Logo (top-left) */
.section-logo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 15px 20px;
}

.section-logo img {
    height: 55px;
    width: auto;
}

/* Title Text */
.input-title-text {
    text-align: center;
    margin-top: 105px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.title-arabic {
    font-family: 'Montserrat-Arabic', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 6px;
    direction: rtl;
}

.title-english {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 10px;
}

/* Label Preview */
.label-preview-area {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 560px;
    margin: 30px auto 20px;
    cursor: text;
    min-height: 0;
}

.label-preview-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
    background-color: #FFFFFF;
    border-radius: 6px;
    overflow: hidden;
}

.label-bg-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.label-name-overlay {
    position: absolute;
    top: calc(8% - 6px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    font-size: 62px;
    font-weight: 900;
    color: #E40613;
    text-align: center;
    width: 55%;
    white-space: nowrap;
    overflow: visible;
    line-height: 1;
    font-family: 'Montserrat-Arabic', Arial, sans-serif;
    pointer-events: none;
    z-index: 5;
}

.label-name-overlay.lang-en {
    top: calc(8% - 6px + 4px);
}

/* Hidden Input */
.hidden-name-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.01;
    color: transparent;
    background: transparent;
    border: none;
    outline: none;
    caret-color: transparent;
    cursor: text;
    z-index: 10;
}

/* Character Count Notice */
.char-count-notice {
    text-align: center;
    margin-top: 25px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.char-notice-arabic {
    font-family: 'Montserrat-Arabic', sans-serif;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 2px;
    direction: rtl;
    color: #FFFFFF;
}

.char-notice-english {
    font-family: 'Montserrat-Arabic', sans-serif;
    font-size: 15px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
}

/* Input Section Button Customization */
.nutella-input-section .action-buttons-bar {
    justify-content: space-between;
    padding: 20px 40px;
}

.nutella-input-section .home-icon-btn {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ================================
   FRAME 3: JAR PREVIEW + PRINT/SHARE
   ================================ */
.nutella-preview-section {
    height: 100%;
    background-color: #E40613;
    display: none;
    position: relative;
}

.preview-section-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px 100px;
    position: relative;
}

.preview-logo {
    top: 0;
    left: 0;
}

/* Jar Preview */
.jar-preview-area {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.jar-preview-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
}

.jar-preview-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 62%;
    height: 18px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(4px);
}

.jar-preview-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0 auto;
    image-rendering: -webkit-optimize-contrast;
}

/* Name overlay on jar */
.jar-name-overlay {
    position: absolute;
    top: 44.5%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    transform-origin: center top;
    font-size: 32px;
    font-weight: 900;
    color: #E40613;
    text-align: center;
    width: 49%;
    white-space: nowrap;
    overflow: visible;
    line-height: 1;
    font-family: 'Montserrat-Arabic', Arial, sans-serif;
    pointer-events: none;
}

#nname {
    font-weight: 900;
}

/* ================================
   FRAME 4: PRINT LABEL
   ================================ */
.nutella-print-section {
    height: 100%;
    background-color: #FFFFFF;
    display: none;
    position: relative;
}

.print-section-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
}

.print-label-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.print-label-wrapper {
    position: relative;
    width: 100%;
    max-width: 750px;
    background-color: #FFFFFF;
}

.print-label-image {
    width: 100%;
    height: auto;
    display: block;
}

.print-label-name-overlay {
    position: absolute;
    top: calc(8% - 6px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 52px;
    font-weight: 900;
    color: #E40613;
    text-align: center;
    width: 60%;
    white-space: nowrap;
    overflow: visible;
    line-height: 1;
    font-family: 'Montserrat-Arabic', Arial, sans-serif;
    pointer-events: none;
    z-index: 5;
}

.print-label-name-overlay.lang-en {
    top: calc(8% - 6px + 4px);
}

.print-action-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 30px;
    margin-top: 20px;
}

/* ================================
   ACTION BUTTONS — Shared
   ================================ */
.action-buttons-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 20px 30px;
}

.action-btn {
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.action-btn:hover {
    transform: scale(1.05);
}

.action-btn:active {
    transform: scale(0.97);
}

/* Home Icon Button — circular with border */
.home-icon-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid #E40613;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Corner Home Button for 1024x600 resolution */
.corner-home-btn {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 10;
}

.corner-home-btn img {
    width: 90px;
    height: auto;
    display: block;
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.4));
}

@media (max-width: 1024px) {
    .corner-home-btn {
        bottom: 20px;
        left: 24px;
    }
    .corner-home-btn img {
        width: 75px;
    }
}

@media (max-width: 768px) {
    .corner-home-btn {
        bottom: 8px;
        left: 8px;
    }
    .corner-home-btn img {
        width: 70px;
    }
}

@media (max-width: 480px) {
    .corner-home-btn {
        bottom: 6px;
        left: 6px;
    }
    .corner-home-btn img {
        width: 55px;
    }
}

/* Pill Buttons — Print & Share & Next */
.pill-btn {
    min-width: 280px;
    height: 55px;
    border-radius: 30px;
    background: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    padding: 0 30px;
}

.pill-btn-text {
    font-family: 'Montserrat-Arabic', 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
    font-style: normal;
    color: #E40613;
    white-space: nowrap;
}

/* Image-based Next Button (matches 2.webp reference) */
.next-img-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 310px;
    height: 61px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.next-btn-bg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    pointer-events: none;
}

.next-btn-text {
    position: absolute;
    top: calc(50% - 4px);
    left: calc(50% - 5px);
    transform: translate(-50%, -50%);
    font-family: 'Montserrat-Arabic', 'Montserrat', Arial, sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #E40613;
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.5px;
}

.back-pill {
    background: #f5f5f5;
    border-color: #ddd;
}

/* Image-based Action Buttons (Print & Share) */
.img-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    margin: 0 -4px;
    cursor: pointer;
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.4));
}

.action-btn-img {
    height: 55px;
    width: auto;
    display: block;
    pointer-events: none;
}

/* ================================
   SHARE MODAL
   ================================ */
.share-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.share-modal-content {
    width: 100%;
    max-width: 500px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 10;
    transition: all 0.3s;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg) scale(1.1);
}

.share-modal-logo {
    margin-bottom: 15px;
}

.share-modal-logo img {
    max-width: 200px;
    height: auto;
}

.share-modal-tagline {
    text-align: center;
    margin-bottom: 15px;
}

.share-tagline-ar {
    font-family: 'Montserrat-Arabic', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    direction: rtl;
}

.share-modal-jars {
    width: 100%;
    margin-bottom: 20px;
}

.share-jars-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.share-buttons-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.share-button-item {
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.share-button-item img {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 8px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.share-button-item:hover img {
    transform: scale(1.1);
}

.share-button-item:active img {
    transform: scale(0.95);
}

.share-btn-label {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
}

/* ================================
   RESPONSIVE — LARGE DESKTOP
   ================================ */
@media (min-width: 1200px) {
    .title-arabic {
        font-size: 44px;
    }

    .title-english {
        font-size: 26px;
    }

    .label-name-overlay {
        font-size: 56px;
    }

    .section-logo img {
        height: 77px;
    }

    .jar-preview-wrapper {
        max-width: 500px;
    }

    .jar-preview-image {
        max-width: 500px;
    }

    .welcome-next-btn {
        bottom: 50px;
        padding: 18px 60px;
    }

    .welcome-next-text {
        font-size: 24px;
    }

    .welcome-next-sub {
        font-size: 16px;
    }
}

/* ================================
   RESPONSIVE — TABLET LANDSCAPE
   ================================ */
@media (max-width: 1024px) {
    .input-section-inner {
        padding: 0 30px 25px;
    }

    .section-logo {
        padding: 20px 24px;
    }

    .section-logo img {
        height: 45px;
    }

    .input-title-text {
        margin-top: 90px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .title-arabic {
        font-size: 36px;
    }

    .title-english {
        font-size: 28px;
    }

    .label-preview-area {
        max-width: 560px;
        margin: 20px auto 20px;
    }

    .char-count-notice {
        margin-top: 20px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .label-name-overlay {
        font-size: 40px;
    }

    .jar-preview-wrapper {
        max-width: 400px;
    }

    .jar-preview-image {
        max-width: 400px;
    }
}

/* ================================
   RESPONSIVE — TABLET PORTRAIT
   ================================ */
@media (max-width: 768px) {
    .input-section-inner {
        padding: 15px 20px 80px;
    }

    .input-title-text {
        margin-top: 75px;
        margin-bottom: 10px;
    }

    .title-arabic {
        font-size: 24px;
    }

    .title-english {
        font-size: 24px;
    }

    .label-preview-area {
        max-width: 420px;
    }

    .label-name-overlay {
        font-size: 34px;
        top: calc(16% - 12px);
    }

    .label-name-overlay.lang-en {
        top: calc(16% - 12px + 4px);
    }

    .section-logo img {
        height: 50px;
    }

    .section-logo {
        left: 20px;
        top: 15px;
    }

    .jar-preview-wrapper {
        max-width: 340px;
    }

    .jar-preview-image {
        max-width: 340px;
    }

    .jar-name-overlay {
        font-size: 24px;
    }

    .action-buttons-bar {
        gap: 0;
        padding: 15px 20px;
    }

    .share-modal-content {
        padding: 20px;
    }

    .share-button-item img {
        width: 65px;
        height: 65px;
    }

    .share-buttons-container {
        gap: 30px;
    }

    .welcome-next-btn {
        bottom: 30px;
        padding: 14px 40px;
    }

    .welcome-next-text {
        font-size: 18px;
    }

    .welcome-next-sub {
        font-size: 13px;
    }

    .pill-btn {
        min-width: 150px;
        height: 50px;
        padding: 0 22px;
    }

    .pill-btn-text {
        font-size: 16px;
    }

    .home-icon-btn {
        width: 50px;
        height: 50px;
    }

    .print-label-name-overlay {
        font-size: 40px;
        top: calc(16% - 12px);
    }

    .print-label-name-overlay.lang-en {
        top: calc(16% - 12px + 4px);
    }
}

/* ================================
   RESPONSIVE — MOBILE
   ================================ */
@media (max-width: 480px) {
    .input-section-inner {
        padding: 10px 15px 75px;
    }

    .input-title-text {
        margin-top: 65px;
        margin-bottom: 8px;
    }

    .title-arabic {
        font-size: 18px;
    }

    .title-english {
        font-size: 18px;
    }

    .label-preview-area {
        max-width: 320px;
    }

    .label-name-overlay {
        font-size: 26px;
    }

    .section-logo {
        left: 15px;
        top: 10px;
    }

    .section-logo img {
        height: 44px;
    }

    .char-notice-arabic {
        font-size: 11px;
    }

    .char-notice-english {
        font-size: 9px;
    }

    .jar-preview-wrapper {
        max-width: 280px;
    }

    .jar-preview-image {
        max-width: 280px;
    }

    .jar-name-overlay {
        font-size: 18px;
    }

    .action-buttons-bar {
        gap: 0;
        padding: 12px 10px;
    }

    .pill-btn {
        min-width: 120px;
        height: 45px;
        padding: 0 16px;
    }

    .pill-btn-text {
        font-size: 14px;
    }

    .home-icon-btn {
        width: 45px;
        height: 45px;
    }

    .home-icon-btn svg {
        width: 22px;
        height: 22px;
    }

    .share-modal-logo img {
        max-width: 150px;
    }

    .share-tagline-ar {
        font-size: 18px;
    }

    .share-button-item img {
        width: 55px;
        height: 55px;
    }

    .share-buttons-container {
        gap: 25px;
    }

    .welcome-next-btn {
        bottom: 25px;
        padding: 12px 35px;
    }

    .welcome-next-text {
        font-size: 16px;
    }

    .welcome-next-sub {
        font-size: 11px;
    }

    .preview-section-inner {
        padding: 15px 15px 85px;
    }

    .print-label-name-overlay {
        font-size: 30px;
    }

    .print-action-bar {
        gap: 10px;
        padding: 15px;
    }

    .print-action-bar .pill-btn {
        min-width: 130px;
    }
}

/* ================================
   RESPONSIVE — SMALL MOBILE
   ================================ */
@media (max-width: 360px) {
    .title-arabic {
        font-size: 16px;
    }

    .title-english {
        font-size: 16px;
    }

    .label-name-overlay {
        font-size: 22px;
    }

    .jar-name-overlay {
        font-size: 18px;
    }

    .pill-btn {
        min-width: 100px;
        height: 42px;
        padding: 0 12px;
    }

    .pill-btn-text {
        font-size: 13px;
    }

    .home-icon-btn {
        width: 42px;
        height: 42px;
    }

    .welcome-next-btn {
        bottom: 20px;
        padding: 10px 28px;
    }

    .welcome-next-text {
        font-size: 15px;
    }

    .welcome-next-sub {
        font-size: 10px;
    }

    .print-label-name-overlay {
        font-size: 24px;
    }
}

/* ================================
   PRINT STYLES
   ================================ */
@media print {

    #section1,
    #section2,
    #section3,
    #shareModal,
    .action-buttons-bar,
    .section-logo,
    .print-action-bar,
    #fullscreen-btn,
    #install-pwa-button,
    .welcome-next-btn {
        display: none !important;
        visibility: hidden !important;
    }
}