/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 03 2026 | 16:03:23 */
/* =========================================================
   Checkout Review Order Table — Custom Styling (Merged File)
   ========================================================= */

/* --- Remove header row ("Product" / "Subtotal") --- */
.woocommerce-checkout-review-order-table thead {
	display: none !important;
}

/* --- Hide subtotal / recurring total rows --- */
.woocommerce-checkout-review-order-table .cart-subtotal,
.woocommerce-checkout-review-order-table .recurring-totals,
#card-panel > div > div > form > div > div.p-Grid.u-mt-grid {
	display: none !important;
}

/* --- Hide subtotal column cells entirely --- */
.woocommerce-checkout-review-order-table th.product-total,
.woocommerce-checkout-review-order-table td.product-total {
	display: none !important;
}

/* --- Hide quantity (×1), trial/signup fee, and price-per-item details --- */
.woocommerce-checkout-review-order-table .product-quantity,
.woocommerce-checkout-review-order-table .wcs-checkout-item-price,
.woocommerce-checkout-review-order-table .woocommerce-subscriptions-product-details__trial,
.woocommerce-checkout-review-order-table .woocommerce-subscriptions-product-details__signup-fee {
	display: none !important;
}

/* --- Tighter cell padding for a cleaner, more compact table --- */
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
	padding: 4px 8px !important;
}

/* --- Product name styling --- */
.woocommerce-checkout-review-order-table tbody td.product-name {
	max-width: 85% !important; /* keeps layout stable */
	font-size: 24px !important;
	margin-bottom: 10px !important;
	font-weight: 700 !important;
	color: #000 !important;
	white-space: normal !important;
	word-break: break-word !important;
	line-height: 1.3 !important;
}

/* --- Price color tone --- */
.woocommerce-checkout-review-order-table .woocommerce-Price-amount,
.woocommerce-checkout-review-order-table .subscription-details {
	color: #000 !important;
}

/* --- Remove all borders / shadows from the table --- */
.shop_table.woocommerce-checkout-review-order-table,
.shop_table.woocommerce-checkout-review-order-table th,
.shop_table.woocommerce-checkout-review-order-table td,
.shop_table.woocommerce-checkout-review-order-table tr,
.checkout-area table.shop_table td {
	border-top: none;
	border: none !important;
	box-shadow: none !important;
}
.shop_table.woocommerce-checkout-review-order-table tr::before,
.shop_table.woocommerce-checkout-review-order-table tr::after {
	display: none !important;
}
.woocommerce-checkout-review-order-table tbody tr:first-child td {
	border-top: none !important; /* remove top border from first row */
}

/* --- Spacing cleanup --- */
.woocommerce-checkout-review-order-table {
	margin-top: 0 !important;
	margin-bottom: 25px !important;
}
.checkout-review-order-table-wrapper {
	margin-top: 0 !important;
	padding-top: 0 !important;
}
.checkout-review-order-table-wrapper > p {
	margin: 0 !important;
	padding: 0 !important;
	line-height: 0 !important; /* remove stray paragraph spacing WooCommerce/Stripe inserts */
}

/* --- Let product name cell fill the row and stay on one line --- */
.woocommerce-checkout-review-order-table {
	table-layout: auto !important; /* let the name cell claim the space freed up by hidden columns */
}
.woocommerce-checkout-review-order-table tbody td.product-name {
	width: 100% !important;
	white-space: nowrap !important; /* keep the name on one line — overrides the "normal" white-space set above, same as in the original file */
}

.checkout-area table.shop_table td {
	border-top: 0px !important;
}

/* =========================================================
   Order Details Box / Totals Styling (from second file)
   ========================================================= */

.order-details {
	padding: 15px;
	border: 2px solid #cccccc;
	border-radius: 15px;
}
.order-details .title {
	display: none;
}

/* Re-adds a top border specifically for #order_review table cells
   (overrides the border:none rule above for this more specific selector) */
#order_review .woocommerce-checkout-review-order-table th,
#order_review .woocommerce-checkout-review-order-table td {
	border-top: 1px solid;
	border-top-color: var(--border);
}

#place_order {
	background: var(--primaryGradientColor);
	margin-bottom: 1em;
}

@media only screen and (max-width: 767px) {
	.woocommerce table.shop_table th,
	.woocommerce table.shop_table td,
	.woocommerce table.shop_table tr {
		padding: 0px !important;
	}
	/* Note: original file had a stray extra closing brace here — removed as it was a typo. */
}

/* RECURRING PRICE */
#order_review > table > tfoot > tr.order-total.recurring-total > td {
	font-size: 15px !important;
	font-weight: 200 !important;
}
/* RECURRING TITLE */
#order_review > table > tfoot > tr.order-total.recurring-total > th {
	font-size: 17px !important;
	font-weight: 200 !important;
	color: #000 !important;
}
/* TOTAL PRICE */
#order_review > table > tfoot > tr:nth-child(2) > td {
	font-size: 24px !important;
	font-weight: 400 !important;
}
/* TOTAL TITLE*/
#order_review > table > tfoot > tr:nth-child(2) > th {
	font-size: 21px !important;
	font-weight: 500 !important;
	color: #000 !important;
}

/* MERGED DUPLICATE: this selector appeared in both files.
   File 1 set margin-top, File 2 set border-bottom — no conflicting
   properties, so both are kept together in one rule. */
#order_review > table > tfoot > tr:nth-child(2) {
	padding-top: 10px;
	border-bottom: 2px solid #000 !important;
}

#order_review > table > tfoot > tr.order-total.recurring-total > td,
#order_review > table > tfoot > tr:nth-child(2) > td {
	border: none !important;
}