* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #f8f8f8;
  overflow-y: scroll;
}

li {
  list-style: none;
  margin-bottom: 10px;
}

p {
  margin-bottom: 10px;
}

.guest-view-container {
  position: relative;
  min-height: 100vh;
  overflow-y: auto;
  padding-bottom: 60px;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35vh;
  background-image: url('your-image.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  z-index: 1;
}


.guest-info-box {
  position: relative;
  z-index: 2;
  background: white;
  width: 95vw;
  border-radius: 20px 20px;
  padding: 32px 24px;
  max-width: 540px;
  margin: 0 auto;
  margin-top: 26vh;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25);
}

.property-name {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #222;
}

.address {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}

.section {
  margin-bottom: 28px;
}

.section h2 {
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
  color: #333;
}

.line {
  height: 1px;
  background-color: #ddd;
  margin-bottom: 14px;
}

.section p {
  font-size: 0.96rem;
  color: #444;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.section a {
  color: #a57c6e;
  text-decoration: none;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  font-size: 1rem;
  color: #444;
  flex-shrink: 0;
}

.section li {
  display: flex;
  align-items: center;
  font-size: 0.96rem;
  color: #444;
}

/* Accordion styles */
.accordion-section {
  margin-bottom: 24px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding-bottom: 6px;
  position: relative;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.accordion-header h2 {
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #333;
}

/* Fixed line under header */
.accordion-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background-color: #ddd;
}

.accordion-toggle {
  font-size: 1rem;
  color: #666;
  transition: transform 0.3s ease;
}

/* Rotera pilen vid öppning */
.accordion-section.active .accordion-toggle {
  transform: rotate(180deg);
}


/* Accordion-innehåll: nu utan extra linjer eller padding under */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-top 0.3s ease;
  padding-top: 0;
  padding-bottom: 0;
  border: none;
}

.accordion-content a {
  color: #bfa14b; /* Guldig ton */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.accordion-content a:hover {
  color: #d6ba64; /* Lite ljusare guld vid hover */
  text-decoration: underline;
}

.accordion-section.open .accordion-content {
  max-height: 999px; /* tillräckligt stort för alla sektioner */
  padding-top: 12px;
}

.checkout-cleaning p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.checkout-cleaning .checkout-note {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}

.checkout-cleaning ul {
  margin-top: 10px;
  padding-left: 20px;
}

.checkout-cleaning ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}
