:root {
  --gold: #8c6a1f;
  --deep-plum: #4a0012;
  --cream: #f3f0ea;
}

/* RESET + BACKGROUND */
body {
  margin: 0;
  padding: 0;
  background: url("/images/background/golden_background.png") no-repeat center center;
  background-size: cover;
  font-family: "Montserrat", sans-serif;
  color: var(--deep-plum);
  line-height: 1.7;
}

/* HEADER */
.logo-row {
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 220, 140, 0.35);
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

.logo-flower {
  width: 95px;
  height: auto;
  transform: scale(1.2);
}

.brand-wordmark {
  height: 50px;
  width: auto;
  transform: scale(4);
  transform-origin: center;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", serif;
  color: var(--deep-plum);
}

p {
  font-family: "Montserrat", sans-serif;
  color: var(--deep-plum);
}

/* BUTTONS */
.btn-primary,
.enquire-btn {
  display: inline-block;
  padding: 12px 22px;
  background: var(--deep-plum);
  color: var(--cream);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(212,175,55,0.4);
  font-size: 15px;
}

.btn-primary:hover,
.enquire-btn:hover {
  opacity: 0.85;
}

/* FOOTER */
.bliing-footer {
  background: rgba(255, 255, 255, 0.12);
  padding: 15px;
  border-top: 1px solid rgba(212,175,55,0.35);
  margin-top: 60px;
  color: var(--deep-plum);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.footer-inner {
  max-width: 1100px;
  margin-left: 20px; /* left aligned */
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.footer-brand {
  flex: 0 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-logo {
  width: 52px;
  transform: scale(3);
  transform-origin: left center;
  margin-top: 50px;
  padding-bottom: 10px;
  height: 50px;
}

.footer-wordmark {
  height: 28px;
  width: auto;
  transform: scale(3);
  transform-origin: left center;
}

.footer-tagline {
  font-size: 14px;
  margin-top: 2px;
}

.footer-links {
  display: flex;
  flex: 0 0 auto;
  margin-left: 0; /* keep beside logo */
  justify-content: flex-start;
  gap: 40px;
}

.footer-column h4 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-column a {
  display: block;
  color: var(--deep-plum);
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
  border-top: 1px solid rgba(212,175,55,0.25);
}

/* BREADCRUMB */
.breadcrumb {
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--deep-plum);
  text-decoration: none;
  font-weight: 700;
}

/* BLIING BOX */
.bliing-box {
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 16px;
  padding: 20px 22px;
  margin-top: 26px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.10), transparent 60%),
    rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.bliing-box-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  font-size: 22px;
}

.bliing-box-title svg {
  width: 26px;
  height: 26px;
}

.indent {
  text-indent: 24px;
}

.section-heading {
  font-size: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

/* HOME PAGE ANIMATION */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 768px) {

  .logo-row {
    padding: 10px 0;
    gap: 12px;
  }

  .logo-flower {
    width: 70px;
    transform: scale(1.4);
  }

  .brand-wordmark {
    height: 70px;
    transform: scale(2);
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .product-container {
    padding: 18px;
    margin: 20px auto 40px;
    gap: 20px;
  }

  .product-image {
    margin-top: 0;
    padding: 6px;
  }

  .product-title {
    font-size: 24px;
    margin-top: 10px;
  }

  .product-tagline,
  .product-specs {
    font-size: 14px;
  }

  .spec-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
  }
}

/* DROPDOWN */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown .nav-link {
  color: var(--deep-plum);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.7px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--deep-plum);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 180px;
  display: none;
  flex-direction: column;
  z-index: 999;
}

.dropdown-menu a {
  color: var(--cream);
  padding: 10px 20px;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif;
}

.dropdown-menu a:hover {
  color: var(--gold);
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: 500px;
}

/* ============================
   CATEGORY PAGE LAYOUT
============================ */

/* Desktop: 2 cards per row */
.catalogue-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Category product cards */
.product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--deep-plum);
    background: rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(212,175,55,0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

/* Product card image */
.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* Mobile: 1 card per row */
@media (max-width: 850px) {
    .catalogue-wrapper {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 10px !important;
    }

    .product-card img {
        height: auto !important;
    }
}
