.ipc-168-wrapper {
    font-family: inherit;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.ipc-168-progress {
    margin-bottom: 30px;
}

.ipc-168-step-indicator {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
}

.ipc-168-progress-bar-bg {
    background: #e0e0e0;
    border-radius: 4px;
    height: 8px;
    overflow: hidden;
}

.ipc-168-progress-bar-fill {
    background: #134704;
    height: 100%;
    transition: width 0.4s ease;
}

.ipc-168-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.ipc-168-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ipc-168-step-title {
    font-size: 1.8rem !important;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
}

.ipc-168-step-subtitle {
    font-size: 1rem !important;
    color: #666;
    margin-bottom: 20px;
}

.ipc-168-helper-text {
    font-size: 0.9rem !important;
    color: #555;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.ipc-168-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.ipc-168-selectable-card {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.ipc-168-selectable-card:hover {
    border-color: #999;
}

.ipc-168-selectable-card.active {
    border-color: #134704;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ipc-168-popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #134704;
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 10px;
    border-bottom-left-radius: 8px;
}

.ipc-168-card-img {
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    margin-bottom: 15px;
}

.ipc-168-card-title {
    font-size: 1.1rem !important;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.ipc-168-card-desc {
    font-size: 0.9rem !important;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.ipc-168-acres-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.ipc-168-acre-btn {
    border: 2px solid #ddd;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    background: #fff;
    transition: all 0.2s ease;
}

.ipc-168-acre-btn:hover {
    border-color: #999;
}

.ipc-168-acre-btn.active {
    border-color: #134704;
    background: #134704;
    color: #fff;
}

.ipc-168-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background: #fff;
}

.ipc-168-input:focus {
    border-color: #134704;
    outline: none;
}

.ipc-168-form-group {
    margin-bottom: 20px;
}

.ipc-168-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.ipc-168-step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.ipc-168-btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.ipc-168-prev {
    background: #eee;
    color: #333;
}

.ipc-168-prev:hover {
    background: #ddd;
}

.ipc-168-btn-primary {
    background: #134704;
    color: #fff;
}

.ipc-168-btn-primary:hover:not(:disabled) {
    opacity: 0.9;
}

.ipc-168-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ipc-168-addon-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
}

.ipc-168-addon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ipc-168-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.ipc-168-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ipc-168-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.ipc-168-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.ipc-168-toggle input:checked + .ipc-168-slider {
    background-color: #134704;
}

.ipc-168-toggle input:checked + .ipc-168-slider:before {
    transform: translateX(22px);
}

.ipc-168-result-box {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.ipc-168-result-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.ipc-168-result-row:last-child {
    border-bottom: none;
}

.ipc-168-res-val {
    font-weight: 600;
}

.ipc-168-total-row {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #ddd;
    font-size: 1.4rem;
    font-weight: 700;
}

.ipc-168-price-val {
    color: #134704;
}

.ipc-168-disclaimer-wrapper {
    padding: 20px;
    background: #fff;
    border-left: 4px solid #134704;
    text-align: left;
    margin-bottom: 15px;
}

.ipc-168-embed-wrapper {
    width: 100%;
}
