/* Font Declaration */
@font-face {
    font-family: 'Bitsumishi';
    src: url('../fonts/Bitsumishi.woff2') format('woff2'),
         url('../fonts/Bitsumishi.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    /* Fallback if font file is missing */
    font-display: swap;
}

:root {
    --shtc-primary: #344343;   /* Dark Teal */
    --shtc-secondary: #7B5642; /* Brown */
    --shtc-highlight: #CCBFA5; /* Beige/Gold */
    --shtc-radius: 8px;
    --shtc-font: 'Bitsumishi', 'Playfair Display', 'Georgia', serif;
}

.shtc-container {
    max-width: 600px;
    margin: 40px auto;
    font-family: 'Helvetica Neue', sans-serif;
}

.shtc-card {
    background: #fff;
	font-family: "Gotham", sans-serif!important;
    border: 2px solid var(--shtc-highlight);
    border-radius: var(--shtc-radius);
    padding: 40px;
    box-shadow: 0 4px 12px rgba(52, 67, 67, 0.08);
}

.shtc-title {
    font-family: var(--shtc-font);
    color: var(--shtc-primary);
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--shtc-highlight);
    padding-bottom: 15px;
}

.shtc-form .shtc-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.shtc-form .shtc-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.shtc-form label {
    font-weight: 600;
    color: var(--shtc-primary);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.shtc-form input[type="text"],
.shtc-form input[type="email"],
.shtc-form input[type="password"],
.shtc-form input[type="url"],
.shtc-form textarea {
    border: 1px solid #ddd;
    border-radius: var(--shtc-radius);
    padding: 12px;
    font-size: 1rem;
    color: var(--shtc-primary);
    transition: border-color 0.3s;
    background: #f9f9f9;
}

.shtc-form input:focus,
.shtc-form textarea:focus {
    border-color: var(--shtc-secondary);
    outline: none;
    background: #fff;
}

.shtc-actions {
    margin-top: 25px;
    text-align: center;
}

.shtc-btn {
    background-color: var(--shtc-secondary);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-family: var(--shtc-font);
    border-radius: var(--shtc-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shtc-btn:hover {
    background-color: var(--shtc-primary);
    color: #fff;
    transform: translateY(-2px);
}

.shtc-message {
    padding: 15px;
    border-radius: var(--shtc-radius);
    background: var(--shtc-highlight);
    color: var(--shtc-primary);
    text-align: center;
}

@media (max-width: 600px) {
    .shtc-form .shtc-row {
        flex-direction: column;
        gap: 0;
    }
    .shtc-card {
        padding: 20px;
    }
}
/* --- Cut to Size Product Addons --- */
.shtc-cut-options-wrapper {
    background: #fdfdfd;
    border: 1px solid var(--shtc-highlight);
    border-radius: var(--shtc-radius);
    padding: 20px;
    margin: 20px 0;
}

.shtc-cut-checkbox-row {
/*     margin-bottom: 10px; */
	margin-bottom: 0;
}

.shtc-checkbox-label {
    font-weight: bold;
    color: var(--shtc-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.shtc-checkbox-label input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--shtc-secondary);
}

.shtc-field-group {
    margin-top: 15px;
}

.shtc-field-group label {
    display: block;
    font-size: 14px;
    color: var(--shtc-primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.shtc-field-group input[type="text"], 
.shtc-field-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px; /* Slightly smaller radius for inputs */
    font-family: inherit;
    color: var(--shtc-primary);
}

.shtc-field-group input[type="text"]:focus, 
.shtc-field-group select:focus {
    border-color: var(--shtc-secondary);
    outline: none;
}