/*!
Theme Name:   Sevenloft Framework 
Theme URI:    https://www.sevenloft.gr/service/kataskevi-istoselidon/
Author:       Sevenloft IKE
Author URI:   https://sevenloft.gr
Description:  Sevenloft is our starter theme for our woocommerce projects. Designed and developed by Sevenloft Core developers
Version:      0.01
License:      GNU General Public License v2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  sevenloft-theme
Tags:         e-commerce, two-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, featured-images, full-width-template, threaded-comments, accessibility-ready, rtl-language-support, footer-widgets, sticky-post, theme-options, editor-style
*/



.prdctfltr_wc .prdctfltr_woocommerce_ordering .prdctfltr_filter_wrapper input[type="checkbox"] {

  display: none;
}


html .post-type-page #wpbody .wp-block {
    max-width: 1200px !important;
}


/* Global */
:root {
  --primary_color: #1c0708;
  --secondary_color: #c80006;
  --main_font: 'Jura', sans-serif;
}

/* Global — Typography (main font: Jura) */
body,
button,
input,
select,
textarea {
  font-family: var(--main_font);
}

/* Header */
.heade .widget-logo-wr img {
  max-width: 120px!important;
}

.header-top {
  background: black !important;
}

/*Vik changes*/
.block-slider-elements .owl-nav>button span {
	color:white
}


/*================ HEADER ===================*/
.header-top{
  display: none;
}
header {
  background-color: var(--primary_color);
  padding: 10px 0;
}
header .header{
  padding-top: 0;
}
header .menu{
  width: 100%;
  align-content: center;
}
header .menu li.menu-item a.nav-link{
  font-family: var(--main_font);
  color: #fff;
}


/* ============================================================
   Under Construction page (template: page-under-construction.php)
   ============================================================ */
body.under-construction {
  margin: 0;
}

.uc-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: var(--main_font);
  background: radial-gradient(circle at 50% 0%, #3a0d10 0%, var(--primary_color) 45%, #0d0405 100%);
}

/* Under Construction — Section 1 (hero) */
.uc-hero {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px 70px;
}
.uc-hero-inner {
  width: 100%;
  max-width: 720px;
}
.uc-logo {
  display: block;
  width: 260px;
  max-width: 70%;
  height: auto;
  margin: 0 auto 40px;
  animation: ucFadeIn 1s ease both;
}
.uc-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: var(--main_font);
}
.uc-subtitle {
  margin: 0 auto 36px;
  max-width: 560px;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* Under Construction — Contact (phone / email) */
.uc-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 32px;
}
.uc-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}
.uc-contact a:hover {
  color: var(--secondary_color);
}
.uc-contact svg {
  width: 18px;
  height: 18px;
  fill: var(--secondary_color);
}

/* Under Construction — Social icons */
.uc-social {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.uc-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.uc-social a:hover {
  background: var(--secondary_color);
  border-color: var(--secondary_color);
  transform: translateY(-3px);
}
.uc-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Under Construction — Section 2 (cards) */
.uc-cards {
  padding: 70px 20px 0;
}
.uc-cards-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.uc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 240px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.uc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 0, 6, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.uc-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary_color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.uc-card:hover::before {
  opacity: 1;
}
.uc-card-eyebrow {
  position: relative;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary_color);
}
.uc-card-title {
  position: relative;
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--main_font);
}
.uc-card-text {
  position: relative;
  margin: 0 0 24px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}
.uc-card-btn {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: var(--secondary_color);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}
.uc-card:hover .uc-card-btn {
  background: #fff;
  color: var(--primary_color);
}

/* Under Construction — animations */
@keyframes ucFadeIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}


/* ============================================================
   Single Product — Variation swatches
   ============================================================ */
/* Κρύψε το default WooCommerce dropdown (το χρησιμοποιούμε ως proxy) */
.variations_form .variations select,
.variations_form .variations td.value select,
.variations_form .variations .value select {
  display: none !important;
}

/* Stack layout: ετικέτα (Χρώμα/Μέγεθος) πάνω, επιλογές full-width από κάτω */
.variations_form .variations,
.variations_form .variations tbody,
.variations_form .variations tr,
.variations_form .variations th,
.variations_form .variations td {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
}
.variations_form .variations tr {
  margin-bottom: 28px;
}
.variations_form .variations th.label,
.variations_form .variations td.label {
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ececec;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary_color);
}
.variations_form .variations th.label label,
.variations_form .variations td.label label {
  margin: 0;
  font-weight: 700;
}

/* Λίστα από swatches */
.sl-swatches {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Κάθε swatch: μικρό, οριζόντιο pill (εικόνα + label δίπλα-δίπλα) */
.sl-swatch {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 6px 12px;
  border: 1.5px solid #e3e3e3;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1.2;
  user-select: none;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}
.sl-swatch:hover {
  border-color: var(--secondary_color);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.sl-swatch.selected {
  border-color: var(--secondary_color);
  background: rgba(200, 0, 6, 0.04);
  box-shadow: 0 0 0 1.5px var(--secondary_color) inset;
}
.sl-swatch.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #fafafa;
}
.sl-swatch.disabled::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 1px;
  background: #b3b3b3;
  transform: rotate(-10deg);
}
.sl-swatch-label {
  font-weight: 600;
  color: var(--primary_color);
  white-space: nowrap;
}
.sl-swatch img {
  display: block;
  width: 22px;
  height: 32px;
  object-fit: contain;
}

/* Reset link (Καθαρισμός επιλογών) */
.variations_form .reset_variations {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 767.98px) {
  /* Under Construction page */
  .uc-hero {
    padding: 60px 18px 40px;
  }
  .uc-cards-inner {
    grid-template-columns: 1fr;
  }
  .uc-contact {
    gap: 16px;
  }
  .uc-card {
    min-height: 200px;
    padding: 28px;
  }

  /* Single Product — Variation swatches */
  .sl-swatches {
    gap: 8px;
  }
  .sl-swatch {
    padding: 5px 10px;
    font-size: 0.8rem;
  }
}