
/* === Base === */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Titillium Web', sans-serif;
  background-color: #f3f3f3;
  color: #2b2b2b;
}

.site-container {
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 20px;
}

/* === Header === */
.top-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 30px;
  background: linear-gradient(to right, #a6bfb9, #cfded9);
  color: white;
  margin: 30px auto 20px;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  max-width: 95%;
}

.company-name {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
}

.company-logo {
  height: 120px;
  object-fit: contain;
  padding: 8px;
  background: white;
  clip-path: ellipse(90% 50% at 50% 50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

/* === Page Content === */
.page-content {
  padding: 40px 30px;
  background-color: #fff;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.products-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

/* === Accordion === */
.accordion {
  margin-bottom: 30px;
}

.accordion-toggle {
  width: 100%;
  background-color: #c2a86b;
  color: #fff;
  font-size: 22px;
  padding: 16px 20px;
  text-align: left;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.accordion-toggle:hover {
  background-color: #a88f57;
}

.accordion-content {
  display: none;
  padding: 20px 20px 30px;
  border-left: 3px solid #ddd;
  border-right: 3px solid #ddd;
  border-bottom: 3px solid #ddd;
  border-radius: 0 0 10px 10px;
  background-color: #f9f9f9;
}

/* === Product Cards === */
.product {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.product:last-child {
  border-bottom: none;
}

.product-image {
  width: 150px;
  height: auto;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.product-details {
  flex: 1;
}

.product-details h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.product-details p {
  margin: 0 0 6px;
  font-size: 16px;
  color: #444;
}

.price {
  font-weight: bold;
  font-size: 18px;
  color: #007a00;
}

/* === Modal Popup === */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  backdrop-filter: blur(6px);
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  display: block;
  margin: 50px auto;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* === Toggle Button === */
.toggle-button {
  display: block;
  margin: 40px auto 20px;
  padding: 12px 20px;
  font-size: 16px;
  background-color: #0077aa;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.toggle-button:hover {
  background-color: #005f88;
}
