#fiamo-epk-configurator {
font-family: sans-serif;
max-width: 100%;
margin: 0 auto;
} .config-section {
border: 0.5px solid #e0ddd6;
border-radius: 12px;
margin-bottom: 8px;
background: #fff;
overflow: hidden;
} .config-header {
display: flex;
align-items: center;
gap: 14px;
padding: 14px 20px;
cursor: pointer;
font-size: 15px;
font-weight: 500;
color: #111;
background: transparent;
border-bottom: none;
transition: background .15s;
user-select: none;
}
.config-header:hover {
background: #faf9f7;
}
.config-header.active {
border-bottom: 0.5px solid #e0ddd6;
color: #111;
}
.config-header.locked {
cursor: default;
}
.config-header.locked:hover {
background: transparent;
} .config-header::before {
content: attr(data-step-num);
display: flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
min-width: 28px;
border-radius: 50%;
font-size: 13px;
font-weight: 500;
background: #f0ede8;
color: #777;
transition: background .2s, color .2s;
}
.config-header.active::before {
background: #dd7900;
color: #fff;
}
.config-header.completed::before {
content: "✓";
background: #e8f5ee;
color: #2a7a4b;
} .config-header .step-summary {
font-size: 13px;
font-weight: 400;
color: #888;
margin-left: 4px;
} .config-header .status {
margin-left: auto;
width: 18px;
height: 18px;
opacity: .4;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
background-size: contain;
background-repeat: no-repeat;
transition: transform .2s;
flex-shrink: 0;
}
.config-header.active .status {
transform: rotate(180deg);
opacity: .6;
}
.config-header.locked .status {
display: none;
} .config-content {
display: none;
padding: 20px 20px 24px;
} .step-description {
font-size: 13px;
color: #666;
background: #faf9f6;
border-left: 3px solid #f8c77b;
border-radius: 0;
padding: 10px 14px;
margin: 0 0 20px;
line-height: 1.6;
}
.step-description::before {
display: none;
} .config-content input[type=range] {
width: 100%;
accent-color: #dd7900;
margin: 0 0 4px;
padding: 0;
height: 20px;
}
label.strong {
font-size: 14px;
font-weight: 500;
color: #333;
display: block;
margin-bottom: 10px;
}
label.strong>span {
color: #dd7900;
} .option-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 10px;
margin-bottom: 20px;
}
@media (max-width: 600px) {
.option-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 380px) {
.option-grid {
grid-template-columns: 1fr;
}
}
.option-box {
border: 0.5px solid #e0ddd6;
border-radius: 10px;
padding: 12px 10px;
cursor: pointer;
text-align: center;
transition: border-color .15s, background .15s;
background: #fff;
}
.option-box:hover {
border-color: #dd7900;
background: #fdf6ef;
}
.option-box.active {
border: 1.5px solid #dd7900;
background: #fdf6ef;
}
.option-box input[type=radio] {
display: none;
}
.option-box img {
width: 100%;
aspect-ratio: 4 / 3;
object-fit: cover;
border-radius: 6px;
margin-bottom: 10px;
display: block;
}
.option-box h4 {
font-size: 13px;
font-weight: 500;
color: #222;
margin: 0 0 4px;
line-height: 1.35;
}
.option-box p {
font-size: 12px;
color: #888;
margin: 0;
line-height: 1.4;
}
.option-box .price {
font-size: 12px;
color: #dd7900;
font-weight: 500;
margin-top: 6px;
display: block;
} .data-output {
color: #dd7900;
} .config-content.summary {
display: block;
}
.summary p {
font-size: 14px;
line-height: 1.8;
color: #333;
margin-bottom: 20px;
} .config-content button,
.config-content button.next-step {
background: #dd7900;
color: #fff;
border: none;
padding: 10px 28px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: background .15s, transform .1s;
margin-top: 4px;
}
.config-content button:hover {
background: #c46d00;
}
.config-content button:active {
transform: scale(0.98);
}
.config-content button:disabled {
background: #e8e6e2;
color: #aaa;
cursor: not-allowed;
transform: none;
}
#finish-config {
width: 100%;
padding: 13px 28px;
font-size: 15px;
} #success-banner {
border-radius: 8px;
font-size: 14px;
font-weight: 500;
}