/* ===========================
   HCC Enterprises – Global Styles
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --cream: #f7f3ee;
  --cream-dark: #ede8e0;
  --brown: #8B5E3C;
  --brown-dark: #6b4528;
  --black: #1a1a1a;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --border: #ddd5c8;
  --white: #ffffff;
  --dark-section: #1e1e1a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 60px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(221, 213, 200, 0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 52px;
  height: 52px;
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--brown); }

.nav-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-icons a {
  font-size: 20px;
  color: var(--text);
  transition: color 0.2s;
}

.nav-icons a:hover { color: var(--brown); }

.nav-icons .cart-icon {
  font-size: 30px;
}

/* ===========================
   BREADCRUMB
   =========================== */
.breadcrumb {
  padding: 14px 60px;
  font-size: 13px;
  color: var(--text-light);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--brown); }
.breadcrumb span { margin: 0 6px; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: #333; transform: translateY(-1px); }

.btn-brown {
  background: var(--brown);
  color: var(--white);
}
.btn-brown:hover { background: var(--brown-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ===========================
   SECTION TITLES
   =========================== */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 42px;
  color: var(--black);
}

.section-title h2 em,
.highlight {
  font-style: italic;
  color: var(--brown);
}

.section-title p {
  font-size: 15px;
  color: var(--text-light);
  max-width: 600px;
  margin: 12px auto 0;
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--white);
  padding: 60px 60px 30px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: var(--text-light);
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--brown); }

.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  outline: none;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  background: var(--white);
  color: var(--text);
}

.newsletter-form button {
  padding: 12px 22px;
  background: var(--brown);
  color: var(--white);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.newsletter-form button:hover { background: var(--brown-dark); }

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text);
  transition: all 0.2s;
}

.footer-social a:hover {
  border-color: var(--brown);
  color: var(--brown);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
}

/* ===========================
   TESTIMONIAL SECTION
   =========================== */
.testimonials-section {
  background: var(--dark-section);
  padding: 80px 60px;
  color: var(--white);
}

.testimonials-section .section-title h2 { color: var(--white); }
.testimonials-section .section-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 12px;
  display: block;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
}

.testimonial-card .reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  font-weight: 600;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.testimonial-card p {
  font-size: 13px;
  color: #bbb;
  line-height: 1.6;
}

/* ===========================
   BRAND LOGOS BAR
   =========================== */
.brands-bar {
  background: var(--white);
  padding: 36px 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brand-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  opacity: 0.65;
  letter-spacing: 1px;
  transition: opacity 0.2s;
}

.brand-logo:hover { opacity: 1; }

/* ===========================
   PRODUCT CARD
   =========================== */
.product-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.product-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.product-card-body {
  padding: 16px 20px 20px;
}

.product-card-cat {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.product-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  margin-bottom: 6px;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--brown);
  font-weight: 500;
}

/* ===========================
   RESPONSIVE (basic)
   =========================== */
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; }
  .breadcrumb { padding: 12px 20px; }
  footer { padding: 40px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .testimonials-section { padding: 60px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .brands-bar { padding: 24px 20px; flex-wrap: wrap; gap: 20px; }
}
