/* WooCommerce styling tweaks for DisruptPress */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: #11131a;
  border: 1px solid #1c2333;
  border-radius: 12px;
  padding: 1rem;
}

.woocommerce div.product .product_title {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce input[type="submit"].button {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--wp--preset--color--primary);
  color: #0b0c10;
  border: none;
  padding: 0.75rem 1.4rem;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
  background: var(--wp--preset--color--secondary);
  color: #0b0c10;
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  border-radius: 10px;
  border: 1px solid #1c2333;
  background: #0f1118;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  background: #0f1118;
  border-radius: 8px;
  border: 1px solid #1c2333;
  color: var(--wp--preset--color--body);
}

/* Quick View Modal */
.disruptpress-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disruptpress-modal-content {
    background: #fff;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: 8px;
}

.disruptpress-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.disruptpress-quick-view {
    display: flex;
    gap: 2rem;
}

.disruptpress-quick-view .quick-view-image {
    flex: 1;
}

.disruptpress-quick-view .quick-view-content {
    flex: 1;
}

@media (max-width: 768px) {
    .disruptpress-quick-view {
        flex-direction: column;
    }
}

.disruptpress-quick-view-button.loading {
    opacity: 0.7;
    cursor: wait;
}
