/* ==========================================================================
   wsn.gr redesign — override layer (loaded after style.css, scoped to
   body.redesign). Strict utilitarian system: ink on paper, hairlines instead
   of cards/shadows, the brand orange (#f15a24) reserved for price + actions.
   ========================================================================== */

body.redesign {
  --ink: #141414;
  --paper: #ffffff;
  --panel: #f4f4f2;
  --muted: #8a8a86;
  --line: #e3e3e0;
  --accent: #f15a24;
  background: var(--paper);
  color: var(--ink);
}

/* ---------- ticker ---------- */
.redesign .marquee {
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ---------- header top ---------- */
.redesign .top_header_area {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.redesign .header .logo { max-height: 46px; width: auto; }
.redesign .header h5 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1;
}
.redesign .header h5 span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--accent);
  margin-top: 4px;
}
.redesign .header h5 span a { color: var(--accent); }

/* header search: borderless field over a single underline */
.redesign .hd-search-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  height: 40px;
  margin: 0;
}
.redesign .hd-search-field {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
  color: var(--ink);
  box-shadow: none;
}
.redesign .hd-search-field::placeholder { color: var(--muted); }
.redesign .hd-search-form:focus-within { border-bottom-color: var(--accent); }
.redesign .hd-search-form .search-submit {
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 15px;
  padding: 0 2px;
}
.redesign .hd-search-form .search-submit:hover { color: var(--accent); }

/* tools: text links instead of naked icons */
.redesign .tools { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 2px; }
.redesign .tools a span,
.redesign .tools .cart {  /* cancel the legacy 31px/26px icon sizing (responsive.css uses !important) */
  font-size: inherit !important;
  margin: 0 !important;
  color: inherit;
  display: inline;
  text-align: inherit;
}
.redesign .tools .hd-tool {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.redesign .tools .hd-tool:hover { border-bottom: 1px solid var(--ink); color: var(--ink); }
.redesign .tools .hd-sep { color: var(--line); margin: 0 8px; font-size: 12px; }
.redesign .tools .hd-cart .cart_quantity {
  /* reset the legacy orange-circle badge to plain text */
  background: none;
  border-radius: 0;
  position: static;
  width: auto;
  height: auto;
  min-width: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: inherit;
  color: var(--accent);
}
.redesign .tools .hd-cart .cart_quantity::before { content: "("; color: var(--muted); }
.redesign .tools .hd-cart .cart_quantity::after { content: ")"; color: var(--muted); }
/* legacy style.css sets .cartNotEmpty{color:#fff !important} for the old orange button —
   on the white header that hides the cart label whenever the cart has items */
.redesign .tools .hd-cart.cartNotEmpty { color: var(--ink) !important; }

/* mobile cart: legacy item separator was a full-width orange bar */
.redesign .cart_item.separator { background: var(--panel); color: var(--muted); }
.redesign .tools .hd-total {
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--muted);
  margin-left: 6px;
  font-variant-numeric: tabular-nums;
}
.redesign .tools .hd-lang { color: var(--muted); margin-left: 6px; }
.redesign .tools .hd-lang.selected { color: var(--ink); }
.redesign .tools .search1 { font-size: 15px; color: var(--ink); margin-left: 8px; }

/* ---------- category nav bar (was the dark band) ---------- */
.redesign .navbarBG,
.redesign .navbarBG .container-fluid,
.redesign .navbarBG .offcanvas {
  background: var(--paper) !important;
}
.redesign .navbarBG { border-bottom: 1px solid var(--line); padding: 0; }
.redesign .navbarBG .navbar-nav { gap: 34px; }
.redesign .navbarBG .nav-link {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 16px 0 14px;
  border-bottom: 1px solid transparent;
}
.redesign .navbarBG .nav-link:hover,
.redesign .navbarBG .nav-link.active { border-bottom-color: var(--ink); color: var(--ink); }
.redesign .navbarBG .dropdown-menu {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}
.redesign .navbarBG .dropdown-item a { color: var(--ink); font-size: 13px; }
.redesign .navbarBG .dropdown-item a:hover { color: var(--accent); }
@media (min-width: 1200px) {
  .redesign .navbarBG .search-form { display: none !important; } /* desktop search lives in the header */
}
/* mobile drawer: light panel, visible close button, touch-friendly rows */
.redesign .navbarBG .offcanvas-title { color: var(--ink) !important; font-size: 14px; letter-spacing: .1em; }
.redesign .navbarBG .btn-close { filter: none; opacity: .7; }
.redesign .navbarBG .btn-close:hover { opacity: 1; }
.redesign .navbarBG .offcanvas-header { border-bottom: 1px solid var(--line); }
@media (max-width: 991px) {
  .redesign .navbarBG .navbar-nav { gap: 0; }
  .redesign .navbarBG .navbar-nav .nav-item { border-bottom: 1px solid var(--line); }
  .redesign .navbarBG .navbar-nav .nav-link { padding: 15px 0 13px; }
  .redesign .navbarBG .dropdown-menu { border: 0; border-top: 1px solid var(--line); }
  .redesign .navbarBG .dropdown-item a { display: block; padding: 10px 0 10px 16px; }
}
/* mobile offcanvas keeps its own search */
.redesign .offcanvas .search-form .search-field {
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
}

/* the duplicate mobile search block under the header: only on small screens */
@media (min-width: 1200px) {
  .redesign .form2 { display: none; }
}
.redesign .form2 .search-field {
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
}

/* ---------- hero slider ---------- */
.redesign .slider_area { margin: 40px auto 0 !important; max-width: 1256px; }
.redesign .single_slider.v2 { background: var(--paper); }
.redesign .single_slider.v2 .slide_in {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  border: 1px solid var(--line);
  min-height: 460px;
}
.redesign .slide_text {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.redesign .slide_text h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}
.redesign .slide_text h3::before { content: "• "; color: var(--accent); }
.redesign .slide_text h2 {
  font-size: 42px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 28px;
}
.redesign .slide_text p { color: var(--muted); font-size: 15px; max-width: 44ch; }
.redesign .slide_cta {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--accent);
  margin-top: 8px;
  transition: background .2s, border-color .2s;
}
.redesign .slide_cta:hover { background: var(--ink); border-color: var(--ink); }
.redesign .slide_img {
  position: relative;
  background: var(--panel);
  border-left: 1px solid var(--line);
  min-height: 320px;
}
.redesign .slide_img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% 50%;
}
/* owl nav: quiet text arrows at the hero's bottom-right */
.redesign .welcome_slides .owl-nav {
  position: absolute;
  top: auto;
  bottom: 12px;
  right: 20px;
  width: auto;
  display: flex;
}
.redesign .welcome_slides .owl-prev,
.redesign .welcome_slides .owl-next { position: static; }
.redesign .welcome_slides .owl-nav button span {
  color: var(--ink);
  font-size: 20px;
  font-weight: 400;
  text-shadow: none;
  padding: 0 8px;
}
.redesign .welcome_slides .owl-nav button:hover span { color: var(--accent); }

/* ---------- homepage sections ---------- */
.redesign .hp-sect { margin-top: 72px; }
.redesign .hp-t {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  margin: 0 0 0;
}
.redesign .hp-bullet { color: var(--accent); margin-right: 8px; }

/* category tiles: one uniform label strip */
.redesign .hp-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-top: 0;
}
.redesign .hp-cat {
  position: relative;
  display: block;
  background: var(--paper);
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.redesign .hp-cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}
.redesign .hp-cat-l {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .2s;
}
.redesign .hp-cat:hover .hp-cat-l { background: var(--accent); }

/* product grids: hairline cells, no floating cards */
.redesign .hp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 0;
}
.redesign .hp-grid .pr_item {
  margin: 0 -1px -1px 0 !important;
  padding: 0 !important;
  text-align: left;
  width: 100%;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.redesign .hp-grid .product_item {
  background: var(--paper);
  height: 100%;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
}
.redesign .hp-grid .product_item_image_in { aspect-ratio: 1 / 1; margin-bottom: 20px; }
.redesign .hp-grid .product_image_first,
.redesign .hp-grid .product_image_second {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.redesign .hp-grid .product_image_second {
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 2;
}
.redesign .hp-grid .product_item:hover .product_image_second { opacity: 1; }
.redesign .hp-grid .product_image_first img,
.redesign .hp-grid .product_image_second img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* meta line: title left, price right — spec-sheet tension (all pages, .pr_item is the shared module wrapper) */
.redesign .pr_item .product-description {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-top: 0 !important;
  text-align: left;
  width: 100%;
}
.redesign .pr_item .product-description > p:first-child {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.redesign .pr_item .product-description .intro { display: none; }
.redesign .pr_item .product-description .price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap;
}
.redesign .pr_item .price .money {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.redesign .pr_item .price .money.discount-at-price {
  font-weight: 400;
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
}
/* discount badge: quiet orange text, not a green box */
.redesign .price .money.disountPC,
.redesign .pr_item .price .money.disountPC {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--accent);
}
.redesign .pr_item .ended { color: var(--muted); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }

/* add-to-cart: outline at rest, orange fill on hover — never grey */
.redesign .pr_item .quickBuy {
  width: 100%;
  margin-top: 18px;
  background: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 11px 0;
  border-radius: 0;
  transition: background .2s, color .2s, border-color .2s;
}
.redesign .pr_item .quickBuy:hover,
.redesign .pr_item .product_item:hover .quickBuy:hover {
  background: var(--accent) !important;
  border-color: var(--accent);
  color: #fff;
}
/* cancel the legacy "everything turns orange on card hover" */
.redesign .pr_item .product_item:hover div,
.redesign .pr_item .product_item:hover p { color: inherit; }
.redesign .pr_item .product_item:hover .price .money { color: var(--accent); }
.redesign .pr_item .product_item:hover .price .money.discount-at-price { color: var(--muted); }
.redesign .pr_item .product_item:hover button { background: none; }
/* crossfade to the second photo everywhere */
.redesign .pr_item .product_image_second { transition: opacity .4s ease; }
.redesign .pr_item .product_item:hover .product_image_second { opacity: 1; }

/* ---------- brands row: uniform, quiet ---------- */
.redesign .hp-brands-in {
  display: flex;
  justify-content: flex-start;
  justify-content: safe center; /* center when logos fit; flex-start fallback keeps scroll safe */
  align-items: center;
  gap: 48px;
  min-height: 150px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.redesign .hp-brands-in::-webkit-scrollbar { display: none; }
.redesign .hp-brand { flex: none; display: flex; align-items: center; }
.redesign .hp-brand img {
  height: 96px;
  width: auto;
  object-fit: contain;
  transition: transform .2s;
}
.redesign .hp-brand:hover img { transform: translateY(-2px); }

/* ---------- footer ---------- */
.redesign .footer_area {
  background: var(--ink);
  border-top: 1px dashed rgba(255,255,255,.25);
  padding: 64px 0 48px !important;
  margin-top: 88px;
}
.redesign .footer_area .footer-logo img { max-height: 54px; width: auto; filter: none; opacity: 1; }
.redesign .footer_area,
.redesign .footer_area p { color: #8a8a86; }
.redesign .footer_area .bottomInfo { font-size: 13px; line-height: 1.9; }
.redesign .footer_area .bottomInfo i { color: var(--accent); margin-right: 8px; }
.redesign .footer_area .bottomInfo a { color: var(--accent); }
.redesign .footer_area .bottomInfo a:hover { color: #fff; }
.redesign .footer_widget_menu li { list-style: none; }
.redesign .footer_widget_menu { padding: 0; margin: 0; }
.redesign .footer_widget_menu a {
  color: #c9c9c4;
  font-size: 13px;
  display: inline-block;
  padding: 5px 0;
  border-bottom: 1px solid transparent;
}
.redesign .footer_widget_menu a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.redesign .footer_area label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--muted);
}
.redesign .footer_area .form-control {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  font-size: 13px;
  box-shadow: none;
}
.redesign .footer_area .back-to-shop a {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.redesign .footer_area .back-to-shop a:hover { color: #fff; }
.redesign .footer_area .acceptText { color: var(--muted); font-size: 12px; }
.redesign .socialIcons a { color: #c9c9c4; font-size: 20px; margin-right: 14px; }
.redesign .socialIcons a:hover { color: var(--accent); }
.redesign .social_area .social_item ul { display: flex; gap: 10px; padding: 0; list-style: none; }
.redesign .social_area .social_item img { height: 24px; width: auto; }
.redesign .copyright {
  background: #0e0e0e;
  border-top: 1px dashed rgba(255,255,255,.25);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ---------- responsive ---------- */
@media (max-width: 1200px) {
  .redesign .hp-cats, .redesign .hp-grid { grid-template-columns: repeat(2, 1fr); }
  .redesign .single_slider.v2 .slide_in { grid-template-columns: 1fr; min-height: 0; }
  .redesign .slide_img { border-left: 0; border-top: 1px solid var(--line); }
  .redesign .slide_text { padding: 44px 32px; }
  .redesign .slide_text h2 { font-size: 30px; }
}
@media (max-width: 991px) {
  /* keep the hamburger on the logo line instead of dropping under it */
  .redesign .header { display: flex; align-items: center; gap: 14px; }
  .redesign .header .navbar { display: inline-block !important; width: auto; padding: 0; }
  .redesign .header .navbar-toggler { margin: 0; padding: 4px 8px; }
  .redesign .top_header_area { padding: 12px 0; }
  .redesign .header .logo { max-height: 32px; }
  .redesign .tools .hd-tool { font-size: 10px; letter-spacing: .06em; }
  .redesign .tools .hd-sep { margin: 0 4px; font-size: 10px; }
  .redesign .tools .search1 span { font-size: 14px !important; } /* keep the magnifier tappable */
  .redesign .slider_area { margin: 20px 12px 0 !important; }
  .redesign .slide_img { min-height: 200px; }
}
@media (max-width: 600px) {
  .redesign .hp-grid { grid-template-columns: 1fr; }
  .redesign .hp-cats { grid-template-columns: 1fr 1fr; }
  .redesign .slide_text { padding: 32px 22px; }
  .redesign .slide_text h2 { font-size: 25px; }
  .redesign .slide_text h3 { font-size: 10px; margin-bottom: 12px; }
  .redesign .slide_cta { padding: 12px 22px; }
  .redesign .hp-brand img { height: 60px; }
  .redesign .hp-brands-in { min-height: 110px; gap: 32px; }
}
