/*
Theme Name:         Astra Child Packaging
Theme URI:          https://wpastra.com/
Description:        Custom Green Packaging Idea Child Theme for Astra.
Author:             Custom Box Developer
Author URI:         #
Template:           astra
Version:            1.0.0
Text Domain:        astra-child-packaging
*/

:root {
  --green-dark: #0d3528;
  --green-mid: #135340;
  --cream: #f7f5ef;
  --cream-card: #fffcf6;
  --yellow: #e9c949;
  --yellow-soft: #fbf4d9;
  --text: #1a1f1d;
  --text-muted: #4a554f;
  --white: #fff;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 12px 40px rgba(13, 53, 40, 0.08);
  --font: "Montserrat", system-ui, sans-serif;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
}

/* Header & Top Bar Styles */
.top-bar {
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a {
  color: var(--yellow);
  text-decoration: none;
}
.site-header {
  background: var(--white);
  padding: 1rem 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.search-wrap input {
  width: 100%;
  max-width: 450px;
  padding: 0.65rem 1rem;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-family: inherit;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.phone-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}
.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav a:hover {
  color: var(--green-mid);
}

/* Footer Styles */
.site-footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-grid h4 {
  color: var(--yellow);
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid li {
  margin-bottom: 0.75rem;
}
.footer-grid a {
  color: #a4bba8;
  text-decoration: none;
}
.footer-grid a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #a4bba8;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
