body.woocommerce-account{
    width: 100%;
    height: 100%;
}

body.woocommerce-account #page{
    min-height: 100vh;
}

body.woocommerce-account #page .woocommerce{
    margin-top: 50px;
    min-height: calc(100vh - 400px);
}

body.woocommerce-account #page .woocommerce-form-login__rememberme,
body.woocommerce-account #page .lost_password{
    display: none;
}

body #page #product_order_tab{
    width: 100%;
}

@media screen and (max-width: 1440px) {
    body #page #product_order_frm,
    body.woocommerce-checkout .woocommerce{
        width: 90%;
    }
}

@media screen and (max-width: 1280px) {
    body #page #product_order_frm,
    body.woocommerce-checkout .woocommerce{
        width: 80%;
    }
}

body #page #product_order_frm .form-control:focus{
    border-color: #cccccc;
    box-shadow:none !important;
    outline:0px !important;
}

body #page #product_order_tab .category-row{
    background-color: #1ec4cd;
}

body #page #product_order_tab tr td{
    vertical-align: middle;
}

body #page .total-row,
body #page .order-btn-row{
    margin-right: 25px;
}

body #page .order-btn-row{
    margin-bottom: 50px;
}

body #page .total-row{
    margin-left: auto; 
    width: 255px;
}

body #page .total-row input{
    margin-left: 10px;
}

body #page #validationMessage{
    color: red;
    padding-bottom: 10px;
}

body #page .woocommerce-cart-wrap,
body #page form.woocommerce-checkout{
    margin-top: 50px;
}

body #page .cart-back-btn{
    margin-top: 5px;
}

body.woocommerce-checkout #page .woocommerce-cart-wrap .cart-collaterals{
    display: none;
}

body.woocommerce-checkout #page .woocommerce-cart-wrap .woocommerce-cart-form{
    width: 100% !important;
}


body.woocommerce-order-received .order_details tr td.product-name{
    justify-content: flex-start !important;
}

/* === Wrapper with Dynamic Count === */
.notification-banner-wrapper {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

/* 1 Banner = Full Width */
.notification-banner-wrapper.count-1 {
  grid-template-columns: 1fr;
}

/* 2 Banners = 50% each */
.notification-banner-wrapper.count-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* 3+ Banners = 33.33% each */
.notification-banner-wrapper.count-3,
.notification-banner-wrapper.count-4,
.notification-banner-wrapper.count-5,
.notification-banner-wrapper.count-6,
.notification-banner-wrapper.count-7,
.notification-banner-wrapper.count-8,
.notification-banner-wrapper.count-9 {
  grid-template-columns: repeat(3, 1fr);
}

/* Mobile responsive: stack all */
@media (max-width: 768px) {
  .notification-banner-wrapper {
    grid-template-columns: 1fr !important;
  }
}

.notification-banner-wrapper a{
    text-decoration: none;
}

.notification-banner{
    display: flex;
    align-items: center;
    background-color: #ffeaea;
    border-left: 4px solid #e74c3c;
    padding: 16px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    margin-bottom: 5px;
    box-sizing: border-box;
}

.notification-banner .icon {
  background-color: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
  flex-shrink: 0;
}

.notification-banner .bell {
  display: inline-block;
  transform-origin: center top;
  will-change: transform;
  line-height: 1;
  vertical-align: middle;
}

@keyframes shake {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(-15deg); }
  40% { transform: rotate(10deg); }
  60% { transform: rotate(-10deg); }
  80% { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}

.notification-banner:hover .bell {
  animation: shake 0.6s ease-in-out;
}

.notification-banner .notification-title{
  color: #333;
  font-size: 14px;
  line-height: 1.4;
}

body.store-notifications #content{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
}