
.page-shell {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .welcome-box {
      background: #ffffff;
      border-radius: 18px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      padding: 30px;
      text-align: center;
    }

    .welcome-box h2 {
      margin-bottom: 10px;
      font-size: 32px;
    }

    .welcome-box p {
      color: #444;
      font-size: 18px;
    }

    .content-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: center;
    }

    .form-card,
    .image-card {
      background: #ffffff;
      border-radius: 18px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      padding: 30px;
    }

    .form-card h2,
    .image-card h3 {
      margin-bottom: 20px;
      font-size: 28px;
    }

    .form-card p {
      margin-bottom: 20px;
      color: #444;
      line-height: 1.6;
    }
    .fashion-mobile{display:none !important;}
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      text-align: left;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      min-height: 46px;
      padding: 12px 14px;
      border: 1px solid #d9d9d9;
      border-radius: 10px;
      font-size: 16px;
      resize: vertical;
      background: #fff;
    }

    .submit-btn,
    .open-popup-btn {
      border: none;
      border-radius: 10px;
      background: #111;
      color: #fff;
      padding: 12px 18px;
      font-size: 16px;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .submit-btn:hover,
    .open-popup-btn:hover {
      background: #333;
    }

    .image-card {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 18px;
    }

    .promo-image {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 14px;
      display: block;
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    .promo-image:hover {
      transform: scale(1.01);
    }

    .image-card .open-popup-btn {
      width: 100%;
    }

    /* Popup overlay */
    .mobile-ad-popup {
      position: fixed;
      inset: 0;
      z-index:10000000000;

      display: none;
      align-items: center;
      justify-content: center;

      width: 100%;
      min-height: 100dvh;
      padding: 8px;

      background: rgba(0, 0, 0, 0.8);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .mobile-ad-popup.is-visible {
      display: flex;
    }

    .mobile-ad-container {
      position: relative;
      display: inline-block;
      width: min(100%, 920px);
      max-height: calc(100dvh - 16px);
      animation: popupShow 0.25s ease-out;
      background: #ffffff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
    }

    .popup-inner {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      align-items: stretch;
      min-height: 470px;
    }

    .popup-form {
      padding: 20px 20px 18px;
      background: #ffffff;
    }

    .popup-tag {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #666;
      margin-bottom: 8px;
    }

    .popup-form h3 {
      margin-bottom: 14px;
      font-size: 30px;
      color: #111;
    }

    .popup-image-panel {
      background: #f8f8f8;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px;
    }

    .popup-image-panel img {
      display: block;
      width: 100%;
      height: 100%;
      max-height: 500px;
      object-fit: cover;
      border-radius: 12px;
    }

    .mobile-ad-close {
      position: absolute;
      top: 8px;
      right: 8px;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: #ffffff;
      color: #000000;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    }

    .mobile-ad-close:hover {
      background: #eeeeee;
    }

    .mobile-ad-close:focus-visible {
      outline: 3px solid #4da3ff;
      outline-offset: 3px;
    }

    @keyframes popupShow {
      from {
        opacity: 0;
        transform: scale(0.94);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @media (max-width: 768px) {
      .content-grid {
        grid-template-columns: 1fr;
      }
      .fashion-desktop{display:none;}
      .fashion-mobile{display:block !important;}
      .promo-image {
        height: 300px;
      }

      .mobile-ad-popup {
        padding: 8px;
      }

      .mobile-ad-container::-webkit-scrollbar,
      .mobile-ad-popup::-webkit-scrollbar {
        width: 8px;
        height: 8px;
      }

      .mobile-ad-container::-webkit-scrollbar-track,
      .mobile-ad-popup::-webkit-scrollbar-track {
        background: #f3f3f3;
      }

      .mobile-ad-container::-webkit-scrollbar-thumb,
      .mobile-ad-popup::-webkit-scrollbar-thumb {
        background: #b5b5b5;
        border-radius: 10px;
      }

      .mobile-ad-container {
        width: min(100%, 560px);
        max-height: 92dvh;
        overflow-y: auto;
      }

      .popup-inner {
        display: flex;
        flex-direction: column;
      }

      .popup-image-panel {
        order: -1;
        padding: 8px 8px 0;
        min-height: 170px;
      }

      .popup-image-panel img {
        width: 100%;
        height: auto;
        /*max-height: 200px;*/
        object-fit: cover;
      }

      .popup-form {
        padding: 14px 12px 14px;
      }

      .popup-form h3 {
        font-size: 24px;
      }

      .contact-form {
        gap: 10px;
      }
    }