* {
  box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
.navbar-brand-christmas {
   color: #665566;
  display: inline-block;
  font-weight: 700;
  font-size: 35px;  
  padding: 0;
  margin-top: -2px;
  height: 70px;
  width: 320px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  
}

.navbar-brand-christmas > img {
    display: block;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 1201px) {
 
  .navbar-brand-christmas {
   color: #665566;
  display: inline-block;
  font-size: 35px;  
  padding: 0;
  margin-top: -2px;
  width: 180px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  
}
@media screen and (max-width: 800px) {
    .navbar-brand-christmas {
   color: #665566;
  display: inline-block;
  font-weight: 700;
  font-size: 35px;  
  padding: 0;
  margin-top: -2px;
  width: 256px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  
}
}
/* ----------------------------
   DeBruns Product Buy Panel
   ---------------------------- */

.db-product-buy{
  margin: 10px 0 18px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
}

/* Price row */
.db-product-buy__price-row{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.db-product-buy__price{
  font-size: 22px;
  font-weight: 700;
  color: #1f1f1f;
  letter-spacing: 0.2px;
}

.db-product-buy__ref{
  font-size: 13px;
  color: #777;
}

/* Buttons */
.db-product-buy__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

/* Base button */
.db-btn{
  appearance: none;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 12px 18px;
  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  transition: transform 0.04s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

/* Make both buttons equal width on desktop */
@media (min-width: 768px){
  .db-product-buy__actions .db-btn{
    flex: 1;
  }
}

/* Primary */
.db-btn--primary{
  background: #008080;
  border-color: #008080;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0,128,128,0.18);
}

.db-btn--primary:hover{
  box-shadow: 0 14px 26px rgba(0,128,128,0.22);
}

.db-btn--primary:active{
  transform: translateY(1px);
}

/* Secondary */
.db-btn--secondary{
  background: #fff;
  border-color: #008080;
  color: #008080;
}

.db-btn--secondary:hover{
  background: rgba(0,128,128,0.06);
  border-color: #006f6f;
  color: #006f6f;
}

.db-btn--secondary:active{
  transform: translateY(1px);
}

/* Deposit amount styling */
.db-btn__meta{
  font-size: 12px;
  font-weight: 700;
  opacity: 0.8;
}

/* Enquiry line */
.db-product-buy__assist{
  font-size: 14px;
  color: #444;
}

.db-product-buy__enquire{
  font-weight: 700;
  color: #008080;
  text-decoration: underline;
}

.db-product-buy__enquire:hover{
  color: #006f6f;
}

/* Trust strip */
.db-product-buy__trust{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #e7e7e7;

  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;

  font-size: 13px;
  color: #666;
}

.db-product-buy__trust-item{
  white-space: nowrap;
}

/* Mobile tidy: stack buttons full-width */
@media (max-width: 767px){
  .db-product-buy__actions .db-btn{
    width: 100%;
  }
  .db-product-buy__trust-item{
    white-space: normal;
  }
}
