/* ===== Default (Desktop) ===== */
.pmcpt-header {
    display: flex !important;
    justify-content: flex-end !important;
    gap: 24px !important;
    font-weight: bold !important;
    margin-bottom: 6px !important;
    padding-right: 4px !important;
    font-family: "Cormorant Garamond", Sans-serif !important;
    border-bottom: 0px solid #000 !important;
    background: #fff !important;
    font-size: 20px !important;
}

.pmcpt-header .pmcpt-col {
    min-width: 80px !important;
    text-align: center !important;
}

/* Rows */
.pmcpt-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 6px 0 !important;
}

.pmcpt-name {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    font-family: "Cormorant Garamond", Sans-serif !important;
}
.pmcpt-title {
    font-weight: 600 !important;
    white-space: nowrap !important;
}
.pmcpt-dots {
    flex: 1 !important;
    border-bottom: 1px dotted #000 !important;
    margin-left: 8px !important;
}

/* Price columns */
.pmcpt-cols {
    display: flex !important;
    gap: 24px !important;
    min-width: 260px !important;
}
.pmcpt-col {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-width: 80px !important;
}
.pmcpt-col .amt {
    position: relative !important;
    display: inline-block !important;
    padding: 0 6px !important;
    background: #fff !important;
}

@media (max-width: 768px) {
  /* Hide global header */
  body .pmcpt-header {
      display: none !important;
  }

  /* Stack rows */
  body .pmcpt-row {
      flex-direction: column !important;
      align-items: center !important;
      border-bottom: 1px solid #ddd !important;
      padding: 10px 0 !important;
      margin-bottom: 12px !important;
  }

  body .pmcpt-dots {
      display: none !important;
  }

  body .pmcpt-cols {
      width: 100% !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 6px !important;
      margin-top: 6px !important;
  }

  body .pmcpt-col {
      width: 100% !important;
      display: flex !important;
      justify-content: space-between !important;
      padding: 4px 0 !important;
      border: none !important;         /* remove box look */
      background: transparent !important; /* remove background */
      font-size: 15px !important;
  }

  body .pmcpt-col .amt {
      background: none !important;
      padding: 0 !important;
  }

  /* Add headings before each price */
  body .pmcpt-col:nth-child(1)::before {
      content: "Mini: ";
      font-weight: bold;
  }
  body .pmcpt-col:nth-child(2)::before {
      content: "Regular: ";
      font-weight: bold;
  }
  body .pmcpt-col:nth-child(3)::before {
      content: "Double: ";
      font-weight: bold;
  }
}


/* ===== Banner spacing ===== */
.preorder-banner {
    padding: 60px 20px !important; /* add extra spacing around the heading */
    position: relative;
    background: #fff url('your-sourdough-sketch.png') no-repeat center/200px auto; 
    /* replace with actual sourdough sketch image URL */
}

/* Faint background sourdough sketches */
.preorder-banner::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 5%;
    width: 180px;
    height: 180px;
    background: url('your-sourdough-sketch.png') no-repeat center/contain;
    opacity: 0.08; /* very faint */
    z-index: 0;
}

.preorder-banner::after {
    content: "";
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 220px;
    height: 220px;
    background: url('your-sourdough-sketch.png') no-repeat center/contain;
    opacity: 0.06;
    z-index: 0;
}

/* Banner text stays above sketches */
.preorder-banner * {
    position: relative;
    z-index: 1;
}

/* ===== Keep the old table/menu style ===== */
.pmcpt-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 10px 0 !important;
    font-size: 18px !important;
}

.pmcpt-dots {
    flex: 1 !important;
    border-bottom: 1px dotted #555 !important;
    margin: 0 8px !important;
}

.pmcpt-cols {
    display: flex !important;
    gap: 40px !important;
    min-width: 260px !important;
    justify-content: flex-end !important;
}

.pmcpt-col {
    text-align: right !important;
    min-width: 80px !important;
}

