.floating-cart {
  position: fixed;
  bottom: 110px;
  right: 19px;
  z-index: 1000; }
  .floating-cart .btn {
    position: relative;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease; }
    .floating-cart .btn:hover {
      transform: scale(1.1); }
    .floating-cart .btn .cart-count {
      position: absolute;
      top: -5px;
      right: -5px;
      background: #dc3545;
      color: white;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: bold; }

@keyframes bounce {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-10px); } }
.btn-add-to-cart {
  background: #ffc107;
  border: 2px solid #ffc107;
  color: #343a40;
  font-weight: 600;
  transition: all 0.3s ease; }
  .btn-add-to-cart:hover {
    background: #d39e00;
    border-color: #d39e00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3); }
  .btn-add-to-cart i {
    transition: transform 0.3s ease; }
  .btn-add-to-cart:hover i {
    transform: scale(1.2); }

.offcanvas.offcanvas-end {
  width: 400px; }
  @media (max-width: 576px) {
    .offcanvas.offcanvas-end {
      width: 100%; } }
.offcanvas .offcanvas-header {
  background: #ffc107;
  color: #343a40; }
  .offcanvas .offcanvas-header h5 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0; }
  .offcanvas .offcanvas-header .btn-close {
    opacity: 0.8; }
    .offcanvas .offcanvas-header .btn-close:hover {
      opacity: 1; }
.offcanvas .offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 1.5rem; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 0; }
  .cart-items.empty {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #6c757d; }
    .cart-items.empty i {
      font-size: 3rem;
      margin-bottom: 1rem;
      opacity: 0.5; }
    .cart-items.empty p {
      font-size: 1.1rem;
      margin: 0; }

.cart-item {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  position: relative; }
  .cart-item:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-5px); }
  .cart-item .cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px; }
    .cart-item .cart-item-header .cart-item-ref {
      font-size: 0.75rem;
      color: #6c757d;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px; }
    .cart-item .cart-item-header .btn-remove {
      background: none;
      border: none;
      color: #dc3545;
      font-size: 1.2rem;
      cursor: pointer;
      padding: 0;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease; }
      .cart-item .cart-item-header .btn-remove:hover {
        transform: scale(1.2);
        color: #bd2130; }
  .cart-item .cart-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1537b4;
    margin-bottom: 8px;
    line-height: 1.3; }
  .cart-item .cart-item-specs {
    display: flex;
    gap: 15px;
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 10px; }
    .cart-item .cart-item-specs span {
      display: flex;
      align-items: center;
      gap: 5px; }
      .cart-item .cart-item-specs span i {
        color: #ffc107;
        font-size: 0.875rem; }
  .cart-item .cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e9ecef; }
    .cart-item .cart-item-quantity label {
      font-size: 0.875rem;
      font-weight: 500;
      margin: 0; }
    .cart-item .cart-item-quantity .quantity-input {
      display: flex;
      align-items: center;
      border: 1px solid #e9ecef;
      border-radius: 4px;
      overflow: hidden; }
      .cart-item .cart-item-quantity .quantity-input button {
        background: #f8f9fa;
        border: none;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s ease; }
        .cart-item .cart-item-quantity .quantity-input button:hover {
          background: #e9ecef; }
        .cart-item .cart-item-quantity .quantity-input button:active {
          background: #cbd3da; }
      .cart-item .cart-item-quantity .quantity-input input {
        border: none;
        width: 50px;
        text-align: center;
        font-weight: 600;
        padding: 0;
        height: 30px;
        -moz-appearance: textfield; }
        .cart-item .cart-item-quantity .quantity-input input:focus {
          outline: none; }
        .cart-item .cart-item-quantity .quantity-input input::-webkit-inner-spin-button, .cart-item .cart-item-quantity .quantity-input input::-webkit-outer-spin-button {
          -webkit-appearance: none;
          margin: 0; }

.cart-footer {
  border-top: 2px solid #e9ecef;
  padding-top: 20px;
  margin-top: auto; }
  .cart-footer .cart-summary {
    background: rgba(21, 55, 180, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px; }
    .cart-footer .cart-summary .cart-summary-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px; }
      .cart-footer .cart-summary .cart-summary-row:last-child {
        margin-bottom: 0;
        padding-top: 8px;
        border-top: 1px solid #e9ecef;
        font-weight: 600;
        font-size: 1.1rem; }
      .cart-footer .cart-summary .cart-summary-row .label {
        color: #6c757d; }
      .cart-footer .cart-summary .cart-summary-row .value {
        color: #1537b4;
        font-weight: 500; }
  .cart-footer .d-grid {
    gap: 10px; }
    .cart-footer .d-grid .btn {
      padding: 12px 20px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-radius: 8px;
      transition: all 0.3s ease; }
      .cart-footer .d-grid .btn.btn-primary {
        background: #1537b4;
        border: none; }
        .cart-footer .d-grid .btn.btn-primary:hover {
          background: #102986;
          transform: translateY(-2px);
          box-shadow: 0 5px 15px rgba(21, 55, 180, 0.3); }
      .cart-footer .d-grid .btn.btn-outline-secondary:hover {
        background: #dc3545;
        border-color: #dc3545;
        color: white; }

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0; }
  to {
    transform: translateX(0);
    opacity: 1; } }
.cart-item-added {
  animation: slideInRight 0.3s ease; }

.cart-notification {
  display: none;
  visibility: hidden;
  position: fixed;
  top: 100px;
  right: 20px;
  background: #28a745;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1100;
  transform: translateX(400px);
  transition: transform 0.3s ease; }
  .cart-notification.show {
    transform: translateX(0); }
  .cart-notification i {
    font-size: 1.2rem; }
  .cart-notification .notification-text {
    flex: 1; }
    .cart-notification .notification-text strong {
      display: block;
      margin-bottom: 2px; }
    .cart-notification .notification-text small {
      opacity: 0.9; }

@media (max-width: 767.98px) {
  .floating-cart {
    bottom: 100px;
    right: 20px; }
    .floating-cart .btn {
      width: 60px;
      height: 60px;
      font-size: 1.3rem; }

  .cart-item {
    padding: 12px; }
    .cart-item .cart-item-specs {
      flex-wrap: wrap;
      gap: 8px; } }

/*# sourceMappingURL=cart.css.map */
