/* Signature Page Layout */
.signature-page {
  padding: 160px 80px 80px 60px;
  padding-left: 100px; /* increase left space */ 
  padding-right: 100px; /* increase right space */
  flex-direction: column;
  gap: 40px;
}

.breadcrumb {
  font-size: 0.9rem;
  margin: 40px 0 20px;   /* space above and below */
  color: var(--text);
  text-align: left;      /* force left alignment */
  padding-left: 40px;
  width: 100%;           /* take full width */
  display: block;        /* ensure block-level */
}


.breadcrumb a {
  color: var(--text);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  font-weight: bold;
}


.cover-image {
  margin-left: -100px;   /* cancel out page padding */
  margin-right: -100px;  /* cancel out page padding */
}

.cover-image img {
  width: 100vw;         /* full viewport width */
  max-width: 100%;      /* prevent overflow */
  height: auto;
  display: block;
  object-fit: cover;
}

.product-header {
  display: flex;                  /* put children side by side */
  justify-content: space-between; /* push one left, one right */
  align-items: center;            /* vertical alignment */
  width: 100%;                    /* span full page width */
  margin: 20px 0;                 /* spacing above/below */
  padding: 0 40px;                /* control left/right margin space */
  box-sizing: border-box;         /* include padding in width */
  

}

.product-header p {
  font-size: 1.4rem; 
  color: #737373; /* <-- set text color */
  margin: 0;
}

.sort-btn {
  font-size: 1.4rem;
  color: #737373;
  background: none;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}



.sort-btn:hover {
  background-color: var(--hover);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-box {
  border: 1px solid var(--border);
  padding: 0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth animation */
}

.product-box:hover {
  transform: translateY(-8px);   /* pops up 8px */
  box-shadow: 0 8px 16px rgba(0,0,0,0.2); /* subtle shadow */
}


.product-box img {
  width: 100%;
  height: auto;
  margin-bottom: block;
}

.product-box h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.product-box .desc {
  font-size: 2.2rem;     /* no space between number and unit */
  letter-spacing: 2px;
  color: var(--text);
  margin: 0;
  padding: 14px 0 6px 22px;
  border-top: none;
  text-align: left;      /* only desc is left-aligned */
}

.product-box .edition {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #6E6E6E;
  margin: 0;
  padding: 0px 0 20px 22px;
  border-top: none;
  text-align: left;    /* keep edition centered */
}

.product-box .note  {
  font-size: 0.95rem;
  color: #6E6E6E;
  margin: 0;
  padding: 22px 22px 20px 22px;
  text-align: right;
  border-top: 1px solid var(--border); /* divider line */
}
.product-box .price {
  font-size: 1.4rem;
  color: var(--text);
  margin: 0;
  padding: 22px 22px 20px 22px;
  text-align: right;
  border-top: 1px solid var(--border); /* divider line */
}


/* Coming Soon Box */
.coming-soon {
  font-size: 2.2rem;
  color: var(--text);
  display: flex;
  justify-content: center;
  align-items: center;
}


.page-number {
  text-align: center;     /* center horizontally */
  font-size: 1.2rem;      /* adjust size */
  color: #6E6E6E;         /* match your theme */
  margin: 40px 0;         /* spacing above and below */
}

.footer-spacer {
  height: 120px;   /* adjust to control space */
}
