* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0f0f0f;
  color: #eaeaea;
  font-family: Inter, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15,15,15,.9);
  border-bottom: none;
  z-index: 1000;
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 22px;
}

.logo .white { color:#9a9a9a; }
.logo .ink { color:#fff; }

.nav-links a {
  margin-left: 32px;
  color: #aaa;
}

.nav-links a:hover {
  color: #fff;
}

/* HERO */
.hero {
  padding-top: 140px;
}

.hero-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  padding: 100px 32px;
}

.tagline {
  letter-spacing: 2px;
  font-size: 12px;
  color: #777;
}

h1 {
  font-size: 72px;
  line-height: 1.05;
  margin: 20px 0;
}

h1 span {
  color: #777;
}

.desc {
  color: #aaa;
  max-width: 480px;
}

.hero-buttons {
  margin-top: 36px;
}

.hero-btn {
  border-radius: 0;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  font-weight: 600;
}

.btn.primary {
  background: #fff;
  color: #000;
  margin-right: 16px;
}

.btn.outline {
  border: 1px solid #444;
  color: #fff;
}

/* HERO IMAGE */
.hero-image {
  position: relative;
  width: 380px;
  max-width: 100%;
  justify-self: end;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 14px;      /* ⬅️ w dół */
  left: 14px;     /* ⬅️ w prawo */
  right: -14px;
  bottom: -14px;
  border: 1px solid rgba(255,255,255,0.25);
  z-index: -1;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.frame {
  position: absolute;
  inset: 0;
  border: 1px solid #444;
  pointer-events: none;
 z-index: 2;
}

/* HERO BUTTONS – SAME HOVER AS SEND REQUEST */
.hero-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
}



/* WORK */
.work {
  text-align: center;
  padding: 80px 32px 50px;
}

.divider {
  width: 40px;
  height: 1px;
  background: #444;
  margin: 16px auto 40px;
}

.grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(1);
  cursor: pointer;
}

.grid img {
  image-rendering: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.grid img:hover {
  filter: none;
}

/* LINK POD GRIDEM */
.instagram-link {
  display: inline-block;
  margin-top: 26px;
  color: #aaa;
  font-weight: 500;
}

.instagram-link:hover {
  color: #fff;
}

/* CONTACT */
.contact {
  text-align: center;
  padding: 80px 32px;
}

.subtitle {
  color: #aaa;
}

.form-card {
  max-width: 760px;
  margin: 40px auto;
  padding: 32px;
  border-radius: 16px;
  background: linear-gradient(
  180deg,
  #242424,
  #1f1f1f
);
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  margin-bottom: 20px;
  text-align: left;
}

label {
  font-size: 13px;
  color: #aaa;
}

input,
textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid #333;
  background: linear-gradient(180deg, #0f0f0f, #0b0b0b);
  color: #eaeaea;
  font-family: Inter, sans-serif;
  font-size: 14px;
}

input::placeholder,
textarea::placeholder {
  color: #888;
}

textarea {
  min-height: 120px;
}

.submit {
  width: 100%;
  margin-top: 20px;
  border-radius: 12px; /* ⬅️ IDENTYCZNY JAK IG / WA */
  font-size: 14px;
  letter-spacing: 1px;
cursor: pointer;
transition: transform .25s ease, box-shadow .25s ease;

}
.form-message {
  margin-top: 18px;
  font-size: 14px;
  color: #ccc;
  text-align: center;

  max-height: 0;
  opacity: 0;
  overflow: hidden;

  transform: translateY(8px);
  filter: blur(2px);

  transition:
    max-height .6s cubic-bezier(.4,0,.2,1),
    opacity .4s ease,
    transform .4s ease,
    filter .4s ease;
}

.form-message.visible {
  max-height: 120px;       /* bezpieczna wysokość */
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
}


/* WHITE ICONS (DATE / TIME) */
.white-icon::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

/* STUDIO */
.studio {
  padding: 80px 32px;
}

.studio-card {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(180deg, #1e1e1e, #181818);
  padding: 32px;
  border-radius: 16px;
}

/* IKONY POD MAPĄ */
.studio-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.studio-icons a {
  font-size: 26px;
  color: #777;
  transition: transform .25s ease, color .25s ease;
}

.studio-icons a:hover {
  transform: scale(1.2);
}

.studio-icons a.ig:hover {
  color: #e1306c;
}

.studio-icons a.wa:hover {
  color: #25d366;
}

.studio-icons a.tel:hover {
  color: #fff;
}

iframe {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  border: 0;
}

/* FAQ */
.faq {
  text-align: center;
  padding: 80px 32px;
}

.faq-item {
  max-width: 820px;
  margin: 16px auto;
  background: linear-gradient(180deg, #1e1e1e, #181818);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  padding: 26px 32px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-btn .icon {
  font-size: 22px;
  line-height: 1;
  color: #bbb;
}

.faq-content {
  max-height: 0;
  overflow: hidden;

  /* 🔑 RYTM PIONOWY */
  padding: 0 32px;

  color: #bcbcbc;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;

  transition:
  max-height .45s cubic-bezier(.4,0,.2,1),
  opacity .25s ease;;
}

.faq-item.open .faq-content {
  max-height: 1000px;
  padding: 0 32px 32px;
  opacity: 1;
}


/* MODAL */
#modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


.modal-image-wrapper {
  width: 90vw;
  height: 90vh;

  display: flex;
  align-items: center;
  justify-content: center;

  pointer-events: none;          /* ⬅️ KLUCZ */
  transform: scale(0.97);
  transition: transform 0.3s ease;
}


#modalImg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;

  pointer-events: auto;          /* ⬅️ WAŻNE */
  transition: opacity .35s ease, transform .35s ease;
}


.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 20px;
}

.modal-arrow.left { left: 20px; }
.modal-arrow.right { right: 20px; }

.close {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 40px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .modal-arrow {
    font-size: 36px;
    padding: 10px;
  }
}

  .map-clickable {
    margin-top: 24px;
  }
}


/* GET INKED – SOCIAL BUTTONS */
.connect {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #666;
  margin: 50px 0 30px;
  font-size: 12px;
  letter-spacing: 1px;
}

.connect span {
  flex: 1;
  height: 1px;
  background: #222;
}

.social-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social {
  flex: 1;
  max-width: 280px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px; /* ⬅️ WIĘKSZA CZCIONKA */
  color: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.social i {
  font-size: 20px; /* ⬅️ WIĘKSZA IKONKA */
}

.social.ig {
  background: linear-gradient(90deg, #8a3ab9, #e95950);
}

.social.wa {
  background: #1db954;
}

.social:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.map-link {
  display: inline-block;
  margin-top: 16px;
  color: #aaa;
  font-size: 14px;
}

.map-link:hover {
  color: #fff;
}

.map-clickable {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.map-clickable iframe {
  pointer-events: none;
}

footer {
  width: 100%;
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-size: 13px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #fff;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0f0f0f;
    flex-direction: column;
    padding: 20px 32px;
  }

  .nav-links a {
    margin: 16px 0;
    font-size: 18px;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 48px;
  }
}

  .hero-image {
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .studio-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .social-buttons {
    flex-direction: column;
  }

  .social {
    max-width: 100%;
  }

}
@media (max-width: 768px) {
  .map-clickable {
    margin-top: 24px;
  }
}

/* =========================
   MOBILE FIXES – ADD ONLY
   ========================= */

@media (max-width: 768px) {

  /* HAMBURGER – SMOOTH */
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #0f0f0f;
    flex-direction: column;
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.4,0,.2,1);
  }

  .nav-links.open {
    max-height: 400px;
  }

  .nav-links a {
    margin: 18px 0;
    font-size: 18px;
    text-align: right;
  }

  /* GET INKED – WYŻEJ */
  #contact {
    padding-top: 40px;
  }

  /* MY WORK – 3 W RZĘDZIE */
  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  /* SEE MORE */
  .instagram-link {
    font-size: 16px;
    margin-top: 32px;
    letter-spacing: .5px;
  }

  /* SOCIAL BUTTONS – WIĘKSZE */
  .social {
    height: 60px;
    font-size: 16px;
  }

  .social i {
    font-size: 24px;
  }

  /* FAQ – MNIEJ POWIETRZA */
  .faq {
    padding-top: 40px;
  }

  .faq-item {
    margin: 10px auto;
  }

  .faq-btn {
    padding: 20px 24px;
    font-size: 16px;
  }
}

/* MOBILE – FIX ICON THICKNESS (IG / WHATSAPP) */
@media (max-width: 768px) {

  .social i {
    font-size: 28px;        /* ⬅️ KLUCZOWE */
    line-height: 1;
  }

}

/* MOBILE – SOCIAL BUTTONS THICKNESS FIX */
@media (max-width: 768px) {

  .social {
    border: 1px solid rgba(255,255,255,0.15); /* ⬅️ GRUBOŚĆ */
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.05),
      0 6px 20px rgba(0,0,0,0.5);
  }

}

/* MOBILE – SOCIAL BUTTONS BALANCED SIZE */
@media (max-width: 768px) {

  .social {
    height: auto;
    padding: 14px 22px;     /* ⬅️ było 18 → teraz ~20% mniej */
    min-height: 56px;       /* ⬅️ było 68 → teraz bliżej SEND REQUEST */
    font-size: 15px;        /* ⬅️ delikatnie mniejsze */
    border-radius: 16px;    /* ⬅️ subtelniej */
  }

  .social i {
    font-size: 22px;        /* ⬅️ proporcjonalnie */
    line-height: 1;
  }
}


/* MOBILE – SOCIAL BUTTONS FONT TUNE */
@media (max-width: 768px) {

  .social {
    font-size: 16.5px;   /* ⬅️ było 15 → idealny sweet spot */
  }

  .social i {
    font-size: 23px;     /* ⬅️ proporcja ikona ↔ tekst */
  }
}

/* MOBILE – HERO IMAGE CENTER & FRAME FIX */
@media (max-width: 768px) {

  .hero-image {
    width: 100%;              /* ⬅️ zamiast 380px */
    max-width: 320px;         /* ⬅️ bezpieczna szerokość */
    margin: 0 auto;           /* ⬅️ centrowanie */
    justify-self: center;
  }

  .hero-image::before {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;            /* ⬅️ ramka w całości w kadrze */
  }

  .hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;      /* ⬅️ zero przycinania */
  }
}

/* MOBILE – REDUCE GAP BETWEEN HERO & WORK */
@media (max-width: 768px) {

  .hero-inner {
    padding-bottom: 40px;   /* ⬅️ było wizualnie za dużo */
  }

  .work {
    padding-top: 40px;      /* ⬅️ zbliża MY WORK do zdjęcia */
  }
}

/* FIX: Chrome Android font scaling */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* MOBILE – HERO BUTTONS STACK & ALIGN */
@media (max-width: 768px) {

  .hero-buttons {
    display: flex;
    flex-direction: column;   /* ⬅️ jeden pod drugim */
    gap: 14px;
    align-items: center;      /* ⬅️ równo */
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 260px;         /* ⬅️ estetyczna szerokość */
    text-align: center;
    margin-right: 0;
  }
}

/* MOBILE – REDUCE GAP BEFORE STUDIO */
@media (max-width: 768px) {

  #contact {
    padding-bottom: 40px;   /* ⬅️ było wizualnie za dużo */
  }

  .studio {
    padding-top: 40px;      /* ⬅️ ~50% mniej przerwy */
  }
}

/* MOBILE – HERO START HIGHER */
@media (max-width: 768px) {

  .hero {
    padding-top: 90px;     /* ⬅️ było wizualnie za nisko */
  }

  .hero-inner {
    padding-top: 40px;     /* ⬅️ zmniejszamy „czarną dziurę” */
  }
}

/* iOS FIX – DATE / TIME INPUT OVERFLOW */
@supports (-webkit-touch-callout: none) {

  input[type="date"],
  input[type="time"] {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;        /* ⬅️ stabilny padding dla iOS */
    font-size: 14px;
    line-height: 1.2;
    appearance: none;
    -webkit-appearance: none;
  }
}

/* MOBILE – SMOOTH HAMBURGER MENU */
@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    display: flex;                 /* ⬅️ ZAWSZE flex */
    flex-direction: column;

    background: #0f0f0f;
    padding: 0 32px;

    max-height: 0;                 /* ⬅️ start zamknięty */
    overflow: hidden;
    opacity: 0;

    transition:
      max-height 0.45s cubic-bezier(.4,0,.2,1),
      opacity 0.25s ease;
  }

  .nav-links.open {
    max-height: 400px;             /* ⬅️ wystarczająco */
    opacity: 1;
  }

  .nav-links a {
    margin: 18px 0;
    font-size: 18px;
    text-align: right;
  }
}

@media (max-width: 768px) {
  .studio {
    padding-bottom: 20px;
  }

  .faq {
    padding-top: 20px;
  }
}


@media (max-width: 768px) {

  .studio-card {
    display: flex;
    flex-direction: column;
  }

  .studio-info {
    order: 1;
  }

  .studio-icons {
    order: 2;
    margin-top: 16px;
  }

  .map-clickable {
    order: 3;
    margin-top: 24px; /* ⬅️ mapa WYRAŹNIE POD ikonami */
  }

}

@media (max-width: 768px) {
  .faq-btn {
    justify-content: center;
    text-align: center;
    gap: 12px;
  }
}

/* DESKTOP – HERO REALLY HIGHER (FINAL FIX) */
@media (min-width: 1024px) {

  .hero {
    padding-top: 90px;     /* ⬅️ było 140px */
  }

  .hero-inner {
    padding: 60px 32px 100px;
    /* top | sides | bottom */
  }
}

/* DESKTOP – HERO TEXT MICRO ALIGN (FINAL POLISH) */
@media (min-width: 1024px) {

  .hero-text {
    transform: translateY(-24px); /* ⬅️ dokładnie ten brakujący „klik” */
  }

}

/* MODAL – SMOOTH OPEN / CLOSE (FIXED) */
#modal {
  display: none;              /* ⬅️ kontrola widoczności */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

#modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-image-wrapper {
  transform: scale(0.97);
  transition: transform 0.3s ease;
}

#modal.active .modal-image-wrapper {
  transform: scale(1);
}

.file-list {
  margin-top: 12px;
  padding: 0;
  list-style: none;
}

.file-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 6px;
  background: #1a1a1a;
  border-radius: 8px;
  font-size: 13px;
  color: #ccc;
}

.file-list button {
  background: none;
  border: none;
  color: #ff6b6b;
  font-size: 14px;
  cursor: pointer;
}

input[type="date"],
input[type="time"] {
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-title {
  font-size: 72px;
  line-height: 1.05;
  margin: 20px 0;
  font-weight: 800;
}

.hero-title span {
  color: #777;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* OR CONNECT DIRECTLY – RESTORE DIVIDER */
.connect {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 48px auto 32px;   /* ⬅️ KLUCZ: wraca oddech */
  max-width: 760px;         /* ⬅️ align z formularzem */
  color: #666;
  font-size: 12px;
  letter-spacing: 1px;
}

.connect span {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #333,
    transparent
  );
  opacity: 0.8;
}

/* FIX: Instagram button side stripes on mobile */
@media (max-width: 768px) {
  .social.ig {
    background-clip: padding-box;
  }
}

.submit.loading {
  pointer-events: none;
  opacity: 0.7;
}

.hero-text,
.hero-image {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 2s ease, transform 2s ease;
}

.hero.loaded .hero-text,
.hero.loaded .hero-image {
  opacity: 1;
  transform: translateY(0);
}

.form-message {
  max-height: 0;
  overflow: hidden;
}

.cookie-info {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 360px;

  background: linear-gradient(180deg, #1e1e1e, #181818);
  color: #ccc;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.6);
  font-size: 13px;
  z-index: 99999;

  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;

  transition:
    opacity .45s ease,
    transform .45s ease;
}

.cookie-info a {
  color: #fff;
  text-decoration: underline;
}

.cookie-info button {
  margin-top: 14px;

  background: #fff;
  color: #000;

  border: none;
  border-radius: 6px;     /* ⬅️ delikatne zaokrąglenie */
  padding: 14px 36px;     /* ⬅️ trochę mniejszy */

  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;

  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}



.cookie-info button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.cookie-info {
  display: flex;
  flex-direction: column;
 align-items: center;
  gap: 6px;
}

.cookie-info.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.remove-file:hover {
  background: rgba(255, 107, 107, 0.15);
  border-color: #ff6b6b;
  transform: scale(1.05);
}

.remove-file:active {
  transform: scale(0.95);
}

/* COMPACT FILE INPUT (FINAL FIX) */

.file-input-row.compact {
  position: relative;
  margin-bottom: 10px;
}

.file-input-row.compact input[type="file"] {
  width: 100%;
  height: 44px;
  padding: 12px 44px 12px 16px;

  border-radius: 10px;
  border: 1px solid #2a2a2a;

  background: linear-gradient(180deg, #0f0f0f, #0b0b0b);
  color: #ccc;
  font-size: 13px;
}

.file-input-row.compact input[type="file"]::-webkit-file-upload-button {
  padding: 6px 12px;
  margin-right: 10px;

  border-radius: 6px;
  border: none;

  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 12px;
}

.file-input-row.compact .remove-file {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);

  width: 22px;
  height: 22px;

  border-radius: 50%;
  border: 1px solid rgba(255, 107, 107, 0.35);
  background: transparent;

  color: #ff6b6b;
  font-size: 14px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  opacity: 0.6;
}

.file-input-row.compact .remove-file:hover {
  opacity: 1;
  background: rgba(255, 107, 107, 0.15);
}

/* FILE INPUT – HOVER LIKE BUTTONS */

.file-input-row.compact input[type="file"]::-webkit-file-upload-button {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.file-input-row.compact input[type="file"]:hover::-webkit-file-upload-button {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.file-input-row.compact input[type="file"]::-webkit-file-upload-button {
  cursor: pointer;
}

.file-list {
  display: none;
}



