/* 0911.biz — readability & product cards */
:root {
  --ink: #1c2430;
  --ink-soft: #3d4a5c;
  --muted: #5f6b7a;
  --line: #e4e8ee;
  --paper: #f7f5f1;
  --card: #ffffff;
  --accent: #1f6b5a;
  --accent-hover: #185547;
  --price: #163a32;
  --nav: #1a4f45;
}

body {
  font-family: "Figtree", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.product-thumb h4,
#content h1,
.heading-title {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

h1 { font-size: 2rem; margin-bottom: 0.75rem; }
h2 { font-size: 1.55rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

a { color: var(--accent); }
a:hover { color: var(--accent-hover); }

#top {
  background: #101820;
  color: #d7dde5;
  font-size: 13px;
}
#top .container { padding-top: 6px; padding-bottom: 6px; }
#top a, #top span { color: #d7dde5; }
#top a:hover { color: #fff; }

#logo {
  background: #000;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 2px;
}
#logo img {
  max-height: 48px;
  width: auto;
}

header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
  padding-bottom: 12px;
}

#menu {
  background: var(--nav);
  border-radius: 0;
  min-height: 46px;
}
#menu .nav > li > a {
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #f3f7f5;
  text-shadow: none;
  padding-top: 13px;
  padding-bottom: 13px;
}
#menu .nav > li > a:hover,
#menu .nav > li.open > a {
  background: rgba(255,255,255,0.1);
}

#content {
  background: transparent;
}

/* Home / module headings */
h3 {
  margin: 1.5rem 0 1rem;
}

/* Product cards */
.product-thumb {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(28, 36, 48, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.product-thumb:hover {
  box-shadow: 0 8px 24px rgba(28, 36, 48, 0.08);
  transform: translateY(-2px);
}
.product-thumb .image {
  background: #fff;
  padding: 16px 16px 0;
  text-align: center;
}
.product-thumb .image a { display: block; }
.product-thumb .image a:hover { opacity: 1; }
.product-thumb .image img {
  margin: 0 auto;
  max-height: 200px;
  object-fit: contain;
}
.product-thumb .caption {
  padding: 14px 18px 8px;
  min-height: 0 !important;
}
.product-thumb h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.35;
}
.product-thumb h4 a {
  color: var(--ink);
  text-decoration: none;
}
.product-thumb h4 a:hover {
  color: var(--accent);
}
.product-thumb .caption p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.product-thumb .price {
  color: var(--price);
  font-family: "Figtree", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 8px 0 4px;
}
.product-thumb .price-old {
  color: #9aa3af;
  font-weight: 500;
  font-size: 0.95rem;
}
.product-thumb .price-tax {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}
.product-thumb .button-group {
  border-top: 1px solid var(--line);
  background: #f3f1ec;
}
.product-thumb .button-group button {
  background: #f3f1ec;
  color: var(--ink);
  font-family: "Figtree", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 42px;
}
.product-thumb .button-group button:hover {
  background: var(--accent);
  color: #fff;
}
.product-thumb .button-group button + button {
  border-left: 1px solid var(--line);
}

/* Product page */
#product-product h1 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1rem;
}
#product-product .price,
#product h2.price,
h2.price {
  font-family: "Figtree", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--price);
  margin: 0.75rem 0 1rem;
}
#product-product #tab-description,
#tab-description {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
#tab-description p {
  margin-bottom: 1rem;
}
#tab-description ul,
#tab-description ol {
  margin: 0 0 1rem 1.2rem;
}
#product .form-group label,
#product-product .form-group .control-label {
  font-weight: 600;
  color: var(--ink);
}
#button-cart {
  background: var(--accent);
  border-color: var(--accent);
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 12px 22px;
  font-size: 14px;
}
#button-cart:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.breadcrumb {
  background: transparent;
  padding-left: 0;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb > .active { color: var(--ink); }

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 600;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* Category / list readability */
.category-list,
.list-group-item {
  font-size: 0.95rem;
}
.list-group-item.active,
.list-group-item.active:hover {
  background: var(--nav);
  border-color: var(--nav);
}

footer {
  margin-top: 2.5rem;
  background: #101820;
  color: #c5ccd6;
}
footer h5 {
  color: #fff;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
footer a { color: #c5ccd6; }
footer a:hover { color: #fff; }

@media (max-width: 767px) {
  body { font-size: 15px; }
  h1, #product-product h1 { font-size: 1.55rem; }
  .product-thumb h4 { font-size: 1rem; }
  #menu .nav > li > a { font-size: 13px; }
}
