/* LITE CSS */
body { font-family: Arial, sans-serif; background:#f7f7f8; margin:0; }
.container { max-width:1100px; margin:auto; padding:1rem; }
.header-row { display:flex; justify-content:space-between; align-items:center; }
.site-header { background:#fff; border-bottom:1px solid #ddd; }
.grid { display:grid; gap:1rem; }
.card { background:#fff; padding:1rem; border-radius:8px; }
.placeholder-thumb, .placeholder-media {
  background:#ddd; padding:40px; text-align:center; border-radius:8px;
}
.logo img {
  height: 60px;   /* adjust as needed */
  width: 300px;
  display: block;
}
.logo .grow-logo {
  height: 50px !important;
  width: auto !important;
  display: block;
  margin-top: 0px;
  margin-left: 70px;
}

/* Navigation button styling */
.main-nav {
  display: flex;
  gap: 1rem; /* spacing between items */
}

.main-nav a {
  font-weight: 700;              /* bold text */
  color: #000;                   /* black text */
  padding: 8px 14px;             /* inner spacing */
  border: 1px solid #ccc;        /* soft outline */
  border-radius: 8px;            /* rounded rectangle */
  text-decoration: none;         /* remove underline */
  transition: 0.2s ease;         /* smooth hover */
}

/* Hover effect (soft pop) */
.main-nav a:hover {
  background: #f2f2f2;
  border-color: #999;
}

/* Active page highlight */
.main-nav a[aria-current="page"] {
  background: #eaeaea;
  border-color: #777;
}

/* Home page featured products grid */
#featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* always 3 columns */
  gap: 1rem;
}
.home-page .product-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  background: #f2f2f2;
  display: block;
}
.catalog-page .product-thumb {
  width: 100%;
  height: 260px;       /* you can change this */
  object-fit: contain; /* or cover — your choice */
  border-radius: 8px;
  background: #fff;
  display: block;
  margin-top: 0rem;
}


#categorySelect {
  width: 60%;
  max-width: 300px;
  padding: 10px 14px;
  border-radius: 12px;   /* rounded rectangle */
  border: 1px solid #ccc;
  background: #fff;
  font-weight: 600;
  font-size: 1rem;
  outline: none;
  cursor: pointer;
  transition: 0.2s ease;
}

#categorySelect:hover {
  border-color: #999;
  background: #f8f8f8;
}

#categorySelect:focus {
  border-color: #333;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

.about-title {
  font-family: Garamond, serif;
  color: #ff0000;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
}

/* Rounded rectangle section */
.global-spirit-box {
  background: #f0eee1;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 900px;
}

/* Title styled like About Us */
.global-spirit-title {
  font-family: Garamond, serif;
  color: #ff0000;
  text-align: center;
  font-style: italic;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  
}

/* Paragraph text */
.global-spirit-text {
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
  color: #333;
}

/* Special highlight for “Trends & Gifts” */
.tg-highlight {
  font-family: "Lucida Calligraphy", cursive;
  color: #ff0000;
  font-weight: 600;
}

/* Subtitles inside the Strength box */
.strength-subtitle {
  font-family: Garamond, serif;
  color: #ff0000;
  
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  margin-top: 1.2rem;
}

.strength-item p {
  font-size: 1rem;
  line-height: 1.55;
  color: #333;
  margin-left: 0.5rem;
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem;
}

.footer-logo img {
  width: 35%;           /* adjust size as you wish */
  height: auto;
  display: block;
  margin: 0 auto 1rem;    /* centers it + spacing below */
}


.contact-card {
  max-width: 900px;   /* optional: makes it look cleaner */
  margin: 2rem auto;
  padding: 2rem;
  display: flex;
  gap: 3rem;
  align-items: center;      /* vertically center left & right */
  justify-content: center;  /* horizontally center everything */
}


/* LEFT SIDE */
.contact-left {
  text-align: center;
  flex: 0 0 250px;
  width: 50%;
}
.contact-left img {
  width: 200px;     /* change this value as needed */
  height: auto;
  display: block;
  margin: 0 auto;
}




.contact-heading {
  font-family: Garamond, serif;
  color: #c20000;
  font-size: 2.8rem;
  font-style: italic;
}

/* RIGHT SIDE */
.contact-right {
  flex: 1;
}

.contact-row {
  display: flex;
  margin-bottom: 1.2rem;
}

.contact-label {
  width: 180px;
  color: #ff0000;
  font-weight: bold;
  font-size: 1.2rem;
  font-family: Garamond, serif;
}

.contact-value {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #222;
}

.email-link {
  color: #0099cc;
  text-decoration: underline;
  font-size: 1.25rem;
}

/* mobile */
@media (max-width: 768px) {
  .contact-card {
    flex-direction: column;
    text-align: center;
  }
  .contact-row {
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .contact-label {
    width: 100%;
    margin-bottom: 0.3rem;
  }
}
.rounded-box,
.contact-wrapper {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 2rem;
  background: #f0eee1;
  border: 1px solid #ddd;
  border-radius: 16px;
}
/* Catalog image grid: always 3 columns */
#categoryGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
/* Home page single image */
/* HOME PAGE SINGLE IMAGE */
/* Home page single image styling */
#featured {
  display: flex;               /* override grid */
  justify-content: center;     /* center horizontally */
  align-items: center;
}

#featured img {
  width: 150%;                  /* slightly smaller (adjust 60–80%) */
  max-width: 150%;            /* prevents it from getting too large */
  height: auto;
  border-radius: 20px;         /* rounded corners */
  display: block;
}



/* ===== Header base ===== */
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.main-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== Mobile layout ===== */
@media (max-width: 768px) {

  /* prevent horizontal overflow */
  body {
    overflow-x: hidden;
  }

  /* stack header items */
  .header-row {
    flex-wrap: wrap;
  }

  /* nav becomes vertical */
  .main-nav {
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 0.5rem;
  }

  .main-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    text-align: left;
  }
}

/* ===== Header base ===== */
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.main-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== Mobile layout ===== */
@media (max-width: 768px) {

  /* prevent horizontal overflow */
  body {
    overflow-x: hidden;
  }

  /* stack header items */
  .header-row {
    flex-wrap: wrap;
  }

  /* nav becomes vertical */
  .main-nav {
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 0.5rem;
  }

  
}
