:root {
    --shoot-primary: #b89c72;
    --shoot-bg: #faf9f6;
    --shoot-dark: #2a2a2a;
    --shoot-border: #e2dfd8;
}

.shoot-calc-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--shoot-dark);
    max-width: 650px;
    margin: 2rem auto;
    padding: 0 15px;
}

.shoot-calc-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--shoot-border);
    padding: 2.5rem;
}

.shoot-calc-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--shoot-dark);
    letter-spacing: -0.5px;
}

.shoot-calc-step {
    margin-bottom: 2rem;
}

.shoot-calc-label {
    display: block;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--shoot-dark);
}

.shoot-calc-grid-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 480px) {
    .shoot-calc-grid-options {
        grid-template-columns: 1fr;
    }
}

.shoot-calc-radio-card {
    position: relative;
    cursor: pointer;
    display: block;
}

.shoot-calc-radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.shoot-calc-radio-card .card-content {
    display: flex;
    flex-direction: column;
    padding: 14px 18px;
    background: var(--shoot-bg);
    border: 2px solid var(--shoot-border);
    border-radius: 8px;
    transition: all 0.25s ease;
}

.shoot-calc-radio-card input[type="radio"]:checked + .card-content {
    border-color: var(--shoot-primary);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(184, 156, 114, 0.15);
}

.shoot-calc-radio-card .card-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--shoot-dark);
}

.shoot-calc-radio-card .card-price {
    font-size: 13px;
    color: #777;
    margin-top: 4px;
}

/* Checkbox Styles */
.shoot-calc-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shoot-calc-checkbox-card {
    position: relative;
    cursor: pointer;
    display: block;
}

.shoot-calc-checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.shoot-calc-checkbox-card .checkbox-content {
    display: block;
    padding: 14px 18px;
    background: var(--shoot-bg);
    border: 2px solid var(--shoot-border);
    border-radius: 8px;
    transition: all 0.25s ease;
}

.shoot-calc-checkbox-card input[type="checkbox"]:checked + .checkbox-content {
    border-color: var(--shoot-primary);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(184, 156, 114, 0.15);
}

.shoot-calc-checkbox-card .checkbox-title {
    font-weight: 500;
    font-size: 14px;
    color: var(--shoot-dark);
}

/* Total Bar */
.shoot-calc-total-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px dashed var(--shoot-border);
    border-bottom: 1px dashed var(--shoot-border);
    margin: 2rem 0;
}

.total-label {
    font-size: 16px;
    font-weight: 600;
}

.total-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--shoot-primary);
}

/* Summary Confirmation Box */
.shoot-calc-summary-box {
    background: var(--shoot-bg);
    border: 1px solid var(--shoot-border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.summary-header {
    font-size: 20px;
    font-weight: 600;
    color: var(--shoot-primary);
    margin-bottom: 10px;
}

.summary-intro {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.summary-list-wrap {
    background: #ffffff;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid var(--shoot-border);
    margin-bottom: 1.5rem;
}

.summary-list-wrap p {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: var(--shoot-dark);
}

.summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13.5px;
}

.summary-list li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 6px;
    border-bottom: 1px solid #f1f0ec;
    color: #666;
}

.summary-list li.summary-total-item {
    border-bottom: none;
    font-weight: 600;
    color: var(--shoot-primary);
    font-size: 15px;
}

.summary-footer {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.summary-footer p {
    margin: 0 0 10px 0;
}

.brand-text {
    font-size: 12px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}
