:root {
  --primary: #ff6b6b;
  --pink: #F3C6DD;
  --blue-light: #B7EFFF;
  --blue-dark: #0A6FA9;
  --grey: #F5F5F5;
  --secondary: #4ecdc4;
  --dark: #1a1a2e;
  --light: #f8f9fa
}
body {
  background-color: white;
  font-family: 'Poppins', sans-serif;
}
.bg-primary {background-color: #00bee3 !important}
.btn-main {
  background-color: var(--blue-dark);
  color: #fff;
  border-radius: 30px;
  padding: 12px 20px;
  transition: 0.3s;
}
.btn-main:hover {
  background-color: #084f78;
  color: #fff;
}
.price {
  color: var(--blue-dark);
  font-size: 1.8rem;
  font-weight: bold;
}
.navbar {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
footer {
  background-color: var(--grey);
  padding: 40px 0;
}
.footer {
  background-color: var(--dark);
  color: white;
  padding: 4rem 0 2rem;
}
#logo {width: 180px; height: auto;}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: #ff5252;
  border-color: #ff5252;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rating {
  color: #ffc107;
}
.sale-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  z-index: 10;
}

.quick-view {
/*  position: absolute;
  bottom: 15px;
  left: 50%;*/
  /*transform: translateX(-50%) translateY(20px);*/
/*  opacity: 0;
  transition: all 0.3s ease;
  width: 90%;*/
}

.product-card:hover .quick-view {
  opacity: 1;
}

.quick-view-btn {
  width: 100%;
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 8px;
  border-radius: 5px;
}

/* floating bascket  */
.floating-checkout-btn {
  position: fixed;
  bottom: 98px;
  right: 30px;
  z-index: 1000;
}
.floating-checkout-btn .btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #00bee3;
  color: white;
  border-radius: 50%;
  font-size: 1.5em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}
.floating-checkout-btn .btn-checkout:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}
.floating-checkout-btn a .item-count {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  background-color: #e00000;
  border-radius: 50%;
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  line-height: 16px;
}
.btn-checkout .tooltip {
  position: absolute;
  top: -40px;
  right: 100%;
  transform: translateX(50%);
  background-color: #333;
  color: white;
  padding: 6px 12px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.btn-checkout:hover .tooltip {
  opacity: 1;
  visibility: visible;
}
.mt-30 {margin-top: 30px}
.footer-text-color, .footer-text-color li a {color: #ffffff !important}
/*=============================================
=            Cart            =
=============================================*/
.shopping-cart-area {
  margin-bottom: 100px;
}

.cart-table {
  border: 1px solid #e7e7e7;
  width: 100%;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart-table thead {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .cart-table thead {
    display: none;
  }
}
.cart-table tr {
  border-bottom: 1px solid #ededed;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart-table tr {
    position: relative;
    display: block;
    text-align: center;
    border: 1px solid #ededed;
    padding: 30px 0;
  }
}
@media only screen and (max-width: 767px) {
  .cart-table tr {
    position: relative;
    display: block;
    text-align: center;
    border: 1px solid #ededed;
    padding: 30px 0;
  }
}
.cart-table th {
  text-transform: uppercase;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #222222;
  background-color: transparent;
  padding: 16px 12px;
}
.cart-table th:first-of-type {
  padding-left: 25px;
}
.cart-table td {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart-table td {
    text-align: center;
    display: block;
    width: 100% !important;
    margin: 0 auto;
    padding: 0 !important;
    border: none;
  }
}
@media only screen and (max-width: 767px) {
  .cart-table td {
    text-align: start;
    display: block;
    width: 100% !important;
    margin: 0 auto;
    padding: 0 !important;
    border: none;
  }
}
.cart-table td.product-thumbnail {
  width: 115px;
}
@media only screen and (max-width: 991px) {
  .large-screen-cart {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .small-screen-cart {
    display: none;
  }
}
.cart-table td.product-name a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart-table td.product-name a {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-table td.product-name a {
    margin-top: 20px;
  }
}
.cart-table td.product-name a:hover {
  color: #0064e0;
}
.cart-table td.product-name .product-variation {
  display: block;
  line-height: 22px;
  float: left;
  clear: both;
  color: #ababab;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart-table td.product-name .product-variation {
    float: none;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-table td.product-name .product-variation {
    float: none;
    margin-bottom: 10px;
  }
}
.cart-table td.product-price {
  clear: left;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart-table td.product-price {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-table td.product-price {
    margin-bottom: 15px;
  }
}
.cart-table td.product-price .price {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #333;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart-table td.stock-status {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-table td.stock-status {
    margin-bottom: 15px;
  }
}
.cart-table td.total-price {
  clear: left;
}
.cart-table td.total-price .price {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #333;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart-table td.product-quantity {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-table td.product-quantity {
    margin-bottom: 20px;
  }
}
.cart-table td.product-remove {
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart-table td.product-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: auto !important;
  }
}
@media only screen and (max-width: 767px) {
  .cart-table td.product-remove {
    position: absolute;
    top: 0;
    right: 10px;
    width: auto !important;
  }
}
.cart-table td.product-remove a {
  text-align: center;
  font-size: 0;
  display: block;
  height: 45px;
  width: 45px;
  color: #ababab;
  border: 2px solid #e6e6e6;
}
.cart-table td.product-remove a i {
  font-size: 30px;
  line-height: 41px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart-table td.product-remove a i {
    line-height: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .cart-table td.product-remove a i {
    line-height: 35px;
  }
}
.cart-table td.product-remove a:hover {
  color: #c61932;
  border-color: #c61932;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart-table td.product-remove a {
    border: none;
    width: auto;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .cart-table td.product-remove a {
    border: none;
    width: auto;
    height: auto;
  }
}

.cart-coupon-area {
  margin-bottom: 30px;
}

.cart-calculation-area {
  background-color: #F7F7F7;
  padding: 40px;
}
.cart-calculation-area__title {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 25px;
  color: #003399;
  font-weight: 600;
  line-height: 27px;
}

.cart-calculation-table {
  width: 100%;
  background-color: #ffffff;
  margin-bottom: 30px;
}
.cart-calculation-table th {
  text-transform: uppercase;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #222222;
  background-color: transparent;
  padding: 16px 12px;
  padding-left: 10px;
}
.cart-calculation-table td {
  padding-right: 10px !important;
  text-align: right;
}
.cart-calculation-table td.subtotal {
  font-size: 14px;
  line-height: 28px;
  color: #333;
  font-weight: 600;
}
.cart-calculation-table td.total {
  font-size: 24px;
  line-height: 48px;
  color: #333;
  font-weight: 600;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .coupon-form {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .coupon-form {
    margin-bottom: 30px;
  }
}
.coupon-form input {
  display: inline-block;
  background-color: #fff;
  margin-right: 16px;
  padding: 9px 15px;
  color: #222;
  width: 100%;
  background: #f7f7f7;
  border: 1px solid #eee;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 15px;
}
.coupon-form input:focus {
  border-color: #c7c7c7;
}
@media only screen and (max-width: 575px) {
  .coupon-form input {
    margin-bottom: 15px;
  }
}

.stock-stat-message {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 12px;
  color: #297e29;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
  padding: 0 5px;
  border: 2px solid #297e29;
}
.stock-stat-message--out-of-stock {
  color: red;
  border-color: red;
}

/*=====  End of Cart  ======*/
@media (max-width: 576px) {
  .floating-checkout-btn {
    right: 15px;
    bottom: 150px;
  }
  .floating-checkout-btn .btn-checkout {
    width: 50px;
    height: 50px;
    font-size: 1.2em;
    background-color: #0064e0;
  }
}
