/* GLOBAL SETTINGS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f4ebe8;
  color: #3b2f2f;
  text-align: center;
}

/* HEADER */
.header {
  background: #e8dbd5;
  padding: 12px 0;
  border-bottom: 2px solid #d4c2b8;
}

.brand {
  font-size: 26px;
  font-weight: bold;
  color: #3a2d2d;
}

.nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #3b2f2f;
  font-weight: 500;
}

/* LAYOUT */
.container {
  width: 90%;
  max-width: 900px;
  margin: auto;
}

.section-title {
  margin: 25px 0;
  font-size: 26px;
  font-weight: bold;
  color: #3b2f2f;
}

/* PRODUCT GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}

.card {
  background: white;
  padding: 16px;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid #dfd3cb;
  transition: .25s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #c49a6c;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.card h3 {
  font-size: 17px;
  color: #4a3b35;
}

.card p {
  font-size: 13px;
  color: #7a6a63;
}

/* FOOTER */
.footer {
  margin-top: 45px;
  padding: 16px;
  background: #e8dbd5;
  border-top: 2px solid #d1c0b7;
  font-size: 14px;
  color: #3b2f2f;
}

/* INPUTS */
label {
  text-align: left;
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin: 14px 0 6px;
  color: #6a5847;
}

input, select {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 2px solid #d8d0c8;
  background: #fefcfb;
  font-size: 15px;
  margin-bottom: 10px;
}

/* SUBMIT BUTTON */
.btn-submit, .btn-design {
  width: 100%;
  padding: 14px;
  background: #d4af37;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  margin-top: 10px;
  transition: .3s;
}

.btn-submit:hover, .btn-design:hover {
  background: #b9972b;
}

/* DESIGN LINK BUTTON */
.btn-design {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
}

/* PRICE STYLE */
.case-price {
  font-size: 20px;
  font-weight: 600;
  color: #7b5d4b;
  margin-bottom: 12px;
}

/* ----- COLOR SELECTORS (Journal & Bouquet) ----- */

/* Horizontal scroll if long */
.color-boxes, .rose-boxes {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin: 12px 0;
}

/* Circular boxes with default black border */
.circle-option,
.color-option {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  border: 3px solid #000 !important;
  transition: 0.2s ease;
}

/* Hover effect */
.circle-option:hover,
.color-option:hover {
  transform: scale(1.09);
}

/* Selected style */
.circle-option.selected,
.color-option.selected {
  border-color: #d4af37 !important;
  transform: scale(1.15);
}
