/* ----------- Banner Έκπτωσης ----------- */
.discount-banner {
  display: flex;
  align-items: center;
    justify-content: center;
    background: #fff;
    border: 2.5px solid #bb9aff;
    box-shadow: 0 4px 18px #b5a7f855, 0 1px 0 #ffe6fa;
  border-radius: 34px;
  padding: 24px 38px 18px 18px;
  margin: 16px auto 18px auto;
  max-width: 320px;
  min-height: 120px;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
  z-index: 1002;
  animation: fadeInUp 0.7s;
  gap: 13px;
  box-sizing: border-box;
}
.banner-logo {
  width: 38px;
  height: 38px;
  border-radius: 16px;
  background: #f7f4f9;
  object-fit: contain;
  box-shadow: 0 2px 8px #bb9aff33;
  border: 1.5px solid #bb9aff33;
  animation: banner-bounce 1.2s cubic-bezier(.68,-0.55,.27,1.55) infinite;
}

@keyframes banner-bounce {
  0%   { transform: scale(0.96) translateY(-8px); opacity: 0.85; }
  20%  { transform: scale(1.08) translateY(4px); opacity: 1; }
  40%  { transform: scale(0.98) translateY(-2px); }
  60%  { transform: scale(1.03) translateY(1px); }
  80%  { transform: scale(1.5) translateY(-10px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.banner-text {
  color: #6a3093;
  font-size: 1.08em;
  font-weight: 600;
  flex: 1 1 auto;
  margin-right: 6px;
  line-height: 1.25;
  text-align: left;
}
.banner-close {
  background: #fff;
  border: 2px solid #bb9aff;
    color: #bb9aff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px #bb9aff22;
    transition: background 0.2s, color 0.2s, border 0.2s;
    margin-left: 0;
    position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
}
.banner-close:hover, .banner-close:focus {
  background: #f7f4f9;
  color: #865cf0;
  border-color: #865cf0;
}

@media (max-width: 600px) {
  .discount-banner {
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 82vw;
    border-radius: 18px;
    min-height: 140px;
    padding: 10px 10px 10px px;
    gap: 5px;
    margin-left: auto;
    margin-right: auto;
  }
  .banner-close {
      top: 14px;
      right: 14px;
  }
  .banner-logo {
    width: 30px;
    height: 30px;
    margin-bottom: 0;
  }
  .banner-text {
    font-size: 0.97em;
    margin-right: 4px;
    text-align: left;
  }
  .banner-close {
    width: 26px;
    height: 26px;
    font-size: 1.1em;
    margin-left: 0;
    align-self: flex-start;
    top: 2px;
    right: 2px;
  }
}

body {
  background: #f7f4f9;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22242c;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* Logo σε κάρτα */
.logo-card {
  background: transparent; /* Διαφανές φόντο */
  border-radius: 34px;
  border: 3px solid #bb9aff;
  box-shadow: 0 8px 32px #b5a7f8a9, 0 2px 0 #ffe6fa;
  max-width: 340px;
  margin: 34px auto 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* Αφαιρούμε το padding */
  animation: fadeInUp 0.7s;
  transition: box-shadow 0.3s;
  overflow: hidden; /* Για να μην ξεφεύγει το λογότυπο */
  transform-origin: center center;
  will-change: transform, box-shadow;
  transition: border-color 0.3s ease;
  position: relative;
}
.logo-card:hover {
  box-shadow: 0 14px 42px #bba4eb80, 0 3px 0 #fce3fe;
}
.logo {
  width: 100%; /* Πιάνει όλο το πλάτος */
  height: 100%; /* Πιάνει όλο το ύψος */
  border-radius: 30px; /* Λίγο μικρότερο από το πλαίσιο */
  filter: drop-shadow(0 4px 20px #e8d4ff);
  border: none; /* Χωρίς εσωτερικό περίγραμμα */
  object-fit: cover; /* Καλύπτει όλο το χώρο */
}

header {
  text-align: center;
  margin-bottom: 10px;
}

h1, h2 {
  margin: 0 0 10px 0;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.main-menu-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 8px 80px 8px;
}

/* Κατηγορία = κάρτα (cartoon στυλ) */
.category {
  background: #fff;
  border-radius: 30px;
  border: 3px solid #bb9aff;
  box-shadow: 0 6px 22px #b5a7f8b9, 0 2px 0 #ffe6fa;
  padding: 23px 20px 11px 20px;
  margin-bottom: 29px;
  animation: fadeInUp 0.8s;
  transition: box-shadow 0.3s;
  padding-bottom: 20px; /* Αύξηση του padding στο κάτω μέρος */
  margin-bottom: 25px; /* Αύξηση του margin κάτω από κάθε κατηγορία */
}
.category:hover {
  box-shadow: 0 12px 44px #bba4eb70, 0 3px 0 #fce3fe;
}
.category h3 {
  font-family: 'Montserrat', Arial, sans-serif; /* Ίδιο με το body/προϊόντα */
  color: #ff69b4;
  font-size: 1.18em;
  margin-bottom: 8px;
  margin-top: 0;
  font-weight: 700; /* Ίδιο με τα προϊόντα */
  letter-spacing: normal; /* Αφαίρεση του πρόσθετου διαστήματος */
  text-shadow: 1px 2px 0 #fff7, 0 0 2px #fff6;
}

/* Τα προϊόντα σε σειρά, με bubble effect */
.item {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* αριστερή στοίχιση */
  border-bottom: 2px dotted #e1b9f3;
  border-radius: 16px;
  padding: 12px 0 8px 0;
  font-size: 1.11em;
  min-height: 44px;
  gap: 0.3em;
  background: transparent;
}
.item:last-child { border-bottom: none; }
.product-label {
  flex: 1 1 auto;
  min-width: 0;
  word-break: break-word;
  font-weight: 500;
  color: #553e77;
  font-size: 1em;
  padding-left: 4px;
  display: block;
}
.item > button {
  margin-left: 7px;
}

/* Cartoon κουμπί info */
.info-btn {
  background: #fff;
  border: 2.2px solid #b98cf2;
  border-radius: 24px;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px #c1b6e866, 0 1px 0 #fff;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
  position: relative;
}
.info-btn::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background: url("data:image/svg+xml;utf8,<svg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'><circle cx='10.5' cy='10.5' r='10' fill='%23fff'/><circle cx='10.5' cy='10.5' r='9.2' stroke='%23865cf0' stroke-width='1.7'/><rect x='9.7' y='8.8' width='1.6' height='6.3' rx='0.7' fill='%23865cf0'/><rect x='9.7' y='5.4' width='1.6' height='1.6' rx='0.8' fill='%23865cf0'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
}
.info-btn:focus,
.info-btn:hover {
  background: #ffecf9;
  border-color: #f194c6;
}
/* Tooltip info μόνο σε desktop */
.info-btn[title]:hover:after {
  content: attr(title);
  position: absolute;
  background: #ffe0fa;
  color: #9447a7;
  font-size: 0.93em;
  border-radius: 9px;
  padding: 4px 13px;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  box-shadow: 0 2px 10px #d7b0ff33;
  z-index: 10;
  pointer-events: none;
}

/* Cartoon αστεράκι για αγαπημένα - SVG ΜΟΝΟ μέσα στο κουμπί */
.star-btn {
  background: transparent;
  border: none;
  outline: none;
  margin-left: 6px;
  min-width: 20px;
  min-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: filter 0.16s;
  position: relative;
}
.star-btn svg {
  width: 18px;
  height: 18px;
  fill: #ffd75c;
  stroke: #bb9aff;
  stroke-width: 1.2px;
  filter: drop-shadow(0 1px 2px #eec87844);
  transition: filter 0.16s, fill 0.18s;
  pointer-events: none;
  vertical-align: middle;
}
.star-btn.favorited svg {
  fill: #ffe16a;
  stroke: #eec878;
  filter: drop-shadow(0 0 4px #ffe16a99);
}
.star-btn:focus, .star-btn:hover {
  background: #fff8e0;
  border-color: #ffe16a;
  filter: brightness(1.09);
}
/* Tooltip star μόνο σε desktop */
.star-btn[title]:hover:after {
  content: attr(title);
  position: absolute;
  background: #fff6ca;
  color: #c19904;
  font-size: 0.92em;
  border-radius: 9px;
  padding: 4px 13px;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  box-shadow: 0 2px 8px #ffe1a033;
  z-index: 11;
  pointer-events: none;
}
.info-btn, .star-btn {
  position: relative;
}
.info-btn::after, .star-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 8px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease-in-out, visibility 0.15s ease-in-out, transform 0.15s ease-in-out;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.info-btn::after {
  color: #865cf0;
  border: 1px solid #b98cf2;
}

.star-btn::after {
  color: #c19904;
  border: 1px solid #ffe16a;
}

/* Γρήγορη εμφάνιση στο hover */
.info-btn:hover::after, .star-btn:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-3px);
  transition-delay: 0.1s; /* Μικρή καθυστέρηση πριν εμφανιστεί */
}

/* Απενεργοποίηση του tooltip μετά το κλικ */
.info-btn.tooltip-disabled::after, .star-btn.tooltip-disabled::after {
  display: none;
}
/* Cartoon info box */
.product-info {
  background: #fff5fd;
  border: 2.5px dashed #ffa8ef;
  box-shadow: 0 5px 16px #f0c1e055, 0 1px 0 #fff;
  color: #933fad;
  border-radius: 16px 24px 18px 28px;
  padding: 14px 18px;
  font-size: 1.04em;
  margin-top: 8px;
  margin-bottom: 15px;
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  box-sizing: border-box;
  animation: infoAppear 0.44s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

/* Στυλ για τα κουμπιά πλοήγησης */
.navigation-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 15px auto 25px auto;
  max-width: 90%;
}

.nav-btn {
  background-color: white;
  border: 2px solid #bb9aff;
  border-radius: 20px;
  padding: 8px 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(187, 154, 255, 0.2);
}

.nav-btn:hover, .nav-btn:focus {
  background-color: #f5e9ff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(187, 154, 255, 0.4);
}

.nav-btn.active {
  background-color: #bb9aff;
  color: white;
}
/* Στυλ για το back-to-top navigation bar */
#back-to-top-nav {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

#back-to-top-nav.visible {
  opacity: 1;
  visibility: visible;
}

#top-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #bb9aff;
  border: 2px solid #fff;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(187, 154, 255, 0.5);
  transition: transform 0.3s, background-color 0.3s;
}

#top-button:hover, #top-button:focus {
  background-color: #9a7adf;
  transform: translateY(-3px);
}

#top-button svg {
  fill: white;
}
/* Animations */
@keyframes fadeInUp {
  from { opacity:0; transform: translateY(48px);}
  to   { opacity:1; transform: translateY(0);}
}
@keyframes infoAppear {
  0%   { opacity: 0; transform: translateY(-10px) scale(0.98);}
  70%  { transform: translateY(2px) scale(1.01);}
  100% { opacity: 1; transform: translateY(0) scale(1);}
}
@keyframes dash-animation {
  to {
    background-position: 100% 0;
  }
}
/* Στυλ για το header των αγαπημένων με το εικονίδιο κάδου */
.favorites-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.favorites-header h3 {
  margin: 0;
}

/* Στυλ για το κουμπί κάδου */
.trash-btn {
  background: #fff;
  border: 2px solid #ff7eb3;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.trash-btn svg {
  fill: #ff7eb3;
  transition: fill 0.2s ease;
}

.trash-btn:hover, .trash-btn:focus {
  background: #ffe0ea;
  border-color: #ff4d94;
  box-shadow: 0 2px 6px rgba(255, 122, 178, 0.25);
}

.trash-btn:hover svg {
  fill: #ff4d94;
}

.trash-btn:active {
  transform: scale(0.95);
}

/* Προσθήκη υποστήριξης για το tooltip του κάδου */
.trash-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 8px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease-in-out, visibility 0.15s ease-in-out, transform 0.15s ease-in-out;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  color: #ff4d94;
  border: 1px solid #ff7eb3;
}

.trash-btn:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-3px);
  transition-delay: 0.1s;
}
/* ------ Responsive ------ */
@media (max-width: 768px) {
  .trash-btn::after {
    display: none !important;
  }
  .main-menu-container { max-width: 99vw; }
  .category { 
    padding: 12px 2vw 7px 2vw; 
    border-radius: 19px;
     margin-bottom: 20px;
    padding-bottom: 15px;
  }
  .category h3 {
    font-size: 1em;
  }
  
 .nav-btn[data-target="summer-deals-section"] {
    font-size: 0.85em;
  }
  
 .nav-btn[data-target="summer-deals-section"]::after {
    top: -6px;
    right: -6px;
    width: 16px;
    height: 16px;
  }
  
  .nav-btn[data-target="summer-deals-section"]::before {
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
  }
  .social-icon {
    width: 28px;
    height: 28px;
  }
  
  .social-icon svg {
    width: 16px;
    height: 16px;
  }
  

#summer-deals-section {
  max-width: 99vw; /* Ίδιο με το .main-menu-container */
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 6px 22px #ffb6c1b9, 0 2px 0 #ffefe0;
}
  
  #summer-deals-section h3 {
    font-size: 1em;
    margin-top: 5px;
    margin-bottom: 15px;
  }
  
  .deal-tag {
    padding: 1px 5px;
    font-size: 0.7em;
  }
.social-icons {
  position: absolute;
  bottom: 10px;  /* Μετακίνηση προς τα κάτω */
  right: 10px;
  display: flex;
  gap: 8px;
  z-index: 5;
}
  .logo-card { 
    border-radius: 15px;
    max-width: 80%; /* Μικρότερο πλάτος κάρτας */
    padding: 0;
    position: relative;
  }
  .logo { 
    width: 100%; /* Καταλαμβάνει όλο το πλάτος της κάρτας */
    height: auto; /* Αυτόματο ύψος για διατήρηση αναλογίας */
    border-radius: 12px;
    object-fit: contain; /* Διασφαλίζει ότι όλο το λογότυπο είναι ορατό */
  }
  .item { font-size: 0.98em; gap: 6px;}
  .info-btn, .star-btn {
    min-width: 28px;
    min-height: 28px;
    border-radius: 13px;
  }
  .star-btn svg, .info-btn::before {
    width: 22px !important;
    height: 22px !important;
  }
  #back-to-top-nav {
    bottom: 15px;
    right: 15px;
  }
  
  #top-button {
    width: 45px;
    height: 45px;
  }
   /* Animation για οριζόντιες παύλες */
  @keyframes dash-animation-horizontal {
    to {
      background-position: 100% 0;
    }
  }
  
  /* Animation για κάθετες παύλες */
  @keyframes dash-animation-vertical {
    to {
      background-position: 0 100%;
    }
  }
  
  .product-info {
    border: none; /* Αφαιρούμε το border */
    position: relative;
    width: 98%; /* Μειώνουμε το πλάτος */
    max-width: 98%;
    margin-left: auto; /* Κεντράρισμα */
    margin-right: auto;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
  }

  .product-info::before,
  .product-info::after {
    content: '';
    position: absolute;
    left: 10px; /* Άφησε περιθώριο στα άκρα */
    right: 10px; /* Άφησε περιθώριο στα άκρα */
    height: 2px;
    background-image: linear-gradient(to right, #ffa8ef 50%, rgba(255,255,255,0) 0%);
    background-position: 0 0;
    background-size: 20px 2px;
    background-repeat: repeat-x;
    animation: dash-animation 30s linear infinite;
  }

  .product-info::before {
    top: 0;
  }

  .product-info::after {
    bottom: 0;
  }

    #favorites-section {
    max-width: 96%; /* Μικρότερο πλάτος από την οθόνη */
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    border-radius: 24px; /* Μεγαλύτερη καμπύλη στις γωνίες */
  }
   body {
    padding-bottom: 30px;
  }
  /* Διορθώσεις για τα αντικείμενα μέσα στα αγαπημένα */
  #favorites-section .item {
    padding-left: 5px;
    padding-right: 5px;
  }
  
  #favorites-section h3 {
    padding-left: 5px;
    font-size: 1.1em;
  }
    /* Fix για το τελευταίο στοιχείο σε κάθε κατηγορία */
  .item:last-child {
    border-bottom: none;
    padding-bottom: 10px; /* Προσθήκη λίγου padding στο τελευταίο στοιχείο */
  }

  .info-btn::after, .star-btn::after {
    display: none !important; /* Απόκρυψη των tooltips εντελώς στα κινητά */
  }

    .info-btn:hover::after, .star-btn:hover::after {
    transform: translateX(-50%) translateY(0);
  }
}
/* <-- This closes the first @media (max-width: 768px) block */

@media (max-width: 1050px) {
  .main-menu-container { max-width: 98vw;}
}
/* Προσθήκη στο αρχείο style.css */

/* Search container styles */
.search-container {
  max-width: 480px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  padding: 0 8px;
}

#searchInput {
  flex: 1;
  padding: 10px 16px;
  border-radius: 20px;
  border: 2px solid #bb9aff;
}

/* Προσθήκη στο style.css */
.logo-card.clicked {
  animation: pulse 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
   z-index: 10;
}

@keyframes pulse {
  0% { 
    transform: scale(1); 
    box-shadow: 0 8px 32px rgba(181, 167, 248, 0.7);
  }
  50% { 
    transform: scale(1.08); 
    box-shadow: 0 12px 45px rgba(181, 167, 248, 0.9), 0 0 20px rgba(255, 165, 255, 0.7); 
  }
  100% { 
    transform: scale(1); 
    box-shadow: 0 8px 32px rgba(181, 167, 248, 0.7);
  }
}

/* Εφέ highlight για το νέο αγαπημένο */
@keyframes highlight-pulse {
  0% { background-color: transparent; }
  50% { background-color: rgba(255, 215, 0, 0.2); }
  100% { background-color: transparent; }
}

.highlight-favorite {
  animation: highlight-pulse 1s ease-in-out;
  animation-iteration-count: 2;
}

/* Στυλ για το κρυφό μήνυμα */
.logo-message {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #bb9aff;
  border-radius: 20px;
  padding: 10px 20px;
  box-shadow: 0 4px 15px rgba(187, 154, 255, 0.5);
  z-index: 1000;
  opacity: 0;
  animation: message-appear 0.3s forwards;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-message.fade-out {
  opacity: 0;
  transform: translate(-50%, -20px);
}
@keyframes fadeInOut {
  0% { opacity: 0; transform: translate(-50%, 20px); }
  20% { opacity: 1; transform: translate(-50%, 0); }
  80% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, -20px); }
}

@keyframes message-appear {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}


/* Στυλ για το section συνόλου */
.total-section {
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.95), rgba(255, 240, 255, 0.95));
  max-width: 96%; /* Μικρότερο πλάτος από το 100% */
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box; /* Για να μην επηρεάζουν τα padding το συνολικό πλάτος */
}

.total-section h3 {
  color: #6a3093;
  border-bottom: 2px dashed rgba(187, 154, 255, 0.4);
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.total-content {
  padding: 0 15px 10px;
}

.total-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 5px;
}

.total-price {
  color: #6a3093;
  font-size: 22px;
}

.favorites-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  background: #ff69b4;
  color: #fff;
  border-radius: 50%;
  font-size: 0.95em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px #ff69b488;
  border: 2px solid #fff;
  z-index: 1002;
  pointer-events: none;
  transition: background 0.2s;
  display: none;
}


.plus-btn {
  background: #ffe16a;
  color: #6a3093;
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  font-size: 1.2em;
  font-weight: bold;
  margin-left: 8px;
  cursor: pointer;
  box-shadow: 0 2px 6px #ffe16a44;
  transition: background 0.2s;
}
.plus-btn:hover {
  background: #ffd700;
}
.fav-qty {
  margin-left: 6px;
  font-weight: bold;
  color: #6a3093;
}


/* Γενικό στυλ για τα εικονίδια - πιο αχνά και ομοιόμορφα */
.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  opacity: 0.75;
}

.social-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  opacity: 1;
}

.social-icon svg {
  fill: white;
  width: 18px;
  height: 18px;
}

/* Ειδικό στυλ για το Facebook - πιο αχνό */
.facebook-icon {
  background: rgba(24, 119, 242, 0.7);
}

.facebook-icon:hover {
  background: rgba(24, 119, 242, 0.9);
  box-shadow: 0 3px 10px rgba(24, 119, 242, 0.3);
}

/* Ειδικό στυλ για το Instagram - πιο αχνό */
.instagram-icon {
  background: linear-gradient(45deg, 
    rgba(240, 148, 51, 0.7) 0%, 
    rgba(230, 104, 60, 0.7) 25%, 
    rgba(220, 39, 67, 0.7) 50%, 
    rgba(204, 35, 102, 0.7) 75%, 
    rgba(188, 24, 136, 0.7) 100%);
}

.instagram-icon:hover {
  background: linear-gradient(45deg, 
    rgba(240, 148, 51, 0.9) 0%, 
    rgba(230, 104, 60, 0.9) 25%, 
    rgba(220, 39, 67, 0.9) 50%, 
    rgba(204, 35, 102, 0.9) 75%, 
    rgba(188, 24, 136, 0.9) 100%);
  box-shadow: 0 3px 10px rgba(220, 39, 67, 0.3);
}

/* Στυλ για τα summer deals */
.deal-tag {
  background: #ff6b6b;
  color: white;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.75em;
  margin-left: 5px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  animation: pulse-light 2s infinite;
}

.deal-item {
  border-left: 3px solid #ff6b6b40;
  border-right: 3px solid #ff6b6b40;  /* Προσθήκη border και στα δεξιά */
  background: linear-gradient(90deg, #fff7f7, #fff9f9, #fff7f7);  /* Συμμετρικό gradient */
}

@keyframes pulse-light {
  0% { opacity: 0.8; }
  50% { opacity: 1; }
  100% { opacity: 0.8; }
}

#summer-deals-section {
  background: linear-gradient(to bottom right, #fff, #fff8f8);
  border: 3px solid #ffb6c1;
  box-shadow: 0 6px 22px #ffb6c1b9, 0 2px 0 #ffefe0;
  /* Αφαίρεση των ιδιοτήτων που επηρεάζουν τη δομή */
  /* border-radius και padding κληρονομούνται από το .category */
  margin-top: 10px; /* Μικρότερο margin από πριν */
}

#summer-deals-section h3 {
  color: #ff6b6b;
  margin-top: 5px;
  margin-bottom: 30px;
}

/* Animation για το pulse effect στο κουμπί Summer Deals */
@keyframes pulse-button {
  0% { transform: scale(1); box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 6px 15px rgba(255, 107, 107, 0.6); }
  100% { transform: scale(1); box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3); }
}

/* Ειδικό στυλ για το κουμπί των Summer Deals */
.nav-btn[data-target="summer-deals-section"] {
  animation: pulse-button 1.5s infinite;
  background: linear-gradient(to right, #fff, #fff8f8);
  border: 2px solid #ffb6c1;
  color: #ff6b6b;
  font-weight: bold;
  position: relative;
}

/* Κεντρικός κύκλος του ήλιου */
/* .nav-btn[data-target="summer-deals-section"]::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 22px;
  height: 22px;
  background: #ff6b6b;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff;
  z-index: 1;
} */

/* Οι ακτίνες του ήλιου - ΑΥΤΟ ΛΕΙΠΕΙ */
/* .nav-btn[data-target="summer-deals-section"]::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 32px;
  height: 32px;
  background-image: repeating-conic-gradient(from 0deg, transparent 0deg, transparent 30deg, #ffcb6b 30deg, #ffcb6b 45deg);
  border-radius: 50%;
  animation: rotate-rays 10s linear infinite;
  z-index: 0;
} */

/* Animation για την περιστροφή των ακτίνων */
@keyframes rotate-rays {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
