      .teko-
      {
      font-family: "Teko", sans-serif;
      font-style: normal;
      }
      .animate-charcter{   font-family: "Teko", sans-serif;
      font-optical-sizing: auto;
      font-style: normal;}
      body{background-color: #f4f4f4}
      .product_heading h2 {
      font-size: 46px;
      font-weight: bold;
      margin-top: 30px;
      margin-left: 12px;
      margin-bottom: 30px;
      font-family: "Teko", sans-serif;
      }
      .rbg{background: linear-gradient( to right, rgba(0,0,0,0.7), rgba(0,0,0,0.2) );
  height: 100%;
  display: flex;
  justify-content: center;}
      .product-card {
      background: white;
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      height: calc(100% - 24px);
      margin-bottom: 24px;
      overflow: hidden;
      position: relative;
      text-decoration: none;
      }
      .product-card__media {
      position: relative;
      max-width: 100%;
      aspect-ratio: 1 / 1;
      margin: 12px 12px 10px;
      }
      .product-card__media .product-card__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%;
      }
      .product-card__info {
      flex: 1;
      margin: 0 12px;
      padding: 20px 12px 0;
      border-top: 1px solid #e9e9e9;
      }
      .product-card__info h2{font-weight: 900;
      text-transform: uppercase;margin-bottom: 10px;line-height: 1.5;font-size: 17px;color: #212322}
      .product-card__info p{margin-bottom: 16px;line-height: 1.125;font-weight: 600;font-size: .875rem;margin: 0 0 1rem;color: #212322}
      .product-card__footer {
      padding: 10px 24px 24px;z-index: 1;
      }
      .cart-box {
      text-align: center;
      }
      /* Quantity Selector */
      .quantity {
      display: flex;
      justify-content: center;
      align-items: center;
      border: 1px solid #ddd;
      border-radius: 6px;
      width: 100%;
      margin: 0 auto 15px auto;
      background: #fff;
      }
      .quantity button {
      border: none;
      background: none;
      font-size: 20px;
      padding: 10px 15px;
      cursor: pointer;
      font-weight: bold;
      }
      .quantity span {
      flex: 1;
      font-size: 18px;
      font-weight: 600;
      }
      /* Add to Cart Button */
      .add-to-cart {
      display: block;
      width: 100%;
      padding: 12px;
      border: none;
      border-radius: 6px;
      color: #111;
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
      cursor: pointer;
      background-color: #FFD700;
      }
      .add-to-cart:hover {
     background: #000;   color: #fff;
      }
      .icon-brand-armstrong img{width: 100px;}
      /* Popup */
.cart-popup {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  background: #fff;
  z-index: 1000;
  border-radius: 8px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.cart-header {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;background-color: #dddddd30;
  align-items: center;
}
.cart-header h3 { margin: 0; font-size: 16px;font-weight: 600; }
.close-cart {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.cart-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #f1f1f1;
  position: relative;
}
.cart-item img {
  width: 100px;
  height: 100px;
  margin-right: 10px;
}
.cart-item-info p { margin: 0; font-size: 14px; }
.cart-item-info span { color: #444; font-size: 13px; display: block; margin: 5px 0; }

.quantity-control {
  display: flex;
  align-items: center;
}
.quantity-control button {
   width: 25px;
   height: 25px;
   border: 1px solid #000;
   background: #000;
   cursor: pointer;
   color: #FFD700;
   font-weight: bold;
}
.quantity-control input {
  width: 40px;
  text-align: center;
  border: 1px solid #ccc;
  margin: 0 3px;
}

.cart-footer h3 { margin: 0; font-size: 16px;font-weight: 600;  text-decoration: underline;
 }
.cart-footer {
  padding: 15px;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
  font-size: 14px;
}

.cart-row strong {
  font-weight: bold;
}

.cart-row span {
  font-weight: bold;
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}
.cart-btn, .checkout-btn {
   flex: 1;
   padding: 10px;
   border: 1px solid #FFD700;
   cursor: pointer;
   background-color: #FFD700;
   font-weight: bold;
}
.continue-shopping {
  display: block;text-align: center;
  margin-top: 10px;
  font-size: 13px;
  text-decoration: underline;
  color: #333;
}
.cart-item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.cart-item-details {
  display: flex;
  flex-direction: column;padding-right: 10px;
}

.cart-item-details p {
   margin: 0;
   font-size: 15px;
   font-weight: 600;
}

.cart-item-details span {
  color: #444;
  font-size: 13px;
  margin-top: 3px;
}
/* Chrome, Safari, Edge, Opera */
.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.quantity-control input[type=number] {
  -moz-appearance: textfield;
}

.remove-item {
  background: none;
  border: none;
  font-size: 18px;
  color: #666;
  cursor: pointer;
  margin-left: 8px;
  transition: color 0.2s;
}

.remove-item:hover {
  color: red;
}
.cart-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
}
.compay_name{font-weight: bold;
  text-decoration: underline;}
           .icon-brand-armstrong{height:40px;}
         .PP_tags{justify-content: space-between;}
         .product-price {
  font-weight: 600;
  margin-right: 8px;
}

.stock-tag {
  background: #FB4444;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: bold;
  padding: 8px 25px 5px 25px;
  border-radius: 4px;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
}
              /* Remove browser number input arrows */
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-input[type=number] {
  -moz-appearance: textfield; /* Firefox */
}