
/* Karta produktu — wersja z klasą .add-to-cart */
.btn.btn-primary.add-to-cart {
    background-color: #F0803C !important;    /* pomarańcz */
    border-color: #F0803C !important;
    color: #fff !important;
}

/* Listing produktów — wersja z data-button-action */
.product-miniature .btn.btn-primary[data-button-action="add-to-cart"] {
    background-color: #F0803C !important;
    border-color: #F0803C !important;
    color: #fff !important;
}

/* -----------------------------
   Hover
------------------------------*/
.btn.btn-primary.add-to-cart:hover,
.product-miniature .btn.btn-primary[data-button-action="add-to-cart"]:hover {
    background-color: #D66F28 !important;  /* dopasowany hover */
    border-color: #D66F28 !important;
}

footer .contact__infos {
  display: none !important;
}


/* Bazowa klasa z żółtym, brush-podobnym podkreśleniem */

.h-brush {
  position: relative;
  display: inline-block;      
  padding-bottom: .15em;
  font-weight: 700;
  letter-spacing: .04em;
}

/* „Pociągnięcie pędzlem” pod tekstem */
.h-brush::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.32em;             
  background: #F1D302;        
  border-radius: 999px;       
  transform: translateY(30%) skewX(-7deg); 
  z-index: 1;              
}

h2.h-brush { font-size: 2.1rem; }
h3.h-brush { font-size: 1.8rem; }
h4.h-brush { font-size: 1.5rem; }
h5.h-brush { font-size: 1.3rem; }

.h-brush--pink::after   { background: #F72585; }
.h-brush--pumpkin::after{ background: #F0803C; }
.h-brush--blue::after   { background: #93B1A7; }



/* ===== Sticky Note / karteczka przyklejona dla note box===== */
.note-box {
 
  padding: 1.1rem 1.4rem 1.3rem;
  max-width: 480px;

  background: #fffbe2; /* jasno-żółta karteczka */
  border: 1px solid rgba(7, 16, 19, 0.08);
  border-radius: 6px;

  box-shadow:
    0 10px 18px rgba(7, 16, 19, 0.12),
    0 2px 0 rgba(255, 255, 255, 0.6) inset;

  transform: rotate(-1.4deg);
  transform-origin: center top;
}

/* Taśma "przyklejająca" na górze */
.note-box::before,
.note-box::after {
  content: "";
  position: absolute;
  top: -10px;
  width: 42%;
  height: 14px;

  background: rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(7, 16, 19, 0.25);

  z-index: 2;
}

.note-box::before {
  left: 10%;
  transform: rotate(-4deg);
}

.note-box::after {
  right: 10%;
  transform: rotate(5deg);
}

/* Nagłówek na karteczce */
.note-box .h-brush {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

/* Delikatne podkreślenie nagłówka */
.note-box .h-brush::after {
  height: 0.22em;
  background: rgba(7, 16, 19, 0.18);
  bottom: -0.05em;
}

/* Tekst na karteczce */
.note-box p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}





/* BRUSH HEADERS - short desc */


/* ===== Czcionka odręczna dla nagłówków z markerem ===== */
.micey-hand {
  font-family: 'Klee One', cursive;
  font-weight: 700;
}

/* ===== Rozmiary nagłówków ===== */
h2.micey-heading {
  font-size: 1.05rem;  
  line-height: 1.2;
}

h3.micey-heading {
  font-size: 1rem;   
  line-height: 1.2;
}

/* ===== Zakreślone słowo markerem ===== */
.micey-mark {
  position: relative;
  display: inline-block;
  padding: 0 .2em;
  color: #071013;
  z-index: 1;
}

/* „Marker” – elipsa pod tekstem, lekko przekrzywiona */
.micey-mark::before {
  content: "";
  position: absolute;
  inset: -0.08em -0.25em;   /* góra/dół, lewo/prawo */
  border-radius: 999px;
  z-index: -1;
  opacity: 0.6;
  transform: rotate(-3deg);
}

/* Wersja kolorystyczna dla Theme (Cambridge blue) */
.micey-mark--theme::before {
  background-color: #93B1A7;
}

/* Wersja kolorystyczna dla Text (Neon pink) */
.micey-mark--text::before {
  background-color: #F72585;
}


/* =====================================
   CTA 
   =====================================*/

.micey-cta {
  display: inline-block;
  position: relative;
  font-family: 'Klee One', cursive;
  font-size: 1.25rem;
  font-weight: 700;
  color: #F0803C;               /* Pumpkin text */
  padding: 0 .2em;
  margin-top: .8rem;
}

.micey-cta::before {
  content: "";
  position: absolute;
  left: -0.3em;
  right: -0.3em;
  bottom: 0;
  height: .45em;
  background-color: #F1D302;    /* Bright yellow highlight */
  opacity: .55;
  border-radius: 8px 8px 4px 4px;
  transform: rotate(-1.5deg);
  z-index: -1;
}


