/*
 Theme Name:   Divi Child Theme – Blue Level Shop
 Author:       Blue Level
 Description:  Custom Shop Layout & Styling für WooCommerce, Digitec/Galaxus-Style
 Version:      1.0
*/

body {
    border-top: 10px solid red !important;
}


/* ============================
   1. GLOBAL VARIABLES
============================ */
:root {
  --bl-blue: #2980b9;
  --bl-blue-dark: #006a9b;
  --bl-grey-light: #f4f4f4;
  --bl-text: #333333;
  --bl-border: #dddddd;
  --bl-radius: 6px;
}

/* ============================
   2. TYPOGRAFIE
============================ */
body, p, td, table {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--bl-text);
}

h1 {
  font-size: 35px;
  font-weight: 200;
  line-height: 1.2;
}

h2 {
  font-size: 25px;
  font-weight: 200;
  line-height: 1.3;
}

h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

a {
  color: var(--bl-blue-dark);
  text-decoration: none;
}
a:hover {
  color: var(--bl-blue);
}

/* ============================
   3. PRODUKTGRID (3–4 Spalten)
============================ */
.bl-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 25px;
  margin-top: 30px;
}

.bl-product-card {
  background: #ffffff;
  border: 1px solid var(--bl-border);
  border-radius: var(--bl-radius);
  padding: 15px;
  text-align: center;
  transition: box-shadow .2s ease;
}

.bl-product-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.09);
}

.bl-product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 12px;
}

.bl-product-category {
  font-size: 13px;
  color: var(--bl-blue);
  font-weight: 600;
}

.bl-product-title {
  font-size: 15px;
  font-weight: 700;
  margin: 5px 0 10px;
  min-height: 40px;
}

.bl-price-incl {
  font-weight: 700;
  font-size: 18px;
  color: #000;
}

.bl-price-excl {
  font-size: 14px;
  color: #666666;
  margin-top: -4px;
}

.bl-product-btn {
  display: inline-block;
  margin-top: 12px;
  background: var(--bl-blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--bl-radius);
  font-size: 14px;
  font-weight: 600;
}
.bl-product-btn:hover {
  background: var(--bl-blue-dark);
}

/* ============================
   4. FILTERBAR – Digitec/Galaxus-Stil
============================ */
.bl-filterbar {
  background: var(--bl-grey-light);
  padding: 15px;
  border-radius: var(--bl-radius);
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bl-filter-dropdown {
  background: #fff;
  border: 1px solid var(--bl-border);
  padding: 8px 10px;
  border-radius: var(--bl-radius);
  cursor: pointer;
  font-size: 14px;
}

.bl-filter-dropdown:hover {
  border-color: var(--bl-blue);
}

/* ============================
   5. SIDEBAR BOXEN
============================ */
.bl-sidebar-box {
  background: #fff;
  border: 1px solid var(--bl-border);
  padding: 15px;
  border-radius: var(--bl-radius);
  margin-bottom: 20px;
}

.bl-sidebar-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ============================
   6. PRODUKTSEITE
============================ */
.bl-product-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  margin-bottom: 50px;
}

.bl-product-main-img img {
  width: 100%;
  height: auto;
}

.bl-product-info h1 {
  margin-bottom: 10px;
}

.bl-product-highlights ul {
  padding-left: 18px;
  margin-top: 15px;
}
.bl-product-highlights li {
  margin-bottom: 8px;
}

/* ============================
   7. FOOTER
============================ */
.bl-footer {
  background: #222;
  color: #ddd;
  padding: 40px 0;
  margin-top: 40px;
}

.bl-footer h3 {
  color: #fff;
  margin-bottom: 12px;
}

.bl-footer a {
  color: #ddd;
}
.bl-footer a:hover {
  color: #fff;
}
