/* Stilhead - component styles (custom additions) */

/* Shop Category Accordion (shortcode: [shop-cat-acc]) */
.sh-cat-acc{
    position:relative;
    width:100%;
    height:100%;
    min-height:580px;
    display:flex;
    overflow:hidden;
}
.sh-cat-acc__item{
    position:relative;
    /* Inactive items share the remaining 60% equally */
    flex:1 1 auto;
    min-width:0;
    cursor:pointer;
    transition:flex .35s ease;
    overflow:hidden;
    border-left: 1px solid rgb(255, 255, 255, 0.8);
}

/* Active item fixed to 40% */
.sh-cat-acc__item.is-active{ flex:0 0 40%; }

.sh-cat-acc__item::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:0;
    background-image:var(--bg);
    background-size:cover;
    background-position:center;
    transform:scale(1.03);
    transition:transform .35s ease;
}
.sh-cat-acc__item:hover::before{ transform:scale(1.08); }

.sh-cat-acc__overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.25) 45%, rgba(0,0,0,.55) 100%);
}

/* Slight dim overlay on inactive items (active item stays highlighted) */
.sh-cat-acc__item::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.30);
    opacity:1;
    transition:opacity .25s ease;
    z-index:2;
    pointer-events:none;
}
.sh-cat-acc__item.is-active::after{ opacity:0; }

.sh-cat-acc__btn{
    position:absolute;
    left:18px;
    bottom:18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.75);
    color:#fff;
    background:rgba(0,0,0,.20);
    text-decoration:none;
    font-weight:600;
    letter-spacing:.02em;
    z-index:4;
    backdrop-filter: blur(6px);
}
.sh-cat-acc__btn:hover{ background:rgba(0,0,0,.35); }

/* Button visibility:
   Only show buttons for items to the LEFT of (and including) the active item.
   JS toggles .sh-btn-visible on items with index <= active.
*/
.sh-cat-acc__btn{
    opacity:0;
    pointer-events:none;
    transition:opacity .25s ease;
}
.sh-cat-acc__item.sh-btn-visible .sh-cat-acc__btn{
    opacity:1;
    pointer-events:auto;
}

.sh-cat-acc__nav{
    position:absolute;
    right:16px;
    bottom:16px;
    z-index:5;
    display:flex;
    gap:10px;
}
.sh-cat-acc__nav button{
    width:44px;
    height:44px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.65);
    background:rgba(0,0,0,.25);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    backdrop-filter: blur(6px);
}
.sh-cat-acc__nav button:hover{
    background:rgba(0,0,0,.4);
    border-radius:999px;
}
.sh-cat-acc__nav svg{ width:18px; height:18px; }

.sh-cat-acc__item .sh-cat-acc__overlay{
	background:rgba(0,0,0,0.4);
	pointer-events:none;
}

.sh-cat-acc__item.is-active .sh-cat-acc__overlay{
	display:none;
}

/* =============================
 * Custom Cart Layout (Stillhead)
 * ============================= */

body.woocommerce-cart .woocommerce{ max-width:none; }

.sh-cart-wrap{width: 100%;max-width: 1320px;margin: 0;padding: 60px 0;}

.sh-cart-steps{ display:flex; gap:28px; justify-content:center; align-items:center; margin:6px 0 50px; }
.sh-step{ display:flex; align-items:center; gap:10px; color:#fff; opacity:.95; }
.sh-step-num{ width:26px; height:26px; display:inline-flex; align-items:center; justify-content:center; border-radius:6px; background:#fff; color:#111; font-weight:800; font-size:13px; }
.sh-step-label{ text-transform:uppercase; font-weight:800; font-size:12px; letter-spacing:.06em; }
.sh-step.is-disabled{ opacity:.35; }

.sh-cart-grid{ display:flex; gap:10px; align-items:flex-start; justify-content:center; }

.sh-cart-merch{ flex:0 0 290px; }
.sh-cart-main{ flex:1 1 auto; min-width:520px; }
.sh-cart-summary{ flex:0 0 430px; }

.sh-cart-main, .sh-cart-summary, .sh-merch-card{ background:#fff; border-radius:12px; box-shadow:0 10px 40px rgba(0,0,0,.18); }
.sh-cart-main{ position:relative; padding:22px 18px 18px; }
.sh-cart-summary{ position:relative; }
.sh-summary-card{ padding:18px 18px 16px; }

.sh-merch-card{ overflow:hidden;     min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: end;}
.sh-merch-figure img{ max-width:270px; height:auto; display:block; }
.sh-merch-figure{
	position: absolute;
    top: 30px;
    left: 40px;
    z-index: 9;
}
.sh-merch-body{ padding:14px 18px 20px; text-align:center; }
.woocommerce-cart .sh-merch-title{ margin:0; font-weight:700;color:#111; font-family: var(--e-global-typography-text-font-family), Sans-serif; font-size:20px }
.sh-merch-text{ margin:10px 0 !important; color:#9a9a9a; font-weight:600; }
.woocommerce-cart .sh-merch-btn{ width:100%; border-radius:10px; padding:12px 14px; background:#4b4b4b; color:#fff; font-weight:900; letter-spacing:.06em; border:none; color: var(--e-global-color-text); font-family: var(--e-global-typography-text-font-family), Sans-serif; font-size: var(--e-global-typography-text-font-size); line-height: var(--e-global-typography-text-line-height);}
.woocommerce-cart .sh-merch-btn:hover, .woocommerce-cart .sh-merch-btn:focus, .woocommerce-cart .sh-merch-btn:active{ width:100%; border-radius:10px; padding:12px 14px; background:#4b4b4b; color:#fff; font-weight:900; letter-spacing:.06em; border:none; color: var(--e-global-color-text); font-family: var(--e-global-typography-text-font-family), Sans-serif; font-size: var(--e-global-typography-text-font-size); line-height: var(--e-global-typography-text-line-height); opacity:0.7 !important; }

.sh-cart-table{ width:100%; max-width:100%; box-sizing:border-box; overflow:hidden; }
.sh-cart-header{
  display:grid;
  grid-template-columns: 15% 50% 17.5% 17.5%;
  gap:0;
  padding:6px 6px 14px;
  border-bottom:1px solid #ececec;
  color:#c9c9c9;
  text-transform:uppercase;
  font-weight:900;
  font-size:12px;
  letter-spacing:.08em;
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}
.sh-cart-row{
  display:grid;
  grid-template-columns: 15% 50% 17.5% 17.5%;
  gap:0;
  padding:18px 6px;
  border-bottom:1px solid #efefef;
  align-items:flex-start;
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}
.woocommerce-cart .sh-cart-col-subtotal .woocommerce-Price-amount {font-size:15px; color:#222;}
.woocommerce-cart .sh-cart-col-subtotal {padding-left:10px;}
.sh-cart-col-thumb{ position:relative; display:flex; align-items:center; justify-content:center; padding-right:10px;}
.sh-cart-remove{ position:absolute; top:-6px; left:-6px; z-index:2; }
.sh-cart-remove .remove{ width:22px; height:22px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; background:#ff3b30; color:#fff !important; text-decoration:none; line-height:1; box-shadow:0 6px 14px rgba(0,0,0,.18); }
.sh-cart-thumb img{ width:74px; height:auto; border-radius:10px; background:#f2efe9; padding:8px; }
.sh-cart-col-info{ display:flex; flex-direction:column; gap:6px; padding-right:10px; }
.sh-cart-header .sh-cart-col-info{ display:block; flex-direction:initial; gap:0; }
.sh-cart-title a, .sh-cart-title{ font-weight:900; color:#111; text-decoration:none; outline:none; }
.sh-cart-title a:hover, .sh-cart-title:hover{ font-weight:900; color:#111; text-decoration:none; opacity:0.6; }
.sh-cart-cat{ color:#8f8f8f; font-weight:800; font-size:13px; }
.sh-cart-unit-price{ font-weight:900; color:#999; }
.sh-cart-subtotal{ text-align:right; font-weight:900; font-size:18px; color:#111; }

.sh-qty-wrap{ display:grid; grid-template-columns:34px 1fr 34px; align-items:center; height:38px; max-width:140px; margin:0 auto; }
.sh-qty-btn{ height:38px; border:1px solid #d7d7d7; background:#fff; font-weight:900; border-radius:6px; }
.sh-qty-wrap input.qty{ height:38px; border-top:1px solid #d7d7d7; border-bottom:1px solid #d7d7d7; border-left:none; border-right:none; text-align:center; width:100% !important; }

.woocommerce-cart .quantity .qty, .woocommerce-cart .quantity .minus, .woocommerce-cart .quantity .plus {
    display: block;
    float: left;
    width: 25px !important;
    height: 25px !important;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #e4e4e4;
    margin: 0;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    font-size: 12px;
    color: #777;
    -moz-appearance: textfield;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    min-height: 25px !important;
    line-height: 25px !important;
}

.woocommerce-cart .quantity .qty{width: 34px !important;}

.woocommerce-cart .sh-cart-unit-price .amount {color:#111 !important; opacity:0.3;}

.sh-cart-actions{ display:flex; justify-content:flex-end; padding:18px 6px 0; }
.sh-cart-actions button[name="update_cart"]{ 
	border-radius:10px; padding:10px 18px !important; background:#fff; border:1px solid #d0d0d0; color:#8a8a8a; font-weight:900; letter-spacing:.06em; 
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    line-height: var(--e-global-typography-text-line-height);
}

.sh-cart-actions button[name="update_cart"]:hover{ 
	border-radius:10px; padding:10px 18px !important; background:#d47b2b; border:1px solid #d47b2b; color:#fff; font-weight:900; letter-spacing:.06em; 
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    line-height: var(--e-global-typography-text-line-height);
}

.sh-summary-card .cart_totals h2{ display:none; }
.sh-coupon-row{ display:grid; grid-template-columns:1fr 160px; gap:14px; margin-bottom:18px; }
.sh-coupon-input{ height:42px; border-radius:8px; border:1px solid #dedede; background:#e6e6e6; color:#222; padding:5px 10px; border:0 !important; outline:none;}
.woocommerce-cart .sh-apply-coupon{ height:42px; border-radius:10px; border:2px solid #222; background:#fff; color:#111;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    line-height: var(--e-global-typography-text-line-height); }

.sh-summary-card .shop_table{ border:none !important; margin:0; }
.sh-summary-card .shop_table th, .sh-summary-card .shop_table td{ padding:16px 0 !important; border-top:1px solid #efefef !important; }
.sh-summary-card .shop_table th{ font-weight:900; text-transform:uppercase; letter-spacing:.06em; color:#111; }
.sh-summary-card .shop_table .order-total td{ font-size:18px; font-weight:900; color:#d47b2b; text-align:right; }

.woocommerce-cart .cart-discount td {text-align:right;}
.woocommerce-cart .cart-discount td a {
    width: 100%;
    display: inline-block;
    color: black;
	outline:none;
}

.sh-summary-card .wc-proceed-to-checkout a.checkout-button{ background:#d47b2b !important; border-radius:10px !important; padding:14px 16px !important; font-weight:900 !important; letter-spacing:.06em; margin-top:10px; }

.sh-cart-grid br {display:none !important;}

.sh-ajax-overlay{ position:absolute; inset:0; background:rgba(255,255,255,.72); display:none; align-items:center; justify-content:center; border-radius:12px; z-index:50; }
.sh-cart-main.is-busy .sh-ajax-overlay, .sh-cart-summary.is-busy .sh-ajax-overlay{ display:flex; }
.sh-wc-spinner{ width:36px; height:36px; background-image:var(--sh-spinner-url); background-size:36px 36px; background-repeat:no-repeat; background-position:center; }

.woocommerce-cart .woocommerce-shipping-calculator *{color:#222 !important; text-align:left !important;}
.woocommerce-cart  .shipping-calculator-button {color:var(--e-global-color-primary) !important;}

.woocommerce-cart .woocommerce-shipping-may-be-available-html {color:#222;}

.woocommerce-cart button[name="calc_shipping"]{
	height: 36px;
    border-radius: 10px;
    border: 1px solid #222;
    background: #fff;
    color: #111;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: 12px;
    line-height: var(--e-global-typography-text-line-height);
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 20px;
    margin-top: 10px;
    padding: 5px 10px !important;
    min-width: 100px;
}

.woocommerce-cart button[name="calc_shipping"]{
    border: 1px solid #111;
	text-align:center !important;
}

.woocommerce-cart .woocommerce-Price-amount {font-size:18px; font-weight:bold; text-align:right;}
.woocommerce-cart td[data-title="Subtotal"] {
    text-align: right;
}

.woocommerce-checkout label {color:#444;}

.woocommerce-checkout h2, .woocommerce-checkout h3, .woocommerce-checkout h4, .woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table th {
	font-family: "Muller", sans-serif !important;
    font-size: 16px !important;
    font-weight: normal;
    text-transform: uppercase !important;
    color: #444;
	letter-spacing: normal !important;
}

.woocommerce-checkout .product-name, .woocommerce-checkout .tax_label {color:#444 !important}
.woocommerce-checkout .cart_item td {padding: 10px 0 !important;}
.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr:first-child td{margin-top:10px;}
.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr:last-child td{margin-bottom:10px;}
.woocommerce-checkout .woocommerce-checkout-payment br {display:none !important;}
.woocommerce-checkout .woocommerce-checkout-review-order p {color:#444 !important;}
.woocommerce-checkout .payment_box {padding:1.4em 0 !important;}

.woocommerce-checkout #place_order {
	background: #d47b2b !important;
    border-radius: 10px !important;
    padding: 14px 16px !important;
    font-weight: 900 !important;
    letter-spacing: .06em;
    margin-top: 10px;
	color: var(--e-global-color-text);
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    line-height: var(--e-global-typography-text-line-height);
	text-transform:uppercase;
	border-width: 1px;
}

.woocommerce-checkout #place_order:hover {
	opacity:0.7;
}

.woocommerce-checkout #order_review {
    width: 100% !important;
}

@media (max-width:1100px){
  .sh-cart-grid{ flex-wrap:wrap; }
  .sh-cart-merch{ flex:1 1 320px; }
  .sh-cart-summary{ flex:1 1 420px; }
  .sh-cart-main{ flex:1 1 100%; min-width:0; }
}
@media (max-width:700px){
  .sh-cart-header, .sh-cart-row{
  display:grid;
  grid-template-columns: 11.6667% 65% 11.6667% 11.6667%;
  gap:0;
  padding:18px 6px;
  border-bottom:1px solid #efefef;
  align-items:center;
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}
  .sh-cart-subtotal{ text-align:left; }
  .sh-coupon-row{ grid-template-columns:1fr; }
}

/* Ensure cart column alignment */
.sh-cart-col-qty, .sh-cart-qty{ text-align:center; }
.sh-cart-col-subtotal, .sh-cart-subtotal{ text-align:right; }

.woocommerce-cart .sh-cart-col-qty .quantity {min-width:unset;}

/* Merch modal (ensure centered + correct dimensions) */
.sh-merch-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:99999;
  align-items:center;
  justify-content:center;
}
.sh-merch-modal.is-open{ display:flex; }
.sh-merch-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
}
.sh-merch-modal__panel{
  position:relative;
  width:50vw;
  max-width:920px;
  max-height: calc(100vh - 80px);
  overflow:auto;
  background:#fff;
  border-radius:18px;
  padding:22px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

/* === Custom Checkout Layout (Stillhead) === */
.woocommerce-checkout.sh-checkout{ margin:0; }
.sh-checkout-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items:start;
}
@media (max-width: 1024px){
  .sh-checkout-grid{ grid-template-columns: 1fr; }
}
.sh-checkout-card{
  background:#fff;
  border-radius:14px;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  padding: 28px;
  overflow:hidden;
}
@media (max-width: 768px){
  .sh-checkout-card{ padding: 20px; }
}
.sh-checkout-title{
  margin: 0 0 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
}
/* Tighten Woo default checkout spacing inside cards */
.sh-checkout-card .woocommerce-billing-fields__field-wrapper,
.sh-checkout-card .woocommerce-shipping-fields__field-wrapper{
  display:block;
}
.sh-checkout-card .form-row{ margin-bottom: 14px; }
.sh-checkout-card input.input-text,
.sh-checkout-card select,
.sh-checkout-card textarea{
  border-radius: 4px;
}
.sh-checkout-right #order_review{
  margin-top: 10px;
}
.sh-checkout-right table.shop_table{
  border-collapse: collapse;
}
.sh-checkout-right table.shop_table th,
.sh-checkout-right table.shop_table td{
  border-top: 1px solid #efefef;
  padding: 10px 0;
}
.sh-checkout-right table.shop_table thead th{
  padding-top: 14px;
  padding-bottom: 14px;
}
.sh-checkout-right .woocommerce-checkout-review-order-table .product-total{
  text-align:right;
}
.sh-checkout-right .wc_payment_methods{
  margin-top: 18px;
}
.sh-checkout-right #place_order{
  width: 100%;
  border-radius: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

/* === Stillhead Locations Shortcode === */
.sh-locations{
  display:grid;
  grid-template-columns:minmax(280px,20%) minmax(0,80%);
  height:calc(100vh - 120px);
  min-height:560px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
}
.sh-locations__list{
  overflow-y:auto;
  border-right:1px solid rgba(0,0,0,.08);
  padding:0;
  background:#fbfaf8;
}
.sh-locations__map-wrap{
  position:relative;
  overflow:hidden;
  background:#e9e5de;
}
.sh-locations__map,
.sh-locations__map-wrap iframe{
  width:100%;
  height:100%;
}
.sh-locations__map-notice,
.sh-locations__empty{
  padding:20px 24px;
  color:#2b2523;
}
.sh-locations__area{
  border-bottom:1px solid rgba(0,0,0,.08);
}
.sh-locations__area-toggle,
.sh-locations__item-toggle{
  width:100%;
  border:0;
  background:transparent;
  text-align:left;
  cursor:pointer;
  color:#2b2523;
}
.sh-locations__area-toggle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:18px 24px;
  font-size:16px;
  font-weight:700;
  letter-spacing:.02em;
  text-transform:uppercase;
  background-color: #D67D39 !important;
}
.sh-locations__area-toggle::after{
  content:'+';
  font-size:22px;
  line-height:1;
}
.sh-locations__area.is-open .sh-locations__area-toggle::after{
  content:'−';
}
.sh-locations__area-panel{
  
}
.sh-locations__items{
  
}
.sh-locations__item{
  border-top:1px solid rgba(0,0,0,.06);
}
.sh-locations__item:first-child{
  border-top:0;
}
.sh-locations__item-toggle{
    background-color:#ccc !important;
    border-radius:0 !important;
    padding:10px !important;
    font-size:13px !important;
    color:#222 !important;
    font-weight:700;
    transition:background-color .2s ease, color .2s ease;
}
.sh-locations__item-panel{
  padding:4px 10px 16px;
  font-size:14px;
  color:#3e3733;
}
.sh-locations__meta-row{
  line-height:1.5;
}
.sh-locations__meta-row strong,
.sh-locations__meta-row span,
.sh-locations__meta-row a{
  display:block;
}
.sh-locations__meta-row strong{
  margin-bottom:2px;
  font-size:13px;
}
.sh-locations__meta-row + .sh-locations__meta-row{
  margin-top:8px;
}
.sh-locations__meta-row a{
  color:#3e3733;
  text-decoration:none;
  word-break:break-word;
}
.sh-locations__meta-row a:hover{
  text-decoration:underline;
  color: #3e3733;
}
.sh-locations__infowindow{
  font-size:14px;
  line-height:1.45;
  color:#2b2523;
}
.sh-locations__infowindow strong{
  display:block;
  margin-bottom:6px;
}
@media (max-width: 1024px){
  .sh-locations{
    grid-template-columns:1fr;
    height:auto;
    min-height:0;
  }
  .sh-locations__list{
    max-height:45vh;
    border-right:0;
    border-bottom:1px solid rgba(0,0,0,.08);
  }
  .sh-locations__map-wrap{
    height:55vh;
    min-height:360px;
  }
}


/* Google Maps compatibility */
.sh-locations__map-wrap{
  position:relative;
  overflow:hidden;
  min-width:0;
}
.sh-locations__map{
  position:relative;
  width:100%;
  height:100%;
  min-height:100%;
  background:transparent;
}
.sh-locations__map img,
.sh-locations .gm-style img{
  max-width:none !important;
}
.sh-locations .gm-style,
.sh-locations .gm-style > div,
.sh-locations .gm-style canvas{
  max-width:none !important;
}
.sh-locations .gm-style iframe{
  border:0;
}

.sh-locations__item.is-open .sh-locations__item-toggle{
  background:#bfbfbf !important;
}


#brandy-01, #brandy-02, #brandy-03, #brandy-04, #brandy-05, #brandy-06, #tours-form, #lounge-form, #book-form {cursor: pointer;}

#sh-wishlist-page .wishlist-title {display:none;}
#sh-wishlist-page .product-name *{color:#222;}

form.elementor-form#wholesale_form .elementor-field-group-field_67a1eaa label {    
  color: #222 !important;
  display: block !important;
  font-size: 14px !important;
  width: 100% !important;
  height: 20px !important;
  position: relative;
  top: unset;
}

#sh-my-account * {outline: none !important;}
#sh-my-account * a{color:var(--e-global-color-primary) !important;}
#sh-my-account .woocommerce-MyAccount-navigation ul li a:before, #sh-my-account .woocommerce-info:before  {color:var(--e-global-color-primary) !important;}

#sh-my-account .oceanwp-user-profile {display:none !important;}
.elementor-widget-woocommerce-my-account#sh-my-account .e-my-account-tab .woocommerce .woocommerce-MyAccount-navigation {
    width: 100%;
}
#sh-my-account .woocommerce-MyAccount-navigation ul {
    margin: 0;
    border-top: 0;
}
#sh-my-account .woocommerce-MyAccount-content-wrapper p:first-child {display:none !important;}

#sh-my-account .woocommerce-MyAccount-tabs {
    width: 25%;
    margin-right: 0;
}

#sh-my-account .woocommerce-info {
    font-size: 14px;
    font-weight: 400;
    color: #222;
    border: 1px solid #222;
    margin: 0 0 30px;
    padding: 10px 15px;
    text-align: left;
    text-transform: uppercase;
    border-color: #fff;
    background-color: #fff;
    border-radius: 10px;
}

#sh-my-account a.woocommerce-Button, #sh-my-account a.button, #sh-my-account button, #sh-my-account #place_order {
  background-color: transparent !important;
  font-family: "Muller Bold", Sans-serif !important;
  font-size: 12px !important;
  font-weight: normal !important;
  text-transform: uppercase !important;
  color: #D67D39 !important;
  min-width: 130px !important;
  border-style: solid !important;
  border-width: 1px 1px 1px 1px !important;
  border-color: #D67D39 !important;
  border-radius: 9px 9px 9px 9px !important;
  padding: 10px 20px 10px 20px !important;
  text-decoration: none !important;
  line-height: var(--e-global-typography-text-line-height) !important;
}

#sh-my-account a.woocommerce-Button:hover, #sh-my-account a.button:hover, #sh-my-account button:hover, #sh-my-account #place_order:hover {
  color: #222 !important;
  min-width: 130px !important;
  border-style: solid !important;
  border-width: 1px 1px 1px 1px !important;
  border-color: #222 !important;
  border-radius: 9px 9px 9px 9px !important;
  padding: 10px 20px 10px 20px !important;
  text-decoration: none !important;
  line-height: var(--e-global-typography-text-line-height) !important;
}

#sh-my-account .woocommerce-MyAccount-content-wrapper h3 {
    font-family: "Muller Bold", Sans-serif;
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
}

#sh-my-account .woocommerce-address-fields {
  border-radius: 10px;
  padding: 20px;;
}

#sh-my-account .col-1, #sh-my-account .col-2 {
  border-radius:10px !important;
  background-color: #fff !important;
  background: #fff !important;
}

#sh-my-account header, #sh-my-account address {
  border-radius:0 !important;
  background: #fff !important;
}

#sh-my-account .col-1 h2, #sh-my-account .col-1 h3, #sh-my-account .col-1 h4, #sh-my-account .col-2 h2, #sh-my-account .col-2 h3, #sh-my-account .col-2 h4 {
  color: #222 !important;
}

#sh-my-account .woocommerce-MyAccount-content-wrapper {border-radius: 10px;}

#sh-my-account .woocommerce-MyAccount-content #payment ul.payment_methods .woocommerce-PaymentMethod>label:before {
    color: #D67D39 !important;
}

#sh-my-account .woocommerce-Payment {border-radius: 10px !important;}

/*** Responsive Styles Large Desktop And Above ***/
@media all and (min-width: 1405px) {
  
}
 
/*** Responsive Styles Standard Desktop Only ***/
@media all and (min-width: 1100px) and (max-width: 1405px) {
 
}
 
/*** Responsive Styles Tablet And Below ***/
@media all and (max-width: 980px) {
  .home-blog h3 {
      min-height: unset;
  }

  #home-cocktails img {max-width: 150px; margin: 0 auto; text-align: center;}
  #home-merch-loop p {text-align: center;}
  #legal-pages h2 {margin-top: 40px;}

  .sh-prod-cocktails__item {width: 46px;}

  .sh-product-loop .elementor-widget-woocommerce-product-short-description {min-height: unset;}
  #sh-prod-loop .elementor-widget-woocommerce-products.elementor-wc-products ul.products li.product .price {margin-top: 0;}
  .sh-product-loop .button.add_to_cart_button {padding: 5px 12px !important;}

  .wf-cocktail-card {
      padding: 0;
      margin-bottom: 30px;
  }

  .wf-cocktail-card.wf-cocktail-card--image-left .wf-cocktail-card__body {
      padding: 0;
      margin-top: 30px;
  }

  .wf-cocktail-card__title {
      font-size: 20px !important;
      line-height: 24px !important;
      margin-bottom: 10px;
  }

  .wf-cocktail-card__desc {
      margin: 0 0 10px;
  }

  .wf-cocktail-card__split {
      gap: 0px;
  }

  .wf-cocktail-card.wf-cocktail-card--image-right .wf-cocktail-card__body {
      padding: 30px 10px 30px 10px;
  }

  .shmf-block__title {
      font-size: 30px !important;
      line-height: 35px !important;
  }

  .shmf-section__title {
      font-size: 26px !important;
      line-height: 32px !important;
  }

  .shmf-block__description h3 {margin-top: 30px;}

  .shmf-secondary-nav-wrap {display: none !important;}

  /* Lounge shortcode: disable sticky image behaviour on tablet/mobile. */
  .shmf-block__col.shmf-block__col--image {
      min-height: unset !important;
      height: auto !important;
      align-self: auto !important;
      position: static !important;
      top: auto !important;
      bottom: auto !important;
      inset: auto !important;
      transform: none !important;
  }

  .shmf-block__col.shmf-block__col--image [style*="position:sticky"],
  .shmf-block__col.shmf-block__col--image [style*="position: sticky"],
  .shmf-block__col.shmf-block__col--image [style*="position:fixed"],
  .shmf-block__col.shmf-block__col--image [style*="position: fixed"] {
      position: static !important;
      top: auto !important;
      bottom: auto !important;
      inset: auto !important;
      transform: none !important;
  }

  .single-product .sh-prod-cocktails {
      flex-direction: row;
      gap: 10px;
  }

  .sh-cart-merch {display: none;}

  .sh-cart-wrap.has-merch {padding-top: 0;}

}
 
/*** Responsive Styles Tablet Only ***/
@media all and (min-width: 768px) and (max-width: 980px) {
 
}
 
/*** Responsive Styles Smartphone Only ***/
@media all and (max-width: 767px) {
  .home-blog .elementor-post__excerpt {
      min-height: unset;
  }

  .blog-featured-post .elementor-post__excerpt p {
      max-width: 100%;
  }

  .wf-cocktail-card__iconrow{flex-direction: column; margin-bottom: 0;}

  .single-product .sh-awards-badges img {
      width: 70px;
  }

  #sh-prod-cart > :first-child {
    padding: 20px 0 !important;
  }

  .sh-cart-steps {
    flex-direction: column;
    margin: 0;
  }

  .sh-cart-table {
    overflow: visible;
  }

  .sh-cart-header {
    display: none;
  }

  .sh-cart-row {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    grid-template-areas:
      "thumb info"
      "thumb qty"
      "thumb subtotal";
    gap: 10px 14px;
    align-items: start;
    padding: 18px 0;
  }

  .sh-cart-col-thumb {
    grid-area: thumb;
    align-self: start;
    padding-right: 0;
  }

  .sh-cart-col-info {
    grid-area: info;
    min-width: 0;
    padding-right: 0;
    gap: 4px;
  }

  .sh-cart-title,
  .sh-cart-title a {
    display: block;
    line-height: 1.25;
    word-break: break-word;
  }

  .sh-cart-thumb img {
    width: 64px;
  }

  .sh-cart-col-qty,
  .sh-cart-qty {
    grid-area: qty;
    justify-self: start;
    text-align: left;
  }

  .sh-cart-col-subtotal,
  .sh-cart-subtotal {
    grid-area: subtotal;
    justify-self: start;
    text-align: left;
    padding-left: 0;
  }

  .woocommerce-cart .quantity {
    display: inline-flex;
    align-items: stretch;
  }

  .woocommerce-checkout.sh-checkout {
      margin-top: 30px !important;
  }

  /* Checkout review table: refine totals/shipping layout on mobile only. */
  .woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tfoot tr {
    display: block;
    padding: 14px 0;
  }

  .woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tfoot th,
  .woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tfoot td {
    display: block;
    width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    text-align: left !important;
    word-break: normal;
  }

  .woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tfoot th {
    margin: 0 0 8px;
  }

  .woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tfoot td {
    margin: 0;
  }

  .woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table ul#shipping_method {
    margin: 0;
    padding: 0;
  }

  .woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table ul#shipping_method li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 10px;
  }

  .woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table ul#shipping_method li:last-child {
    margin-bottom: 0;
  }

  .woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table ul#shipping_method input {
    margin: 4px 0 0;
    flex: 0 0 auto;
  }

  .woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table ul#shipping_method label {
    flex: 1 1 auto;
    line-height: 1.35;
  }

  .woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tr.order-total .amount,
  .woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tr.cart-subtotal .amount,
  .woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table tr.shipping .amount {
    display: inline-block;
    margin-bottom: 4px;
  }

  .woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table .includes_tax,
  .woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table .tax_label {
    display: block;
    margin-top: 2px;
    line-height: 1.35;
  }
}
 
/*** Responsive Styles Smartphone Portrait ***/
@media all and (max-width: 479px) {
 
}