
  :root {
    --primary: #c4a166;
    --accent: #c4a166;
    --bg: #121011;
    --text: #fff8e1;
    --shadow: 0 4px 24px rgba(196,161,102,0.10);
  }
  * { box-sizing: border-box; }
  body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    background: var(--bg);
    color: var(--text);
  }
  header {
    background: linear-gradient(120deg, var(--bg) 60%, var(--primary) 100%);
    color: var(--primary);
    padding: 60px 20px 40px 20px;
    text-align: center;
    box-shadow: var(--shadow);
  }
  header h1 { font-size: 2.8rem; margin: 0 0 10px; color: var(--primary); font-family:'Dancing Script', cursive; font-weight:400;}
  header p { font-size: 1.2rem; margin: 0 0 20px; color: var(--text); }
  h1 {
    font-family: 'Dancing Script', cursive !important;
    font-weight: 400;
  }
  
  h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
  }
  
  p, div, span, a, button, input, textarea, label {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
  }
  
  /* Override for spans that should use Montserrat Light */
  span[style*="font-weight:400"] {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 300 !important;
  }
  
  /* Override for navigation links to use Roboto Thin */
  nav a {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 100 !important;
  }
  .hero-btn {
    background: var(--primary);
    color: var(--bg);
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 400;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: background 0.2s, color 0.2s;
  }
  .hero-btn:hover { background: var(--bg); color: var(--primary); border: 1px solid var(--primary); }
  main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 16px;
    padding-top: 80px;
  }
  @media (max-width: 700px) {
    main {
      padding-top: 60px;
    }
  }
  header #mainHeader > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 16px 0 16px;
  }
  header #mainHeader > div > div {
    flex: 1;
    min-width: 260px;
    text-align: center;
    max-width: 420px;
  }
  

  section { margin-bottom: 60px; }
  h2 { color: var(--primary); margin-bottom: 18px; }
  .about {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
  }
  .about img {
    width: 260px;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .about-text { flex: 1; min-width: 220px; }
  .services {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: space-between;
  }
  .service {
    background: #1d1a16;
    border-radius: 16px;
    box-shadow: var(--shadow);
    flex: 1 1 220px;
    min-width: 180px;
    padding: 24px 18px;
    text-align: center;
    transition: transform 0.15s;
    color: var(--text);
  }
  .service:hover { transform: translateY(-6px) scale(1.03); background: var(--primary); color: var(--bg); }
  .service img { width: 60px; margin-bottom: 12px; }
  
  .gallery img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
    aspect-ratio: 1/1;
    object-fit: contain;
  }
  .gallery-video {
    width: 100%;
    max-width: 420px;
    max-height: 420px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    aspect-ratio: 1/1;
    object-fit: contain;
    background: #000;
    display: block;
    margin: 0 auto;
  }
  .price-list {
    background: #1d1a16;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 24px 18px;
    max-width: 500px;
    margin: 0 auto;
    color: var(--text);
  }
  .price-list table { width: 100%; border-collapse: collapse; }
  .price-list th, .price-list td { padding: 10px 6px; text-align: left; }
  .price-list th { color: var(--primary); font-weight: 400; }
  .price-list tr:not(:last-child) { border-bottom: 1px solid #333; }
  .contact {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
  }
  .contact-info { flex: 1; min-width: 220px; }
  .contact-form { flex: 1; min-width: 220px; }
  .contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #c4a166;
    font-size: 1rem;
    background: #181612;
    color: var(--text);
  }
  .contact-form button {
    background: var(--primary);
    color: var(--bg);
    border: none;
    padding: 12px 28px;
    border-radius: 24px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 400;
  }
  .reviews {
    background: #1d1a16;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 24px 18px;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text);
  }
  .review {
    font-style: italic;
    margin-bottom: 18px;
  }
  .review:last-child { margin-bottom: 0; }
  .socials {
    text-align: center;
    margin-top: 30px;
  }
  .socials a {
    display: inline-block;
    margin: 0 10px;
    color: var(--primary);
    font-size: 2rem;
    text-decoration: none;
    transition: color 0.2s;
  }
  .socials a:hover { color: var(--text); }
  @media (max-width: 800px) {
    .about, .contact { flex-direction: column; }
    .services { flex-direction: column; }
  }
  @media (max-width: 700px) {
    header.mobile-header {
      /* Specifični stilovi za mobilni prikaz */
      padding: 70px 6vw 12px 6vw !important;
    }
    header.mobile-header nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      background: #121011;
      z-index: 2000;
      text-align: center;
      box-shadow: 0 2px 12px rgba(0,0,0,0.13);
      padding: 0;
    }
    header.mobile-header nav a {
      display: inline-block;
      color: #c4a166 !important;
      font-size: 1.15rem;
      margin: 0 10px;
      padding: 14px 0;
    }
    header.mobile-header nav {
      display: block !important;
    }
    .gallery {
      display: block;
      position: relative;
      max-width: 95vw;
      margin: 0 auto;
      overflow: hidden;
      height: 320px;
    }
    .gallery img {
      width: 100%;
      height: 420px;
      object-fit: contain;
      border-radius: 12px;
      display: none;
      position: absolute;
      left: 0; top: 0;
      transition: opacity 0.4s;
    }
    .gallery img.active {
      display: block;
      position: relative;
      opacity: 1;
      z-index: 2;
    }
    .gallery-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(18,16,17,0.92);
      color: #c4a166;
      border: 2px solid #c4a166;
      font-size: 2.4rem;
      border-radius: 50%;
      width: 54px;
      height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 1000;
      box-shadow: 0 4px 18px rgba(0,0,0,0.18);
      opacity: 1;
      pointer-events: auto;
      transition: background 0.2s, color 0.2s, border 0.2s, opacity 0.2s;
    }
    .gallery-arrow.left { left: 18px; }
    .gallery-arrow.right { right: 18px; }
    .gallery-arrow:hover {
      background: #c4a166;
      color: #181612;
      border: 2px solid #fff8e1;
    }
    .gallery-arrow[style*="hidden"] {
      opacity: 0;
      pointer-events: none;
    }
  }

  .gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(18,16,17,0.92);
    color: #c4a166;
    border: 2px solid #c4a166;
    font-size: 2.4rem;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    opacity: 1;
    pointer-events: auto;
    transition: background 0.2s, color 0.2s, border 0.2s, opacity 0.2s;
  }
  .gallery-arrow.left { left: 18px; }
  .gallery-arrow.right { right: 18px; }
  .gallery-arrow:hover {
    background: #c4a166;
    color: #181612;
    border: 2px solid #fff8e1;
  }
  .gallery-arrow[style*="hidden"] {
    opacity: 0;
    pointer-events: none;
  }

.about-new {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 60px;
margin-top: 30px;
}
.about-img-wrap {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
margin-bottom: 0px;
}
.about-img-main {
width: 340px;
max-width: 90vw;
border-radius: 28px;
box-shadow: 0 8px 32px rgba(196,161,102,0.18), 0 2px 8px rgba(0,0,0,0.10);
border: 4px solid var(--primary);
background: #181612;
object-fit: cover;
margin-bottom: -40px;
z-index: 2;
position: relative;
}
.about-card {
background: #1d1a16;
border-radius: 20px;
box-shadow: 0 4px 24px rgba(196,161,102,0.13);
padding: 38px 28px 28px 28px;
max-width: 820px;
margin: 0 auto;
color: var(--text);
border: 2px solid var(--primary);
margin-top: -30px;
z-index: 1;
position: relative;
text-align: center;
}
.about-title {
color: var(--primary);
font-size: 2.1rem;
margin-bottom: 16px;
font-weight: 700;
letter-spacing: 1px;
}
.about-desc {
font-size: 1.13rem;
line-height: 1.7;
margin-bottom: 18px;
}
.about-signature {
color: var(--primary);
font-family: 'Dancing Script', cursive;
font-size: 2rem;
margin-top: 10px;
letter-spacing: 1px;
}
@media (max-width: 700px) {
.about-img-main {
  width: 90vw;
  max-width: 98vw;
  margin-bottom: -30px;
}
.about-card {
  padding: 28px 8vw 22px 8vw;
  max-width: 98vw;
  margin-top: -20px;
}
.about-title {
  font-size: 1.5rem;
}
.about-signature {
  font-size: 1.3rem;
}
}

.floating-book-btn {
position: fixed;
top: 28px;
right: 32px;
z-index: 3000;
background: var(--primary);
color: var(--bg);
border: none;
border-radius: 28px;
padding: 14px 36px;
font-size: 1.15rem;
font-weight: bold;
background: linear-gradient(120deg, var(--bg) 1%, var(--primary) 100%);
  color: var(--primary);

  text-align: center;
  box-shadow: var(--shadow);
cursor: pointer;
opacity: 0;
transform: translateY(-30px);
animation: bookBtnFadeIn 1s cubic-bezier(.4,1.4,.6,1) 0.3s forwards;
transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.floating-book-btn:hover {
background: var(--bg);
color: var(--primary);
box-shadow: 0 6px 32px rgba(196,161,102,0.25);
border: 1.5px solid var(--primary);
}
@keyframes bookBtnFadeIn {
from { opacity: 0; transform: translateY(-30px); }
to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 700px) {
.floating-book-btn {
  top: 360px;
  right: 10px;
  padding: 12px 40px;
  font-size: 1rem;
}
}

.gallery {
  position: relative;
  max-width: 440px;
  min-width: 220px;
  min-height: 420px;
  max-height: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #181612;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(196,161,102,0.13);
}
.gallery-slide {
  max-width: 420px;
  max-height: 420px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  object-fit: contain;
  background: #000;
  display: block;
  margin: 0 auto;
}

.service-modal {
  position: fixed;
  top: 150px; left: 500px; width: 100vw; height: 100vh;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.service-modal[style*="block"] {
  pointer-events: auto;
}
.service-modal-overlay {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(18,16,17,0.55);
  z-index: 1;
}
.service-modal-content {
  position: relative;
  z-index: 2;
  background: #181612;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(196,161,102,0.18);
  padding: 36px 28px 28px 28px;
  max-width: 420px;
  width: 92vw;
  min-width: 220px;
  text-align: center;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-modal-close {
  position: absolute;
  top: 12px; right: 18px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 3;
}
.service-modal-slideshow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  gap: 12px;
}
#modalSlideImg {
  max-width: 320px;
  max-height: 320px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  object-fit: contain;
  background: #000;
}
#modalSlideVid {
  max-width: 320px;
  max-height: 320px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  object-fit: contain;
  background: #000;
}
.modal-arrow {
  background: rgba(18,16,17,0.92);
  color: #c4a166;
  border: 2px solid #c4a166;
  font-size: 2rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  opacity: 1;
  pointer-events: auto;
  transition: background 0.2s, color 0.2s, border 0.2s, opacity 0.2s;
}
.modal-arrow:hover {
  background: #c4a166;
  color: #181612;
  border: 2px solid #fff8e1;
}
@media (max-width: 600px) {
  .service-modal {
    position: fixed;
    top: 150px; left: 500px; width: 100vw; height: 100vh;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  .service-modal-content {
    max-width: 98vw;
    padding: 18px 4vw 18px 4vw;
  }
  #modalSlideImg {
    max-width: 90vw;
    max-height: 60vw;
  }
}
@media (max-width: 700px) {
  .service-modal-content {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    max-width: 96vw;
    width: 96vw;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
  }
  #modalSlideImg, .service-modal-content video {
    max-width: 90vw;
    max-height: 60vh;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .modal-arrow {
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
    z-index: 10;
    left: 8px;
    right: auto;
  }
  .modal-arrow.right {
    left: auto;
    right: 8px;
  }
}

.service-svg { transition: transform 0.3s; }
.service:hover .service-svg { transform: translateY(-6px) scale(1.08); }


.price-card {
  background: #1d1a16;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px 18px;
  max-width: 500px;
  margin: 32px auto;
  color: var(--text);
  transition: box-shadow 0.2s;
}
.price-card h2 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.35rem;
  text-align: center;
}
.price-card table { width: 100%; border-collapse: collapse; }
.price-card th, .price-card td { padding: 10px 6px; text-align: left; }
  .price-card th { color: var(--primary); font-weight: 400; }
.price-card tr:not(:last-child) { border-bottom: 1px solid #333; }

/* Stilovi za sekciju salona */
.salon-section {
  margin-bottom: 80px;
  text-align: center;
}

.salon-gallery {
  position: relative;
  max-width: 420px;
  min-width: 280px;
  min-height: 320px;
  max-height: 320px;
  margin: 0 auto;
  background: #181612;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(196,161,102,0.13);
  overflow: hidden;
  padding: 10px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.salon-gallery .salon-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  max-width: 400px;
  max-height: 300px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center;
  background: #000;
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 1;
  min-height: 200px;
  min-width: 200px;
}

.salon-gallery .salon-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(18,16,17,0.92);
  color: #c4a166;
  border: 2px solid #c4a166;
  font-size: 2.4rem;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  opacity: 1;
  pointer-events: auto;
  transition: background 0.2s, color 0.2s, border 0.2s, opacity 0.2s;
}

.salon-gallery .salon-arrow.left { 
  left: 18px; 
}

.salon-gallery .salon-arrow.right { 
  right: 18px; 
}

.salon-gallery .salon-arrow:hover {
  background: #c4a166;
  color: #181612;
  border: 2px solid #fff8e1;
}

.salon-gallery .salon-arrow[style*="hidden"] {
  opacity: 0;
  pointer-events: none;
}

/* Opšti stilovi za salon strelice */
.salon-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: rgba(18,16,17,0.95) !important;
  color: #c4a166 !important;
  border: 2px solid #c4a166 !important;
  font-size: 1.8rem !important;
  border-radius: 50% !important;
  width: 48px !important;
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 1000 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transition: all 0.3s ease !important;

}

.salon-arrow.left { 
  left: 12px !important; 
}

.salon-arrow.right { 
  right: 12px !important; 
}

.salon-arrow:hover {
  background: #c4a166 !important;
  color: #181612 !important;
  border: 2px solid #fff8e1 !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 6px 25px rgba(196,161,102,0.4) !important;
}

/* Opšti stilovi za salon slike */
.salon-slide {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: calc(100% - 20px) !important;
  height: calc(100% - 20px) !important;
  max-width: 400px !important;
  max-height: 300px !important;
  border-radius: 12px !important;
  box-shadow: var(--shadow) !important;
  object-fit: cover !important;
  object-position: center !important;
  background: #000 !important;
  display: block !important;
  opacity: 1 !important;
  transition: opacity 0.3s ease !important;
  min-height: 200px !important;
  min-width: 200px !important;
}



/* Stilovi za informacije o proizvodima */
.products-info {
  max-width: 1000px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.product-card {
  background: #1d1a16;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(196,161,102,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(196,161,102,0.2);
  border-color: var(--primary);
}

.product-icon {
  margin-bottom: 20px;
}

.product-card h4 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 400;
}

.product-card p {
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
}

.quality-message {
  background: linear-gradient(135deg, #1d1a16 0%, #2a2520 100%);
  border-radius: 16px;
  padding: 30px;
  margin-top: 40px;
  border-left: 4px solid var(--primary);
}

/* Responsive dizajn za salon sekciju */
@media (max-width: 700px) {
  .salon-gallery {
    max-width: 360px;
    min-height: 280px;
    max-height: 280px;
  }
  
  .salon-gallery .salon-slide {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    max-width: 340px;
    max-height: 260px;
  }
  
  .salon-gallery .salon-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }
  
  .salon-arrow {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.6rem !important;
  }
  
  .salon-slide {
    width: calc(100% - 20px) !important;
    height: calc(100% - 20px) !important;
    max-width: 340px !important;
    max-height: 260px !important;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product-card {
    padding: 25px 20px;
  }
  
  .quality-message {
    padding: 25px 20px;
  }
}

/* Popup styles */
.popup-overlay {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 5000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(18,16,17,0.7); /* Black w/ opacity */
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background-color: #1d1a16;
  margin: auto;
  padding: 30px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  width: 80%;
  max-width: 500px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(196,161,102,0.3);
  color: var(--text);
  animation: fadeInScale 0.4s ease-out forwards;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.popup-content h2 {
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.popup-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.popup-content strong {
  color: var(--primary);
  font-weight: 400;
}

.popup-content button {
  background: var(--primary);
  color: var(--bg);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1.05rem;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  font-weight: 500;
}

.popup-content button:hover {
  background: var(--bg);
  color: var(--primary);
  border: 1.5px solid var(--primary);
  box-shadow: 0 4px 20px rgba(196,161,102,0.2);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  color: var(--primary);
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.close-btn:hover, .close-btn:focus {
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 700px) {
  .popup-content {
    width: 95%;
    padding: 25px 15px;
  }
  .popup-content h2 {
    font-size: 1.8rem;
  }
  .popup-content p {
    font-size: 1rem;
  }
  .close-btn {
    font-size: 24px;
    top: 10px;
    right: 15px;
  }
}
