/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500&display=swap');

.e19lxcc00 {
    display: none !important;
}

.woocs_auto_switcher{
	height:auto !important;
}

/* 2) By its classes plus an attribute */
a.added_to_cart.wc-forward[title="View cart"] {
    background: #d946ef !important;
}

.wc-block-components-quantity-selector {
    border: 1px solid #ccc;
}

.woocommerce-archive-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 6rem 1.5rem;
    min-height: calc(100vh - 80px - 120px);
}

.woocommerce-archive-container .page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.woocommerce-archive-container .page-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(120deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    margin: 1rem auto 0;
    border-radius: 9999px;
}

.woocommerce-archive-container .woocommerce-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.woocommerce-archive-container .woocommerce-result-count {
    font-size: 0.9375rem;
    color: #6b7280;
    font-weight: 500;
}

.woocommerce-archive-container .woocommerce-ordering {
    position: relative;
    margin: 12px 0;
}

.woocommerce-archive-container .woocommerce-ordering .orderby {
    appearance: none;
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234f46e5' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding: 0.75rem 2.5rem 0.75rem 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: #111827;
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    min-width: 220px;
}

.woocommerce-archive-container .woocommerce-ordering .orderby:hover {
    border-color: #4f46e5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.woocommerce-archive-container .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-archive-container .product {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}


.woocommerce-archive-container .attachment-woocommerce_thumbnail {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    transition: all 0.5s ease;
}

.woocommerce-archive-container .product:hover .attachment-woocommerce_thumbnail {
    transform: scale(1.03);
}

.woocommerce-archive-container .onsale {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #ef4444;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0px 12px 12px 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.woocommerce-archive-container .woocommerce-loop-product__link {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-decoration: none;
    color: inherit;

}

.woocommerce-archive-container .woocommerce-loop-product__title {
    font-size: 1.2rem;
    margin: 12px 0;
    color: #111827;
    transition: all 0.15s ease;
    font-weight: 600;
}

.woocommerce-archive-container .product:hover .woocommerce-loop-product__title {
    color: #4f46e5;
}

.woocommerce-archive-container .price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #20c997;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.woocommerce-archive-container .price del {
    color: #6b7280;
    opacity: 0.7;
    font-weight: 500;
}

.woocommerce-archive-container .price ins {
    text-decoration: none;
}

.woocommerce-archive-container .button,
.added_to_cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin: 6px;
    background-color: #6366f1;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: auto;
    float: left;
}

/* Hide the “Add to cart” once the “View cart” appears */
li.product:has(> a.added_to_cart)>a.add_to_cart_button {
    display: none;
}

.added_to_cart:hover {
    color: white;
}


.woocommerce-archive-container .button:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.woocommerce-archive-container .button.loading::after {
    content: '';
    display: inline-block;
    margin-left: 0.5rem;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.6s linear infinite;
}

.woocommerce-archive-container .button.added::after {
    content: '✓';
    margin-left: 0.5rem;
    color: white;
}

.woocommerce-archive-container .product_type_variable,
.woocommerce-archive-container .product_type_grouped {
    background-color: #ec4899;
}

.woocommerce-archive-container .product_type_variable:hover,
.woocommerce-archive-container .product_type_grouped:hover {
    background-color: #db2777;
}

.woocommerce-archive-container .outofstock .button {
    background-color: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
}

.woocommerce-archive-container .woocommerce-pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.woocommerce-archive-container .page-numbers {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.woocommerce-archive-container .page-numbers li a,
.woocommerce-archive-container .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.woocommerce-archive-container .page-numbers li a {
    color: #6b7280;
    background: white;
    border: 1px solid #e5e7eb;
}

.is-large.wc-block-cart .wc-block-cart-items td {
    border: 0 !important;
}

.woocommerce-archive-container .page-numbers li a:hover {
    background: #eef2ff;
    color: #4f46e5;
    border-color: #4f46e5;
}

.woocommerce-archive-container .page-numbers li .current {
    background: #4f46e5;
    color: white;
    border-color: #4f46e5;
}






/* ==============================================
   Cart Page Styles (.woocommerce-cart-container)
   ============================================== */
.woocommerce-cart-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    min-height: calc(100vh - 80px - 120px);
}

.woocommerce-cart-container .wp-block-woocommerce-cart {
    max-width: 1200px;
    margin: 0 auto;
}

.woocommerce-cart-container .wc-block-components-sidebar {
    height: fit-content;
}

@media (min-width: 992px) {
    .woocommerce-cart-container .wp-block-woocommerce-cart {
        grid-template-columns: 1.75fr 1fr;
    }
}

.woocommerce-cart-container .wp-block-woocommerce-cart-items-block {
    background: white;
    padding: 3rem;

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.woocommerce-cart-container .wc-block-cart-items__header {
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 1.5rem;
    text-align: left;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.woocommerce-cart-container .wc-block-cart-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

.woocommerce-cart-container .wc-block-cart-item:last-child {
    border-bottom: none;
}

.wc-block-grid__product {
    background-color: white !important;
}

.woocommerce-cart-container .wc-block-grid .wc-block-grid__product-onsale {
    background-color: red;
    padding: 2px 10px;
    color: #fff;
}

.woocommerce-cart-container .wc-block-grid__product-price {
    font-size: 25px;
}

.woocommerce-cart-container .wc-block-grid__product-rating .star-rating span:before {
    color: #ff9b00;
}






.woocommerce-cart-container .wc-block-cart-item__image {
    width: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.woocommerce-cart-container .wc-block-cart-item__image img {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.woocommerce-cart-container .wc-block-cart-item:hover .wc-block-cart-item__image img {
    transform: scale(1.05);
}

.woocommerce-cart-container .wc-block-cart-item__name {
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    transition: all 0.15s ease;
}

.woocommerce-cart-container .wc-block-cart-item__name:hover {
    color: #4f46e5;
}

.woocommerce-cart-container .wc-block-cart-item__price {
    font-weight: 600;
    color: #111827;
}

.woocommerce-cart-container .wc-block-cart-item__quantity .quantity-input {
    width: 80px;
    text-align: center;
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.woocommerce-cart-container .wc-block-cart-item__quantity .quantity-input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.woocommerce-cart-container .wc-block-cart-item__remove-link {
    color: #ef4444;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.woocommerce-cart-container .wc-block-cart-item__remove-link:hover {
    text-decoration: underline;
}

.woocommerce-cart-container .wp-block-woocommerce-cart-totals-block {
    background: white;
    padding: 3rem;
    position: sticky;
    top: 3rem;
}

.woocommerce-cart-container .wc-block-components-totals-wrapper {
    border-top: 1px solid #e5e7eb;
}

.woocommerce-cart-container .wc-block-components-totals-item {
    display: flex;
    justify-content: space-between;
    /* margin-bottom: 1rem;
    padding-bottom: 1rem; */
    border-bottom: 1px solid #f3f4f6;
}

.woocommerce-cart-container .wc-block-components-totals-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.125rem;
    color: #0f172a;
}

.woocommerce-cart-container .wc-block-components-checkout-place-order-button {
    width: 100%;
    background: #4f46e5;
    color: white;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.woocommerce-cart-container .wc-block-components-checkout-place-order-button:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.woocommerce-cart-container .wc-block-components-sidebar-layout {
    display: flex;
}

.woocommerce-cart-container .wc-block-components-button {
    min-height: 3em;
    color: #fff;
    font-weight: bold;
    background-color: #4f46e5;
    border-radius: 5px;
}


.wc-block-components-product-name {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #4338ca;
}

.woocommerce-cart-container .wc-block-components-sidebar-layout .wc-block-components-main {
    width: 60%;
}

.woocommerce-cart-container .wc-block-components-sidebar-layout .wc-block-components-sidebar {
    width: 38%;
    margin: 0 12px;
}

.wc-block-cart-items__row {
    border: 1px solid #e5e7eb;
}

.wc-block-components-sidebar .woocommerce-cart-container .wp-block-woocommerce-empty-cart-block {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.woocommerce-cart-container .wp-block-woocommerce-empty-cart-block h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-weight: 700;
}

.woocommerce-cart-container .wp-block-woocommerce-empty-cart-block p {
    margin-bottom: 3rem;
    color: #6b7280;
    font-size: 1.125rem;
}

.woocommerce-cart-container .wp-block-woocommerce-empty-cart-block a {
    
    display: inline-block;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    font-size: 1rem;
}

.ajax_add_to_cart{
    background-color: #6366f1 !important;
}

.ajax_add_to_cart:hover {
    color: #ffffff !important;
}

.wc-block-grid__product-title {
    color: #6366f1 !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
}

.wc-block-grid__product-add-to-cart {
    background-color: #6366f1 !important;
}

/* .woocommerce-cart-container .wp-block-woocommerce-empty-cart-block a:hover {
    background: #6366f1;
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
} */

.woocommerce-cart-container .wp-block-woocommerce-cart-cross-sells-block {
    grid-column: 1 / -1;
    margin-top: 3rem;
}

.woocommerce-cart-container .wp-block-woocommerce-cart-cross-sells-block h2 {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #0f172a;
    position: relative;
    padding-bottom: 0.5rem;
    text-align: center;
}

.woocommerce-cart-container .wp-block-woocommerce-cart-cross-sells-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(120deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    border-radius: 9999px;
}

@media (max-width:762px) {
    .woocommerce-cart-container .wc-block-cart-items__row {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .wc-block-cart-item__product {
        margin: 0 !important;
    }

    .woocommerce-cart-container .wc-block-components-quantity-selector {
        margin-bottom: 0px !important;
    }

    .woocommerce-cart-container .wc-block-cart-item__wrap {
        width: 250px;
    }

    .woocommerce-cart-container .wc-block-cart-item__total {
        font-size: 20px;
        font-weight: bold;
        display: none !important;
    }


    .woocommerce-cart-container .wc-block-cart-item__quantity {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .woocommerce-cart-container .wc-block-cart-item__image {
        width: 100%;
        padding: 0 !important;
    }


}

/* =====================================
    woocommerce-checkout edited
========================================*/
/* ==============================================
   Premium Checkout Page Styles
   ============================================== */
.wp-block-woocommerce-checkout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 !important;
    background: #f8fafc;
    min-height: calc(100vh - 120px);
}



/* Main Layout */
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
    display: flex;
    gap: 3rem;
    position: relative;
    margin-top: 14px;

}

.wp-block-woocommerce-checkout .wc-block-components-main {
    flex: 1;
    background: #fff;
    padding: 2.5rem !important;

}

.wp-block-woocommerce-checkout .wc-block-components-sidebar {
    width: 380px;
    position: sticky;
    top: 2rem;
    align-self: flex-start;
}

#coming-soon-footer-banner .coming-soon-footer-banner__content {
    color: #222;
}

/* Checkout Steps */
.wp-block-woocommerce-checkout .wc-block-components-checkout-step {
    margin-bottom: 3rem;
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-step__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9; */
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-step__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4f46e5;
    margin: 0;
	letter-spacing: 0.5px;
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-step__description {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Form Elements */
.wp-block-woocommerce-checkout .wc-block-components-text-input {
    position: relative;
    margin: 12px !important;
}

.wc-block-components-address-form>div input {
	margin: 4px -3px !important;
    margin-top: 0px !important;
}

.wc-block-components-checkout-step__heading-content{
	  font-size: .75em;
    position: absolute;
    bottom: 0;
    right: 24px;
    font-size: 17px;
    color: #4f46e5;
    font-weight: 900;
}

.wp-block-woocommerce-checkout .wc-block-components-text-input input {
    width: 100%;
    padding: 1rem !important;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.wp-block-woocommerce-checkout .wc-block-components-text-input input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: #fff;
}
.wc-block-components-checkbox__label{
	margin-left:12px !important;
}

.wc-block-components-form .wc-block-components-text-input input:-webkit-autofill+label, .wc-block-components-form .wc-block-components-text-input.is-active label, .wc-block-components-text-input input:-webkit-autofill+label, .wc-block-components-text-input.is-active label{
	top:-15px !important;
}

.wc-block-components-country-input{
	padding:12px !important;
}

.wp-block-woocommerce-checkout .wc-block-components-text-input label {
    position: absolute;

    background: #fff;
    padding: 0 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Country Select */
.wp-block-woocommerce-checkout .wc-blocks-components-select {
    margin-bottom: 1.5rem;
}

.wp-block-woocommerce-checkout .wc-blocks-components-select__container {
    position: relative;
}

.wp-block-woocommerce-checkout .wc-blocks-components-select__select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    appearance: none;
    background: #f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364758b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 1rem center;
    transition: all 0.3s ease;
}

.wp-block-woocommerce-checkout .wc-blocks-components-select__select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Order Summary */
.wp-block-woocommerce-checkout .wc-block-components-checkout-order-summary {
    background: #fff;
    border-radius: 16px;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-order-summary__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f1f5f9;
    cursor: pointer;
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-order-summary__title-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4f46e5;
    margin: 0;
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-order-summary__title-price {
    font-weight: 700;
    color: #1e293b;
}

/* Order Summary Items */
.wp-block-woocommerce-checkout .wc-block-components-order-summary-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}



.wp-block-woocommerce-checkout .wc-block-components-order-summary-item__image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.wp-block-woocommerce-checkout .wc-block-components-order-summary-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp-block-woocommerce-checkout .wc-block-components-order-summary-item__quantity {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: #6366f1;
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.wp-block-woocommerce-checkout .wc-block-components-order-summary-item__description {
    flex: 1;
}

.wp-block-woocommerce-checkout .wc-block-components-product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.wp-block-woocommerce-checkout .wc-block-components-product-price {
    font-size: 0.95rem;
}

.wp-block-woocommerce-checkout .wc-block-components-product-price__regular {
    color: #94a3b8;
    margin-right: 0.5rem;
}

.wp-block-woocommerce-checkout .wc-block-components-product-price__value {
    color: #1e293b;
    font-weight: 600;
}

/* Totals */
.wp-block-woocommerce-checkout .wc-block-components-totals-item {
    display: flex;
    justify-content: space-between;
    /* padding: 1rem 0; */
    border-bottom: 1px solid #f1f5f9;
}

.wp-block-woocommerce-checkout .wc-block-components-totals-item__label {
    color: #64748b;
}

.wp-block-woocommerce-checkout .wc-block-components-totals-item__value {
    font-weight: 600;
    color: #1e293b;
}

/* .wp-block-woocommerce-checkout .wc-block-components-totals-footer-item {
    padding-top: 1.5rem;
    margin-top: 0.5rem;
    border-top: 2px dashed #e2e8f0;
} */

.wp-block-woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-weight: 700;
    color: #1e293b;
}

.wp-block-woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Payment Methods */
.wp-block-woocommerce-checkout .wc-block-checkout__payment-method {
    padding: 0;
    background: none;
    box-shadow: none;
    border: none;
}

/* Place Order Button */
.wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(120deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1.5rem;
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.15);
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(99, 102, 241, 0.2);
}

/* Terms and Conditions */
.wp-block-woocommerce-checkout .wc-block-checkout__terms {
    padding: 1rem 0;
    margin: 1.5rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    color: #64748b;
    font-size: 0.9rem;
}

/* Return to Cart Link */
.wp-block-woocommerce-checkout .wc-block-components-checkout-return-to-cart-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-return-to-cart-button:hover {
    color: #6366f1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
        flex-direction: column-reverse !important;
    }

    .wp-block-woocommerce-checkout .wc-block-components-sidebar {
        width: 100%;
        margin-top: 2rem;
    }

    .woocommerce-cart-container .wc-block-components-sidebar-layout .wc-block-components-main {
        width: 100%;
        background-color: #fff;
        z-index: 9;
    }

    .woocommerce-cart-container .wc-block-components-sidebar-layout .wc-block-components-sidebar {
        width: 100%;
        margin: 0;
        padding: 10px;
        border-radius: 0;
    }



    .woocommerce-cart-container .wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-item {
        font-size: 15px !important;
    }

    .woocommerce-cart-container .wc-block-components-checkout-step__content>:last-child {
        margin-bottom: 0;
        /* padding: 12px; */
    }

    .woocommerce-cart-container .wc-block-components-form {
        padding: 20px;
    }

}

.woocommerce-cart-container .wc-block-components-order-summary-item__image {
    overflow: visible !important;
}

.woocommerce-cart-container .wp-block-woocommerce-checkout-order-summary-block {
    background-color: #fff;
    padding: 12px;
}

@media (max-width: 620px) {

    .wc-block-components-order-summary .wc-block-components-order-summary-item {
        flex-direction: column;
    }

    .wp-block-woocommerce-checkout {
        padding: 0 !important;
    }

    .wp-block-woocommerce-checkout-order-summary-block.checkout-order-summary-block-fill-wrapper .wc-block-components-order-summary {
        padding: 0 2px !important;

    }


}



/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-step {
    animation: fadeIn 0.4s ease-out forwards;
}

.wp-block-woocommerce-checkout .wc-block-components-checkout-order-summary {
    animation: fadeIn 0.4s ease-out 0.1s forwards;
    opacity: 0;
}




/* ==============================================
   Checkout Page Styles (.woocommerce-checkout-container)
   ============================================== */


/* ==============================================
   Account Page Styles (.woocommerce-account-container)
   ============================================== */
.woocommerce-account-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    min-height: calc(100vh - 80px - 120px);
}




.woocommerce-account-container .woocommerce-MyAccount-navigation {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 3rem;
}

.woocommerce-account-container .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-account-container .woocommerce-MyAccount-navigation li {
    margin-bottom: 0.25rem;
}

.woocommerce-account-container .woocommerce-MyAccount-navigation a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #6b7280;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.woocommerce-account-container .woocommerce-MyAccount-navigation a::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    background-color: currentColor;
    mask-size: contain;
    mask-repeat: no-repeat;
    transition: all 0.15s ease;
}

.woocommerce-account-container .woocommerce-MyAccount-navigation a:hover {
    background: #eef2ff;
    color: #4f46e5;
}

.woocommerce-account-container .woocommerce-MyAccount-navigation .is-active a {
    background: #4f46e5;
    color: white;
}

.woocommerce-account-container .woocommerce-MyAccount-navigation .is-active a::before {
    background-color: white;
}

.woocommerce-account-container .woocommerce-MyAccount-navigation-link--dashboard a::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M11.47 3.84a.75.75 0 011.06 0l8.69 8.69a.75.75 0 101.06-1.06l-8.689-8.69a2.25 2.25 0 00-3.182 0l-8.69 8.69a.75.75 0 001.061 1.06l8.69-8.69z' /%3E%3Cpath d='M12 5.432l8.159 8.159c.03.03.06.058.091.086v6.198c0 1.035-.84 1.875-1.875 1.875H15a.75.75 0 01-.75-.75v-4.5a.75.75 0 00-.75-.75h-3a.75.75 0 00-.75.75V21a.75.75 0 01-.75.75H5.625a1.875 1.875 0 01-1.875-1.875v-6.198a2.29 2.29 0 00.091-.086L12 5.43z' /%3E%3C/svg%3E");
}

.woocommerce-account-container .woocommerce-MyAccount-navigation-link--orders a::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M7.502 6h7.128A3.375 3.375 0 0118 9.375v9.375a3 3 0 003-3V6.108c0-1.505-1.125-2.811-2.664-2.94a48.972 48.972 0 00-.673-.05A3 3 0 0015 1.5h-1.5a3 3 0 00-2.663 1.618c-.225.015-.45.032-.673.05C8.662 3.295 7.554 4.542 7.502 6zM13.5 3A1.5 1.5 0 0012 4.5h4.5A1.5 1.5 0 0015 3h-1.5z' clip-rule='evenodd' /%3E%3Cpath fill-rule='evenodd' d='M3 9.375C3 8.339 3.84 7.5 4.875 7.5h9.75c1.036 0 1.875.84 1.875 1.875v11.25c0 1.035-.84 1.875-1.875 1.875h-9.75A1.875 1.875 0 013 20.625V9.375zM6 12a.75.75 0 01.75-.75h.008a.75.75 0 01.75.75v.008a.75.75 0 01-.75.75H6.75a.75.75 0 01-.75-.75V12zm2.25 0a.75.75 0 01.75-.75h3.75a.75.75 0 010 1.5H9a.75.75 0 01-.75-.75zM6 15a.75.75 0 01.75-.75h.008a.75.75 0 01.75.75v.008a.75.75 0 01-.75.75H6.75a.75.75 0 01-.75-.75V15zm2.25 0a.75.75 0 01.75-.75h3.75a.75.75 0 010 1.5H9a.75.75 0 01-.75-.75zM6 18a.75.75 0 01.75-.75h.008a.75.75 0 01.75.75v.008a.75.75 0 01-.75.75H6.75a.75.75 0 01-.75-.75V18zm2.25 0a.75.75 0 01.75-.75h3.75a.75.75 0 010 1.5H9a.75.75 0 01-.75-.75z' clip-rule='evenodd' /%3E%3C/svg%3E");
}

.woocommerce-account-container .woocommerce-MyAccount-navigation-link--downloads a::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M12 2.25a.75.75 0 01.75.75v11.69l3.22-3.22a.75.75 0 111.06 1.06l-4.5 4.5a.75.75 0 01-1.06 0l-4.5-4.5a.75.75 0 111.06-1.06l3.22 3.22V3a.75.75 0 01.75-.75zm-9 13.5a.75.75 0 01.75.75v2.25a1.5 1.5 0 001.5 1.5h13.5a1.5 1.5 0 001.5-1.5V16.5a.75.75 0 011.5 0v2.25a3 3 0 01-3 3H5.25a3 3 0 01-3-3V16.5a.75.75 0 01.75-.75z' clip-rule='evenodd' /%3E%3C/svg%3E");
}

.woocommerce-account-container .woocommerce-MyAccount-navigation-link--edit-address a::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M11.54 22.351l.07.04.028.016a.76.76 0 00.723 0l.028-.015.071-.041a16.975 16.975 0 001.144-.742 19.58 19.58 0 002.683-2.282c1.944-1.99 3.963-4.98 3.963-8.827a8.25 8.25 0 00-16.5 0c0 3.846 2.02 6.837 3.963 8.827a19.58 19.58 0 002.682 2.282 16.975 16.975 0 001.145.742zM12 13.5a3 3 0 100-6 3 3 0 000 6z' clip-rule='evenodd' /%3E%3C/svg%3E");
}

.woocommerce-account-container .woocommerce-MyAccount-navigation-link--edit-account a::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M7.5 6a4.5 4.5 0 119 0 4.5 4.5 0 01-9 0zM3.751 20.105a8.25 8.25 0 0116.498 0 .75.75 0 01-.437.695A18.683 18.683 0 0112 22.5c-2.786 0-5.433-.608-7.812-1.7a.75.75 0 01-.437-.695z' clip-rule='evenodd' /%3E%3C/svg%3E");
}

.woocommerce-account-container .woocommerce-MyAccount-navigation-link--customer-logout a::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M7.5 3.75A1.5 1.5 0 006 5.25v13.5a1.5 1.5 0 001.5 1.5h6a1.5 1.5 0 001.5-1.5V15a.75.75 0 011.5 0v3.75a3 3 0 01-3 3h-6a3 3 0 01-3-3V5.25a3 3 0 013-3h6a3 3 0 013 3V9A.75.75 0 0115 9V5.25a1.5 1.5 0 00-1.5-1.5h-6zm5.03 4.72a.75.75 0 010 1.06l-1.72 1.72h10.94a.75.75 0 010 1.5H10.81l1.72 1.72a.75.75 0 11-1.06 1.06l-3-3a.75.75 0 010-1.06l3-3a.75.75 0 011.06 0z' clip-rule='evenodd' /%3E%3C/svg%3E");
}

.woocommerce-account-container .woocommerce-MyAccount-content {
    background: white;
    border-radius: 24px;
    width: 100%;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.woocommerce-account-container .woocommerce-MyAccount-content>p {
    margin-bottom: 1.5rem;
    color: #6b7280;
    line-height: 1.7;
}

.woocommerce-message .wc-forward {
    color: #4f46e5;
    font-weight: 800;
}

.woocommerce-error .button, .woocommerce-info .button, .woocommerce-message .button{
    font-size: 16px;
    font-weight: bold;
    color: #6366f1;
}

.woocommerce-account-container .woocommerce-MyAccount-content a {
    color: #4f46e5;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease;
}

.woocommerce-account-container .woocommerce-MyAccount-content a:hover {
    text-decoration: underline;
}



/* wocommerce accound form */
/* Main Login Container */
.woocommerce-account-container .woocommerce {
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 500px;
}

.content-area .woocommerce {
    display: flex;
    max-width: 100%;
    gap: 10px;
}

/* Login Heading */
.woocommerce-account-container .woocommerce h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.75rem;
}


/* login - regester style  */
/* ===== YOUR EXISTING CSS (UNCHANGED) ===== */
.woocommerce-form-login .woocommerce-form-row {
    margin-bottom: 1.25rem;
    display: inline !important;
}

.woocommerce form .form-row {
    display: inline !important;
}

.woocommerce-form-login label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #444;
}

.woocommerce-form-login .required {
    color: #e53935;
}

.woocommerce-form-login .input-text {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.woocommerce-form-login .input-text:focus {
    border-color: #6366f1;
    outline: none;
    box-shadow: 0 0 0 2px rgba(140, 109, 70, 0.1);
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
    background-color:#6366f1;
    color: #fff;
}

.woocommerce-form-login .password-input {
    position: relative;
    display: block;
}

.woocommerce-form-login .show-password-input {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #777;
}

.woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.woocommerce-form-login__rememberme input {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
    accent-color: #6366f1;
}

.woocommerce-form-login__submit {
    width: 100%;
    padding: 0.9rem;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-form-login__submit:hover {
    background: #7a5d3c;
    transform: translateY(-2px);
}

.woocommerce-LostPassword {
    text-align: center;
    margin-top: 1.5rem;
}

.woocommerce-LostPassword a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.woocommerce-LostPassword a:hover {
    color: #6366f1;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .woocommerce-account-container .woocommerce {
        display: flex;
        flex-direction: column;
    }

    .woocommerce-account-container .woocommerce-EditAccountForm {
        display: flex;
        flex-direction: column;
    }

    .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;
    }


    .wp-block-woocommerce-checkout .wc-block-components-main {
        padding: 2px !important;
    }

    .woocommerce-account-container #account_display_name_description {
        font-size: 12px !important;
    }

    .woocommerce-account-container .woocommerce-EditAccountForm p:last-child {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .woocommerce-account-container .woocommerce-EditAccountForm p .woocommerce-Button {
        background: #6366f1;
        color: #fff;
    }

    .woocommerce-account-container .woocommerce form .form-row label {
        font-size: 12px;
    }

    .woocommerce-account-container .woocommerce-EditAccountForm fieldset legend {
        padding-top: 20px !important;
        text-decoration: underline !important;
        margin-bottom: -23px !important;
        text-align: center;
    }

    .woocommerce-account-container .woocommerce {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }

    .woocommerce-account-container .woocommerce h2 {
        font-size: 1.5rem;
    }

    .woocommerce-form-login .input-text {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .woocommerce-account-container .woocommerce {
        padding: 1.25rem;
        margin: 1rem auto;
        border-radius: 0;
        box-shadow: none;
    }

    .woocommerce-form-login__rememberme {
        font-size: 0.95rem;
    }

    .woocommerce-form-login__submit {
        padding: 0.8rem;
    }
}

.woocommerce-account-container .woocommerce-form-login {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width:100%; /*temporary  */
}

.woocommerce-account-container .form-row {
    margin-bottom: 0;
}

.woocommerce-account-container label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #34495e;
    font-size: 0.95rem;
}

.woocommerce-account-container .required {
    color: #e74c3c;
}

.woocommerce-account-container .input-text {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.woocommerce-account-container .input-text:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(140, 109, 70, 0.2);
    background: #fff;
}

.woocommerce-account-container .password-input {
    position: relative;
    display: block;
}

.woocommerce-account-container .show-password-input {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #7f8c8d;
}

.woocommerce-account-container .show-password-input:hover {
    color: #6366f1;
}

.woocommerce-account-container .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.woocommerce-account-container .woocommerce-form__input-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #6366f1;
}

.woocommerce-account-container .woocommerce-button {
    width: 100%;
    padding: 1rem;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woocommerce-account-container .woocommerce-button:hover {
    background: #7a5d3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.woocommerce-account-container .lost_password {
    text-align: center;
    margin-top: 1rem;
}

.woocommerce-account-container .lost_password a {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.woocommerce-account-container .lost_password a:hover {
    color: #6366f1;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .woocommerce-account-container h2 {
        font-size: 1.75rem;
    }

    .woocommerce-account-container .woocommerce-form-login {
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .woocommerce-account-container h2 {
        font-size: 1.5rem;
        padding-bottom: 0.75rem;
    }

    .woocommerce-account-container .input-text {
        padding: 0.75rem;
    }

    .woocommerce-account-container .woocommerce-button {
        padding: 0.9rem;
    }
}

/* ===== NEW TABBED INTERFACE STYLES ===== */
#customer_login {
    max-width: 800px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Tab headers */
#customer_login .u-columns {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

#customer_login .u-column1,
#customer_login .u-column2 {
    flex: 1;


}




/* Tab headings */
/* ===== TABBED INTERFACE WITH CENTERED CONTENT ===== */
#customer_login {
    max-width: 800px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}




/* Tab headers container */
#customer_login .u-columns {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

#customer_login .u-column1,
#customer_login .u-column2 {
    flex: 1;
}

/* Tab header styling */
#customer_login h2 {
    margin: 0;
    padding: 1.25rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
    background: #f8f8f8;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

/* Active tab styling */
#customer_login .active-tab {
    background: #fff;
    color: #6366f1;
}


/* Form container wrapper */
#customer_login .form-container {
    position: relative;
    min-height: 400px;
    /* Adjust based on your form height */
}

/* Forms positioning - FIXED VERSION */
#customer_login .woocommerce-form-login,
#customer_login .woocommerce-form-register {
    padding: 2rem;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s ease;
}

/* Inactive form styling - FIXED */
#customer_login .woocommerce-form-login:not(.active-form),
#customer_login .woocommerce-form-register:not(.active-form) {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    /* This prevents interaction with hidden form */
    transform: translateX(20px);
}

/* Active form styling - FIXED */
#customer_login .active-form {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    position: relative;
}


/* Animation for form switching */
#customer_login .woocommerce-form-login {
    width: 800px;

}

#customer_login .woocommerce-form-register {
    width: 800px;
}



/* Responsive adjustments */
@media (max-width: 769px) {
    #customer_login .u-columns {
        flex-direction: column;
    }

    #customer_login h2 {
        padding: 1rem;
    }

    #customer_login .woocommerce-form-login,
    #customer_login .woocommerce-form-register {
        padding: 1.5rem;
        max-width: 100%;
    }

    #customer_login {
        position: relative;
    }

    #customer_login .u-column1 h2,
    #customer_login .u-column2 h2 {
        width: 50%;
        position: absolute;
        top: 0;
        z-index: 99;


    }

    #customer_login .u-column1 h2 {
        left: 0;
    }

    #customer_login .u-column2 h2 {
        right: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #customer_login .u-columns {
        flex-direction: column;
    }

    #customer_login h2 {
        padding: 1rem;
    }

    #customer_login .woocommerce-form-login,
    #customer_login .woocommerce-form-register {
        padding: 1.5rem;
    }
}

/* ==============================================
   Animations
   ============================================== */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.wc-block-grid__product:hover {
    animation: pulse 0.5s ease;
}

/* ==============================================
   Responsive Adjustments
   ============================================== */
@media (max-width: 1024px) {

    .woocommerce-archive-container,
    .woocommerce-cart-container,
    .woocommerce-checkout-container,
    .woocommerce-account-container {
        padding: 6rem 1.5rem;
    }

    .woocommerce-archive-container .products {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .woocommerce-archive-container .page-title {
        font-size: 2rem;
    }

    .woocommerce-archive-container .woocommerce-toolbar {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .woocommerce-archive-container .woocommerce-ordering .orderby {
        width: 100%;
    }

    .woocommerce-cart-container .wp-block-woocommerce-cart,
    .woocommerce-checkout-container .wp-block-woocommerce-checkout {
        grid-template-columns: 1fr;
    }

    .woocommerce-cart-container .wp-block-woocommerce-cart-totals-block,
    .woocommerce-checkout-container .wp-block-woocommerce-checkout-totals-block {
        position: static;
    }



    .woocommerce-account-container .woocommerce-MyAccount-navigation {
        position: static;
        margin-bottom: 3rem;
        padding: 0;
    }
}

@media (max-width: 480px) {

    .woocommerce-archive-container,
    .woocommerce-cart-container,
    .woocommerce-checkout-container,
    .woocommerce-account-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .woocommerce-archive-container .products {
        grid-template-columns: 1fr;
    }

    .woocommerce-cart-container .wp-block-woocommerce-cart-items-block,
    .woocommerce-cart-container .wp-block-woocommerce-cart-totals-block,
    .woocommerce-checkout-container .wp-block-woocommerce-checkout-fields-block,
    .woocommerce-checkout-container .wp-block-woocommerce-checkout-totals-block,
    .woocommerce-account-container .woocommerce-MyAccount-content {
        padding: 1.5rem;
    }

    .woocommerce-checkout-container .wc-block-components-checkout-step__title {
        font-size: 1.125rem;
    }
}




/* cart , my account checkout  */


/* ====================================================== */
/* Single product product css */
/* Single product product css */
/* ====================================================== */





/* Modern Bookshop Theme for WooCommerce - Fixed Layout */
.woocommerce-single-product-container {
    font-family: "Outfit", sans-serif;
    color: #222;
    background-color: #fff;
    line-height: 1.7;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.woocommerce-single-product-container .site-main {
    position: relative;
}

.woocommerce-single-product-container .woocommerce-message 
.woocommerce-single-product-container .woocommerce-error
{
    margin: 0 0 2em;
    background-color: #f6f5f8;
    color: #515151;
    border-top: 3px solid #720eec;
    list-style: none outside;
    width: auto;
    word-wrap: break-word;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9999;
    background: #fff;
    box-shadow: 1px 1px 2px #d8d8d8;
    border-radius: 5px;
}




.woocommerce-single-product-container h1,
.woocommerce-single-product-container h2,
.woocommerce-single-product-container h3 {
    font-family: "DM Serif Display", serif;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

/* Layout fix for product container */
.woocommerce-single-product-container .product {
    display: block;
    margin-top: 68px;
    position: relative;

}

@media (min-width: 992px) {

    /* Assign grid areas */
    .woocommerce-single-product-container .woocommerce-product-gallery {
        grid-area: gallery;
    }

    .woocommerce-single-product-container .summary.entry-summary {
        grid-area: summary;
    }

    .woocommerce-single-product-container .woocommerce-tabs {
        grid-area: tabs;
    }

    .woocommerce-single-product-container .related.products {
        grid-area: related;
    }
}

@media (max-width:768px) {
    .woocommerce-single-product-container .woocommerce-message ,
    .woocommerce-single-product-container .woocommerce-error {
        top: 60px !important;
        font-size: 10px !important;
        z-index: 11;
    }

    @media (max-width: 1200px) {
        .woocommerce-single-product-container .product {

/*             margin-top: 0; */
        }
    }
}

/* Sale badge - styled like a book ribbon */
.woocommerce-single-product-container .onsale {
    position: absolute;
    top: 0;
    left: 0;
    background: #ef4444;
    border-radius: 0px 12px 12px 0px;
    color: #fff;
    padding: 8px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
    /* border-radius: 0; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transform-origin: 0 0;
}

/* Product gallery - book-inspired frame */
.woocommerce-single-product-container .woocommerce-product-gallery {
    position: relative;
    border: 1px solid #f8fafc;
    padding: 40px 30px 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    display: grid;
    grid-template-columns: 40% 60%;
}

.woocommerce-single-product-container .woocommerce-product-gallery__image img {
    height: auto;
    display: block;
    margin: 0 auto;
    max-height: 500px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Product summary - book details style */
.woocommerce-single-product-container .summary.entry-summary {
    margin-bottom: 50px;
    padding-left: 20px;
    position: absolute;
    top: 70px;
    right: 40px;
    max-width: 640px;
}

.woocommerce-single-product-container .product_title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.woocommerce-single-product-container .product_title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(120deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
}

.woocommerce-single-product-container .price {
    font-size: 2rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.woocommerce-single-product-container .price del {
    font-size: 1.5rem;
    color: #777;
    font-weight: 400;
}

.woocommerce-single-product-container .price ins {
    text-decoration: none;
    font-weight: 700;
    color: #000000;
}

.woocommerce-single-product-container .woocommerce-product-details__short-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

/* Add to cart form - bookshop counter style */
.woocommerce-single-product-container .cart {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    border-top: 1px dashed #e0d6c3;
    padding-top: 20px;
}

.woocommerce-single-product-container .product_type_simple {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 0;
}

.woocommerce-single-product-container .quantity {
    margin-bottom: 0;
    position: relative;
}

.woocommerce-single-product-container .quantity::before {
    content: "QTY:";
    position: absolute;
    left: -45px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: #777;
    letter-spacing: 1px;
}

.woocommerce-single-product-container .qty {
    width: 80px;
    padding: 12px;
    border: 1px solid #e0d6c3;
    font-size: 1.1rem;
    text-align: center;
    background: #f9f7f2;
    font-family: "Outfit", sans-serif;
}

.woocommerce-single-product-container .single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #6366f1;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.woocommerce-single-product-container .single_add_to_cart_button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(140, 109, 70, 0.3);
    transition: all 0.4s ease;
}

.woocommerce-single-product-container .single_add_to_cart_button:hover {
    background: #4f46e5;
}

.woocommerce-single-product-container .single_add_to_cart_button:hover::before {
    left: 100%;
}

/* Product meta - styled like book details */
.woocommerce-single-product-container .product_meta {
    border-top: 1px solid #e0d6c3;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.95rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.woocommerce-single-product-container .product_meta span {
    display: inline;
}

.woocommerce-single-product-container .product_meta span:before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #6366f1;
}

.woocommerce-single-product-container .product_meta a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #e0d6c3;
    transition: all 0.3s ease;
}

.woocommerce-single-product-container .product_meta a:hover {
    color: #4f46e5;
    border-bottom-color: #4f46e5;
}

.posted_in a {
    color: #4f46e5 !important;
    font-weight: 700;
}

/* Tabs - styled like book chapters */
.woocommerce-single-product-container .woocommerce-tabs {
    margin-top: 60px;
    position: relative;
    padding-top: 40px;
    width: 100%;
}

.woocommerce-single-product-container .woocommerce-tabs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0d6c3, transparent);
}

.woocommerce-single-product-container .tabs {
    display: flex;
    border-bottom: 1px solid #e0d6c3;
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
    justify-content: flex-start;
}

.woocommerce-single-product-container .tabs li {
    margin: 0 15px;
    position: relative;
}

.woocommerce-single-product-container .tabs a {
    display: block;
    padding: 15px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #777;
    text-decoration: none;
    position: relative;
    font-size: 1.1rem;
    font-family: "Outfit", sans-serif;
    transition: all 0.3s ease;
}

.woocommerce-single-product-container .tabs .active a {
    color: #6366f1;
}

.woocommerce-single-product-container .tabs .active a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(120deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
}

.woocommerce-single-product-container .panel {
    padding: 30px 0;
    margin: 0 auto;
}

.woocommerce-single-product-container .panel h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.woocommerce-single-product-container .panel h2::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(120deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
}


/* =====================
    Cuted  review portion
    ++++++++++++++++++++++

*/
/* Main Review Section */
#tab-reviews.woocommerce-Tabs-panel {
    padding: 2rem 0;
    border-top: 1px solid #eaeaea;
}

#reviews.woocommerce-Reviews {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* Review Title */
#reviews .woocommerce-Reviews-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #6366f1;
}

/* No Reviews Message */
#reviews .woocommerce-noreviews {
    color: #666;
    font-style: italic;
    text-align: center;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 6px;
}

/* Review Form Wrapper */
#review_form_wrapper {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid #eee;
}

/* Review Form Title */
#review_form #reply-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: #444;
}


/* Star Rating System - Fixed Version */
#review_form .comment-form-rating {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

#review_form .comment-form-rating label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

#review_form .stars {
    display: flex;
    gap: 4px;
}

#review_form .stars a {
    position: relative;
    font-size: 0;
    width: 24px;
    height: 24px;
    color: #f8c853;
    transition: all 0.2s;
    padding: 15px;
}

#review_form .stars a::before {
    content: '☆';
    font-size: 24px;
    position: absolute;
    left: 0;
    transition: all 0.2s;
    font-size: 40px;

}

/* The magic happens here */
#review_form .stars:has(a:nth-child(1)[aria-checked="true"]) a:nth-child(-n+1)::before,
#review_form .stars:has(a:nth-child(2)[aria-checked="true"]) a:nth-child(-n+2)::before,
#review_form .stars:has(a:nth-child(3)[aria-checked="true"]) a:nth-child(-n+3)::before,
#review_form .stars:has(a:nth-child(4)[aria-checked="true"]) a:nth-child(-n+4)::before,
#review_form .stars:has(a:nth-child(5)[aria-checked="true"]) a:nth-child(-n+5)::before {
    content: '★';
    color: #f8c853;
    /* font-size: 50px; */
}

/* Hover effects */
#review_form .stars a:hover::before,
#review_form .stars a:hover~a::before {
    content: '★';
    /* color: #f8c853; */
}

/* Focus styles */
#review_form .stars a:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}



/* Comment Form */
#review_form .comment-form-comment {
    margin-bottom: 1.5rem;
}

#review_form .comment-form-comment label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

#review_form .comment-form-comment textarea {
    width: 100%;
    min-height: 150px;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border 0.3s ease;
}

#review_form .comment-form-comment textarea:focus {
    border-color: #6366f1;
    outline: none;
    box-shadow: 0 0 0 2px rgba(140, 109, 70, 0.1);
}

/* Submit Button */
#review_form .form-submit {
    text-align: right;
}

#review_form #submit {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#review_form #submit:hover {
    background: #7a5d3c;
    transform: translateY(-1px);
}


/* review container profile section */
/* FUTURISTIC REVIEWS SECTION */
.woocommerce-single-product-container #reviews {
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    max-width: 100%;
}

.woocommerce-single-product-container .commentlist {
    display: grid;
    gap: 1.5rem;
}

/* REVIEW CARD */
.woocommerce-single-product-container .comment_container {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
	border-bottom: 1px solid #ccc;
}



/* USER AVATAR - GLASS MORPHISM */
.woocommerce-single-product-container .avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(140, 109, 70, 0.3);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
    /* background: rgba(255, 255, 255, 0.05); */
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.woocommerce-single-product-container .comment_container:hover .avatar {
    transform: scale(1.05);
    border-color: rgba(140, 109, 70, 0.6);
}

/* REVIEW CONTENT */
.woocommerce-single-product-container .comment-text {
    flex: 1;
}

/* STAR RATING - NEON GLOW */
.woocommerce-single-product-container .star-rating {
    display: inline-block;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 1em;
    width: 5.4em;
    font-family: 'star';
    /* WooCommerce star font */
    width: 120px;
}

.woocommerce-single-product-container .star-rating span {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
}

.woocommerce-single-product-container .star-rating span::before {
    content: "\53\53\53\53\53";
    /* Unicode stars */
    color: #ffb100;
    float: left;
    font-size: 1.2em;
    letter-spacing: 0.2em;
}

/* Rating text styling */
.woocommerce-single-product-container .star-rating strong {
    position: relative;
    display: inline-block;
    padding-left: 0.3em;
    font-weight: 600;
    color: #333;
    font-size: 0.9em;
    vertical-align: middle;
}

/* For dark theme */
/* .woocommerce-single-product-container.dark-theme .star-rating strong {
  color: #fff;
} */


/* USER META - FUTURISTIC TYPOGRAPHY */
.woocommerce-single-product-container .meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.woocommerce-single-product-container .woocommerce-review__author {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
}

.woocommerce-single-product-container .woocommerce-review__author::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #8c6d46 0%, transparent 100%);
}

.woocommerce-single-product-container .woocommerce-review__dash {
    color: rgba(255, 255, 255, 0.3);
}

.woocommerce-single-product-container .woocommerce-review__published-date {
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
}




/* REVIEW TEXT - GLOWING EFFECT */
.woocommerce-single-product-container .description {
    line-height: 1.6;
    margin-top: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.woocommerce-single-product-container .description::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #6366f1, transparent);
}

.woocommerce-single-product-container .description p {
    margin: 0;
}

/* NO REVIEWS MESSAGE */
.woocommerce-single-product-container .woocommerce-noreviews {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 2rem;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* RESPONSIVE DESIGN */
/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {

    /* Main Review Section */
    #tab-reviews.woocommerce-Tabs-panel {
        padding: 1rem 0;
        margin: 0 -1rem;
        /* Full width */
    }

    #reviews.woocommerce-Reviews {
        padding: 1.25rem;
        border-radius: 0;
        box-shadow: none;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Review Title */
    #reviews .woocommerce-Reviews-title {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.5rem;
        text-align: center;
    }

    /* Review Form */
    #review_form_wrapper {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    #review_form #reply-title {
        font-size: 1.2rem;
        text-align: center;
    }

    /* Star Rating - Better Touch Targets */
    #review_form .comment-form-rating {
        align-items: center;
    }

    #review_form .stars {
        gap: 2px;
        justify-content: center;
    }

    #review_form .stars a {
        padding: 12px;
        width: 28px;
        height: 28px;
    }

    #review_form .stars a::before {
        font-size: 32px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Review Cards - Better Mobile Layout */
    .woocommerce-single-product-container #reviews {
        padding: 1rem;
        backdrop-filter: none;
        /* Remove blur for performance */
    }

    .woocommerce-single-product-container .comment_container {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
        margin: 0 -0.5rem;
        width: calc(100% + 1rem);
    }

    /* Avatar - Better Alignment */
    .woocommerce-single-product-container .avatar {
        width: 44px;
        height: 44px;
        margin-top: 0.25rem;
    }

    /* Content Area */
    .woocommerce-single-product-container .comment-text {
        padding-right: 0.5rem;
    }

    /* Meta Information - Better Flow */
    .woocommerce-single-product-container .meta {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .woocommerce-single-product-container .woocommerce-review__author {
        font-size: 1rem;
        white-space: nowrap;
    }

    .woocommerce-single-product-container .woocommerce-review__published-date {
        font-size: 0.8rem;
    }

    /* Star Rating Display */
    .woocommerce-single-product-container .star-rating {
        margin-right: 0.5rem;
    }

    /* Submit Button - Full Width */
    #review_form #submit {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }

    /* Textarea - Better Typography */
    #review_form .comment-form-comment textarea {
        min-height: 140px;
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Description Text */
    .woocommerce-single-product-container .description {
        padding-left: 0.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .woocommerce-single-product-container .description::before {
        width: 1px;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {

    /* Even more compact layout */
    .woocommerce-single-product-container .comment_container {
        gap: 0.75rem;
        padding: 0.75rem;
    }

    /* Smaller avatar */
    .woocommerce-single-product-container .avatar {
        width: 40px;
        height: 40px;
    }

    /* More compact meta */
    .woocommerce-single-product-container .meta {
        gap: 0.25rem;
    }

    /* Adjust star rating */
    #review_form .stars a {
        padding: 10px;
    }

    #review_form .stars a::before {
        font-size: 28px;
    }

    /* Smaller text elements */
    #reviews .woocommerce-Reviews-title {
        font-size: 1.3rem;
    }

    #review_form #reply-title {
        font-size: 1.1rem;
    }

    /* No reviews message */
    .woocommerce-single-product-container .woocommerce-noreviews {
        padding: 1.5rem 1rem;
        font-size: 0.95rem;
    }
}

/* Very Small Screens (max-width: 360px) */
@media (max-width: 360px) {

    /* Stack meta elements */
    .woocommerce-single-product-container .meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.1rem;
    }

    /* Adjust star rating */
    #review_form .stars a::before {
        font-size: 24px;
    }

    /* Compact form elements */
    #review_form .comment-form-rating label {
        font-size: 0.9rem;
    }

    #review_form .comment-form-comment label {
        font-size: 0.9rem;
    }

    /* Smaller button */
    #review_form #submit {
        padding: 0.8rem;
        font-size: 1rem;
    }
}


/* Related Products - styled as book recommendations */
.woocommerce-single-product-container .related.products {
    margin-top: 80px;
    padding-top: 60px;
    position: relative;
    width: 100%;
}

.woocommerce-single-product-container .related.products::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0d6c3, transparent);
}

.woocommerce-single-product-container .related.products h2 {
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.woocommerce-single-product-container .related.products h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(120deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
}

.woocommerce-single-product-container .products {

    list-style: none;
    padding: 0;
}

.woocommerce-single-product-container .columns-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.woocommerce-single-product-container .products li.product {
    padding: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #e0d6c3;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.woocommerce-single-product-container .products li.product:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.woocommerce-single-product-container .products li.product .onsale {
    top: 12px;
    left: 0;
    z-index: 2;
}

.woocommerce-single-product-container .products img {
    width: 100%;
    object-fit: contain;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.woocommerce-single-product-container .products li.product:hover img {
    transform: scale(1.05);
}

.woocommerce-single-product-container .products .woocommerce-loop-product__title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    padding-bottom: 10px;
    position: relative;
}

.woocommerce-single-product-container .products .woocommerce-loop-product__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: #e0d6c3;
}

.woocommerce-single-product-container .products .price {
    font-size: 1.3rem;
    margin-bottom: 20px;
    justify-content: center;
}

.woocommerce-single-product-container .products .add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #6366f1;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 0;
}

.woocommerce-single-product-container .products .add_to_cart_button:hover {
    background: #6366f1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .woocommerce-single-product-container .product_title {
        font-size: 2.3rem;
    }

    .woocommerce-single-product-container .price {
        font-size: 1.7rem;
    }
}

@media (max-width: 767px) {
    .woocommerce-single-product-container {
        padding: 30px 15px;
    }

    .woocommerce-single-product-container .product_title {
        font-size: 2rem;
    }

    .woocommerce-single-product-container .tabs {
        flex-wrap: wrap;
    }

    .woocommerce-single-product-container .tabs li {
        margin: 5px;
    }

    .woocommerce-single-product-container .products {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .woocommerce-single-product-container .quantity::before {
        position: static;
        margin-bottom: 5px;
        transform: none;
    }

    .woocommerce-single-product-container .cart {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 1340px) {
    .woocommerce-single-product-container .summary.entry-summary {
        right: 20px;
        max-width: 600px;
    }
}

@media (max-width: 1200px) {
    .woocommerce-single-product-container .woocommerce-product-gallery__image {
        float: left;
    }

    .woocommerce-single-product-container .woocommerce-product-gallery__image img {
        max-height: 300px;
        width: 300px;
    }

    .woocommerce-single-product-container .summary.entry-summary {
        max-width: 800px;
        right: 10px;
    }

    .woocommerce-single-product-container .product_title {
        font-size: 2rem;
    }

    /* Reset grid layout for mobile */
    .woocommerce-single-product-container .product {
        display: flex;
        flex-direction: column;
    }

    /* Adjust product gallery */
    .woocommerce-single-product-container .woocommerce-product-gallery {
        padding: 20px 15px;
        margin-bottom: 20px;
        grid-template-columns: 1fr;
        border: none;
        background: transparent;
        box-shadow: none;
    }



    /* Position summary below gallery */
    .woocommerce-single-product-container .summary.entry-summary {
        position: static;
        padding-left: 0;
        margin-bottom: 30px;
    }

    /* Adjust title and price */
    .woocommerce-single-product-container .product_title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .woocommerce-single-product-container .price {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .woocommerce-single-product-container .price del {
        font-size: 1.2rem;
    }

    /* Adjust add to cart form */
    .woocommerce-single-product-container .cart {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .woocommerce-single-product-container .quantity {
        margin-bottom: 15px;
    }

    .woocommerce-single-product-container .quantity::before {
        position: static;
        transform: none;
        margin-right: 10px;
    }

    .woocommerce-single-product-container .qty {
        width: 70px;
        padding: 10px;
    }

    .woocommerce-single-product-container .single_add_to_cart_button {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
        font-size: 1rem;
    }

    /* Adjust product meta */
    .woocommerce-single-product-container .product_meta {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Make sale badge smaller */
    .woocommerce-single-product-container .onsale {
        padding: 5px 15px;
        font-size: 12px;
        left: -8px;
    }

    .woocommerce-single-product-container .woocommerce-product-gallery {
        padding: 0;
        margin: 20px auto;
    }


}

@media (max-width: 1000px) {
    .woocommerce-single-product-container .woocommerce-product-gallery__image img {
        max-height: 400px;
        width: 400px;
    }

    .woocommerce-single-product-container .product_meta span {
        display: inline;
    }

    .woocommerce-single-product-container .columns-4 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

}



/* Extra small devices (phones, 600px and down) */
@media (max-width: 600px) {
    .woocommerce-single-product-container .summary.entry-summary {
        max-width: 500px;
        right: inherit;
    }

    .woocommerce-single-product-container .columns-4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .woocommerce-single-product-container .product_title {
        font-size: 1.5rem;
    }

    .woocommerce-single-product-container .price {
        font-size: 1.3rem;
    }

    .woocommerce-single-product-container .woocommerce-product-details__short-description {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {


    .woocommerce-single-product-container .woocommerce-product-gallery__image img {
        max-height: 280px;
        width: 280px;
    }

    .woocommerce-single-product-container .columns-4 {
        display: grid;
        grid-template-columns: 1fr;
    }
}

/* Order Confirmation Page Styling */
.woocommerce-order {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

.woocommerce-notice--success {
    font-size: 1.25rem;
    color: #20c997;
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #20c997;
    margin-bottom: 2rem;
    font-weight: 500;
}

.woocommerce-order-overview {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.woocommerce-order-overview li {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid #6366f1;
}

.woocommerce-order-overview strong {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: #111827;
    font-weight: 600;
}

.woocommerce-order-details__title,
.woocommerce-column__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #111827;
    margin: 2rem 0 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.woocommerce-order-details__title::after,
.woocommerce-column__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(120deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    border-radius: 9999px;
}

.woocommerce-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.woocommerce-table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: #6b7280;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #e5e7eb;
}

.woocommerce-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
}

.woocommerce-table__product-name a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.woocommerce-table__product-name a:hover {
    color: #6366f1;
    text-decoration: underline;
}

.woocommerce-table__product-total {
    font-weight: 600;
    color: #111827;
}

.woocommerce-table tfoot th {
    text-align: right;
    padding-right: 1.5rem;
}

.woocommerce-table tfoot td {
    font-weight: 600;
}

.woocommerce-customer-details address {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    font-style: normal;
    line-height: 1.6;
    border-left: 3px solid #8b5cf6;
}

.woocommerce-customer-details--phone,
.woocommerce-customer-details--email {
    margin-top: 0.5rem;
}

.woocommerce-customer-details--email {
    color: #4f46e5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .woocommerce-order {
        padding: 1.5rem;
    }
    
    .woocommerce-order-overview {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-table thead {
        display: none;
    }
    
    .woocommerce-table tr {
        display: block;
        margin-bottom: 1rem;
        border-bottom: 2px solid #e5e7eb;
    }
    
    .woocommerce-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        border-bottom: none;
    }
    
    .woocommerce-table td::before {
        content: attr(data-title);
        font-weight: 600;
        color: #6b7280;
        margin-right: 1rem;
        font-size: 0.875rem;
    }
    
    .woocommerce-table tfoot th {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .woocommerce-notice--success {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .woocommerce-order-details__title,
    .woocommerce-column__title {
        font-size: 1.5rem;
    }
}


/* order page  */
/* Scoped Order Confirmation Page Styling */
.woocommerce-order {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

.woocommerce-order .woocommerce-notice--success {
    font-size: 1.25rem;
    color: #20c997;
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #20c997;
    margin-bottom: 2rem;
    font-weight: 500;
}

.woocommerce-order .woocommerce-order-overview {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.woocommerce-order .woocommerce-order-overview li {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid #6366f1;
}

.woocommerce-order .woocommerce-order-overview strong {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: #111827;
    font-weight: 600;
}

.woocommerce-order .woocommerce-order-details__title,
.woocommerce-order .woocommerce-column__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #111827;
    margin: 2rem 0 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.woocommerce-order .woocommerce-order-details__title::after,
.woocommerce-order .woocommerce-column__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(120deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    border-radius: 9999px;
}

.woocommerce-order .woocommerce-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.woocommerce-order .woocommerce-table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: #6b7280;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #e5e7eb;
}

.woocommerce-order .woocommerce-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
}

.woocommerce-order .woocommerce-table__product-name a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.woocommerce-order .woocommerce-table__product-name a:hover {
    color: #6366f1;
    text-decoration: underline;
}

.woocommerce-order .woocommerce-table__product-total {
    font-weight: 600;
    color: #111827;
}

.woocommerce-order .woocommerce-table tfoot th {
    text-align: right;
    padding-right: 1.5rem;
}

.woocommerce-order .woocommerce-table tfoot td {
    font-weight: 600;
}

.woocommerce-order .woocommerce-customer-details address {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    font-style: normal;
    line-height: 1.6;
    border-left: 3px solid #8b5cf6;
}

.woocommerce-order .woocommerce-customer-details--phone,
.woocommerce-order .woocommerce-customer-details--email {
    margin-top: 0.5rem;
}

.woocommerce-order .woocommerce-customer-details--email {
    color: #4f46e5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .woocommerce-order {
        padding: 1.5rem;
    }
    .woocommerce-order .woocommerce-order-overview {
        grid-template-columns: 1fr;
    }
    .woocommerce-order .woocommerce-table thead {
        display: none;
    }
    .woocommerce-order .woocommerce-table tr {
        display: block;
        margin-bottom: 1rem;
        border-bottom: 2px solid #e5e7eb;
    }
    .woocommerce-order .woocommerce-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        border-bottom: none;
    }
    .woocommerce-order .woocommerce-table td::before {
        content: attr(data-title);
        font-weight: 600;
        color: #6b7280;
        margin-right: 1rem;
        font-size: 0.875rem;
    }
    .woocommerce-order .woocommerce-table tfoot th {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .woocommerce-order .woocommerce-notice--success {
        padding: 1rem;
        font-size: 1rem;
    }
    .woocommerce-order .woocommerce-order-details__title,
    .woocommerce-order .woocommerce-column__title {
        font-size: 1.5rem;
    }
}

.woocommerce ul.order_details::after,
.woocommerce ul.order_details::before{
	content : none !important;
}

.woocommerce-order .woocommerce-order-overview__order {
	padding:12px !important;
}

.woocommerce-order .woocommerce-order-overview li ,
.woocommerce-order .woocommerce-order-overview li{
	margin-right:0px !important;
	padding:12px !important;
}

/* Disable default pseudo-elements for order overview */
.woocommerce-order .woocommerce-order-overview li::before,
.woocommerce-order .woocommerce-order-overview li::after {
    content: none !important;
}

/* Reduce font size for all links inside table cells of the downloads table */
.woocommerce-table--order-downloads td a {
    font-size: 0.875rem !important; /* adjust as needed */
}
