/* ============ Breadcrumb ============ */
.cosnacks-breadcrumb {
  background: #0f2a6b;
  color: white;
  padding: 12px 20px;
  font-size: 14px;
}

.cosnacks-breadcrumb a {
  color: #cdd4f0;
  text-decoration: none;
}

.cosnacks-breadcrumb span {
  color: #fff;
}

/* ============ Title ============ */
.cosnacks-title {
  text-align: left;
  padding: 30px 60px 10px;
  font-size: 32px;
  font-weight: 600;
  color: #0b1a45;
}

/* ============ Layout ============ */
.cosnacks-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 20px 60px 60px;
  box-sizing: border-box;
}

/* ============ Card ============ */
.cosnacks-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 25px 30px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.cosnacks-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Headings */
.cosnacks-heading {
  margin: 0;
  font-size: 22px;
  color: #11205e;
  line-height: 1.4;
}

.cosnacks-heading span {
  display: block;
  font-size: 18px;
  color: #555;
  margin-top: 2px;
}

/* List */
.cosnacks-list {
  list-style: none;
  margin: 15px 0 0;
  padding: 0;
}

.cosnacks-list li {
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cosnacks-list li:last-child {
  border-bottom: none;
}

/* ============ Buttons ============ */
.cosnacks-btns {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

.btn-customize,
.btn-order {
  flex: 1;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-customize {
  background: transparent;
  color: #11205e;
  border: 2px solid #11205e;
}

.btn-customize:hover {
  background: #11205e;
  color: #fff;
}

.btn-order {
  background: #11205e;
  color: #fff;
  border: none;
}

.btn-order:hover {
  background: #0a1643;
}

/* ============ Responsive ============ */
@media (max-width: 992px) {
  .cosnacks-title {
    padding: 20px 30px;
    font-size: 26px;
  }
  .cosnacks-container {
    padding: 20px 30px 50px;
  }
}

@media (max-width: 600px) {
  .cosnacks-title {
    font-size: 22px;
    text-align: center;
    padding: 15px;
  }
  .cosnacks-container {
    grid-template-columns: 1fr;
    padding: 15px;
  }
  .cosnacks-card {
    padding: 20px;
  }
  .cosnacks-btns {
    flex-direction: column;
  }
  .btn-customize,
  .btn-order {
    width: 100%;
  }
}
