/* ==============================
   shop.css - חנות שמעון יוסף
   ============================== */

*{
  box-sizing:border-box;
}

body{
  margin:0;
  direction:rtl;
  font-family:Arial, sans-serif;
  background:#ffffff;
  color:#1f3347;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

/* ==============================
   Header from layout.js
   ============================== */
.site-hero{
  position:relative;
  min-height:260px;
  background:
    linear-gradient(rgba(255,255,255,.68), rgba(255,255,255,.68)),
    url('/uploads/system/library.jpg') center/cover;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border-top:4px solid #20384d;
}

.site-logo img{
  max-width:160px;
  margin-bottom:10px;
}

.site-nav{
  background:#20384d;
  border-radius:0 0 24px 24px;
  padding:18px 42px;
  display:flex;
  gap:32px;
  box-shadow:0 12px 35px rgba(0,0,0,.18);
}

.site-nav a{
  color:#fff;
  font-weight:700;
  font-size:18px;
}

.site-nav a.active,
.site-nav a:hover{
  color:#d4a429;
}

/* ==============================
   Cart badge / drawer
   ============================== */
.cart-badge{
  position:absolute;
  top:55px;
  left:80px;
  background:#20384d;
  color:#fff;
  min-width:80px;
  height:35px;
  padding:0 2px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.2s;
  font-size:14px;
  font-weight:600;
}

.cart-badge:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(0,0,0,.22);
}

.cart-count{
  position:absolute;
  top:-10px;
  right:-10px;
  width:26px;
  height:26px;
  border-radius:50%;
  background:#d4a429;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:700;
}

.cart-drawer-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  z-index:9999;
}

.cart-drawer{
  position:absolute;
  top:0;
  left:0;
  width:360px;
  max-width:90vw;
  height:100%;
  background:#fff;
  padding:28px;
  box-shadow:10px 0 40px rgba(0,0,0,.25);
}

.cart-close{
  border:none;
  background:none;
  font-size:28px;
  cursor:pointer;
}

.cart-drawer-item{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
  border-bottom:1px solid #eee;
}

.cart-drawer-item span{
  display:block;
  margin-top:6px;
  color:#8a6a21;
}

.cart-item-variation{
  margin-top:3px;
  margin-bottom:6px;
  font-size:12px;
  color:#8a94a3;
  font-weight:400;
}

.cart-drawer-total{
  margin-top:24px;
  font-weight:700;
  font-size:20px;
  text-align:center;
}

.drawer-main-btn{
  width:100%;
  margin-top:18px;
  height:48px;
  border:none;
  border-radius:12px;
  background:#d4a429;
  color:#fff;
  font-weight:600;
  cursor:pointer;
}

.cart-remove-btn{
  width:36px;
  height:36px;
  border:none;
  border-radius:10px;
  background:#f1f5f9;
  cursor:pointer;
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#64748b;
}

.cart-remove-btn:hover{
  background:#fee2e2;
}

/* ==============================
   Shop hero / banner
   ============================== */
.shop-hero{
  text-align:center;
  padding:70px 20px 46px;
}

.shop-hero h1{
  margin:0;
  font-size:44px;
  line-height:1.2;
  color:#1f3347;
  font-weight:800;
}

.shop-hero p{
  margin:14px 0 0;
  color:#8a6a21;
  font-size:18px;
}

.hero-banner{
  display:block;
  max-width:1280px;
  margin:0 auto 30px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.hero-banner img{
  width:100%;
}

/* ==============================
   Main layout
   ============================== */
.shop-layout{
  max-width:1280px;
  margin:0 auto;
  padding:20px 24px 70px;
  display:grid;
  grid-template-columns:280px minmax(0,1fr);
  gap:32px;
  align-items:start;
}

.shop-sidebar{
  width:260px;
  position:sticky;
  top:24px;
  margin-top:65px;
  background:#fff;
  border-radius:22px;
  padding:20px;
}

.shop-main{
  min-width:0;
  border-right:1px solid #e5e7eb;
  padding-right:32px;
}

.shop-toolbar{
  width:100%;
  margin-bottom:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.products-count{
  color:#64748b;
  font-weight:700;
  font-size:16px;
}

.shop-toolbar select{
  width:190px;
  height:44px;
  border:1px solid #dce5ee;
  border-radius:14px;
  padding:0 12px;
  background:#fff;
  font-size:14px;
  outline:none;
}

/* ==============================
   Sidebar filters
   ============================== */
.shop-sidebar h3{
  margin:0 0 18px;
  font-size:22px;
  color:#20384d;
  text-align:center;
}

.shop-sidebar label{
  display:block;
  margin:15px 0 7px;
  font-weight:700;
  font-size:14px;
  color:#20384d;
}

.shop-sidebar input,
.shop-sidebar select{
  width:100%;
  height:44px;
  border:1px solid #dce5ee;
  border-radius:14px;
  padding:0 12px;
  font-size:14px;
  background:#fff;
  color:#1f3347;
  outline:none;
}

.shop-sidebar input:focus,
.shop-sidebar select:focus,
.shop-toolbar select:focus{
  border-color:#d4a429;
  box-shadow:0 0 0 3px rgba(212,164,41,.13);
}

.clear-filters-btn{
  width:100%;
  margin-top:18px;
  height:46px;
  border:none;
  border-radius:14px;
  background:#20384d;
  color:#fff;
  font-weight:700;
  cursor:pointer;
  transition:.2s;
}

.clear-filters-btn:hover{
  background:#162b3d;
}

.filter-custom-select{
  position:relative;
  z-index:20;
}

.filter-select-trigger{
  width:100%;
  height:48px;
  border:1px solid #dce5ee;
  border-radius:14px;
  background:#fff;
  color:#20384d;
  padding:0 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
}

.filter-select-arrow{
  width:8px;
  height:8px;
  border-right:2px solid #20384d;
  border-bottom:2px solid #20384d;
  transform:rotate(45deg);
  transition:.2s;
}

.filter-custom-select.open .filter-select-arrow{
  transform:rotate(225deg);
}

.filter-select-options{
  display:none;
  position:absolute;
  top:calc(100% + 6px);
  right:0;
  left:0;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 14px 30px rgba(0,0,0,.12);
  z-index:50;
}

.filter-custom-select.open .filter-select-options{
  display:block;
}

.filter-select-options button{
  width:100%;
  height:44px;
  border:none;
  background:#fff;
  color:#20384d;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  text-align:right;
  padding:0 16px;
}

.filter-select-options button:first-child{
  background:#f7f1e4;
  color:#d4a429;
}

.filter-select-options button:hover{
  background:#f7f5ef;
  color:#d4a429;
}

/* ==============================
   Product grid / cards
   ============================== */
.shop-grid{
  width:100%;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}

.shop-card{
  position:relative;
  width:100%;
  min-width:0;
  min-height:430px;
  background:#fff;
  border:1px solid #eef2f6;
  border-radius:18px;
  padding:18px;
  color:inherit;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow:0 10px 26px rgba(15,43,68,.06);
  transition:.22s ease;
}

.shop-card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 32px rgba(15,43,68,.1);
}

.shop-card-image{
  height:165px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
}

.shop-card-image img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.shop-card-body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding-top:8px;
}

.shop-card-category{
  margin-bottom:7px;
  color:#d4a429;
  font-size:12px;
  font-weight:700;
}

.shop-card h3{
  margin:0 0 8px;
  color:#0f2b44;
  font-size:15.5px;
  line-height:1.45;
  min-height:44px;
}

.shop-price{
  margin-top:10px;
  font-weight:800;
  color:#0f2b44;
  font-size:17px;
}

.old-price{
  text-decoration:line-through;
  color:#9ca3af;
  margin-left:8px;
  font-weight:600;
}

.shop-card-btn{
  margin-top:auto;
  height:42px;
  border-radius:12px;
  background:#d4a429;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:700;
  transition:.2s;
}

.shop-card:hover .shop-card-btn{
  background:#bd8f20;
}

.archive-stock-badge{
  position:absolute;
  top:14px;
  left:14px;
  background:#d93025;
  color:#fff;
  padding:5px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  z-index:2;
}

.shop-empty{
  grid-column:1/-1;
  background:#fff;
  border-radius:20px;
  padding:42px;
  text-align:center;
  color:#64748b;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* ==============================
   Sticky search bar
   ============================== */
.sticky-search-bar{
  position:fixed;
  top:10px;
  left:24px;
  right:24px;
  height:72px;
  padding:0 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  background:#fff;
  border-radius:18px;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  z-index:9999;
  transform:translateY(-120%);
  opacity:0;
  pointer-events:none;
  transition:.25s ease;
}

.sticky-search-bar.visible{
  transform:translateY(0);
  opacity:1;
  pointer-events:auto;
}

.sticky-logo{
  flex:0 0 auto;
}

.sticky-logo img{
  height:38px;
  width:auto;
}

.sticky-search-wrap{
  position:relative;
}

#stickyProductSearch{
  width:450px;
  max-width:45vw;
  height:40px;
  border:1px solid #dbe3ec;
  border-radius:999px;
  padding:0 18px;
  font-size:15px;
  outline:none;
}

.sticky-cart-badge{
  position:relative;
  flex:0 0 auto;
  background:#20384d;
  color:#fff;
  min-width:92px;
  height:40px;
  padding:0 12px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-weight:700;
}

.sticky-cart-count{
  position:absolute;
  top:-9px;
  right:-9px;
  width:24px;
  height:24px;
  border-radius:50%;
  background:#d4a429;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

.sticky-cart-total{
  font-size:15px;
}

.sticky-search-results{
  position:absolute;
  top:52px;
  right:50%;
  transform:translateX(50%);
  width:450px;
  max-width:45vw;
  max-height:520px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  box-shadow:0 14px 35px rgba(0,0,0,.12);
  overflow:auto;
  overflow-x:hidden;
  display:none;
  z-index:10000;
}

.sticky-search-results.active{
  display:block;
}

.sticky-search-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 16px;
  border-bottom:1px solid #eef2f7;
  transition:.15s;
}

.sticky-search-item:hover{
  background:#f8fafc;
  transform:translateX(-3px);
}

.sticky-search-item:last-child{
  border-bottom:none;
}

.sticky-search-item img{
  width:44px;
  height:44px;
  object-fit:contain;
  border-radius:8px;
  background:#f8fafc;
}

.sticky-search-info{
  flex:1;
  min-width:0;
}

.sticky-search-item-title{
  font-weight:700;
  color:#20384d;
  font-size:14px;
}

.sticky-search-meta{
  margin-top:6px;
  display:flex;
  gap:12px;
  color:#8a6a21;
  font-size:13px;
  font-weight:700;
}

.sticky-search-empty{
  padding:14px;
  color:#64748b;
  font-size:14px;
  text-align:center;
}

.sticky-search-all{
  display:flex;
  align-items:center;
  justify-content:center;
  height:52px;
  background:#f7f5ef;
  color:#20384d;
  font-size:16px;
  font-weight:700;
  border-top:1px solid #e5e7eb;
}

.sticky-search-all:hover{
  background:#efe8dc;
}

/* ==============================
   Responsive
   ============================== */
@media(max-width:1200px){
  .shop-layout{
    max-width:1080px;
    grid-template-columns:240px minmax(0,1fr);
    gap:24px;
  }

  .shop-sidebar{
    width:240px;
  }

  .shop-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media(max-width:900px){
  .shop-layout{
    grid-template-columns:1fr;
    max-width:760px;
  }

  .shop-sidebar{
    width:100%;
    position:relative;
    top:auto;
    margin-top:0;
    order:-1;
  }

  .shop-main{
    border-right:none;
    padding-right:0;
  }

  .shop-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media(max-width:620px){
  .shop-hero{
    padding:46px 18px 30px;
  }

  .shop-hero h1{
    font-size:36px;
  }

  .shop-toolbar{
    align-items:stretch;
    flex-direction:column;
  }

  .shop-toolbar select{
    width:100%;
  }

  .shop-grid{
    grid-template-columns:1fr;
  }

  .cart-badge{
    position:relative;
    top:auto;
    left:auto;
    margin-top:14px;
  }

  .sticky-search-bar{
    left:12px;
    right:12px;
    padding:0 14px;
    gap:12px;
  }

  #stickyProductSearch,
  .sticky-search-results{
    width:100%;
    max-width:none;
  }
}

.account-header-link,
.sticky-account-link{
  position:absolute;
  left:118px;
  top:22px;
  display:flex;
  align-items:center;
  gap:7px;
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  background:#fff;
  color:#17324a;
  text-decoration:none;
  font-weight:800;
  box-shadow:0 10px 28px rgba(23,50,74,.10);
  border:1px solid #e4ebf3;
  z-index:10;
}

.account-icon{
  font-size:17px;
  line-height:1;
}

.sticky-account-link{
  position:static;
  min-height:40px;
  padding:0 12px;
  box-shadow:none;
  border:1px solid #e4ebf3;
  white-space:nowrap;
}

@media(max-width:787px){
  .account-header-link{
    left:88px;
    top:18px;
    padding:0 11px;
    min-height:38px;
    font-size:13px;
  }

  .sticky-account-link span:last-child{
    display:none;
  }
}


.account-header-link{
  left:118px;
  top:57px;
  min-height:44px;
  padding:0 16px;
  background:#17324a;
  color:#fff;
  border:none;
  box-shadow:none;
}

.account-header-link .account-icon{
  display:none;
}

.account-header-link:hover{
  background:#10283d;
}


.account-header-link{
  position:absolute;
  left:195px;
  top:57px;
  width:44px;
  height:44px;
  min-height:44px;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  color:#111;
  border:0;
  border-radius:0;
  box-shadow:none;
}

.account-header-link:hover{
  background:transparent;
  color:#d4a429;
}

.account-header-link .account-icon{
  display:flex;
  align-items:center;
  justify-content:center;
}

.account-icon svg{
  width:27px;
  height:27px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}

#accountHeaderText,
#stickyAccountHeaderText{
  display:none;
}

.sticky-account-link{
  width:40px;
  height:40px;
  min-height:40px;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  color:#17324a;
  border:0;
  box-shadow:none;
}


.wishlist-header-link{
  position:absolute;
  left:245px;
  top:57px;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  text-decoration:none;
  z-index:10;
}

.wishlist-header-link svg{
  width:27px;
  height:27px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.wishlist-header-link:hover,
.account-header-link:hover{
  color:#d4a429;
}


.cart-badge{
  left:145px;
  top:57px;
  width:44px;
  height:44px;
  min-height:44px;
  padding:0;
  background:transparent;
  border:0;
  box-shadow:none;
  color:#111;
  border-radius:0;
}

.cart-badge::before{
  content:"";
  width:28px;
  height:28px;
  display:block;
  background:currentColor;
  mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 8h12l-1 12H7L6 8Z' fill='none' stroke='black' stroke-width='1.7' stroke-linejoin='round'/%3E%3Cpath d='M9 8a3 3 0 0 1 6 0' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 8h12l-1 12H7L6 8Z' fill='none' stroke='black' stroke-width='1.7' stroke-linejoin='round'/%3E%3Cpath d='M9 8a3 3 0 0 1 6 0' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.cart-total{
  display:none;
}

.cart-count{
  top:-2px;
  right:-2px;
  width:19px;
  height:19px;
  font-size:11px;
  background:#d4a429;
  color:#fff;
}

.cart-badge:hover{
  background:transparent;
  color:#d4a429;
}


.cart-badge{
  left:135px;
  top:57px;
}

.account-header-link{
  left:185px;
  top:57px;
}

.wishlist-header-link{
  left:235px;
  top:57px;
}

.cart-badge::before{
  width:30px;
  height:30px;
  mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 9h10l1 11H6L7 9Z' fill='none' stroke='black' stroke-width='1.7' stroke-linejoin='round'/%3E%3Cpath d='M9 9V7a3 3 0 0 1 6 0v2' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 9h10l1 11H6L7 9Z' fill='none' stroke='black' stroke-width='1.7' stroke-linejoin='round'/%3E%3Cpath d='M9 9V7a3 3 0 0 1 6 0v2' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.cart-count{
  top:-4px;
  right:-1px;
}


.cart-badge{
  position:absolute;
}

.cart-badge .cart-count{
  position:absolute !important;
  top:-5px !important;
  right:-5px !important;
  left:auto !important;
  transform:none !important;
  margin:0 !important;
  z-index:5;
}


.cart-badge .cart-count{
  position:absolute !important;
  top:4px !important;
  right:20px !important;
  left:auto !important;
  transform:none !important;
  margin:0 !important;
  z-index:5;
}


.cart-badge{
  left:135px !important;
}

.account-header-link{
  left:195px !important;
}

.wishlist-header-link{
  left:255px !important;
}


.wishlist-header-link{
  left:235px !important;
}


/* Sticky header icons */

.sticky-header-icons{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}

.sticky-account-link,
.sticky-wishlist-link{
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#18364d;
  text-decoration:none;
  transition:.2s ease;
}

.sticky-account-link svg,
.sticky-wishlist-link svg{
  width:27px;
  height:27px;
}

.sticky-account-link:hover,
.sticky-wishlist-link:hover{
  color:#d4a429;
}

.sticky-cart-badge{
  position:relative;
  width:32px;
  height:32px;
  min-height:32px;
  padding:0;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
  color:#18364d;
}

.sticky-cart-badge::before{
  content:"";
  width:27px;
  height:27px;
  display:block;
  background:currentColor;
  mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 9h10l1 11H6L7 9Z' fill='none' stroke='black' stroke-width='1.7' stroke-linejoin='round'/%3E%3Cpath d='M9 9V7a3 3 0 0 1 6 0v2' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 9h10l1 11H6L7 9Z' fill='none' stroke='black' stroke-width='1.7' stroke-linejoin='round'/%3E%3Cpath d='M9 9V7a3 3 0 0 1 6 0v2' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.sticky-cart-total{
  display:none;
}

.sticky-cart-count{
  position:absolute !important;
  top:-7px !important;
  right:-5px !important;
  left:auto !important;
  transform:none !important;
  width:19px;
  height:19px;
  font-size:11px;
  z-index:5;
}


.sticky-search-bar{
  display:grid !important;
  grid-template-columns:auto 1fr auto !important;
  align-items:center !important;
}

.sticky-header-icons{
  order:1;
  justify-self:start;
  display:flex !important;
  align-items:center !important;
  gap:18px !important;
}

.sticky-logo{
  order:3;
  justify-self:end;
}

.sticky-search-wrap{
  order:2;
  justify-self:center;
}

.sticky-cart-badge,
.sticky-account-link,
.sticky-wishlist-link{
  position:relative !important;
  left:auto !important;
  right:auto !important;
  top:auto !important;
  width:34px !important;
  height:34px !important;
  min-height:34px !important;
  padding:0 !important;
  margin:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  color:#17324a !important;
}

.sticky-cart-badge::before,
.sticky-account-link svg,
.sticky-wishlist-link svg{
  width:27px !important;
  height:27px !important;
}

.sticky-cart-count{
  position:absolute !important;
  top:-7px !important;
  right:-6px !important;
  left:auto !important;
}

.sticky-cart-total,
#stickyAccountHeaderText{
  display:none !important;
}


.header-icons{
  position:absolute;
  top:57px;
  left:120px;
  display:flex;
  align-items:center;
  gap:18px;
  z-index:20;
}

.cart-badge,
.account-header-link,
.wishlist-header-link,
.sticky-cart-badge,
.sticky-account-link,
.sticky-wishlist-link{
  position:relative !important;
  inset:auto !important;
  width:34px !important;
  height:34px !important;
  min-width:34px !important;
  min-height:34px !important;
  padding:0 !important;
  margin:0 !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  border-radius:0 !important;
  color:#111 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}

.cart-badge::before,
.sticky-cart-badge::before{
  content:"";
  width:27px;
  height:27px;
  display:block;
  background:currentColor;
  -webkit-mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 9h10l1 11H6L7 9Z' fill='none' stroke='black' stroke-width='1.7' stroke-linejoin='round'/%3E%3Cpath d='M9 9V7a3 3 0 0 1 6 0v2' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 9h10l1 11H6L7 9Z' fill='none' stroke='black' stroke-width='1.7' stroke-linejoin='round'/%3E%3Cpath d='M9 9V7a3 3 0 0 1 6 0v2' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.account-icon svg,
.wishlist-header-link svg,
.sticky-account-link svg,
.sticky-wishlist-link svg{
  width:27px;
  height:27px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.cart-count,
.sticky-cart-count{
  position:absolute !important;
  top:-7px !important;
  right:-6px !important;
  width:19px !important;
  height:19px !important;
  background:#d4a429 !important;
  color:#fff !important;
  border-radius:50% !important;
  font-size:11px !important;
  font-weight:800 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}

.cart-total,
.sticky-cart-total,
#accountHeaderText,
#stickyAccountHeaderText{
  display:none !important;
}

.sticky-search-bar{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
}

.sticky-header-icons{
  display:flex !important;
  align-items:center !important;
  gap:18px !important;
}


.sticky-logo{
  order:1 !important;
}

.sticky-search-wrap{
  order:2 !important;
}

.sticky-header-icons{
  order:3 !important;
}


.sticky-wishlist-link{
  order:1 !important;
}

.sticky-account-link{
  order:2 !important;
}

.sticky-cart-badge{
  order:3 !important;
}


/* Footer */
.site-footer{
  margin-top:70px;
  background:#20384d;
  color:#fff;
}

.footer-inner{
  max-width:1180px;
  margin:0 auto;
  padding:44px 24px;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:34px;
}

.footer-brand img{
  max-width:170px;
  background:#fff;
  border-radius:14px;
  padding:10px;
  margin-bottom:16px;
}

.footer-brand p,
.footer-col p{
  margin:0;
  color:rgba(255,255,255,.75);
  line-height:1.8;
}

.footer-col h3{
  margin:0 0 14px;
  font-size:17px;
}

.footer-col a{
  display:block;
  color:rgba(255,255,255,.78);
  margin:0 0 10px;
}

.footer-col a:hover{
  color:#fff;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  text-align:center;
  padding:16px 20px;
  color:rgba(255,255,255,.65);
  font-size:14px;
}

@media(max-width:800px){
  .footer-inner{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:560px){
  .footer-inner{
    grid-template-columns:1fr;
    padding:34px 20px;
  }
}

.site-footer{
  margin-top:35px;
}

.footer-inner{
  padding-top:24px;
  padding-bottom:22px;
}

.footer-brand img{
  max-width:105px;
}

.footer-brand p{
  font-size:13px;
}

.footer-col h3{
  font-size:15px;
  margin-bottom:9px;
}

.footer-col a,
.footer-col p{
  font-size:13px;
  margin-bottom:7px;
}

.footer-bottom{
  padding:10px 20px;
}

/* Contact page */
.contact-page{
  max-width:1100px;
  margin:45px auto;
  padding:0 24px;
}

.contact-card{
  background:#fff;
  border-radius:22px;
  padding:34px;
  box-shadow:0 12px 35px rgba(0,0,0,.06);
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:38px;
}

.contact-info h1{
  margin:0 0 12px;
  color:#20384d;
  font-size:34px;
}

.contact-info p{
  margin:0 0 22px;
  color:#667;
  line-height:1.8;
}

.contact-line{
  background:#f7f9fa;
  border-radius:14px;
  padding:16px;
}

.contact-form label{
  display:block;
  margin:0 0 6px;
  font-weight:700;
  color:#20384d;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  margin-bottom:14px;
}

.contact-form textarea{
  resize:vertical;
}

.form-message.success{
  color:#1a7f37;
  margin-top:12px;
}

@media(max-width:760px){
  .contact-card{
    grid-template-columns:1fr;
    padding:24px;
  }
}

/* Contact page polish */
.contact-page{
  max-width:1180px;
  margin:55px auto;
}

.contact-card{
  padding:0;
  overflow:hidden;
  grid-template-columns:.9fr 1.2fr;
}

.contact-info{
  background:linear-gradient(135deg,#20384d,#2d4a63);
  color:#fff;
  padding:46px 38px;
}

.contact-info h1{
  color:#fff;
  font-size:38px;
}

.contact-info p{
  color:rgba(255,255,255,.82);
  font-size:16px;
}

.contact-line{
  background:rgba(255,255,255,.1);
  color:#fff;
  border:1px solid rgba(255,255,255,.16);
}

.contact-form{
  padding:42px;
}

.contact-form input,
.contact-form textarea{
  border:1px solid #d9e1e7;
  border-radius:12px;
  padding:13px 14px;
  font-size:15px;
  background:#fff;
  transition:.2s;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:#caa12a;
  box-shadow:0 0 0 3px rgba(202,161,42,.12);
}

.contact-form textarea{
  min-height:135px;
}

.contact-form .primary-btn{
  min-width:150px;
  height:44px;
  border-radius:12px;
  font-weight:700;
}

#contactMessage{
  margin-top:14px;
  font-weight:700;
}

@media(max-width:760px){
  .contact-card{
    grid-template-columns:1fr;
  }

  .contact-info,
  .contact-form{
    padding:28px 22px;
  }
}

/* Contact compact */
.contact-page{
  max-width:1050px;
  margin:35px auto;
}

.contact-card{
  grid-template-columns:420px 1fr;
}

.contact-info{
  padding:32px 30px;
}

.contact-info h1{
  font-size:32px;
  margin:0 0 14px;
}

.contact-info p{
  font-size:14px;
  margin-bottom:22px;
}

.contact-line{
  padding:14px 16px;
}

.contact-form{
  padding:30px 34px;
}

.contact-form label{
  font-size:14px;
  margin-bottom:5px;
}

.contact-form input{
  height:44px;
  padding:9px 12px;
}

.contact-form textarea{
  min-height:105px;
  height:105px;
}

.contact-form .primary-btn{
  height:40px;
  min-width:135px;
}

@media(max-width:760px){
  .contact-card{
    grid-template-columns:1fr;
  }
}


/* Contact final compact */
.contact-page{
  max-width:980px;
  margin:28px auto;
}

.contact-card{
  grid-template-columns:380px 1fr;
}

.contact-info{
  padding:28px 28px;
}

.contact-info h1{
  font-size:29px;
  margin:0 0 10px;
}

.contact-info p{
  font-size:13px;
  margin:0 0 18px;
}

.contact-line{
  padding:12px 14px;
  font-size:14px;
}

.contact-form{
  padding:24px 30px;
}

.contact-form label{
  display:block;
  font-size:13px;
  margin-bottom:4px;
}

.contact-form input{
  height:38px;
  padding:7px 11px;
  margin-bottom:10px;
}

.contact-form textarea{
  min-height:90px;
  height:90px;
  padding:10px 11px;
  margin-bottom:12px;
}

.contact-form .primary-btn{
  height:38px;
  min-width:125px;
  font-size:13px;
}

@media(max-width:760px){
  .contact-page{
    margin:20px 14px;
  }

  .contact-card{
    grid-template-columns:1fr;
  }
}


.contact-info .contact-line + .contact-line{
  margin-top:12px;
}

.contact-info .contact-line{
  display:block;
}

/* ===== STATIC PAGES FINAL ===== */

body{
  overflow-x:hidden;
}

.static-page{
  width:100% !important;
  max-width:1000px !important;
  margin:40px auto !important;
  padding:0 24px !important;
  box-sizing:border-box !important;
}

.static-card{
  width:100% !important;
  max-width:100% !important;
  background:#fff !important;
  border-radius:20px !important;
  padding:34px 40px !important;
  box-sizing:border-box !important;
  box-shadow:0 10px 32px rgba(0,0,0,.06) !important;
  direction:rtl !important;
  text-align:right !important;
  overflow:hidden !important;
}

.static-card h1{
  margin:0 0 22px !important;
  font-size:32px !important;
  color:#20384d !important;
}

.static-card h2{
  margin:24px 0 8px !important;
  font-size:20px !important;
  color:#20384d !important;
}

.static-card p{
  margin:0 !important;
  font-size:15px !important;
  line-height:1.9 !important;
  color:#4d5f70 !important;
  white-space:normal !important;
  overflow-wrap:anywhere !important;
}

@media(max-width:650px){
  .static-page{
    margin:25px auto !important;
    padding:0 15px !important;
  }

  .static-card{
    padding:26px 20px !important;
  }

  .static-card h1{
    font-size:27px !important;
  }

  .static-card h2{
    font-size:18px !important;
  }
}


/* Accessibility widget */
.accessibility-widget{
  position:fixed;
  left:18px;
  bottom:22px;
  z-index:9999;
}

.accessibility-toggle{
  width:48px;
  height:48px;
  border:0;
  border-radius:50%;
  background:#caa12a;
  color:#fff;
  font-size:24px;
  cursor:pointer;
  box-shadow:0 8px 22px rgba(0,0,0,.18);
}

.accessibility-panel{
  position:absolute;
  left:0;
  bottom:58px;
  width:220px;
  background:#fff;
  border-radius:16px;
  padding:14px;
  box-shadow:0 12px 35px rgba(0,0,0,.18);
  display:none;
}

.accessibility-panel.open{
  display:block;
}

.accessibility-panel h3{
  margin:0 0 10px;
  color:#20384d;
  font-size:18px;
}

.accessibility-panel button{
  width:100%;
  margin-bottom:8px;
  padding:10px 12px;
  border:1px solid #d9e1e7;
  border-radius:10px;
  background:#f7f9fa;
  cursor:pointer;
  text-align:right;
}

.accessibility-font-plus{
  font-size:115%;
}

.accessibility-font-minus{
  font-size:90%;
}

.accessibility-contrast{
  filter:contrast(1.35);
}

.accessibility-links a{
  text-decoration:underline !important;
  outline:2px solid rgba(202,161,42,.35);
  outline-offset:2px;
}

@media(max-width:560px){
  .accessibility-widget{
    left:12px;
    bottom:14px;
  }
}

/* Accessibility widget polish */
.accessibility-toggle{
  display:flex;
  align-items:center;
  justify-content:center;
}

.accessibility-toggle svg{
  width:27px;
  height:27px;
}

.accessibility-panel{
  bottom:54px;
}

.accessibility-panel button.active{
  background:#20384d;
  color:#fff;
  border-color:#20384d;
}

.accessibility-panel button:focus,
.accessibility-toggle:focus{
  outline:3px solid rgba(202,161,42,.45);
  outline-offset:3px;
}

.accessibility-contrast{
  background:#000 !important;
}

.accessibility-contrast .site-footer,
.accessibility-contrast .site-hero,
.accessibility-contrast .sticky-search-bar{
  filter:contrast(1.25);
}

.accessibility-links a{
  text-decoration:underline !important;
  text-underline-offset:4px;
}

/* Accessibility font size fix */
body.accessibility-font-plus :where(
  p, a, button, label, input, textarea, select,
  h1, h2, h3, h4,
  .product-title,
  .product-price,
  .footer-col,
  .static-card,
  .contact-info,
  .contact-form
){
  font-size:115% !important;
}

body.accessibility-font-minus :where(
  p, a, button, label, input, textarea, select,
  h1, h2, h3, h4,
  .product-title,
  .product-price,
  .footer-col,
  .static-card,
  .contact-info,
  .contact-form
){
  font-size:90% !important;
}

body.accessibility-font-plus input,
body.accessibility-font-plus textarea,
body.accessibility-font-plus select{
  min-height:46px;
}

body.accessibility-font-minus input,
body.accessibility-font-minus textarea,
body.accessibility-font-minus select{
  min-height:34px;
}
EOF\cd /var/www/shimonyosef/app

cat >> assets/css/shop.css <<'EOF'

body.accessibility-font-plus *{
  font-size:1.08em !important;
}

body.accessibility-font-minus *{
  font-size:.94em !important;
}

.home-page{
  background:#f7f4ee;
}

.home-hero{
  min-height:430px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px 24px;
  background:
    linear-gradient(rgba(255,255,255,.70), rgba(255,255,255,.88)),
    url('/assets/img/books-bg.jpg') center/cover no-repeat;
}

.home-hero-content{
  max-width:760px;
}

.home-hero h1{
  font-size:58px;
  margin:0 0 18px;
  color:#20384d;
}

.home-hero p{
  font-size:22px;
  color:#42586a;
  margin:0 0 30px;
}

.home-main-btn{
  display:inline-flex;
  background:#20384d;
  color:white;
  padding:15px 34px;
  border-radius:999px;
  font-weight:700;
}

.home-section{
  max-width:1180px;
  margin:0 auto;
  padding:70px 24px;
}

.home-section-title{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:28px;
}

.home-section-title h2{
  margin:0;
  font-size:32px;
  color:#20384d;
}

.home-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.home-card{
  background:#fff;
  border-radius:22px;
  padding:34px;
  box-shadow:0 14px 35px rgba(0,0,0,.06);
  min-height:180px;
}

.home-card h3{
  margin:0 0 12px;
  font-size:24px;
  color:#20384d;
}

.home-card p{
  margin:0;
  color:#647789;
  line-height:1.8;
}

.home-products-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.home-products-strip .shop-card{
  min-height:auto;
}

@media(max-width:900px){
  .home-cards,
  .home-products-strip{
    grid-template-columns:1fr;
  }

  .home-hero h1{
    font-size:42px;
  }
}


/* =========================
   HOME HERO V2
========================= */

.home-hero{
  position:relative;
  min-height:560px;
  padding:80px 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;

  background:
    url('/assets/img/books-bg.jpg')
    center center / cover no-repeat;
}

.home-hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(1px);
}

.home-hero-content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:760px;
  text-align:center;
}

.home-hero-logo{
  display:block;
  width:240px;
  max-width:65%;
  height:auto;
  margin:0 auto 30px;
}

.home-hero h1{
  margin:0 0 16px;
  font-size:46px;
  line-height:1.15;
  color:#20384d;
  font-weight:800;
}

.home-hero p{
  margin:0;
  font-size:20px;
  line-height:1.8;
  color:#40576a;
}

.home-hero-actions{
  margin-top:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.home-main-btn,
.home-secondary-btn{
  min-width:145px;
  min-height:48px;
  padding:0 26px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  transition:.2s ease;
}

.home-main-btn{
  background:#20384d;
  color:#fff;
}

.home-main-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(32,56,77,.22);
}

.home-secondary-btn{
  background:rgba(255,255,255,.82);
  color:#20384d;
  border:1px solid rgba(32,56,77,.18);
}

.home-secondary-btn:hover{
  background:#fff;
  transform:translateY(-2px);
}

@media(max-width:700px){
  .home-hero{
    min-height:500px;
    padding:60px 20px;
  }

  .home-hero-logo{
    width:190px;
    margin-bottom:24px;
  }

  .home-hero h1{
    font-size:34px;
  }

  .home-hero p{
    font-size:17px;
  }

  .home-hero-actions{
    flex-direction:column;
  }

  .home-main-btn,
  .home-secondary-btn{
    width:220px;
  }
}


/* Home page header cleanup */
.home-page .site-hero{
  min-height:auto;
  padding:18px 24px 0;
  background:transparent;
}

.home-page .site-logo{
  display:none;
}

.home-page .site-nav{
  position:absolute;
  top:22px;
  left:50%;
  transform:translateX(-50%);
  z-index:20;
}


/* Home: hide regular header, keep sticky header */
.home-page > #siteHeader .site-hero{
  display:none;
}

.home-page > #siteHeader .sticky-search-bar{
  display:flex;
}


/* Home: remove duplicated top header */
body.home-body #siteHeader .site-hero{
  display:none;
}

body.home-body .home-hero{
  margin-top:0;
}


/* Home header fix */
body.home-body #siteHeader .site-hero{
  display:block;
  min-height:0;
  padding:0;
  background:transparent;
}

body.home-body #siteHeader .site-logo,
body.home-body #siteHeader .site-nav{
  display:none;
}

body.home-body #siteHeader .header-icons{
  position:fixed;
  top:18px;
  left:18px;
  z-index:2000;
}

body.home-body #siteHeader .sticky-search-bar{
  display:flex;
}


/* =========================
   HOME HEADER
========================= */

.home-header{
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:72px;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}

.home-header-nav{
  display:flex;
  align-items:center;
  gap:30px;
  pointer-events:auto;
}

.home-header-nav a{
  position:relative;
  color:#20384d;
  font-size:15px;
  font-weight:700;
  padding:10px 2px;
}

.home-header-nav a::after{
  content:'';
  position:absolute;
  right:0;
  left:0;
  bottom:3px;
  height:2px;
  background:#d9a514;
  transform:scaleX(0);
  transition:transform .2s ease;
}

.home-header-nav a:hover::after,
.home-header-nav a.active::after{
  transform:scaleX(1);
}

body.home-body #siteHeader .site-logo,
body.home-body #siteHeader .site-nav{
  display:none;
}

body.home-body #siteHeader .site-hero{
  display:block;
  min-height:0;
  padding:0;
  background:transparent;
}

body.home-body #siteHeader .header-icons{
  position:absolute;
  top:18px;
  left:24px;
  z-index:1100;
}

@media(max-width:700px){
  .home-header{
    height:62px;
  }

  .home-header-nav{
    gap:18px;
  }

  .home-header-nav a{
    font-size:13px;
  }

  body.home-body #siteHeader .header-icons{
    top:14px;
    left:12px;
  }
}


/* Home hero final sizing */
body.home-body .home-hero{
  min-height:470px;
  padding:85px 24px 55px;
}

body.home-body .home-hero-logo{
  width:205px;
  margin-bottom:22px;
}

body.home-body .home-hero h1{
  font-size:40px;
  margin-bottom:12px;
}

body.home-body .home-hero p{
  font-size:18px;
  line-height:1.65;
}

body.home-body .home-hero-actions{
  margin-top:24px;
}


body.home-body .home-hero{
  min-height:420px;
  padding:75px 24px 45px;
}

body.home-body .home-hero-logo{
  width:180px;
}

body.home-body .home-section{
  padding-top:55px;
}


body.home-body .home-card{
  min-height:150px;
  padding:28px;
}

body.home-body .home-card h3{
  font-size:22px;
}


body.home-body .home-section > .home-section-title:first-child a{
  display:none;
}

body.home-body .home-products-title{
  margin-top:34px;
}


body.home-body .home-products-title{
  align-items:center;
  margin-top:40px;
  margin-bottom:28px;
}

body.home-body .home-products-title a{
  display:inline-flex;
  align-items:center;
  font-weight:700;
}


/* Home product card spacing */
body.home-body .home-products-strip .shop-card{
  padding:20px 18px 18px;
}

body.home-body .home-products-strip .shop-card-image{
  margin-bottom:22px;
}

body.home-body .home-products-strip .shop-card-category{
  margin-bottom:8px;
}

body.home-body .home-products-strip .shop-card-title{
  line-height:1.65;
  margin-bottom:16px;
}

body.home-body .home-products-strip .shop-card-price{
  margin-top:12px;
  margin-bottom:14px;
}

body.home-body .home-products-strip .shop-card-button{
  margin-top:8px;
}


/* Home product inner spacing */
body.home-body .home-products-strip .shop-card-body{
  padding-top:22px;
  gap:12px;
}

body.home-body .home-products-strip .shop-card-category{
  margin-bottom:10px;
}

body.home-body .home-products-strip h3{
  line-height:1.75;
  margin:0 0 18px;
}

body.home-body .home-products-strip .shop-price{
  margin:18px 0 14px;
}

body.home-body .home-products-strip .shop-card-btn{
  margin-top:10px;
}


body.home-body #homeProducts .shop-card{
  min-height:360px;
}

body.home-body #homeProducts .shop-card-image{
  height:150px;
  padding:20px 18px 6px;
}

body.home-body #homeProducts .shop-card-image img{
  max-height:120px;
}

body.home-body #homeProducts .shop-card-body{
  padding:18px 18px 18px;
}

body.home-body #homeProducts .shop-card-category{
  margin:0 0 10px;
}

body.home-body #homeProducts h3{
  margin:0 0 18px;
  line-height:1.7;
}

body.home-body #homeProducts .shop-price{
  margin:0 0 16px;
}

body.home-body #homeProducts .shop-card-btn{
  margin-top:auto;
}


/* Home product cards compact spacing - final */
body.home-body #homeProducts .shop-card{
  min-height:0;
}

body.home-body #homeProducts .shop-card-image{
  height:180px;
  padding:18px 18px 8px;
}

body.home-body #homeProducts .shop-card-image img{
  max-height:150px;
}

body.home-body #homeProducts .shop-card-body{
  padding:14px 18px 16px;
}

body.home-body #homeProducts .shop-card-category{
  margin:0 0 6px;
}

body.home-body #homeProducts h3{
  margin:0 0 10px;
  line-height:1.5;
}

body.home-body #homeProducts .shop-price{
  margin:8px 0 12px;
}

body.home-body #homeProducts .shop-card-btn{
  margin-top:6px;
}


/* FINAL home product card compact override */
body.home-body #homeProducts .shop-card{
  height:auto !important;
  min-height:315px !important;
  padding:14px !important;
}

body.home-body #homeProducts .shop-card-image{
  height:125px !important;
  margin-bottom:8px !important;
  padding:0 !important;
}

body.home-body #homeProducts .shop-card-image img{
  max-height:115px !important;
}

body.home-body #homeProducts .shop-card-body{
  flex:0 0 auto !important;
  padding:0 !important;
}

body.home-body #homeProducts h3{
  min-height:0 !important;
  font-size:15px !important;
  line-height:1.45 !important;
  margin:0 0 8px !important;
}

body.home-body #homeProducts .shop-price{
  margin:8px 0 10px !important;
}

body.home-body #homeProducts .shop-card-btn{
  margin-top:0 !important;
}


/* Home product card width final */
body.home-body #homeProducts .shop-card{
  width:215px !important;
  flex-basis:215px !important;
}


/* Home product card proportions final */
body.home-body #homeProducts .shop-card{
  width:250px !important;
  flex-basis:250px !important;
  min-height:285px !important;
}

