﻿/* ============================================================
   ConsentGear for PrestaShop – klaro-classic.css
   Custom overrides on top of Klaro's base stylesheet.
   Do NOT add layout/position rules for #klaro here –
   those come from klaro.min.css loaded from CDN.
   ============================================================ */

/* Cookie-icon reopen button (classic design) */
#r4it-cookie-icon {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 1000;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #4fd1c5, #63b3ed);
  color: #050616;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s, opacity 0.2s;
}
#r4it-cookie-icon:hover {
  transform: scale(1.1);
}
#r4it-cookie-icon[style*="display:none"] {
  display: none !important;
}
