:root {
  --bg: #ffffff;
  --text: #2f2f2f;
  --muted: #666666;
  --accent: #d9368a;
  --accent-dark: #222222;
  --border: #e9e2e6;
  --surface: rgba(255, 255, 255, 0.96);
  --max-width: 1100px;
}

@font-face {
  font-family: "TrajanRegular";
  src: url("../fonts/Trajan-Regular.woff2") format("woff2");
  font-display: swap;
}

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

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 54, 138, 0.10), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 230, 241, 0.65), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fff8fb 45%, #ffffff 100%);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-family: "TrajanRegular", Georgia, serif;
  font-size: 22px;
  line-height: 1.2;
}

.tagline {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav a,
.dropbtn {
  position: relative;
  display: block;
  padding: 8px;
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active,
.dropbtn:hover,
.dropbtn:focus,
.dropbtn.active {
  color: var(--text);
}

.main-nav a::after,
.main-nav .dropbtn::after {
  position: absolute;
  right: 8px;
  bottom: -6px;
  left: 8px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus::after,
.main-nav a.active::after,
.main-nav .dropbtn:hover::after,
.main-nav .dropbtn:focus::after,
.main-nav .dropbtn.active::after {
  transform: scaleX(1);
}

.dropdown {
  position: relative;
  z-index: 100;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2000;
  display: none;
  min-width: 220px;
  padding: 8px 0;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

.dropdown:hover .dropdown-content,
.dropdown.open .dropdown-content {
  display: block;
}

.dropdown-content a {
  width: 100%;
  padding: 10px 16px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 30px 20px;
}

.hero {
  padding: 50px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(217, 54, 138, 0.08), rgba(255, 255, 255, 0));
  text-align: center;
}

.hero h1 {
  font-size: 2rem;
  line-height: 1.2;
}

.hero p {
  margin-top: 10px;
  color: var(--muted);
}

.btn {
  display: inline-block;
  min-height: 44px;
  padding: 12px 22px;
  border: 0;
  border-radius: 8px;
  background: var(--accent-dark);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.btn:hover,
.btn:focus {
  background: var(--accent);
}

.grid,
.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card,
.highlight-card,
.content-panel {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.content-panel {
  max-width: 1000px;
  margin: 30px auto 0;
}

.article-panel p,
.article-panel li {
  color: var(--muted);
}

.article-panel h2 {
  margin-top: 26px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.3;
}

.article-panel ul {
  display: grid;
  gap: 14px;
  margin: 16px 0 0 20px;
  padding-left: 18px;
}

.article-panel li strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.content-panel h2 + p,
.content-panel p + h2 {
  margin-top: 16px;
}

.narrow-panel {
  max-width: 900px;
}

.card {
  text-align: center;
}

.card h2,
.card h4,
.highlight-card h2 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.3;
}

.card p,
.highlight-card p {
  color: var(--muted);
  font-size: 14px;
}

.card img {
  width: 100%;
  height: 260px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: #fafafa;
  object-fit: contain;
}

.collection-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.collection-card-link:hover h2,
.collection-card-link:focus h2 {
  color: var(--accent);
}

.product-scroll-wrap {
  position: relative;
  margin-top: 30px;
}

.product-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 52px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.product-scroll .product-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #ffffff;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  transform: translateY(-50%);
}

.scroll-left {
  left: 4px;
}

.scroll-right {
  right: 4px;
}

.scroll-arrow:hover,
.scroll-arrow:focus {
  background: var(--accent);
}

label {
  display: block;
  color: var(--text);
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid #d8d2d6;
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

.feedback-grid,
.form-grid,
.contact-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

form > label,
form > .form-grid,
form > .feedback-grid {
  margin-top: 18px;
}

.form-actions {
  margin-top: 20px;
}

.contact-info p + p {
  margin-top: 18px;
}

.map-section {
  margin-top: 30px;
}

.map-section h2 {
  margin-bottom: 14px;
}

.map-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.whatsapp-btn {
  position: fixed;
  right: 18px;
  bottom: 25px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  padding: 9px 14px;
  border-radius: 6px;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  font-size: 11px;
  font-weight: 700;
  gap: 7px;
  letter-spacing: 0.3px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.whatsapp-btn:hover,
.whatsapp-btn:focus {
  background: #1ebe5d;
}

.whatsapp-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 18px;
  margin-top: 40px;
  padding: 24px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  text-align: center;
}

.footer-card-grid {
  display: grid;
  width: min(100%, 760px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 42px;
  row-gap: 18px;
}

.footer-card {
  min-height: 120px;
  padding: 18px;
  border: 1px solid #f2b9d2;
  border-radius: 8px;
  background: #ffffff;
  text-align: left;
}

.footer-card h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.3;
}

.footer-card-links {
  display: grid;
  gap: 2px;
}

.footer-card-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding: 2px 0;
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-card-links a:hover,
.footer-card-links a:focus {
  color: var(--text);
}

.footer-card-links a::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.footer-card-links a:hover::after,
.footer-card-links a:focus::after {
  transform: scaleX(1);
}

.footer-copyright {
  color: var(--muted);
}

@media (max-width: 1024px) {
  .site-header {
    align-items: flex-start;
  }

  .logo {
    width: 56px;
    height: 56px;
  }

  .company-name {
    font-size: 18px;
  }

  .menu-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2000;
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 94px;
    right: 18px;
    z-index: 1500;
    display: none;
    width: min(280px, calc(100vw - 36px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    padding: 14px 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  }

  .main-nav.show {
    display: flex;
  }

  .main-nav a,
  .dropbtn {
    width: 100%;
    padding: 14px 22px;
    border-bottom: 1px solid #f3f3f3;
    text-align: left;
  }

  .main-nav a::after,
  .main-nav .dropbtn::after {
    bottom: 8px;
    left: 22px;
    right: auto;
    width: 34px;
    height: 2px;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    min-width: 0;
    padding: 0 0 0 12px;
    border: 0;
    background: #fafafa;
    box-shadow: none;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }

  .grid,
  .highlights,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 24px 16px;
  }

  .hero {
    padding: 35px 16px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .btn {
    width: 100%;
  }

  .feedback-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 220px;
  }

  .product-scroll {
    padding: 10px 46px 18px;
  }

  .product-scroll .product-card {
    flex-basis: 250px;
  }

  .site-footer {
    font-size: 13px;
  }

  .footer-card-grid {
    grid-template-columns: 1fr;
  }

  .footer-card {
    text-align: center;
  }

  .footer-card-links {
    justify-items: center;
  }
}
/* Increase spacing between paragraphs on the About page */
.about-page .content-panel p {
  margin-bottom: 1.2rem; /* space between paragraphs — adjust as needed */
  line-height: 1.75;     /* improves readability within paragraphs */
}
