/*
Theme Name: Blossom Minimal Child
Theme URI: https://floristwow-24.com/
Description: Child theme for Blossom Minimal (custom header/footer/pages).
Author: badar
Template: blossom-minimal
Version: 1.0.1
Text Domain: blossom-minimal-child
*/

/* Put your custom CSS below */


/* Footer: Bigger logo + remove name/tagline text */
.bm-footer .bm-footer-brand .custom-logo-link,
.bm-footer .bm-footer-brand a.custom-logo-link{
  display: inline-flex;
  align-items: center;
}
.bm-footer .bm-footer-brand img.custom-logo,
.bm-footer .bm-footer-brand .custom-logo-link img,
.bm-footer .bm-footer-brand > img{
  max-height: 68px;
  width: auto;
  height: auto;
}
.bm-footer .bm-footer-title,
.bm-footer .bm-footer-tagline{
  display:none !important;
}

/* Footer: Shop Categories (3 visible + remaining scroll DOWN) */
.bf-cat-wrap{ margin-top:6px; }
.bf-cat-featured{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top:6px;
}
.bf-cat-feature,
.bf-cat-row{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  text-decoration:none;
  background: rgba(255,255,255,.55);
  transition: transform .12s ease, box-shadow .12s ease;
  width:100%;
}
.bf-cat-feature{ padding:10px 10px; }

.bf-cat-feature:hover,
.bf-cat-row:hover{
  transform: translateY(-1px);
  box-shadow:0 10px 18px rgba(0,0,0,.08);
}

.bf-cat-thumb{
  width:38px;
  height:38px;
  flex:0 0 38px;
  border-radius:12px;
  overflow:hidden;
  background: rgba(0,0,0,.04);
}
.bf-cat-thumb--ph{ background: rgba(0,0,0,.06); }
.bf-cat-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.bf-cat-name{
  font-weight:600;
  line-height:1.15;
  font-size:14px;
}

.bf-cat-more{ margin-top:8px; }

/* Remaining categories: UP/DOWN scroll only */
.bf-cat-vscroll{
  display:flex;
  flex-direction:column;
  gap:8px;
  max-height: 210px;
  overflow-y:auto;
  overflow-x:hidden;
  padding:2px 2px 6px;
  scrollbar-width: thin;
}
.bf-cat-vscroll::-webkit-scrollbar{ width:8px; }
.bf-cat-vscroll::-webkit-scrollbar-thumb{ background: rgba(0,0,0,.20); border-radius:999px; }
.bf-cat-vscroll::-webkit-scrollbar-track{ background: transparent; }

@media (max-width: 680px){
  .bm-footer .bm-footer-brand img.custom-logo,
  .bm-footer .bm-footer-brand .custom-logo-link img,
  .bm-footer .bm-footer-brand > img{ max-height: 62px; }
}


/* ===== Desktop header: single row (logo left, menu center, icons right) ===== */
@media (min-width: 992px){
  /* Make header container full-width so logo sits more left and icons more right */
  .bm-header .bm-header-main .bm-container,
  .bm-header .bm-topbar .bm-container{
    max-width: 100% !important;
    padding-left: 16px;
    padding-right: 16px;
  }

  .bm-header .bm-header-inner{
    display:flex;
    align-items:center;
    flex-wrap:nowrap;
    gap:18px;
  }
  .bm-header .bm-brand{
    flex:0 0 auto;
    margin-right:12px;
  }
  .bm-header .bm-desktop-nav{
    flex:1 1 auto;
    min-width:0;
    display:flex;
    justify-content:center;
    overflow:hidden;
  }
  .bm-header .bm-desktop-nav .bm-nav-list--desktop{
    display:flex;
    flex-wrap:nowrap;
    justify-content:center;
    gap:16px;
    white-space:nowrap;
  }
  .bm-header .bm-desktop-nav .bm-nav-list--desktop > li{
    flex:0 0 auto;
  }
  .bm-header .bm-desktop-nav .bm-nav-list--desktop > li > a{
    font-size:14px;
    padding:10px 0;
  }
  .bm-header .bm-header-icons{
    flex:0 0 auto;
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:10px;
  }
}

/* === BF Header + Woo Checkout Tweaks === */
/* Header logo size */
.bm-header .bm-brand img.custom-logo,
.bm-header .bm-brand .bm-custom-logo-link img{
  max-height: 58px;
  width: auto;
  height: auto;
}
@media (max-width: 768px){
  .bm-header .bm-brand img.custom-logo,
  .bm-header .bm-brand .bm-custom-logo-link img{
    max-height: 44px;
  }
}

/* Help dropdown items (Phone/Email only) */
.bm-dropdown-menu .bm-help-item{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  text-decoration:none;
  border-radius:12px;
}
.bm-dropdown-menu .bm-help-item .bm-help-k{
  font-weight: 700;
}
.bm-dropdown-menu .bm-help-item:hover{
  background: rgba(0,0,0,.04);
}

/* Cart: Proceed to Checkout button */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button{
  display:block;
  width:100%;
  padding:14px 18px;
  border-radius:16px;
  font-weight:700;
  letter-spacing:.2px;
  text-transform:none;
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
  border:0;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0,0,0,.14);
}
/* === Cart: Proceed to Checkout button (Professional) === */
.wc-block-cart .wc-block-cart__submit-button,
.wc-block-cart .wc-block-cart__submit-button.wp-element-button{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 100% !important;
  max-width: 520px;           /* desktop pe zyada wide na ho */
  margin: 14px auto 0 !important;

  padding: 14px 18px !important;
  border-radius: 14px !important;

  background: #111 !important;
  color: #fff !important;
  border: 1px solid rgba(0,0,0,.10) !important;

  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: .2px !important;
  line-height: 1.2 !important;
  text-decoration: none !important;

  box-shadow: 0 10px 22px rgba(0,0,0,.12) !important;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, opacity .18s ease !important;
}

/* text center fix */
.wc-block-cart .wc-block-cart__submit-button .wc-block-components-button__text{
  display: inline-block !important;
}

/* Hover/Focus */
.wc-block-cart .wc-block-cart__submit-button:hover,
.wc-block-cart .wc-block-cart__submit-button:focus{
  background: #000 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.18) !important;
  text-decoration: none !important;
  outline: none !important;
}

/* Active click */
.wc-block-cart .wc-block-cart__submit-button:active{
  transform: translateY(0) !important;
  box-shadow: 0 8px 18px rgba(0,0,0,.14) !important;
}

/* Optional: small screens pe full width */
@media (max-width: 640px){
  .wc-block-cart .wc-block-cart__submit-button{
    max-width: 100% !important;
  }
}
