/* Stuller Product Custom Styles */

.stuller-product-highlight {
    background: #f5faff;
    border: 2px solid #0073aa;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.stuller-product-attribute {
    font-weight: bold;
    color: #0073aa;
    margin-right: 10px;
}

.stuller-product-info {
    font-size: 1.1em;
    margin-bottom: 10px;
} 

/* ===== 1. Zmienne kolorów (łatwo zmienić cały look) ===== */
:root {
  --primary: #2563eb;       /* główny kolor akcentu */
  --primary-light: #dbeafe;
  --text: #111827;
  --muted: #6b7280;
  --bg: #ffffff;
  --border: #e5e7eb;
  --radius: 10px;
  --font: "Inter", system-ui, sans-serif;
  --transition: .25s ease;
}

/* ===== 2. Reset i ogólna ramka ===== */
.variations {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);

  overflow: hidden;

}

/* ===== 3. Wiersze – separator ===== */
.variations tr:not(:last-child) {


}

/* ===== 4. Nagłówki (label) ===== */
.variations th.label {
  text-align: left;
  padding: 1rem 1.2rem;
  font-weight: 600;
  width: 35%;
		margin-bottom:10px;
  color: var(--primary);
  letter-spacing: .02em;
}

.variations tr.temp-hide th, .variations tr.temp-hide td{
  opacity: 0.3;
  pointer-events: none;
}

.variations tr th, .variations tr td{
  transition: all 0.2s;
}
.variations th.label label {
  cursor: pointer;
	padding:15px;
}

/* ===== 5. Komórki (select) ===== */
.variations td.value {
  padding: 1rem 1.2rem;
  position: relative;
}

.variations select {
  appearance: none;
  width: 100%;
  padding: .65rem 2.5rem .65rem .9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.variations select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
  outline: none;
}
.variations_form{
	position:relative;
}
.single_variation_wrap{
	
position:fixed;
	bottom:5%;;
	left:10%;
	padding:50px;
box-shadow: 0 8px 30px rgba(0,0,0,.05);
	z-index:9999;
	width:400px;
	background-color:white;
}

.single-product div.product .single_variation .price{
	color: var(--primary);
	font-size:22px;
	transition: all 0.2s;
}
