/* ============================================
   GREEN VIEW HOMES — Main Stylesheet
   style.css
   ============================================ */

:root {
  --forest: #1a472a;
  --forest-mid: #2d6a4f;
  --forest-light: #40916c;
  --sage: #74c69d;
  --cream: #f8f5f0;
  --gold: #d4a853;
  --gold-light: #f0c674;
  --charcoal: #2c2c2c;
  --muted: #6b7280;
  --white: #ffffff;
}

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(26,71,42,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.nav-brand span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 400;
  display: block;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212,168,83,0.4) !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d2818 0%, #1a472a 50%, #2d6a4f 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,168,83,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(116,198,157,0.06) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  animation: fadeUp 0.7s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,83,0.15);
  border: 1px solid rgba(212,168,83,0.3);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--gold); }

.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 40px;
}
.hero-location .pin { color: var(--gold); font-size: 16px; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero-stat .label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero image grid */
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.hero-img {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.hero-img:hover img { transform: scale(1.05); }
.hero-img:first-child { grid-row: span 2; }

.hero-img-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.65);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal);
  padding: 15px 36px;
  border: none;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(212,168,83,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,168,83,0.5); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-book {
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  color: white;
  border: none;
  border-radius: 8px;
  padding: 13px 32px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(26,71,42,0.3);
}
.btn-book:hover { transform: translateY(-1px); box-shadow: 0 8px 25px rgba(26,71,42,0.4); }

.btn-room {
  background: var(--forest);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-room:hover { background: var(--forest-mid); transform: translateY(-1px); }

/* ============================================
   BOOKING BAR
   ============================================ */
.booking-section {
  background: var(--white);
  position: relative;
  z-index: 10;
}

.booking-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.booking-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  margin-top: -48px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
  animation: fadeUp 0.7s 0.2s ease both;
}

.booking-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 24px;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.form-group select,
.form-group input {
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group select:focus,
.form-group input:focus { border-color: var(--forest); background: white; }

#pricePreview {
  margin-top: 16px;
  display: none;
  background: rgba(26,71,42,0.06);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--forest);
  font-weight: 600;
}

/* ============================================
   AMENITIES STRIP
   ============================================ */
.amenities-strip {
  background: var(--forest);
  padding: 20px 48px;
}
.amenities-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
}
.amenity-icon { font-size: 18px; }

/* ============================================
   SECTION COMMONS
   ============================================ */
.section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(26,71,42,0.08);
  color: var(--forest);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-title .green { color: var(--forest); }

.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   ROOM CARDS
   ============================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.room-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.room-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.room-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.room-card:hover .room-img-wrap img { transform: scale(1.07); }

.room-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--forest);
  color: white;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.room-badge.suite {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal);
}

.room-body { padding: 24px; }
.room-type {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.room-occupancy {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.room-feat {
  background: rgba(26,71,42,0.06);
  color: var(--forest-mid);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.room-price { font-family: 'Playfair Display', serif; }
.room-price .amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--forest);
}
.room-price .per { font-size: 13px; color: var(--muted); }

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  background: #f0ede8;
  padding: 80px 0;
}
.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 12px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,71,42,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 28px;
  color: white;
}
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item.wide { grid-column: span 2; }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 30px 16px 14px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   FACILITIES
   ============================================ */
.facilities-section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.facilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.facilities-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fac-img {
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
}
.fac-img:first-child { grid-column: span 2; height: 240px; }
.fac-img img { width: 100%; height: 100%; object-fit: cover; }

.facilities-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.2;
}
.facilities-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.facilities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.fac-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.fac-check {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}
.fac-text {
  font-size: 14px;
  color: var(--charcoal);
  font-weight: 500;
}

/* ============================================
   POLICIES STRIP
   ============================================ */
.policies-strip {
  background: linear-gradient(135deg, var(--forest), #0d2818);
  padding: 60px 48px;
}
.policies-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.policy-item {
  padding: 32px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.policy-icon { font-size: 40px; margin-bottom: 12px; }
.policy-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 8px;
}
.policy-value {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}
.policy-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(26,71,42,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-detail h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.contact-detail p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.map-placeholder {
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  background: #e8e8e8;
}
.map-placeholder iframe {
  width: 100%; height: 100%; border: none;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 40px 48px;
  text-align: center;
}
footer .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
footer p { font-size: 13px; }

/* ============================================
   BOOKING MODAL
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal {
  background: white;
  /* border-radius: 20px; */
  max-width: 560px;
  width: 100%;
  padding: 48px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 32px; height: 32px;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.modal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.modal .subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}

.modal-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.modal-form input,
.modal-form select {
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.modal-form input:focus,
.modal-form select:focus { border-color: var(--forest); }

.modal-form label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 6px;
}

.modal-total {
  background: rgba(26,71,42,0.06);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-total .t-label { font-weight: 600; font-size: 14px; color: var(--forest); }
.modal-total .t-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--forest);
}

.btn-confirm {
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  color: white;
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(26,71,42,0.3);
}
.btn-confirm:hover { box-shadow: 0 8px 25px rgba(26,71,42,0.4); transform: translateY(-1px); }

.success-msg {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.success-msg .check { font-size: 56px; margin-bottom: 16px; }
.success-msg h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--forest);
  margin-bottom: 8px;
}
.success-msg p { font-size: 14px; color: var(--muted); }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: white;
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 100px 24px 60px; }
  .hero-right { display: none; }
  .booking-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .section, .facilities-section, .contact-section { padding: 60px 24px; }
  .facilities-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .policies-inner { grid-template-columns: 1fr; }
  .amenities-strip { padding: 16px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-bar { padding: 0 24px; }
  .booking-grid { grid-template-columns: 1fr; }
}



.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.prev, .next {
    position: absolute;
    top: 50%;
    font-size: 40px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.prev { left: 30px; }
.next { right: 30px; }
