/* --- Declaración de Fuentes Locales --- */
@font-face {
    font-family: 'Funkydori';
    src: url('fonts/funkydori.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gelato';
    src: url('fonts/gelato.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Samantha';
    src: url('fonts/samantha.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* ------------------------------------ */

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
}

.container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    width: 90%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

h1 {
    color: #333;
}

.product-display {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

#base-image {
    width: 100%;
    display: block;
}

#custom-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16vw;
    font-weight: bold;
    color: #000000;
    text-shadow: none;
    white-space: nowrap;
}

.options {
    text-align: left;
    width: 100%;
}

.selector-group, .input-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

select, input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.info-block {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ccc;
    text-align: left;
}

.info-block p, .info-block li {
    font-size: 0.9em;
    line-height: 1.4;
    color: #555;
    margin: 5px 0;
}

.info-block ul {
    margin-top: 5px;
    padding-left: 20px;
}

.price-info {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.price-info p {
    margin: 5px 0;
    font-size: 1.2em;
}

#total-price {
    font-weight: bold;
    color: #28a745;
}