/* =========================================================================
   Cart, Checkout & Contact — OpenHaft Theme
   Kill all WooCommerce defaults, rebuild with our design system.
   ========================================================================= */

/* --- WooCommerce Reset (cart & checkout pages) --- */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    max-width: var(--container-max) !important;
    margin: 0 auto !important;
    padding: 0 var(--container-padding) !important;
}

.woocommerce-cart table.shop_table,
.woocommerce-cart .cart_totals,
.woocommerce-cart .cart-collaterals,
.woocommerce-checkout table.shop_table,
.woocommerce-checkout .woocommerce-checkout-review-order-table {
    display: none !important;
}

.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-checkout .woocommerce-notices-wrapper {
    max-width: var(--container-max);
    margin: 0 auto 1rem;
    padding: 0 var(--container-padding);
}

/* =========================================================================
   SHARED: Form Elements
   ========================================================================= */
.oh-input,
.oh-select,
.oh-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.oh-input:focus,
.oh-select:focus,
.oh-textarea:focus {
    outline: none;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}

.oh-input::placeholder,
.oh-textarea::placeholder {
    color: var(--text-muted);
}

.oh-field {
    margin-bottom: 1.25rem;
}

.oh-field__label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.oh-field__label .required {
    color: var(--accent-danger);
    margin-left: 2px;
}

.oh-field--error .oh-input,
.oh-field--error .oh-select,
.oh-field--error .oh-textarea {
    border-color: var(--accent-danger) !important;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1) !important;
}

.oh-field--valid .oh-input,
.oh-field--valid .oh-select,
.oh-field--valid .oh-textarea {
    border-color: var(--accent-success);
}

.oh-field__error {
    display: none;
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    color: var(--accent-danger);
}

.oh-field--error .oh-field__error {
    display: block;
}

.oh-field__success {
    display: none;
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    color: var(--accent-success);
    align-items: center;
    gap: 0.25rem;
}

.oh-field__success.is-visible {
    display: flex;
}

/* Buttons */
.oh-btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-danger);
    color: #fff !important;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.oh-btn-red:hover {
    background: var(--accent-danger-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.oh-btn-red:disabled,
.oh-btn-red.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.oh-btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--gold-gradient);
    color: #fff !important;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oh-btn-gold:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* =========================================================================
   PART A: Cart Page
   ========================================================================= */
.oh-cart {
    padding: 2rem 0 4rem;
    max-width: var(--container-max);
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out both;
}

.oh-cart__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 0 0 2rem;
    color: var(--text-primary);
}

.oh-cart__layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

/* Cart Item Card */
.oh-cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto auto;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.oh-cart-item--removing {
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
}

.oh-cart-item__thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.oh-cart-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oh-cart-item__info {
    min-width: 0;
}

.oh-cart-item__name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.9375rem;
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.oh-cart-item__name a {
    color: inherit;
    text-decoration: none;
}

.oh-cart-item__name a:hover {
    color: var(--gold-500);
}

.oh-cart-item__meta {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.oh-cart-item__price {
    font-size: 0.9375rem;
    color: var(--gold-600);
    font-weight: 600;
    white-space: nowrap;
}

.oh-cart-item__price-label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.125rem;
}

.oh-cart-item__price small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.oh-cart-item__price-brutto {
    font-size: 0.6875rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Quantity Stepper */
.oh-qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.oh-qty-stepper__btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    color: var(--text-primary);
    transition: background 0.2s ease;
    padding: 0;
}

.oh-qty-stepper__btn:hover {
    background: var(--gold-400);
    color: #fff;
}

.oh-qty-stepper__input {
    width: 48px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-default);
    border-right: 1px solid var(--border-default);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    -moz-appearance: textfield;
    appearance: textfield;
}

.oh-qty-stepper__input::-webkit-inner-spin-button,
.oh-qty-stepper__input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.oh-cart-item__total {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    min-width: 90px;
    text-align: right;
}

.oh-cart-item__total small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.oh-cart-item__remove {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s ease;
    padding: 0;
}

.oh-cart-item__remove:hover {
    color: var(--accent-danger);
    border-color: rgba(192, 57, 43, 0.2);
    background: rgba(192, 57, 43, 0.05);
}

/* Cart Summary */
.oh-cart__summary-wrap {
    position: sticky;
    top: 120px;
}

.oh-cart-summary {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
}

.oh-cart-summary__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin: 0 0 1.25rem;
    color: var(--text-primary);
}

.oh-cart-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
}

.oh-cart-summary__row--label {
    color: var(--text-secondary);
}

.oh-cart-summary__row--value {
    font-weight: 600;
    color: var(--text-primary);
}

.oh-cart-summary__separator {
    height: 2px;
    background: var(--gold-gradient);
    border: none;
    margin: 0.75rem 0;
    border-radius: 1px;
}

.oh-cart-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.oh-cart-summary__total-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
}

.oh-cart-summary__actions {
    margin-top: 1.5rem;
}

.oh-cart-summary__continue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gold-600);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.oh-cart-summary__continue:hover {
    color: var(--gold-500);
}

/* Coupon */
.oh-cart-summary__coupon {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-default);
}

.oh-cart-summary__coupon-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.oh-cart-summary__coupon-row {
    display: flex;
    gap: 0.5rem;
}

.oh-cart-summary__coupon-input {
    flex: 1;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
}

.oh-cart-summary__coupon-input:focus {
    outline: none;
    border-color: var(--gold-500);
}

.oh-cart-summary__coupon-btn {
    padding: 0.625rem 1rem;
    background: var(--gold-gradient);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s ease;
}

.oh-cart-summary__coupon-btn:hover {
    transform: translateY(-1px);
}

/* Empty Cart */
.oh-cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 480px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out both;
}

.oh-cart-empty__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--gold-500);
}

.oh-cart-empty__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin: 0 0 0.75rem;
    color: var(--text-primary);
}

.oh-cart-empty__text {
    color: var(--text-secondary);
    margin: 0 0 2rem;
    font-size: 1rem;
}

/* =========================================================================
   PART B: Checkout Page
   ========================================================================= */
.oh-checkout {
    padding: 2rem 0 4rem;
    max-width: var(--container-max);
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out both;
}

.oh-checkout__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 0 0 2rem;
    color: var(--text-primary);
}

.oh-checkout__columns {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: start;
}

.oh-checkout__main {
    min-width: 0;
}

.oh-checkout__sidebar {
    position: sticky;
    top: 120px;
}

/* Section */
.oh-section {
    margin-bottom: 2rem;
}

.oh-section__title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    color: var(--text-primary);
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold-500);
}

/* Firma / Osoba Toggle */
.oh-toggle {
    display: inline-flex;
    border: 2px solid var(--border-default);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.oh-toggle__option {
    padding: 0.625rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.oh-toggle__option--active {
    background: var(--gold-gradient);
    color: #fff;
}

/* Field Grid */
.oh-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* NIP auto-fill indicator */
.oh-nip-status {
    display: none;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.25rem;
    font-size: 0.8125rem;
}

.oh-nip-status--loading {
    color: var(--text-muted);
}

.oh-nip-status--success {
    color: var(--accent-success);
}

.oh-nip-status--error {
    color: var(--gold-600);
}

.oh-nip-status.is-visible {
    display: flex;
}

/* Shipping / Payment Radio Cards */
.oh-radio-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.oh-radio-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 2px solid var(--border-default);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.oh-radio-card:hover {
    border-color: var(--gold-400);
}

.oh-radio-card--selected {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}

.oh-radio-card__radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-default);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: border-color 0.2s ease;
}

.oh-radio-card--selected .oh-radio-card__radio {
    border-color: var(--gold-500);
}

.oh-radio-card--selected .oh-radio-card__radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background: var(--gold-500);
    border-radius: 50%;
}

.oh-radio-card__info {
    flex: 1;
    min-width: 0;
}

.oh-radio-card__title {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.oh-radio-card__desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.125rem;
}

.oh-radio-card__price {
    font-weight: 700;
    color: var(--gold-600);
    white-space: nowrap;
    font-size: 0.9375rem;
}

.oh-radio-card__details {
    display: none;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-default);
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.oh-radio-card--selected .oh-radio-card__details {
    display: block;
}

/* Order Summary (sidebar) */
.oh-order-summary {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
}

.oh-order-summary__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin: 0 0 1rem;
    color: var(--text-primary);
}

.oh-order-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
}

.oh-order-item + .oh-order-item {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.oh-order-item__thumb {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.oh-order-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oh-order-item__info {
    flex: 1;
    min-width: 0;
}

.oh-order-item__name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.oh-order-item__qty {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.oh-order-item__price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.oh-order-totals {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--gold-500);
}

.oh-order-totals__row {
    display: flex;
    justify-content: space-between;
    padding: 0.375rem 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.oh-order-totals__row--grand {
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-default);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.oh-order-totals__row--grand span:last-child {
    font-family: var(--font-heading);
}

/* Order Notes (collapsible) */
.oh-order-notes__toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    background: none;
    border: none;
    padding: 0.75rem 0;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 600;
}

.oh-order-notes__toggle svg {
    transition: transform 0.2s ease;
}

.oh-order-notes--open .oh-order-notes__toggle svg {
    transform: rotate(90deg);
}

.oh-order-notes__content {
    display: none;
    padding-bottom: 0.75rem;
}

.oh-order-notes--open .oh-order-notes__content {
    display: block;
}

/* Consent Checkboxes */
.oh-consent {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-default);
}

.oh-consent__item {
    display: flex;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
    align-items: flex-start;
}

.oh-consent__checkbox {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--gold-500);
    cursor: pointer;
}

.oh-consent__label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.oh-consent__label a {
    color: var(--gold-600);
    text-decoration: underline;
}

.oh-place-order {
    margin-top: 1.25rem;
}

/* Thank You Page */
.oh-thankyou {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out both;
}

.oh-thankyou__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--accent-success);
}

.oh-thankyou__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 0 0 0.5rem;
    color: var(--text-primary);
}

.oh-thankyou__order-number {
    font-size: 1.125rem;
    color: var(--gold-600);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.oh-thankyou__message {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.oh-thankyou__details {
    text-align: left;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.oh-thankyou__details h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin: 0 0 1rem;
}

.oh-thankyou__detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.375rem 0;
    font-size: 0.9375rem;
}

.oh-thankyou__detail-row span:first-child {
    color: var(--text-muted);
}

.oh-thankyou__detail-row span:last-child {
    font-weight: 600;
}

/* =========================================================================
   PART C: Contact Page
   ========================================================================= */
.oh-contact {
    padding: 2rem 0 4rem;
    max-width: var(--container-max);
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out both;
}

.oh-contact__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 0 0 2rem;
    color: var(--text-primary);
}

.oh-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Info Card */
.oh-contact-info {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
}

.oh-contact-info__brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0 0 0.25rem;
}

.oh-contact-info__subtitle {
    color: var(--gold-600);
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 2rem;
}

.oh-contact-info__items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.oh-contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.oh-contact-info__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.1);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    color: var(--gold-600);
}

.oh-contact-info__text {
    font-size: 0.9375rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.oh-contact-info__text strong {
    display: block;
    margin-bottom: 0.125rem;
}

.oh-contact-info__text a {
    color: var(--gold-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.oh-contact-info__text a:hover {
    color: var(--gold-500);
}

.oh-contact-info__map {
    margin-top: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Contact Form */
.oh-contact-form {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
}

.oh-contact-form__title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    color: var(--text-primary);
    margin: 0 0 1.5rem;
}

.oh-contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold-400), var(--accent-danger));
    color: #fff !important;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oh-contact-form__submit:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.oh-contact-form__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Contact Success State */
.oh-contact-success {
    text-align: center;
    padding: 3rem 2rem;
}

.oh-contact-success__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    color: var(--accent-success);
}

.oh-contact-success__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.oh-contact-success__text {
    color: var(--text-secondary);
    margin: 0 0 1.5rem;
}

.oh-contact-success__link {
    color: var(--gold-600);
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    text-decoration: underline;
}

/* Honeypot */
.oh-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 768px) {
    .oh-cart__layout {
        grid-template-columns: 1fr;
    }

    .oh-cart-item {
        grid-template-columns: 64px 1fr;
        gap: 0.75rem;
    }

    .oh-cart-item__price,
    .oh-cart-item__total {
        grid-column: 2;
    }

    .oh-cart-item__remove {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
    }

    .oh-cart-item {
        position: relative;
    }

    .oh-cart__summary-wrap {
        position: static;
    }

    .oh-checkout__columns {
        grid-template-columns: 1fr;
    }

    .oh-checkout__sidebar {
        position: static;
    }

    .oh-field-row {
        grid-template-columns: 1fr;
    }

    .oh-contact__grid {
        grid-template-columns: 1fr;
    }

    .oh-btn-red,
    .oh-btn-gold,
    .oh-contact-form__submit {
        width: 100%;
    }

    .oh-cart__title,
    .oh-checkout__title,
    .oh-contact__title {
        font-size: 1.5rem;
    }
}

/* =========================================================================
   Loading spinner
   ========================================================================= */
.oh-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ohSpin 0.6s linear infinite;
    margin-right: 0.5rem;
}

.oh-spinner--dark {
    border-color: rgba(0, 0, 0, 0.1);
    border-top-color: var(--gold-500);
}

@keyframes ohSpin {
    to { transform: rotate(360deg); }
}

/* WooCommerce overrides for checkout page */
.woocommerce-checkout #payment {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
}

.woocommerce-checkout #payment .payment_methods {
    border: none !important;
    padding: 0 !important;
    list-style: none !important;
    margin: 0 !important;
}

.woocommerce-checkout #payment .payment_methods li {
    list-style: none !important;
    margin: 0 !important;
}

.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info,
.woocommerce-cart .woocommerce-error,
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info {
    border-radius: var(--radius-sm) !important;
    border-left: 4px solid var(--gold-500) !important;
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    padding: 1rem 1.25rem !important;
    margin-bottom: 1rem !important;
}

.woocommerce-cart .woocommerce-error,
.woocommerce-checkout .woocommerce-error {
    border-left-color: var(--accent-danger) !important;
}
