body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f4f6f4;
  color: #1e1e1e;
}

.site-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 40px;
  background: white;
  border-bottom: 1px solid #ddd;
}

.site-header h1 {
  margin: 0;
}

.tagline {
  margin: 0;
  font-size: 1.5rem;
  color: #555;
}

.product-card {
  max-width: 700px;
  margin: 30px auto;
  padding: 15px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  border-top: 6px solid #1f4d3a;
}

.product-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.7rem;
  color: #1f4d3a;
}

.product-price{
text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}


.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100%;
}

.carousel-item img {
  width: 100%;
  border-radius: 12px;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 50%;
}

.arrow.left { left: 10px; }
.arrow.right { right: 10px; }

.arrow:hover {
  background: rgba(0,0,0,0.85);
}


footer {
  margin-top: 90px;
  padding: 35px 5%;
  background: #1f4d3a;
  color: #e6efe9;
  text-align: center;
  font-size: 0.9rem;
}

/* --- Enquiry Form Styles --- */
.product-blurb {
text-align: center;
font-size: 1rem;
color: #555;
margin-bottom: 30px;
}

.cta-wrapper {
text-align: center;
margin-top: 35px;
}

.enquire-btn {
background: #1f4d3a;
color: white;
padding: 14px 36px;
border: none;
border-radius: 30px;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
}

.enquire-btn:hover {
background: #16382a;
transform: translateY(-2px);
}


.form-card {
margin-top: 60px;
padding: 35px;
border-radius: 14px;
background: #f9fbf9;
border: 1px solid #dce6df;
}

.form-card h3 {
margin-top: 0;
margin-bottom: 25px;
color: #1f4d3a;
text-align: center;
}

.form-group {
padding-left: 20%;
padding-right: 20%;
max-width: 95%;
display: flex;
flex-direction: column;
margin-bottom: 20px;
}

.form-group label {
font-size: 0.85rem;
margin-bottom: 6px;
color: #333;
}

.form-group input,
.form-group textarea {
padding: 12px 14px;
border-radius: 8px;
border: 1px solid #cfd8d2;
font-size: 0.95rem;
font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: #1f4d3a;
}

.submit-btn {
width: 104%;
margin-top: 10px;
padding: 14px;
background: #1f4d3a;
color: white;
border: none;
border-radius: 10px;
font-size: 1rem;
cursor: pointer;
transition: background 0.3s ease;
}

.submit-btn:hover {
background: #16382a;
}

#enquiryForm { 
    display: none; margin-top: 1rem; 
}


label { 
    display: block; margin-top: 0.5rem; 
}

input, textarea { 
    width: 100%; padding: 0.5rem; margin-top: 0.25rem; 
}

button { 
    margin-top: 1rem; padding: 0.5rem 1rem; 
}
