/* Liquid-Glass Black – WooCommerce Add to Cart */
.single_add_to_cart_button.button.alt{
  /* Tunables */
  --bg1: #0c0c0c;
  --bg2: #000000;
  --edge: rgba(255,255,255,.15);
  --ring: rgba(255,255,255,.20);
  --shadow: rgba(0,0,0,.6);

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.25rem;
  border-radius: 10px; /* ελαφρώς στρογγυλεμένο */
  border: 1px solid var(--edge);

  /* Γυαλάδα + βάθος */
  background:
    radial-gradient(120% 140% at 10% 0%, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 40%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
  color: #fff;
  font-weight: 800;        /* λευκά bold γράμματα */
  letter-spacing: .02em;
  line-height: 1;
  text-decoration: none !important;
  text-shadow: 0 1px 0 rgba(0,0,0,.6);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(0,0,0,.5),
    0 8px 20px -8px var(--shadow),
    0 1px 2px rgba(0,0,0,.55);

  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  -webkit-font-smoothing: antialiased;
}

/* Γυαλιστερό “film” */
.single_add_to_cart_button.button.alt::before{
  content:'';
  position:absolute;
  inset: 2px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0) 40%),
    linear-gradient(to bottom, rgba(255,255,255,.08), rgba(255,255,255,0) 55%);
  pointer-events:none;
  mix-blend-mode: screen;
}

.single_add_to_cart_button.button.alt:hover{
  border-color: rgba(255,255,255,.3);
  background:
    radial-gradient(120% 140% at 10% 0%, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 45%),
    linear-gradient(180deg, #151515, #020202);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -1px 0 rgba(0,0,0,.6),
    0 12px 26px -10px var(--shadow),
    0 2px 6px rgba(0,0,0,.6),
    0 0 0 4px var(--ring);
  transform: translateY(-1px);
}

.single_add_to_cart_button.button.alt:active{
  transform: translateY(0);
  box-shadow:
    inset 0 3px 6px rgba(0,0,0,.65),
    inset 0 0 0 1px rgba(255,255,255,.08),
    0 6px 16px -10px var(--shadow);
  background: linear-gradient(180deg, #0b0b0b, #000);
}

.single_add_to_cart_button.button.alt:focus-visible{
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -1px 0 rgba(0,0,0,.6),
    0 0 0 3px rgba(255,255,255,.25),
    0 0 0 6px rgba(0,0,0,.5);
}

/* Disabled */
.single_add_to_cart_button.button.alt:disabled{
  opacity: .6;
  cursor: not-allowed;
  transform: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

/* — Προαιρετικό — πιο “γυάλινο”/translucent look αν κάθεται πάνω σε εικόνα:
.single_add_to_cart_button.button.alt{
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
}
*/













/* Delivery estimator — only on single product */
.delivery-estimator {
  margin: 20px auto;
  max-width: 380px;
  text-align: center;
  font-family: 'President Font', sans-serif;
  padding: 12px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #eee;
}
.delivery-icon { width: 30px; height: 30px; margin-bottom: 8px; }
.delivery-message { font-size: 14px; line-height: 1.5; margin-bottom: 5px; }
.delivery-countdown { font-weight: bold; color: #d0021b; }
.delivery-date { font-weight: bold; color: #007acc; }

/* === Engagement badges (single product only) === */
.engagement-badges{
  margin:15px 0;
  max-width:380px;
  text-align:left;
  font-family:'President Font', sans-serif;
}
.engagement-item{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  margin-bottom:8px;
  font-size:14px;
}
.engagement-icon{
  width:20px;
  height:20px;
  margin-right:8px;
  flex-shrink:0;
}
.engagement-text{ color:#000; }
.engagement-highlight{
  color:#ff0000;
  font-weight:700;
}

/* === Product countdown (single product only) === */

/* (Προαιρετικό) Δήλωσε τη γραμματοσειρά αν δεν φορτώνεται ήδη αλλού */
@font-face{
  font-family:'President Font';
  src:
    url('https://presidentshopgr.com/wp-content/uploads/2025/07/FiraSans-Bold.woff2') format('woff2'),
    url('https://yourwebsite.com/path-to-president-font.woff') format('woff');
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

.product-offer-countdown{
  margin:10px auto;
  padding:12px;
  background:#fff;
  border-radius:10px;
  display:flex;
  flex-direction:column;
  align-items:center;
  max-width:380px;
  box-shadow:0 3px 6px rgba(0,0,0,.05);
  font-family:'President Font', sans-serif;
  border:1px solid #f0f0f0;
}

.offer-expires-container{
  display:flex;
  flex-direction:column;
  align-items:center;
  margin-bottom:2px;
}

.offer-expires-text{
  font-weight:700;
  color:#000;
  font-size:15px;
  letter-spacing:.2px;
  line-height:1.2;
  margin-top:4px;
}

.offer-expires-icon{
  height:28px;
  width:28px;
  margin-bottom:3px;
}

.countdown-timer{
  font-family:'President Font', monospace;
  font-size:20px;
  font-weight:700;
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:6px 12px;
  border-radius:6px;
  margin-top:0;
}

.countdown-separator{
  margin:0 3px;
  color:#000;
}

.countdown-unit{
  display:inline-block;
  min-width:36px;
  text-align:center;
  position:relative;
}

.countdown-unit::after{
  content:attr(data-label);
  position:absolute;
  bottom:-14px;
  left:50%;
  transform:translateX(-50%);
  font-size:9px;
  color:#555;
  text-transform:uppercase;
  letter-spacing:.5px;
}

#countdown-hours::after   { content:"ώρες"; }
#countdown-minutes::after { content:"λεπτά"; }
#countdown-seconds::after { content:"δευτ."; }

@media (max-width:480px){
  .product-offer-countdown{ padding:10px; max-width:90%; }
  .offer-expires-text{ font-size:14px; }
  .countdown-timer{ font-size:18px; padding:5px 10px; }
  .offer-expires-icon{ height:24px; width:24px; }
}

/* === Product price styling & discount badge (single product) === */
.single-product .summary .price del,
.single-product .summary .price del .amount,
.single-product .summary .price del bdi{
  color:#e63946 !important;      /* κόκκινο για παλιά τιμή */
  font-size:18px !important;     /* μικρότερο μέγεθος */
  line-height:1;
}

.single-product .summary .price ins .amount,
.single-product .summary .price ins bdi{
  font-size:24px !important;     /* μεγαλύτερο για νέα τιμή */
  line-height:1;
}

/* “Διαχωρισμός” μεταξύ del και ins (παραμένει ως κενό) */
.single-product .summary .price del::after{
  content:"  ";
  color:#000;
  margin:0 5px;
}

/* Badge ποσοστού έκπτωσης */
.custom-discount-badge{
  display:inline-block;
  background-color:#e63946;
  color:#fff;
  padding:5px 10px;
  border-radius:6px;
  font-size:14px;
  font-weight:700;
  margin-left:10px;               /* δίπλα από την τιμή */
  vertical-align:middle;          /* καλύτερη ευθυγράμμιση με το κείμενο */
}

/* Αν προτιμάς “|” αντί για κενό, άλλαξε το content στη γραμμή πάνω:
   content: " | "; */

/* === LIVE Παρουσίαση Προϊόντος (single product) === */
.apothike-product-video-wrap{
  margin-top:16px;
  padding-top:8px;
  border-top:1px solid rgba(0,0,0,.06);
}
.apothike-product-video-title{
  display:block;
  margin:6px 0 10px;
  font-weight:800;
  letter-spacing:.2px;
  color:#111;
  text-transform:uppercase;
}
.apothike-product-video{
  max-width:100%;
  width:100%;
  height:auto;
  border-radius:8px;
  display:block;
}
.apothike-product-video-note{
  font-size:12px;
  color:#666;
  margin-top:6px;
}

.custom-discount-badge{
  background-color: #cc0000 !important; }
  
  
  
  /* Scope ΜΟΝΟ στο related block σου */
:is(.custom-related-rufus, #custom-related-rufus) { margin-top: 24px; }

/* Κάρτες: για σωστή θέση του badge */
:is(.custom-related-rufus, #custom-related-rufus) .product,
:is(.custom-related-rufus, #custom-related-rufus) .wd-product,
:is(.custom-related-rufus, #custom-related-rufus) li.product {
  position: relative;
}

/* ΤΙΜΕΣ: παλιά κόκκινη, νέα μαύρη & πιο έντονη */
:is(.custom-related-rufus, #custom-related-rufus) .price del {
  color: #cc0000;
  opacity: 0.9;
  margin-right: 6px;
}
:is(.custom-related-rufus, #custom-related-rufus) .price ins {
  color: #111;
  font-weight: 700;
  font-size: 1.06em;
  text-decoration: none;
}

/* Αν έχει μόνο μία τιμή (fallback) */
:is(.custom-related-rufus, #custom-related-rufus) .price:not(:has(ins)) .woocommerce-Price-amount {
  color: #111;
  font-weight: 700;
}

/* BADGE Έκπτωσης */
:is(.custom-related-rufus, #custom-related-rufus) .ps-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgb(204, 0, 0);
  color: #fff;
  font-weight: 700;
  display: inline-block;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
  font-size: 13px;
}

/* Λίγο κενό πριν την τιμή */
:is(.custom-related-rufus, #custom-related-rufus) .woocommerce-loop-product__title,
:is(.custom-related-rufus, #custom-related-rufus) .wd-entities-title {
  margin-bottom: 6px;
}




/* Scope ΜΟΝΟ στο related block */
:is(.custom-related-rufus, #custom-related-rufus) { margin-top: 24px; }

/* Κάρτες προϊόντων (ασφαλές) */
:is(.custom-related-rufus, #custom-related-rufus) .product,
:is(.custom-related-rufus, #custom-related-rufus) .wd-product,
:is(.custom-related-rufus, #custom-related-rufus) li.product {
  position: relative;
}

/* ΠΑΛΙΑ ΤΙΜΗ (del): κόκκινη, bold, ΜΑΥΡΗ γραμμή διαγραφής */
:is(.custom-related-rufus, #custom-related-rufus) .price del {
  color: #cc0000;                  /* γνωστό κόκκινο */
  font-weight: 700;                /* bold */
  opacity: 1;                      /* καθαρό */
  margin-right: 8px;
  text-decoration: line-through;   /* διαγραφή */
  text-decoration-color: #000;     /* ΜΑΥΡΗ γραμμή */
  text-decoration-thickness: 1.5px;
}
:is(.custom-related-rufus, #custom-related-rufus) .price del .woocommerce-Price-amount,
:is(.custom-related-rufus, #custom-related-rufus) .price del bdi {
  color: #cc0000;                  /* κράτα κόκκινο και για το ποσό */
  font-weight: 700;
}

/* ΝΕΑ ΤΙΜΗ (ins): πιο τονισμένη & ΛΙΓΟ μεγαλύτερη */
:is(.custom-related-rufus, #custom-related-rufus) .price ins {
  color: #111;
  font-weight: 800;                /* πιο έντονο από το del */
  font-size: 1.12em;               /* λίγο μεγαλύτερη από την παλιά */
  text-decoration: none;
}
:is(.custom-related-rufus, #custom-related-rufus) .price ins .woocommerce-Price-amount,
:is(.custom-related-rufus, #custom-related-rufus) .price ins bdi {
  color: #111;
  font-weight: 800;
  font-size: 1.12em;
}

/* Fallback: όταν δεν υπάρχει <ins> (μοναδική τιμή) */
:is(.custom-related-rufus, #custom-related-rufus) .price:not(:has(ins)) .woocommerce-Price-amount,
:is(.custom-related-rufus, #custom-related-rufus) .price:not(:has(ins)) bdi {
  color: #111;
  font-weight: 800;
}

/* BADGE Έκπτωσης – κάτω από τον τίτλο, σε νέα γραμμή */
:is(.custom-related-rufus, #custom-related-rufus) .ps-badge {
  position: static !important;
  display: block;      /* νέα γραμμή */
  clear: both;
  margin: 6px 0 8px;
  background: rgb(204, 0, 0);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: none;
  font-size: 13px;
}

/* Λίγο κενό κάτω από τον τίτλο */
:is(.custom-related-rufus, #custom-related-rufus) .woocommerce-loop-product__title,
:is(.custom-related-rufus, #custom-related-rufus) .wd-entities-title {
  margin-bottom: 6px;
}

/* (Προαιρετικό) κλείσιμο default sale bubble ΜΟΝΟ εδώ */
:is(.custom-related-rufus, #custom-related-rufus) .product-labels .onsale,
:is(.custom-related-rufus, #custom-related-rufus) .onsale.product-label {
  display: none !important;
}


