/* ==========================
   Off The Lake Decor Styles
   Sleek Black & Gold Theme, Refined
   ========================== */

/* Google Fonts via header.php! */
:root {
  --brand-black: #000000;
  --brand-gold: #d7b64d;
  --brand-gold-dark: #b99c39;
  --brand-white: #ffffff;
  --brand-gray: #fafafa;
}
body {
  font-family: 'Open Sans', 'Inter', Arial, sans-serif;
  font-size: 1.03rem;
  color: var(--brand-gold);
  background: var(--brand-black);
  min-height: 100vh;
}
/* Headings */
h1, h2, h3, h4, h5 {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500 !important;
  color: var(--brand-gold);
  letter-spacing: 0.2px;
  margin-bottom: 0.75em;
}
.site-title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.3rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.2px;
}
/* Links and Nav */
a, .nav-link, .navbar-brand {
  color: var(--brand-gold) !important;
  text-decoration: none;
  font-weight: 500;
}
a:hover, .nav-link:hover {
  color: var(--brand-gold-dark) !important;
  text-decoration: underline;
}
.bg-black { background: var(--brand-black) !important; }
.text-gold { color: var(--brand-gold) !important; }
.border-gold { border-color: var(--brand-gold) !important; }
/* Cart badge */
.badge.bg-gold {
  background: var(--brand-gold);
  color: var(--brand-black);
  font-weight: 600;
  font-size: 0.96rem;
}
.navbar {
  box-shadow: 0 1px 6px rgba(215,182,77,0.06);
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}
.navbar-brand img {
  border-radius: 0.3rem;
  background: transparent;
  border: 1.5px solid var(--brand-gold);
  padding: 1px;
}
footer, .footer {
  background: var(--brand-black);
  border-top: 2px solid var(--brand-gold);
  color: var(--brand-gold);
  font-size: 0.96rem;
}
.card, .product-card {
  background: var(--brand-black);
  border: 1px solid var(--brand-gold);
  border-radius: 0.8rem;
  color: var(--brand-gold);
  box-shadow: 0 1px 6px rgba(215,182,77,0.08);
  margin-bottom: 1.2rem;
  padding: 0.85rem 0.6rem 0.6rem 0.6rem;
}
.card:hover, .product-card:hover {
  box-shadow: 0 3px 14px rgba(215,182,77,0.15);
  border-color: var(--brand-gold-dark);
}
.card-title, .product-card .card-title {
  font-size: 1.14rem;
  font-weight: 500;
  margin-bottom: 0.6em;
  color: var(--brand-gold);
}
.card-text {
  color: var(--brand-gray);
  font-size: 1.01rem;
  font-weight: 400;
}

/* Buttons: High-Contrast & Accessible */
.button, button, .btn, .btn-gold {
  background: var(--brand-gold) !important;
  color: #181818 !important;
  border: none !important;
  font-weight: 700;
  font-family: 'Inter', 'Open Sans', Arial, sans-serif;
  box-shadow: 0 1px 5px rgba(215,182,77,0.13);
  letter-spacing: 0.03em;
  transition: background 0.17s, color 0.17s;
  outline: none;
}
.button:hover, button:hover, .btn:hover, .btn-gold:hover,
.button:focus, button:focus, .btn:focus, .btn-gold:focus {
  background: var(--brand-gold-dark) !important;
  color: #000 !important;
  outline: 2px solid #d7b64d30;
}

/* For outline buttons: white/gold border, gold hover */
.btn-outline-light, .btn-outline-light:visited {
  color: #fff !important;
  border: 2px solid var(--brand-gold) !important;
  background: transparent !important;
  font-weight: 600;
  font-family: 'Inter', 'Open Sans', Arial, sans-serif;
  transition: background 0.17s, color 0.17s;
}
.btn-outline-light:hover, .btn-outline-light:focus {
  background: var(--brand-gold) !important;
  color: #181818 !important;
  border-color: var(--brand-gold) !important;
}
.btn-lg {
  font-size: 1.09rem;
  padding: 0.5rem 1.4rem;
}
/* Inputs */
input, select, textarea {
  background: var(--brand-black);
  color: var(--brand-gold);
  border: 1px solid var(--brand-gold-dark);
  border-radius: 0.4rem;
  font-size: 1.04rem;
  padding: 0.36rem 0.7rem;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--brand-gold);
  outline: none;
  background: var(--brand-black);
}
::-webkit-input-placeholder { color: var(--brand-gold-dark); }
::-moz-placeholder { color: var(--brand-gold-dark); }
:-ms-input-placeholder { color: var(--brand-gold-dark); }
::placeholder { color: var(--brand-gold-dark); }
/* Tables */
table {
  color: var(--brand-gold);
  background: var(--brand-black);
  border: 1px solid var(--brand-gold-dark);
  font-size: 1.01rem;
}
th, td {
  border: 1px solid var(--brand-gold-dark);
  padding: 0.62rem 0.8rem;
  vertical-align: middle;
}
th {
  background: var(--brand-black);
  color: var(--brand-gold);
}
tbody tr:nth-child(even) {
  background: rgba(215,182,77,0.04);
}
/* Misc Utility */
.rounded-gold {
  border-radius: 1.2rem;
  border: 1px solid var(--brand-gold);
}
.shadow-gold {
  box-shadow: 0 1px 6px rgba(215,182,77,0.09);
}
@media (max-width: 768px) {
  .navbar-brand img { height: 30px !important; }
  .site-title { font-size: 1.01rem !important; }
  footer img { height: 24px !important; }
  .card, .product-card { padding: 0.6rem 0.5rem; }
}

/* Admin select style for better readability on dark backgrounds */
.form-select, .form-select:focus, .form-select-sm, select {
  background-color: #181818 !important;
  color: #d7b64d !important;
  border: 1.5px solid #d7b64d !important;
  font-size: 1.01rem !important;
}
.form-select option, select option {
  background: #222 !important;
  color: #d7b64d !important;
}

.product-thumb-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #181818;
  border-radius: 0.55rem;
  border: 1px solid #b99c39;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1; /* Keeps all thumbs square and uniform */
  min-height: 0;
}
.product-thumb-box img {
  width: auto;
  height: auto;
  max-width: 94%;
  max-height: 94%;
  object-fit: contain !important; /* Don't crop */
  object-position: center;
  border-radius: 0.32rem;
  background: #111;
}
.product-card {
  border: none;
  background: var(--brand-black);
  transition: box-shadow 0.16s;
  box-shadow: 0 1px 6px rgba(215,182,77,0.09);
}
.product-card:hover {
  box-shadow: 0 4px 18px #d7b64d38;
  border-color: var(--brand-gold-dark);
  z-index: 3;
}
