/* Saqqina site custom styles (served from src/static) */

/* Custom fonts - loaded locally */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url("/static/fonts/CormorantGaramond-SemiBold.a65fe668cb2c.woff2") format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url("/static/fonts/CormorantGaramond-SemiBold.a65fe668cb2c.woff2") format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url("/static/fonts/Lato-Regular.b7d6b48d8d12.woff2") format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url("/static/fonts/Lato-Bold.017598645bcc.woff2") format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.product-description {
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.product-description img {
  max-width: 100%;
  height: auto;
}

.product-description table {
  display: block;
  width: 100%;
  overflow-x: auto;
}

/* Checkout: pastikan garis input terlihat, tipis dan sesuai brand */
.checkout-form input[type="text"],
.checkout-form input[type="tel"],
.checkout-form input[type="email"],
.checkout-form input[type="number"],
.checkout-form input[type="search"],
.checkout-form select,
.checkout-form textarea {
  border: 1px solid #F4E1D2; /* secondary */
  background-color: #fff;
  color: #443737; /* primary */
  border-radius: 0.75rem; /* ~ rounded-xl */
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: #443737; /* primary */
  box-shadow: 0 0 0 2px rgba(68, 55, 55, 0.15);
}
/* Select di checkout kita haluskan khusus agar tidak hitam dan tidak kotak */
.checkout-form .select-modern select:focus {
  outline: none;
  border-color: #F4E1D2; /* cream */
  box-shadow: 0 0 0 3px rgba(244, 225, 210, 0.65);
}

/* Select modern: ruang ekstra untuk ikon dan hover halus */
.select-modern { position: relative; }
.select-modern select {
  padding-right: 2.5rem; /* ruang ikon chevron */
  border-radius: 9999px; /* rounded-full */
  border-color: #E8D5B7; /* neutral-light */
  background-color: #ffffff;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.02), 0 1px 1.5px rgba(68,55,55,0.06);
  transition: box-shadow .15s ease, border-color .15s ease, background-color .15s ease;
  -webkit-appearance: none; /* hilangkan native style keras */
  -moz-appearance: none;
}
.select-modern select:hover { background-color: #fffdfc; border-color: #E8D5B7; }
.select-modern:focus-within select { border-color: #F4E1D2; box-shadow: 0 0 0 3px rgba(244,225,210,0.65); }
/* Chevron badge lebih lembut */
.select-modern > span {
  right: .5rem !important;
  padding: 2px 6px;
  background: rgba(68,55,55,0.06);
  border-radius: 9999px;
}

/* Gallery nav arrows */
.nav-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  background:rgba(255,255,255,0.35);color:#443737;border:1px solid rgba(0,0,0,0.06);border-radius:9999px;
  width:40px;height:40px;display:flex;align-items:center;justify-content:center;font-size:18px;
  cursor:pointer;transition:background .15s ease,border-color .15s ease;z-index:10
}
.nav-arrow:hover{background:rgba(255,255,255,0.6);border-color:rgba(0,0,0,0.12)}
.nav-arrow.left-2{left:.5rem}
.nav-arrow.right-2{right:.5rem}
