.disabled input[disabled] {
	background-color: #eee!important;
}

.date-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.date-option {
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-weight: 500;
}

.date-option:hover {
    border-color: #007cba;
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.15);
}

.date-option.selected {
    background-color: #007cba;
    color: white;
    border-color: #005a87;
}

#cart-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
	text-align: center;
}

@media(max-width: 767.98px){
	#postcode-validation-form input.form-control,
	#postcode-validation-form .btn,
	#email-notification-form input.form-control,
	#email-notification-form .btn{
		min-width: unset!important;
		width: 100%;
		padding: 12px 20px !important;
		border-radius: 10px !important;
	}
}

/*********************************************/

/* Modern React Cart Styling */

/* Cart layout - two columns */
.wp-block-woocommerce-cart .wc-block-cart__main,
.wc-block-cart__main {
    display: block;
    grid-template-columns: 1fr;
    padding: 20px 30px 0px 30px!important;
	background: white;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	width: 61%!important;
	margin-right: 3%!important;
}

/* Cart items section */
.wc-block-cart__items,
.wp-block-woocommerce-cart-items-block {    
    padding: 2rem;
}

.wp-block-woocommerce-cart-items-block > table{    
	width: 100%!important;
	border-bottom:0!important;
}

/* Cart items header */
.wc-block-cart__items h2,
.wp-block-woocommerce-cart-items-block h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #111827;
    font-size: 1.5rem;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

/* Individual cart item */
.wc-block-cart-item,
.wp-block-woocommerce-cart-line-items-block .wc-block-cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.wc-block-cart-item:last-child {
    border-bottom: none;
}

/* Product image */
.wc-block-cart-item__image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

/* Product details */
.wc-block-cart-item__product {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
	margin-bottom: 0!important;
}

.wc-block-cart-item__product-name a {
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s;
}

.wc-block-cart-item__product-name a:hover {
    color: #3b82f6;
}

.wc-block-cart-item__product-metadata {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Product price */
.wc-block-cart-item__prices {
    font-weight: 600;
    color: #111827;
    font-size: 1rem;
}

/* Quantity controls */
.wc-block-cart-item__quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wc-block-cart-item__quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    overflow: hidden;
}

.wc-block-cart-item__quantity-selector button {
    background: #f9fafb;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    cursor: pointer;
    transition: background-color 0.2s;
}

.wc-block-cart-item__quantity-selector button:hover {
    background: #e5e7eb;
}

.wc-block-cart-item__quantity-selector input {
    border: none;
    width: 50px;
    height: 32px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.wc-block-cart-item__quantity-selector input:focus {
    outline: none;
}

/* Remove item button */
.wc-block-cart-item__remove-item,
.wc-block-cart-item__remove-link {
    color: #dc2626;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: bold;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    background: none;
}

.wc-block-cart-item__remove-item:hover,
.wc-block-cart-item__remove-link:hover {
    background: #fef2f2;
    color: #991b1b;
}

/* Cart totals sidebar */
.wp-block-woocommerce-cart-totals-block,
.wc-block-cart-totals {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 2rem;
	height: fit-content;
}

.wp-block-woocommerce-cart-totals-block h2,
.wc-block-cart-totals h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #111827;
    font-size: 1.5rem;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

/* Totals table */
.wc-block-cart-totals__footer table,
.wp-block-woocommerce-cart-order-summary-totals-block table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.wc-block-cart-totals__footer th,
.wc-block-cart-totals__footer td,
.wp-block-woocommerce-cart-order-summary-totals-block th,
.wp-block-woocommerce-cart-order-summary-totals-block td {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    text-align: left;
}

.wc-block-cart-totals__footer th,
.wp-block-woocommerce-cart-order-summary-totals-block th {
    font-weight: 500;
    color: #6b7280;
}

.wc-block-cart-totals__footer td,
.wp-block-woocommerce-cart-order-summary-totals-block td {
    font-weight: 600;
    color: #111827;
    text-align: right;
}

/* Grand total */
.wc-block-cart-totals__footer .order-total th,
.wc-block-cart-totals__footer .order-total td {
    border-bottom: none;
    border-top: 2px solid #e5e7eb;
    padding-top: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.wc-block-cart-totals__footer .order-total td {
    color: #059669;
}

/* Coupon section */
.wp-block-woocommerce-cart-coupon-form-block,
.wc-block-cart-coupon-form {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.wp-block-woocommerce-cart-coupon-form-block .wp-block-group,
.wc-block-cart-coupon-form .wp-block-group {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
}

.wp-block-woocommerce-cart-coupon-form-block input[type="text"],
.wc-block-cart-coupon-form input[type="text"] {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.2s;
}

.wp-block-woocommerce-cart-coupon-form-block input[type="text"]:focus,
.wc-block-cart-coupon-form input[type="text"]:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.wp-block-woocommerce-cart-coupon-form-block button,
.wc-block-cart-coupon-form button {
    background: #10b981;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.wp-block-woocommerce-cart-coupon-form-block button:hover,
.wc-block-cart-coupon-form button:hover {
    background: #059669;
}


/* Empty cart state */
.wp-block-woocommerce-empty-cart-block,
.wc-block-cart-empty {
    text-align: center;
    padding: 3rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.wp-block-woocommerce-empty-cart-block p,
.wc-block-cart-empty p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Loading states */
.wc-block-cart__loading-mask {
    opacity: 0.6;
    pointer-events: none;
}

/* Error/Success messages */
.wc-block-cart-notices,
.wp-block-woocommerce-cart .wc-block-components-notice-banner {
    border-radius: 6px;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border: none;
}

.wc-block-components-notice-banner--success {
    background: #f0fdf4;
    color: #166534;
    border-left: 4px solid #10b981;
}

.wc-block-components-notice-banner--error {
    background: #fef2f2;
    color: #991b1b;
    border-left: 4px solid #dc2626;
}

.wc-block-components-notice-banner--info {
    background: #f0f9ff;
    color: #0c4a6e;
    border-left: 4px solid #0ea5e9;
}

/* Mobile responsive */
@media (max-width: 991.98px) {
    .wp-block-woocommerce-cart,
    .wc-block-cart {
        padding: 0;
        margin: 0;
    }
    
    .wp-block-woocommerce-cart .wc-block-cart__main,
    .wc-block-cart__main {
		display: block!important;
		width: 100%!important;
		margin-right: 0!important;
    }
    
    .wp-block-woocommerce-cart-totals-block,
    .wc-block-cart-totals {
		margin-top: 25px!important;
		width: 100%!important;
		padding: 0 30px!important;
    }
	
	.is-medium table.wc-block-cart-items .wc-block-cart-items__row + .wc-block-cart-items__row {
		border-top: 1px solid #ccc;
	}
	
	.wc-block-cart__submit {
		display: block;
	}
	
	.wp-block-woocommerce-cart-order-summary-coupon-form-block {
		border:none!important;
	}
    
    /* Stack cart item layout on mobile */
    .wc-block-cart-item {
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto auto auto;
        gap: 1rem;
        padding: 1.5rem;
        background: #f9fafb;
        border-radius: 8px;
        margin-bottom: 1rem;
        border: 1px solid #e5e7eb;
    }
    
    .wc-block-cart-item__image {
        grid-row: 1 / 3;
    }
    
    .wc-block-cart-item__product {
        grid-column: 2;
        grid-row: 1;
    }
    
    .wc-block-cart-item__prices,
    .wc-block-cart-item__quantity,
    .wc-block-cart-item__remove-item {
        grid-column: 2;
        grid-row: 2;
        justify-self: start;
    }
    
    .wc-block-cart-item__remove-item {
        justify-self: end;
    }
    
    .wp-block-woocommerce-cart-coupon-form-block .wp-block-group,
    .wc-block-cart-coupon-form .wp-block-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .wp-block-woocommerce-cart-coupon-form-block input[type="text"],
    .wc-block-cart-coupon-form input[type="text"] {
        width: 100%;
    }
}

/* Animation for cart updates */
@keyframes cartItemUpdate {
    0% { background: #fef3c7; }
    100% { background: white; }
}

.wc-block-cart-item.wc-block-cart-item--updated {
    animation: cartItemUpdate 0.5s ease-out;
}

/*********************************************/

/* Modern Digital Checkout Layout */
.woocommerce-checkout {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
	position: relative;
}

.woocommerce-NoticeGroup-checkout {
	grid-column: 1 / -1;
}

.col2-set {
    grid-column: 1;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    width: 100%!important;
}

#order_review_heading {
	position:absolute;
	left: 53%;
	top: 15px;
}

.woocommerce-NoticeGroup-checkout ~ #order_review_heading {
	display:none;
}

#order_review {
    grid-column: 2;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 4rem 25px 25px 25px;
    height: fit-content;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.woocommerce table.shop_table {
	background: #fffcf8;
}

/* Since no shipping needed - focus on billing */
.woocommerce-billing-fields {
    background: #fffcf8;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.woocommerce-billing-fields h3 {
    margin-top: 0;
    color: #111827;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Modern form fields */
.form-row input,
.form-row select {
    width: 100%!important;
    padding: 0.75rem!important;
    border: 1px solid #d1d5db!important;
    border-radius: 6px!important;
    font-size: 1rem!important;
    transition: all 0.2s!important;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Mobile responsive */
@media (max-width: 991.98px) {
    .woocommerce-checkout {
        display: block;
    }
    
	#order_review_heading,
    #order_review {
        position: static;
        order: 2;
    }
	
	#order_review_heading {
		margin-top: 50px;
		margin-bottom: -50px;
		margin-left: 30px;
	}
}

@media (max-width: 399.98px) {
	.fs-1 {
		font-size: 60px!important;
	}
	
	.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
		width: 100%!important;
		float: none;
	}
	
	#order_review_heading {
		position: static;
		margin:20px 0px;
	}
	
	#order_review,
	.woocommerce-billing-fields {
		padding:0;
		border:none;
		box-shadow: none;
	}
}


/* Hide shipping-related elements */
.woocommerce-shipping-fields,
.shipping-calculator-form,
#ship-to-different-address-checkbox {
    display: none !important;
}



/* Modern Coupon Section */
.woocommerce-form-coupon-toggle {
    margin-bottom: 2rem;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
    background: #fff6e7;
    border: 1px solid #ff9900;
    border-radius: 8px;
    padding: 1rem 1.5rem 1rem 3rem;
    margin: 0;
    color: #000;
    font-size: 0.95rem;
}

.woocommerce-info::before{
	color: #000!important;
}

.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
	width: 49%!important;
}

.woocommerce-form-coupon-toggle .showcoupon {
    color: #ff9900;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.woocommerce-form-coupon-toggle .showcoupon:hover {
    color: #0284c7;
    text-decoration: underline;
}

/* Coupon Form */
.checkout_coupon {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.checkout_coupon h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #111827;
    font-size: 1.25rem;
    font-weight: 600;
}

.checkout_coupon p {
    margin-bottom: 1.5rem;
    color: #6b7280;
}

/* Coupon input and button container */
.coupon-container {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
}

.checkout_coupon .form-row {
    flex: 1;
    margin-bottom: 0;
}

.checkout_coupon input[type="text"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.2s;
}

.checkout_coupon input[type="text"]:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button,
.checkout_coupon .button {
    background: var(--primary-orange)!important;
    color: #000!important;
    border: 3px solid var(--dark-gray)!important;
    padding: 10px 30px!important;
    font-size: 20px!important;
    font-weight: 700!important;
    border-radius: 80px!important;
    cursor: pointer!important;
	text-transform: uppercase;    
}

.wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button:hover,
.checkout_coupon .button:hover {
    background: #059669;
}

/* Applied coupons in order review */
.cart-discount {
    background: #f0fdf4;
    border-radius: 6px;
    padding: 0.5rem;
}

.cart-discount th,
.cart-discount td {
    color: #166534 !important;
    font-weight: 600;
}

.woocommerce-remove-coupon {
    color: #dc2626 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    margin-left: 0.5rem;
    transition: color 0.2s;
}

.woocommerce-remove-coupon:hover {
    color: #991b1b !important;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .coupon-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .checkout_coupon .form-row {
        margin-bottom: 0;
    }
    
    .checkout_coupon .button {
        width: 100%;
    }
	
	.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
		width: 100%!important;
	}
}

.woocommerce-error {
	outline: none!important;
	border-left: none!important;
	border-right: none!important;
	border-bottom: none!important;
}

.woocommerce-NoticeGroup-checkout .woocommerce-error {
	margin-bottom: 0!important;
}

.checkout-inline-error-message {
	font-size: 75%;
	color: Red;
}