/* ========================================
   WooCommerce Overrides – Art4Fun Theme
   ======================================== */

/* ---- Product Grid ---- */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    list-style: none;
    margin: 0 !important;
    padding: 0;
}

/* ---- Catalog Ordering Dropdown (in sidebar) ---- */
.woocommerce .woocommerce-ordering {
    float: none;
    margin: 0;
}

.woocommerce .woocommerce-ordering select {
    width: 100%;
    border-radius: 9999px;
    border: none;
    background: #fff8f5;
    padding: 10px 16px;
    font-size: 14px;
    color: #1e1b18;
    cursor: pointer;
    appearance: auto;
}

@media (max-width: 1024px) {
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .woocommerce ul.products { grid-template-columns: 1fr; }
}

/* ---- Product Cards ---- */
.woocommerce ul.products li.product {
    background: #ffffff;
    border-radius: 32px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
    clear: none !important;
    display: flex;
    flex-direction: column;
}

.woocommerce ul.products li.product:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* ---- Product Image ---- */
.woocommerce ul.products li.product a img {
    margin: 0 !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.7s ease;
}

.woocommerce ul.products li.product:hover a img {
    transform: scale(1.05);
}

/* ---- Product Title ---- */
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1e1b18;
    padding: 0 !important;
    margin: 0 0 4px 0 !important;
    line-height: 1.3;
}

.woocommerce ul.products li.product h2 a {
    color: inherit;
    text-decoration: none;
}

.woocommerce ul.products li.product h2 a:hover {
    color: #685296;
}

/* ---- Price ---- */
.woocommerce ul.products li.product .price {
    color: #685296;
    font-size: 15px;
    font-weight: 700;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    color: #685296;
}

.woocommerce ul.products li.product .price del {
    opacity: 0.5;
    font-size: 13px;
    margin-right: 4px;
}

/* ---- Add to Cart Button ---- */
.woocommerce ul.products li.product .button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #7B61FF;
    color: #ffffff;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(123, 97, 255, 0.2);
    transition: all 0.3s ease;
    margin-top: 0;
    width: 100%;
    text-decoration: none;
    border: none;
    line-height: 1;
}

.woocommerce ul.products li.product .button:hover {
    background: #685296;
    box-shadow: 0 6px 16px rgba(123, 97, 255, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

.woocommerce ul.products li.product .added_to_cart {
    display: none;
}

.woocommerce ul.products li.product .button.loading {
    opacity: 0.7;
}

.woocommerce ul.products li.product .button.added {
    background: #2e7d32;
    box-shadow: none;
}

/* ---- Sale Badge ---- */
.woocommerce span.onsale {
    background: #ba1a1a;
    color: #fff;
    border-radius: 9999px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    min-height: auto;
    min-width: auto;
    line-height: 1.2;
    top: 12px;
    left: 12px;
    margin: 0;
    position: absolute;
    z-index: 10;
}

/* ---- Star Rating ---- */
.woocommerce .star-rating {
    color: #685296;
    font-size: 14px;
}

/* ---- Single Product ---- */
.woocommerce div.product {
    margin-top: 24px;
}

.woocommerce div.product .product_title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1e1b18;
}

.woocommerce div.product p.price {
    color: #7B61FF;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.woocommerce div.product p.price del {
    opacity: 0.5;
    font-size: 20px;
    color: #4c463f;
}

.woocommerce div.product p.price ins {
    text-decoration: none;
}

/* -- Product Gallery -- */
.woocommerce div.product .woocommerce-product-gallery {
    border-radius: 32px;
    overflow: hidden;
}

.woocommerce div.product .woocommerce-product-gallery .flex-viewport {
    border-radius: 32px;
    overflow: hidden;
}

.woocommerce div.product .woocommerce-product-gallery ol.flex-control-nav {
    margin-top: 12px;
    display: flex;
    gap: 8px;
}

.woocommerce div.product .woocommerce-product-gallery ol.flex-control-nav li {
    width: 70px !important;
    height: 70px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.woocommerce div.product .woocommerce-product-gallery ol.flex-control-nav li img {
    border-radius: 14px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.woocommerce div.product .woocommerce-product-gallery ol.flex-control-nav li.flex-active {
    border-color: #685296;
}

/* -- Add to Cart Form -- */
.woocommerce div.product form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.woocommerce div.product form.cart .quantity {
    float: none;
    margin: 0;
}

.woocommerce div.product .single_add_to_cart_button {
    flex: 1;
    min-width: 200px;
    background: #7B61FF !important;
    color: #ffffff;
    border-radius: 9999px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(123, 97, 255, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.woocommerce div.product .single_add_to_cart_button:hover {
    background: #685296 !important;
    box-shadow: 0 8px 24px rgba(123, 97, 255, 0.35);
    transform: translateY(-2px);
    color: #fff;
}

.woocommerce div.product .single_add_to_cart_button.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* -- Quantity Input -- */
.woocommerce .quantity {
    display: inline-flex;
    align-items: center;
}

.woocommerce .quantity .qty {
    border-radius: 9999px;
    border: 1px solid #cec5bc;
    padding: 12px 16px;
    width: 70px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1e1b18;
    background: #fff8f5;
}

/* -- Variable Product Dropdowns -- */
.woocommerce div.product form.cart .variations {
    width: 100%;
    margin-bottom: 0;
    border: none;
}

.woocommerce div.product form.cart .variations td {
    display: block;
    padding: 0 0 12px 0;
    border: none;
}

.woocommerce div.product form.cart .variations td.label {
    padding-bottom: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #1e1b18;
}

.woocommerce div.product form.cart .variations td.label label {
    font-weight: 700;
    font-size: 14px;
}

.woocommerce div.product form.cart .variations select {
    width: 100%;
    border-radius: 9999px;
    border: none;
    background: #fff8f5;
    padding: 12px 20px;
    font-size: 15px;
    color: #1e1b18;
    cursor: pointer;
    appearance: auto;
}

.woocommerce div.product form.cart .variations .reset_variations {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    background: #f5ece7;
    color: #4c463f;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.woocommerce div.product form.cart .variations .reset_variations:hover {
    background: #e9e1dc;
    color: #1e1b18;
}

/* -- Variation Price & Stock -- */
.woocommerce div.product .woocommerce-variation-price {
    margin: 12px 0;
}

.woocommerce div.product .woocommerce-variation-price .price {
    color: #7B61FF;
    font-size: 24px;
    font-weight: 700;
}

.woocommerce div.product .woocommerce-variation-availability {
    margin: 8px 0;
}

.woocommerce div.product .stock {
    display: inline-block;
    border-radius: 9999px;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 600;
}

.woocommerce div.product .stock.in-stock {
    background: #e8f5e9;
    color: #2e7d32;
}

.woocommerce div.product .stock.out-of-stock {
    background: #ffebee;
    color: #ba1a1a;
}

/* -- Product Meta (SKU, Categories, Tags) -- */
.woocommerce div.product .product_meta {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #cec5bc;
    font-size: 14px;
    color: #4c463f;
}

.woocommerce div.product .product_meta > span {
    display: block;
    margin-bottom: 4px;
}

.woocommerce div.product .product_meta a {
    color: #685296;
    font-weight: 600;
    text-decoration: none;
}

.woocommerce div.product .product_meta a:hover {
    text-decoration: underline;
}

/* -- Product Description -- */
.woocommerce div.product .woocommerce-product-details__short-description {
    margin: 16px 0;
    color: #4c463f;
    font-size: 16px;
    line-height: 1.6;
}

/* -- Tabs -- */
.woocommerce div.product .woocommerce-tabs {
    background: #ffffff;
    border-radius: 32px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0 0 16px 0 !important;
    margin: 0 0 16px 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none;
    background: transparent;
    border-radius: 9999px;
    padding: 0;
    margin: 0 8px 0 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 9999px;
    background: #f5ece7;
    color: #1e1b18;
    text-decoration: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    background: #685296;
    color: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none;
}

/* -- Tab Content -- */
.woocommerce div.product .woocommerce-tabs .panel {
    color: #4c463f;
    font-size: 16px;
    line-height: 1.6;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1e1b18;
    margin-bottom: 16px;
}

/* -- Reviews -- */
#reviews .commentlist {
    list-style: none;
    padding: 0;
}

#reviews .commentlist li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5ece7;
}

#reviews .commentlist li:last-child {
    border-bottom: none;
}

#reviews .commentlist li .avatar {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

#reviews .commentlist li .comment-text {
    margin-left: 70px;
    border: none;
    padding: 0;
    border-radius: 0;
}

#reviews .commentlist li .comment-text .meta {
    color: #4c463f;
    font-size: 14px;
}

#reviews .commentlist li .comment-text .description {
    color: #1e1b18;
    font-size: 15px;
}

/* -- Review Form -- */
#review_form_wrapper {
    margin-top: 24px;
}

#review_form .comment-reply-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1e1b18;
    display: block;
    margin-bottom: 16px;
}

#review_form .comment-form-rating {
    margin-bottom: 12px;
}

#review_form .comment-form-rating label {
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

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

#review_form .stars a {
    color: #cec5bc;
    font-size: 20px;
    text-decoration: none;
}

#review_form .stars a.active,
#review_form .stars a:hover {
    color: #685296;
}

#review_form label {
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

#review_form input[type="text"],
#review_form input[type="email"],
#review_form textarea {
    border-radius: 9999px;
    border: none;
    background: #fff8f5;
    padding: 12px 20px;
    width: 100%;
    font-size: 15px;
    color: #1e1b18;
}

#review_form textarea {
    border-radius: 24px;
    min-height: 120px;
}

#review_form .form-submit .submit {
    background: #7B61FF !important;
    color: #ffffff;
    border-radius: 9999px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(123, 97, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#review_form .form-submit .submit:hover {
    background: #685296 !important;
    box-shadow: 0 8px 24px rgba(123, 97, 255, 0.35);
    transform: translateY(-2px);
}

/* -- Related & Upsells -- */
.woocommerce .related,
.woocommerce .upsells {
    margin-top: 48px;
    clear: both;
}

.woocommerce .related h2,
.woocommerce .upsells h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1e1b18;
    margin-bottom: 24px;
}

/* ---- Quantity Input ---- */
.woocommerce .quantity .qty {
    border-radius: 9999px;
    border: 1px solid #cec5bc;
    padding: 8px 12px;
    width: 60px;
    text-align: center;
}

/* ---- Cart ---- */
.woocommerce-cart .cart-collaterals .cart_totals {
    background: #ffffff;
    border-radius: 32px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.woocommerce table.shop_table {
    border-radius: 32px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.woocommerce table.shop_table th {
    background: #f5ece7;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #1e1b18;
    padding: 12px 16px;
}

.woocommerce table.shop_table td {
    padding: 12px 16px;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button {
    background: #7B61FF !important;
    border-radius: 9999px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(123, 97, 255, 0.3);
    transition: all 0.3s ease;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
    background: #685296 !important;
    box-shadow: 0 8px 24px rgba(123, 97, 255, 0.35);
    transform: translateY(-2px);
}

/* Checkout place order button override */
.woocommerce-checkout #place_order {
    background: #7B61FF !important;
    box-shadow: 0 4px 12px rgba(123, 97, 255, 0.3) !important;
}

.woocommerce-checkout #place_order:hover {
    background: #685296 !important;
    box-shadow: 0 8px 24px rgba(123, 97, 255, 0.35) !important;
    transform: translateY(-2px);
}

/* ---- Checkout ---- */
.woocommerce-checkout #payment {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    border: none;
}

.woocommerce-checkout #payment div.payment_box {
    background: #f5ece7;
    border-radius: 16px;
}

.woocommerce-checkout #payment ul.payment_methods {
    padding: 16px;
}

.woocommerce-checkout #payment div.form-row {
    padding: 16px;
}

/* ---- Select2 Checkout Dropdowns ---- */
.woocommerce .select2-container .select2-selection--single {
    border-radius: 9999px;
    border: none;
    background: #fff8f5;
    padding: 10px 16px;
    height: 48px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.woocommerce .select2-container .select2-selection--single .select2-selection__rendered {
    color: #1e1b18;
    font-size: 15px;
    line-height: 1;
    padding: 0;
}

.woocommerce .select2-container .select2-selection--single .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
}

.woocommerce .select2-container .select2-selection--single:focus {
    outline: 2px solid rgba(104, 82, 150, 0.4);
    outline-offset: 2px;
}

/* Select2 dropdown results panel */
.select2-container .select2-dropdown {
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    margin-top: 4px;
}

.select2-container .select2-results__option {
    padding: 10px 16px;
    font-size: 14px;
    color: #1e1b18;
}

.select2-container .select2-results__option--highlighted[aria-selected] {
    background: #685296;
    color: #fff;
}

.select2-container .select2-results__option[aria-selected="true"] {
    background: #f5ece7;
    font-weight: 600;
}

.select2-container .select2-search--dropdown .select2-search__field {
    border-radius: 9999px;
    border: 1px solid #cec5bc;
    padding: 8px 12px;
    font-size: 14px;
    margin: 6px;
    width: calc(100% - 12px);
}

.woocommerce form .form-row {
    margin-bottom: 12px;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
    width: 49% !important;
    float: none !important;
    display: inline-block;
    vertical-align: top;
    clear: none !important;
}

.woocommerce form .form-row-first {
    margin-right: 1.5%;
}

.woocommerce form .form-row input,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    border-radius: 9999px;
    border: none;
    background: #fff8f5;
    padding: 14px 20px;
    width: 100%;
    color: #1e1b18;
    font-size: 15px;
    box-sizing: border-box;
}

/* Fix select dropdowns */
.woocommerce form .form-row select {
    appearance: auto;
    height: 48px;
    line-height: 1.2;
    cursor: pointer;
}

.woocommerce form .form-row select:focus {
    outline: 2px solid rgba(104, 82, 150, 0.4);
    outline-offset: 2px;
}

.woocommerce form .form-row textarea {
    border-radius: 24px;
    min-height: 100px;
}

.woocommerce form .form-row label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    display: block;
    color: #1e1b18;
}

/* ---- Buttons ---- */
.woocommerce button.button.alt {
    background: #7B61FF !important;
    border-radius: 9999px;
    padding: 12px 28px;
    font-weight: 600;
    color: #fff !important;
}

.woocommerce button.button.alt:hover {
    background: #685296 !important;
    opacity: 1;
}

.woocommerce button.button {
    border-radius: 9999px;
    padding: 10px 24px;
    font-weight: 600;
}

/* ---- Cart Remove Button ---- */
.woocommerce a.remove {
    color: #ba1a1a !important;
    background: #ffdad6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

.woocommerce a.remove:hover {
    background: #ba1a1a;
    color: #fff !important;
}

/* ---- Messages & Notices ---- */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-radius: 16px;
    padding: 16px 24px !important;
    margin-bottom: 16px !important;
    border: none;
    background: #f5ece7;
    color: #1e1b18;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    display: none;
}

.woocommerce-message a.button,
.woocommerce-info a.button,
.woocommerce-error a.button {
    background: #7B61FF;
    border-radius: 9999px;
    padding: 8px 20px;
    font-size: 13px;
    color: #fff;
}

.woocommerce-message {
    border-top: 3px solid #2e7d32;
}

.woocommerce-error {
    border-top: 3px solid #ba1a1a;
}

.woocommerce-info {
    border-top: 3px solid #685296;
}

/* ---- Coupon ---- */
.woocommerce-cart .coupon input.input-text {
    border-radius: 9999px;
    border: none;
    background: #fff8f5;
    padding: 10px 16px;
    width: auto;
}

/* ---- Pagination ---- */
.woocommerce nav.woocommerce-pagination {
    margin-top: 24px;
}

.woocommerce nav.woocommerce-pagination ul {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
    margin: 0 4px;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    border-radius: 9999px;
    padding: 8px 16px;
    font-weight: 600;
    background: #f5ece7;
    color: #1e1b18;
    min-width: 40px;
    text-align: center;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #685296;
    color: #fff;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: #e9e1dc;
}

/* ---- My Account ---- */
.woocommerce-MyAccount-content .woocommerce-Address {
    margin-bottom: 24px;
}

.woocommerce-MyAccount-content .woocommerce-Address h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1e1b18;
    margin-bottom: 8px;
}

.woocommerce-MyAccount-content .woocommerce-Address address {
    background: #fbf2ed;
    border-radius: 16px;
    padding: 16px;
    font-style: normal;
    color: #4c463f;
    line-height: 1.6;
}

.woocommerce-MyAccount-content .woocommerce-Address .edit {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 20px;
    border-radius: 9999px;
    background: #7B61FF;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-content .woocommerce-Address .edit:hover {
    background: #685296;
    color: #fff;
}

.woocommerce-MyAccount-content .woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-MyAccount-content .woocommerce-orders-table th {
    background: #f5ece7;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #1e1b18;
    padding: 12px 16px;
    text-align: left;
}

.woocommerce-MyAccount-content .woocommerce-orders-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f5ece7;
    color: #4c463f;
}

.woocommerce-MyAccount-content .woocommerce-orders-table .button {
    background: #7B61FF;
    color: #fff;
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-content .woocommerce-orders-table .button:hover {
    background: #685296;
    color: #fff;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm {
    max-width: 500px;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row {
    margin-bottom: 16px;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm label {
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
    color: #1e1b18;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm input {
    border-radius: 9999px;
    border: none;
    background: #fff8f5;
    padding: 12px 20px;
    width: 100%;
    color: #1e1b18;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset {
    border: none;
    padding: 0;
    margin-top: 24px;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset legend {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #1e1b18;
    margin-bottom: 12px;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm button {
    background: #7B61FF;
    color: #fff;
    border-radius: 9999px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm button:hover {
    background: #685296;
}

.woocommerce-MyAccount-content .woocommerce-info {
    background: #fbf2ed;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
}

.woocommerce-MyAccount-content .woocommerce-info a {
    color: #685296;
    font-weight: 600;
}

.woocommerce-MyAccount-content address {
    font-style: normal;
    line-height: 1.6;
    color: #4c463f;
}

.woocommerce-MyAccount-content .woocommerce-Message a.button {
    background: #7B61FF;
    color: #fff;
    border-radius: 9999px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.woocommerce-MyAccount-content .woocommerce-Message a.button:hover {
    background: #685296;
}

.woocommerce-MyAccount-content .woocommerce-message a {
    color: #685296;
    font-weight: 600;
}

.woocommerce-MyAccount-content .downloads-table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-MyAccount-content .downloads-table th {
    background: #f5ece7;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #1e1b18;
    padding: 12px 16px;
    text-align: left;
}

.woocommerce-MyAccount-content .downloads-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f5ece7;
    color: #4c463f;
}

.woocommerce-MyAccount-content .downloads-table .button {
    background: #7B61FF;
    color: #fff;
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.woocommerce-MyAccount-content .downloads-table .button:hover {
    background: #685296;
}

/* Order details */
.woocommerce-MyAccount-content .order {
    background: #fbf2ed;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
}

.woocommerce-MyAccount-content .order .order-number,
.woocommerce-MyAccount-content .order .order-date,
.woocommerce-MyAccount-content .order .order-status {
    font-weight: 600;
    color: #1e1b18;
}

.woocommerce-MyAccount-content .order .order-status {
    color: #685296;
}

.woocommerce-MyAccount-content mark {
    background: transparent;
    color: #685296;
    font-weight: 600;
}

/* Payment method list on account */
.woocommerce-MyAccount-content .woocommerce-PaymentMethod {
    background: #fbf2ed;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 8px;
}

.woocommerce-MyAccount-content .woocommerce-PaymentMethod h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1e1b18;
}

.woocommerce-view-order .woocommerce-order-details table.shop_table {
    margin-bottom: 24px;
}
