/* Theme Name: Play Camp */
html,
body {
  scroll-behavior: smooth;
  /* scroll-snap-type: y mandatory; */
  height: 100%; /* Ensure the body takes full height */
}

img {
  max-width: 100%;
}
:root {
  --playcamp-color-1: #6531f7;
  --playcamp-color-2: #00d084;
  --playcamp-color-3: #ff6900;
  --playcamp-color-4: #0693e3;
  --playcamp-color-5: #ff0024;
}
body {
  font-family: "Inter";
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Grandstander";
  margin-bottom: 35px;
}
h3 {
  font-family: "Grandstander";
  font-size: 24px;
  font-weight: 700;
}

.play-color-1 {
  color: var(--playcamp-color-1);
}
.play-color-2 {
  color: var(--playcamp-color-2);
}
.play-color-3 {
  color: var(--playcamp-color-3);
}
.play-color-4 {
  color: var(--playcamp-color-4);
}
.play-color-5 {
  color: var(--playcamp-color-5);
}

.play-background-1 {
  background-color: var(--playcamp-color-1);
}
.play-background-2 {
  background-color: var(--playcamp-color-2);
}
.play-background-3 {
  background-color: var(--playcamp-color-3);
}
.play-background-4 {
  background-color: var(--playcamp-color-4);
}
.play-background-5 {
  background-color: var(--playcamp-color-5);
}

.playcamp-header {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  top: 0;
  height: 70px;
  align-items: center;
  display: flex;
  background-color: white;
}
.admin-bar .playcamp-header {
  top: 32px;
  background-color: white;
}
.playcamp-header nav li a {
  font-family: "Inter";
}
#mobNav {
  list-style: none;
  padding: 0;
}

header .navbar ul > li:first-of-type a,
#mobNav > li:first-of-type a,
.purple_theme h3,
.purple_theme h2,
.purple_theme h1 {
  color: var(--playcamp-color-1);
}
header .navbar ul > li:nth-of-type(2) a,
#mobNav > li:nth-of-type(2) a,
.green_theme h3,
.green_theme h2,
.green_theme h1 {
  color: var(--playcamp-color-2);
}
header .navbar ul > li:nth-of-type(3) a,
#mobNav > li:nth-of-type(3) a,
.orange_theme h3,
.orange_theme h2,
.orange_theme h1 {
  color: var(--playcamp-color-3);
}
header .navbar ul > li:nth-of-type(4) a,
#mobNav > li:nth-of-type(4) a,
.blue_theme h3,
.blue_theme h2,
.blue_theme h1 {
  color: var(--playcamp-color-4);
}
header .navbar ul > li:nth-of-type(5) a,
#mobNav > li:nth-of-type(5) a,
.red_theme h3,
.red_theme h2,
.red_theme h1 {
  color: var(--playcamp-color-5);
}

header .navbar li {
  list-style: none;
}

header .navbar ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
}

header .navbar li a,
#mobNav a {
  text-decoration: none;
  display: block;
  font-size: 16px;
  font-weight: 700;
}
#mobNav a {
  line-height: 40px;
}

header .site-logo {
  top: 0;
}

header .menu-header-container {
  width: 100%;
}

/* ===== SUBMENIURI DESKTOP ===== */
header .navbar li {
  position: relative;
}

header .navbar .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 14px 0 6px;
  margin: 0;
  z-index: 1001;
  flex-direction: column;
}

header .navbar li:hover > .sub-menu {
  display: flex;
}

header .navbar .sub-menu li {
  width: 100%;
}

header .navbar .sub-menu li a {
  font-size: 14px;
  font-weight: 500;
  padding: 9px 20px;
  color: #333 !important;
  white-space: nowrap;
  border-radius: 0;
}

header .navbar .sub-menu li a:hover {
  color: var(--playcamp-color-1) !important;
  background-color: #f5f0ff;
}

header .navbar li.menu-item-has-children > a::after {
  content: " ▾";
  font-size: 11px;
  opacity: 0.6;
}

/* ===== SUBMENIURI MOBIL (offcanvas) ===== */
#mobNav .sub-menu {
  list-style: none;
  padding-left: 14px;
  margin: 0;
  border-left: 3px solid var(--playcamp-color-1);
  margin-bottom: 6px;
}

#mobNav .sub-menu li a {
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 32px;
  color: #555 !important;
}

#mobNav li.menu-item-has-children > a::after {
  content: " ▾";
  font-size: 11px;
  opacity: 0.6;
}

.playcamp-header .contact a {
  text-decoration: none;
}
.playcamp-header .contact .contact-text {
  line-height: 21px;
}
.playcamp-header .contact .call {
  color: var(--playcamp-color-3);
  font-size: 18px;
  font-weight: bold;
}
.playcamp-header .contact .number {
  color: var(--playcamp-color-1);
  font-size: 12px;
  font-weight: bold;
}
section.play-screen {
  width: 100%;
  min-height: 100vh;

  position: relative;
  /* Snap to the start of each section */

  display: flex; /* Optional: Center content vertically */
  flex-direction: column; /* Optional: Align content properly */
}

section.play-screen.play-snap {
  scroll-snap-align: start;
}

section.play-screen.purple_theme {
  background-color: var(--playcamp-color-1);
}
section.play-screen.green_theme {
  background-color: var(--playcamp-color-2);
}
section.play-screen.orange_theme {
  background-color: var(--playcamp-color-3);
}
section.play-screen.blue_theme {
  background-color: var(--playcamp-color-4);
}
section.play-screen.red_theme {
  background-color: var(--playcamp-color-5);
}

.play-screen.intro .video_background {
  filter: blur(5px);
}
.play-screen .video_background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.play-screen .video_background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover; /* For older Opera browsers */
  object-fit: cover;
  opacity: 0.5;
}

.play-screen .play-screen-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-screen-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  height: 100%;
}

.play-screen.left_text .play-screen-text-container {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.play-screen.left_text img.image-2 {
  border-top-right-radius: 50px;
}
.play-screen.left_text img.image-4 {
  border-bottom-right-radius: 50px;
}
.play-screen.right_text .play-screen-text-container {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
.play-screen.right_text img.image-1 {
  border-top-left-radius: 50px;
}
.play-screen.right_text img.image-3 {
  border-bottom-left-radius: 50px;
}
.play-screen.center_text img.image-1 {
  border-top-left-radius: 50px;
}
.play-screen.center_text img.image-3 {
  border-bottom-left-radius: 50px;
}
.play-screen.center_text img.image-3 {
  border-top-right-radius: 50px;
}
.play-screen.center_text img.image-4 {
  border-bottom-right-radius: 50px;
}
.play-screen.full-text .play-screen-text-container {
  border-radius: 50px;
}

.play-screen .play-screen-text-container {
  padding: 75px;
  font-size: 18px;
  font-family: Inter;
  line-height: 30px;
  max-height: calc(100vh - 300px);
}

.play-map.play-screen .play-screen-text-container {
  padding: 0px;
  font-size: 16px;
  font-family: Inter;
  line-height: 30px;
  max-height: calc(100vh - 300px);
}
.play-screen .play-screen-text-container .play-screen-text {
  height: auto;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.play-menu-list {
  list-style: none;
  padding: 0;
}
.play-menu-list li {
  position: relative;
  margin-bottom: 10px;
  padding: 8px 0;
  background-color: #f8f9fa;
  width: 100%;
  float: left;
}
.play-menu-list li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-bottom: 1px dotted #333;
  z-index: 0;
}
.play-menu-item,
.play-menu-price {
  position: relative;
  z-index: 1;
  background-color: #f8f9fa;
  padding: 0 10px;
}
.play-menu-item {
  float: left;
}
.play-menu-price {
  float: right;
}

/* width */
.play-screen.purple_theme .play-screen-text::-webkit-scrollbar {
  width: 5px;
  height: 20px;
}

/* Track */
.play-screen.purple_theme .play-screen-text::-webkit-scrollbar-track {
  box-shadow: none;
  border-radius: 10px;
}

/* Handle */
.play-screen.purple_theme .play-screen-text::-webkit-scrollbar-thumb {
  background: var(--playcamp-color-1);
  border-radius: 10px;
  height: 10px;
}

/* width */
.play-screen.green_theme .play-screen-text::-webkit-scrollbar {
  width: 5px;
  height: 20px;
}

/* Track */
.play-screen.green_theme .play-screen-text::-webkit-scrollbar-track {
  box-shadow: none;
  border-radius: 10px;
}

/* Handle */
.play-screen.green_theme .play-screen-text::-webkit-scrollbar-thumb {
  background: var(--playcamp-color-2);
  border-radius: 10px;
  height: 10px;
}

#map {
  width: 100%;
  height: 581px;
  position: relative;
  z-index: 1;
  border-radius: 50px;
}

.map-friends {
  background-size: 100%;
  background-repeat: no-repeat;
  min-height: 150px;
  height: 100%;
}

.mobile-header-contact {
  right: 0px;
  top: 10px;
}

.intro-text {
  font-size: 30px;
  font-weight: bold;
  font-family: Grandstander;
  color: white;
  text-align: center;
}

.intro-tag {
  color: white;
}
.play-screen-text-container {
  position: relative;
}
.play-screen-text-container::after {
  content: " ";
  position: absolute;
  bottom: 50px;
  width: 95%;
  z-index: 1111;
  background-image: linear-gradient(transparent, white);
  height: 30px;
}
.full-height .play-screen-text-container::after {
  display: none;
}
.play-map .play-screen-text-container::after {
  bottom: 0px;
  width: 100%;
}

.party-list-container {
  padding: 30px 30px;
  font-size: 14px;

  border: solid 1px;
  border-radius: 50px;
  background-color: var(--playcamp-color-1);
  color: white;
  height: 100%;
}
.party-list-container.package-cosmos {
  background-color: var(--playcamp-color-2);
}
.party-list-container.package-universe {
  background-color: var(--playcamp-color-4);
}
.party-list {
  padding-left: 0;
}
.party-list > li {
  border-bottom: dotted 1px;
  padding-bottom: 5px;
  line-height: 24px;
  list-style: none;
}

.party-list li box-icon {
  fill: white !important;
  line-height: 20px;
}

.full-height .play-screen-text-container {
  max-height: unset;
}
.play-screen.full-height .play-screen-content {
  position: relative;
}
.play-screen.full-height .play-screen-text-container .play-screen-text {
  max-height: unset;
}

.side-note {
  font-size: 14px;
}

.side-note box-icon {
  width: 24px;
  height: 24px;
}

.party-call {
  font-family: "Grandstander";
}
.party-call box-icon {
  color: white;
  fill: white;
}


.playcamp-page-content{
  padding-top: 72px;

}
.playcamp-page-content .small-container{
  max-width: 740px;
}
.page-header-content{
  padding-top: 72px;
  padding-bottom: 72px;
  text-align: center;
}
.panorama-container iframe{
  border-radius: 10px;
}
.playcamp-page-header{
background-color: var(--playcamp-color-1);
color:white;
}
.page-description{
  max-width: 720px;
  margin:auto;
  font-size: 18px;
  font-weight: 100;
}

.playcamp-footer{
  background-color:var(--playcamp-color-1);
  color:white;
  font-size: 14px;
}
.playcamp-footer a{
  color: var(--playcamp-color-3);
  text-decoration: none;

}

.playcamp-default .page-body-inner p{
  max-width:800px;
  margin:auto;
  margin-bottom: 1rem;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  font-weight: 400;
}

/* Pagina Petreceri - Template Dedicat */
.playcamp-petreceri .petreceri-header {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--playcamp-color-1) 0%, var(--playcamp-color-4) 100%);
  overflow: hidden;
}

.playcamp-petreceri .petreceri-header .video_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

.playcamp-petreceri .petreceri-header .video_background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.playcamp-petreceri .petreceri-header .container {
  position: relative;
  z-index: 1;
}

.playcamp-petreceri .petreceri-header .page-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.playcamp-petreceri .petreceri-header .page-description {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.playcamp-petreceri .petreceri-body {
  background-color: #f8f9fa;
}

.playcamp-petreceri .discount-notice {
  font-size: 20px;
  padding: 20px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.playcamp-petreceri .informatii-aditionale {
  background-color: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.playcamp-petreceri .informatii-aditionale h2,
.playcamp-petreceri .informatii-aditionale h3 {
  color: var(--playcamp-color-1);
}

/* Responsive pentru pagina petreceri */
@media (max-width: 991px) {
  .playcamp-petreceri .petreceri-header {
    padding: 80px 0 60px;
  }
  
  .playcamp-petreceri .petreceri-header .page-title {
    font-size: 36px;
  }
  
  .playcamp-petreceri .petreceri-header .page-description {
    font-size: 18px;
  }
}

/* ============================================================
   DESIGN PREVIEW — propunere grafică completă
   Activ la ?design_preview=1
   ============================================================ */

/* ── HEADER ──────────────────────────────────────────────── */

/* Bandă culorilor în partea de sus a header-ului */
.design-preview .playcamp-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right,
    var(--playcamp-color-1) 0%,
    var(--playcamp-color-4) 25%,
    var(--playcamp-color-2) 50%,
    var(--playcamp-color-3) 75%,
    var(--playcamp-color-5) 100%
  );
  z-index: 2;
}

.design-preview .playcamp-header {
  height: 78px;
}
.design-preview.admin-bar .playcamp-header {
  top: 32px;
}

/* ── NAVIGAȚIE DESKTOP — underline animat la hover ────────── */

/* position: relative pe <a> e necesar pentru ::before absolut */
.design-preview header .navbar li a {
  position: relative;
  transition: opacity 0.15s;
}

/* Folosim ::before (nu ::after — acela e rezervat pentru ▾ arrow) */
.design-preview header .navbar li a::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  right: 50%;
  height: 3px;
  border-radius: 2px;
  transition: left 0.25s ease, right 0.25s ease;
}

.design-preview header .navbar ul > li:nth-of-type(1) > a::before { background: var(--playcamp-color-1); }
.design-preview header .navbar ul > li:nth-of-type(2) > a::before { background: var(--playcamp-color-2); }
.design-preview header .navbar ul > li:nth-of-type(3) > a::before { background: var(--playcamp-color-3); }
.design-preview header .navbar ul > li:nth-of-type(4) > a::before { background: var(--playcamp-color-4); }
.design-preview header .navbar ul > li:nth-of-type(5) > a::before { background: var(--playcamp-color-5); }

.design-preview header .navbar li:hover > a::before {
  left: 0;
  right: 0;
}

/* Linkurile din sub-meniu nu au underline animat */
.design-preview header .navbar .sub-menu li a::before {
  display: none;
}

/* ── CTA TELEFON DESKTOP — pill portocaliu ───────────────── */

.design-preview .playcamp-header .contact .icon {
  display: none;
}
.design-preview .playcamp-header .contact-text {
  line-height: unset;
}
.design-preview .playcamp-header .contact .call-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--playcamp-color-3);
  padding: 7px 22px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 105, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.design-preview .playcamp-header .contact .call-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 105, 0, 0.48);
}
.design-preview .playcamp-header .contact .call {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.design-preview .playcamp-header .contact .number {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  font-family: "Grandstander";
}

/* ── SECȚIUNI PLAY-SCREEN — frosted glass ────────────────── */

.design-preview .play-screen .play-screen-text-container {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 48px rgba(0, 0, 0, 0.2);
}

/* ── GALERIE — hover scale ───────────────────────────────── */

.design-preview .play-screen-gallery img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.design-preview .play-screen-gallery img:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

/* ── SCROLL DOWN — animație pulsare ─────────────────────── */

@keyframes dp-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.65; }
}
.design-preview .scroll-down-container {
  animation: dp-pulse 2s ease-in-out infinite;
  min-width: 60px !important;
  min-height: 60px !important;
  cursor: pointer;
}

/* ── PACHETE PETRECERI — hover lift ─────────────────────── */

.design-preview .party-list-container {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}
.design-preview .party-list-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

/* ── FOOTER — gradient profund ───────────────────────────── */

.design-preview .playcamp-footer {
  background: linear-gradient(135deg, #3d1aad 0%, var(--playcamp-color-1) 60%, var(--playcamp-color-4) 100%);
}

/* ── MOBIL — CTA pill ────────────────────────────────────── */

.design-preview .dp-call-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: var(--playcamp-color-3);
  color: white !important;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  font-family: "Grandstander";
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 105, 0, 0.35);
}

/* ── MOBIL — offcanvas ───────────────────────────────────── */

.design-preview #playMenu .offcanvas-header {
  border-bottom: 1px solid #eee;
  padding: 14px 20px;
}

.design-preview #mobNav > li {
  border-bottom: 1px solid #f0f0f0;
  padding: 2px 0;
  position: relative;
}

/* Submeniuri colapsabile */
.design-preview #mobNav .sub-menu {
  display: none;
}
.design-preview #mobNav .sub-menu.dp-open {
  display: block;
}
.design-preview #mobNav li.menu-item-has-children {
  position: relative;
}
.design-preview .dp-submenu-toggle {
  position: absolute;
  right: 0;
  top: 4px;
  background: none;
  border: 2px solid var(--playcamp-color-1);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 18px;
  font-weight: 700;
  color: var(--playcamp-color-1);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── TIPOGRAFIE ȘI SPAȚIERE — mobil mic ─────────────────── */

@media (max-width: 575.98px) {
  .design-preview .intro-text {
    font-size: 26px;
    line-height: 1.3;
  }
  .design-preview h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .design-preview h3 {
    font-size: 19px;
    margin-bottom: 14px;
  }
  .design-preview .play-screen .play-screen-text-container {
    padding: 22px 18px 30px;
  }
  .design-preview .party-list-container {
    border-radius: 24px;
    padding: 22px 18px;
  }
  .design-preview .party-list-container h3 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .playcamp-petreceri .petreceri-header {
    padding: 60px 0 40px;
  }
  
  .playcamp-petreceri .petreceri-header .page-title {
    font-size: 28px;
  }
  
  .playcamp-petreceri .discount-notice {
    font-size: 16px;
    padding: 15px;
  }
  
  .playcamp-petreceri .informatii-aditionale {
    padding: 25px;
  }
}

/* === Tarife Template Styles === */
.playcamp-tarife .tarife-header {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--playcamp-color-2) 0%, var(--playcamp-color-4) 100%);
  overflow: hidden;
}

.playcamp-tarife .tarife-header .video_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.3;
}

.playcamp-tarife .tarife-header .video_background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.playcamp-tarife .tarife-header .page-header-content {
  position: relative;
  z-index: 2;
}

.playcamp-tarife .tarife-header .page-title {
  font-size: 48px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}

.playcamp-tarife .tarife-header .page-description {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.playcamp-tarife .tarife-body {
  background-color: #f8f9fa;
}

.playcamp-tarife .tarife-category {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.playcamp-tarife .tarife-category h2 {
  font-size: 28px;
  font-weight: bold;
  border-bottom: 3px solid var(--playcamp-color-2);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* Stiluri moderne doar pentru lista de tarife din pagina Tarife */
.playcamp-tarife .play-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.playcamp-tarife .play-menu-list li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 15px;
  background-color: white;
  border-radius: 12px;
  border-left: 4px solid var(--playcamp-color-2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  float: none;
  width: auto;
}

.playcamp-tarife .play-menu-list li::after {
  display: none;
}

.playcamp-tarife .play-menu-list li:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
  border-left-color: var(--playcamp-color-3);
}

.playcamp-tarife .play-menu-list li:last-child {
  margin-bottom: 0;
}

.playcamp-tarife .play-menu-item {
  flex: 1;
  min-width: 0;
  float: none;
  padding: 0;
}

.playcamp-tarife .play-menu-item strong {
  display: block;
  color: #2c3e50;
  font-size: 17px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.playcamp-tarife .play-menu-item small {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.5;
}

.playcamp-tarife .play-menu-price {
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  color: white;
  background: linear-gradient(135deg, var(--playcamp-color-3) 0%, var(--playcamp-color-5) 100%);
  padding: 12px 20px;
  border-radius: 10px;
  min-width: 110px;
  float: none;
  box-shadow: 0 3px 10px rgba(255,107,53,0.3);
}

.playcamp-tarife .play-menu-price small {
  display: block;
  font-size: 12px;
  font-weight: normal;
  color: rgba(255,255,255,0.9);
  margin-top: 4px;
  line-height: 1.3;
}

.playcamp-tarife .tarife-notes {
  background: white;
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--playcamp-color-2);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.playcamp-tarife .tarife-notes h3 {
  font-size: 24px;
  font-weight: bold;
}

.playcamp-tarife .tarife-notes box-icon {
  color: var(--playcamp-color-2);
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.playcamp-tarife .tarife-cta {
  background: linear-gradient(135deg, var(--playcamp-color-2) 0%, var(--playcamp-color-4) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.playcamp-tarife .tarife-cta h3 {
  color: white;
  margin-bottom: 20px;
}

.playcamp-tarife .tarife-cta .btn {
  background: white;
  color: var(--playcamp-color-2);
  border: none;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.playcamp-tarife .tarife-cta .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.playcamp-tarife .tarife-cta .btn box-icon {
  width: 24px;
  height: 24px;
}

/* Responsive Styles pentru Tarife */
@media (max-width: 991px) {
  .playcamp-tarife .tarife-header {
    padding: 100px 0 60px;
  }
  
  .playcamp-tarife .tarife-header .page-title {
    font-size: 40px;
  }
  
  .playcamp-tarife .tarife-category {
    padding: 25px;
  }
  
  .playcamp-tarife .tarife-category h2 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .playcamp-tarife .tarife-header {
    padding: 80px 0 40px;
  }
  
  .playcamp-tarife .tarife-header .page-title {
    font-size: 32px;
  }
  
  .playcamp-tarife .tarife-header .page-description {
    font-size: 18px;
  }
  
  .playcamp-tarife .tarife-category {
    padding: 20px;
  }
  
  .playcamp-tarife .play-menu-list li {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 50px 15px 15px 15px;
    gap: 12px;
    min-height: 70px;
  }
  
  .playcamp-tarife .play-menu-price {
    position: absolute;
    top: 10px;
    right: 10px;
    min-width: 80px;
    max-width: 90px;
    padding: 8px 12px;
    font-size: 16px;
    line-height: 1.2;
  }
  
  .playcamp-tarife .play-menu-price .price-note-desktop {
    display: none;
  }
  
  .playcamp-tarife .play-menu-item .price-note-mobile {
    display: inline;
    color: #6c757d;
    font-style: italic;
  }
  
  .playcamp-tarife .play-menu-item {
    width: 100%;
    padding-right: 0;
  }
  
  .playcamp-tarife .play-menu-item strong {
    font-size: 15px;
    line-height: 1.3;
  }
  
  .playcamp-tarife .play-menu-item small {
    font-size: 13px;
  }
  
  .playcamp-tarife .tarife-notes {
    padding: 20px;
  }
  
  .playcamp-tarife .tarife-cta .btn {
    font-size: 18px;
    padding: 12px 30px;
  }
}