/* =========================================================
   MEIN SHOP – CUSTOM CSS
   PrestaShop 9.1 / Hummingbird 2.0
   ========================================================= */

/*Warenkorb Symbol*/
.header-block__icon {
      color: #d99d01;
    }

/*Warenkorb Hover*/
@layer ps-components {
  .header-block__action-btn[href]:focus, .header-block__action-btn[href]:hover {
    color: #d99d01;
  }
}

/*NEU Badge und Rahmen*/
@layer bs-base {
  .product-flags .badge:not(.discount), .text-bg-primary {
    background-color: #d99d01 !important;
    color: #fff !important;
  }
}

.product-flags .badge.discount, .product-flags .badge:not(.discount) {
	border: 1px solid #d99d01;
}
/*Discount Badge Schriftfarbe*/
.product-flags .badge.discount {
	color: #d99d01;
}

/*Schriftfarbe unter Artikelvorschaubild*/
@layer bs-base {
  a {
    color: #d99d01;
    text-decoration: none;
  }
}

/*Copyright (Shop-Software von PrestaShop) im Footer inkl link entfernen*/
@layer ps-components {
  @media (min-width: 768px) {
    .copyright {
      font-size: 0;
    }
  }
}

/*Button Vollfarbig Standard Farben Config*/
@layer bs-components {
  .btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #d99d01;
    --bs-btn-border-color: #d99d01;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #d99d01;
    --bs-btn-hover-border-color: #000;
    --bs-btn-focus-shadow-rgb: 48,128,247;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #d99d01;
    --bs-btn-active-border-color: #d99d01;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #d99d01;
    --bs-btn-disabled-border-color: #d99d01;
  }
}

/*Button Outline Standard Farben Config*/
@layer bs-components {
  .btn-outline-primary {
    --bs-btn-color: #d99d01;
    --bs-btn-border-color: #d99d01;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #d99d01;
    --bs-btn-hover-border-color: #d99d01;
    --bs-btn-focus-shadow-rgb: 11,105,246;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #d99d01;
    --bs-btn-active-border-color: #d99d01;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    --bs-btn-disabled-color: #d99d01;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #d99d01;
    --bs-gradient: none;
  }
}