:root{
  /* Existing variables */
  --sooby-text: #ef8582;
  --sooby-blue:#31b7fb;
  --sooby-bg:#eaf6fe;
  --sooby-head:#ffffff;
}

body {
  background-color: var(--sooby-bg) !important;
  font-family: 'Baloo 2', cursive !important;
}

h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--sooby-text);
}

a.btn {
  font-weight: bold;
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
}

a.btn-warning {
  background-color: #CAE4F1;
  border-color: #CAE4F1;
  color: #fff;
}

button.btn-primary{
  color: white !important;
  background-color: var(--sooby-text) !important;
  border-color: var(--sooby-text) !important;
  padding: 0px;
  height: 36px;
}

.nav-link {
  font-weight: bold;
  color: #333;
}

.nav-link:hover {
  color: var(--sooby-text);
}
.logo{
  font-size:2rem;
  color:var(--sooby-text);
}
.logo a{
  text-decoration: none;
  color:black;
}
.logo img{
  border-radius:50%;
  width:80px;
  margin-right:20px;
}
header, footer {
  background-color: var(--sooby-head);
}

.hero {
  padding: 4rem 1rem;
  text-align: center;
  margin-top:0px !important;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero h1 strong{
  color: var(--sooby-text);
}
.hero p {
  font-size: 1.2rem;
}
.lead{
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 50px;
}
.container{
  margin-top:70px;
}
.benefit-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.benefit-card img {
  height: 60px;
  margin-right: 1rem;
}
.product-card {
  background-color: #fff;
  border-radius: 1rem;
  text-align: center;
  padding: 1rem;
}
.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  max-height: 160px;
  object-fit: cover;
}

.benefit-card img {
  height: 140px;
  margin-bottom: 1rem;
}
.benefit-counter{
  width:50px;
  min-width:50px;
  font-size:40px;
  color:var(--sooby-text);
  font-weight:bold;
}

.card h5 {
  font-size: 1.3rem;
  color: var(--sooby-text);
}
.card {
  border-radius: 1rem;
  background-color: white;
  overflow: hidden;
}
.card-img{
  border-radius:10px;
}
.card-header{
  background-color: var(--sooby-text);
  color:white;
  padding:15px;
  border-bottom: 0px solid white;
}

.card-header h5{
  color:white;
  font-size:24px;
}
.card-body{
  padding:15px;
}

.card-text {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
}
.card-text strong {
  color: var(--sooby-text);
}
.card-text span {
  display: block;
  margin-top: 0.25rem;
}
.card-body {
  padding-top: 1rem;
}

.sous-vide-img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.card.recipe-card {
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  border-radius: 1rem;
  cursor:pointer;
  box-shadow: 0 5px 10px rgba(218, 218, 218, 0.1);
  border:0px solid transparent;
}
.card.recipe-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 30px rgba(218, 218, 218, 0.3);
}
.accordion-button{
  background-color:white;
  color:var(--sooby-text);
  font-weight:900;
}
.accordion-button:not(.collapsed){
  background-color:var(--sooby-text);
  color:white;
  font-weight:900;
}
.accordion-body{
  text-align: left;
  padding-left:50px;
}

.bg-sooby{
  background:var(--sooby-blue)33;
  color:var(--sooby-blue);
}
.color-selector{
  width: 28px;
  height: 28px;
  padding: 4px;
}

/* -------------------------------
   ORDER PAGE SPECIFIC STYLES
   ------------------------------- */

.order-wrap {
  max-width: 860px;
  margin:auto;
  padding: 24px 16px 64px;
}

.order-wrap h1 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 6px;
  color: var(--sooby-text);
}

.order-wrap h2 {
  font-size: 22px;
  margin: 22px 0 10px;
  color: var(--sooby-blue);
}

.order-sub {
  font-size: 17px;
  margin-top:0;
}

.order-form {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  padding: 20px;
  margin-top: 20px;
}

.order-form label {
  font-weight: 600;
  font-size:14px;
  display:block;
  margin-bottom: 4px;
}

.order-form input {
  width: 100%;
  padding: 10px;
  border:1px solid #ddd;
  border-radius: 8px;
  font-size:15px;
}

.order-grid2 {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
@media(max-width:700px){
  .order-grid2 { grid-template-columns:1fr; }
}
.field { margin-bottom: 14px; }

.order-recipes { margin-top: 10px; display: grid; gap: 12px; }
.recipe-line {
  display:grid;
  grid-template-columns: 60px 1fr 70px 28px;
  align-items:center;
  gap:10px;
  background: #fdfdfd;
  border:1px solid #eee;
  border-radius:10px;
  padding:8px;
}
.recipe-line img {
  width:60px; height:60px;
  object-fit:cover; border-radius:8px;
}
.recipe-name { font-weight:600; font-size:15px; }
.info-icon {cursor:pointer;font-size: 16px;color: var(--sooby-blue);text-align:center;}

.delivery-note {
  margin-top: 14px;
  padding:10px;
  border-radius:10px;
  background: #f0faff;
  border:1px solid #cde9ff;
  font-weight:600;
  color:#0b3b6e;
  text-align:center;
  font-size:15px;
}
.free-alert {
  display:none;
  margin-top:8px;
  padding:8px;
  border-radius:10px;
  background:#fff4f3;
  border:1px solid #f9c7c2;
  color:#b33;
  font-weight:600;
  text-align:center;
  font-size:15px;
}

.order-form button {
  background: var(--sooby-blue);
  color:#fff;
  border:0;
  padding: 12px 18px;
  border-radius: 12px;
  font-size:17px;
  font-weight:700;
  margin-top: 18px;
  cursor:pointer;
  width:100%;
  box-shadow:0 4px 12px rgba(49,183,251,.3);
  transition: transform .1s;
}
.order-form button:hover { transform: translateY(-2px); }

.steps {
  margin-top: 22px;
  font-size:16px;
  font-weight:600;
}
.steps p { margin:8px 0; }

.order-contact {
  margin-top: 18px;
  text-align:center;
  font-weight:600;
  font-size:15px;
}

.jar{height:200px;width:auto;margin:auto; padding:10px;}

/* ==== ORDER PAGE (add to the end of your CSS) ==== */

.wrap{max-width:980px;margin:0 auto;padding:24px 16px 56px}
.wrap > h1{font-size:clamp(26px,4vw,36px);margin-bottom:6px;color:var(--sooby-text)}
.sub{font-size:17px;margin-top:0}

form#orderForm{
  background:#fff;border-radius:14px;box-shadow:0 4px 16px rgba(0,0,0,.06);
  padding:20px;margin-top:20px
}

.grid2{display:grid;grid-template-columns:1fr 1fr;gap:14px}
@media(max-width:700px){.grid2{grid-template-columns:1fr}}
.field{margin-bottom:14px}
#orderForm label{font-weight:600;font-size:14px;margin-bottom:4px}
#orderForm input{width:100%;padding:10px;border:1px solid #ddd;border-radius:8px;font-size:15px}

.recipes{margin-top:10px;display:grid;gap:12px}
.recipe-line{
  display:grid;grid-template-columns:60px 1fr 80px 32px;align-items:center;gap:10px;
  background:#fdfdfd;border:1px solid #eee;border-radius:10px;padding:8px
}
.recipe-line img{width: auto;height:60px;object-fit:cover;border-radius:8px;margin: auto;}
.recipe-name{font-weight:700;font-size:15px;display: flex;align-items: center;justify-content: space-between;}
.qty{max-width:80px}

.info-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 24px;
  height: 24px;
  border-radius:50%;
  background:#eaf6fe;
  border:1px solid #cde9ff;
  color:var(--sooby-blue);
  font-weight:700;
  cursor:pointer;
  text-decoration:none;
  margin-left:15px;
}
.info-icon:hover{filter:brightness(0.95)}

.delivery-note{
  margin-top:14px;padding:10px;border-radius:10px;background:#f0faff;border:1px solid #cde9ff;
  font-weight:600;color:#0b3b6e;text-align:center;font-size:15px
}
.free-alert{
  display:none;margin-top:8px;padding:8px;border-radius:10px;
  background:#fff4f3;border:1px solid #f9c7c2;color:#b33;font-weight:700;text-align:center;font-size:15px
}

#orderForm button[type="submit"]{
  background:var(--sooby-blue);color:#fff;border:0;padding:12px 18px;border-radius:12px;
  font-size:17px;font-weight:700;margin-top:18px;cursor:pointer;width:100%;
  box-shadow:0 4px 12px rgba(49,183,251,.3);transition:transform .1s
}
#orderForm button[type="submit"]:hover{transform:translateY(-2px)}

.steps{margin-top:22px;font-size:16px;font-weight:700}
.steps p{margin:8px 0}
.contact{margin-top:18px;text-align:center;font-weight:700;font-size:15px}

/* Make headings inside the order page use your palette */
.wrap h2{font-size:22px;margin:22px 0 10px;color:var(--sooby-blue)}

/* Consent checkbox styling */
.field input[type="checkbox"] {
  width: 22px !important;
  height: 22px;
  accent-color: var(--sooby-text); /* pink Sooby color */
  margin-right: 10px;
  cursor: pointer;
}

.field label {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.total-box {
  margin-top: 20px;
  padding: 15px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 1.2em;
  background: #fafafa;
  text-align: right;

}
.total-box strong {
  font-size: 1.3em;
}