/*
Theme Name: ArcLine
Author: Ishika Chapadia
Author URI: 
Theme URI: 
Tags: full-site-editing
Text Domain: arcline
Requires at least: 6.1
Requires PHP: 7.4
Tested up to: 6.4
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Generated on fullsiteediting.com. No code version.
*/

/* ! There is a lot of custom css here because I wanted to change everything according to 
! the brand's style. All css is well commented and organized though. */



*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    overflow-x: hidden; 
    width: 100%;
}

/** HEADER STYLES */
.eclat-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 5px solid #000000;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    min-height: 80px;
    width: 100%;
}

.logo-box {
    padding: 1.5rem 2.5rem;
    border-right: 5px solid #000000;
    background: #FFD700;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 1001; 
}

.logo-box:hover { background: #FF1493; }

.brand-logo {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.07em;
    line-height: 1;
}

.brand-logo a { text-decoration: none; color: #000000; }

.menu-toggle { display: none; }

.editorial-nav {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;    
    align-items: center;
    padding: 0 2.5rem;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-utility {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-item {
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    position: relative; 
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0%; height: 3px;
    background-color: #FF1493; 
    transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1); 
}

.nav-item:hover { color: #FF1493; }
.nav-item:hover::after { width: 100%; }

.utility-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px; height: 45px;
    text-decoration: none;
    color: #000;
    background: #fff;
    font-weight: 700;
    border: 3px solid #000;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.utility-item i {
    font-size: 1.1rem;
    line-height: 1;
    -webkit-text-stroke: 0.6px currentColor;
}

.utility-item.user-link i,
.utility-item.cart-link i {
    transform: translateY(-0.5px);
}

.utility-item.cart-link {
    width: auto; 
    padding: 0 15px; 
    gap: 8px; 
}

.cart-count {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap; 
}

.user-link {
    flex-shrink: 0;
    
}

.utility-item:hover {
    color: #fff;
    background: #FF1493;
    border-color: #FF1493;
    transform: scale(1.05);
}

.utility-item:hover i,
.utility-item:hover .cart-contents {
    color: #fff;
}

.utility-item {
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 992px) {
    .header-wrapper { 
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        min-height: 70px;
        width: 100%;
    }  

.logo-box { 
        flex: 1; 
        padding: 1rem 1.5rem; 
        border-right: 5px solid #000; 
        justify-content: center; 
    }

    .brand-logo { 
        font-size: 1.6rem; 
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        background: #fff;
        border: none;
        width: 80px; 
        height: auto;
        cursor: pointer;
        border: #000 solid 5px;
        z-index: 1001;
        padding: 0;
        flex-shrink: 0; 
    }

    .bar {
        width: 28px;
        height: 3px;
        background: #FF1493;
    }

    .editorial-nav {
        display: flex; 
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%); 
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }

    .editorial-nav.is-open { transform: translateX(0); }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .nav-utility {
        flex-direction: row;
        gap: 15px;
    }

    .nav-item { font-size: 1.5rem !important; }

    .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); background: #FF1493; }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background: #FF1493; }
}

/** Styling for the footer */
.arcline-footer {
    background: #ffffff;
    border-top: 5px solid #000;
    border-bottom: 15px solid #FF1493;
    width: 100%;
    margin-top: 5rem;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.footer-block {
    padding: 2.5rem;
    border-right: 4px solid #000;
    transition: background 0.3s ease;
}

.footer-block:last-child {
    border-right: none;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem 0;
}

.block-label {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #FF1493;
}

.footer-nav a {
    display: block;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    transition: all 0.2s ease;
}

.footer-nav a:hover {
    color: #FF1493;
    padding-left: 5px;
}

.footer-form input {
    border: 3px solid #000;
    padding: 10px;
    font-weight: 700;
    outline: none;
    width: 100%; 
}

.footer-form button {
    background: #FFD700;
    color: #000;
    border: 3px solid #000;
    padding: 10px;
    font-weight: 900;
    cursor: pointer;
    width: 100%;
    box-shadow: 4px 4px 0px #000;
    transition: all 0.2s ease;
}

.footer-form button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
}

.footer-legal {
    border-top: 4px solid #000;
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icons a {
    color: #000;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #FF1493;
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-block {
        width: 100%;
        border-right: none;
        border-bottom: 4px solid #000;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }
}

/* ! Cart page  */

.woocommerce-result-count {
    font-family: inherit;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    color: #000000 !important;
    margin: 0 !important;
    padding: 12px 0 !important;
    display: inline-block;
    position: relative;
}

.woocommerce-ordering {
    margin-bottom: 40px;
}

select.orderby {
    appearance: none;
    -webkit-appearance: none;
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 3px solid #000000 !important; 
    border-radius: 0 !important;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;

    padding: 12px 45px 12px 20px !important;
    min-width: 220px;
    cursor: pointer;
    box-shadow: 4px 4px 0px #000000;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23FF1493' stroke-width='4' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;

}
select.orderby:hover {
    background-color: #FFD700 !important;
    border-color: #000000 !important;
    box-shadow: 6px 6px 0px #000000;
    transform: translate(-2px, -2px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

select.orderby:focus {
    outline: none;
}

.wc-block-cart-items__header {
    border-bottom: 5px solid #000 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 900;
}

.wc-block-cart__submit-button {
    background-color: #FF1493 !important;
    color: #fff !important;
    border: 3px solid #000 !important;
    border-radius: 0 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    padding: 20px !important;
    box-shadow: 6px 6px 0px #000 !important;
    transition: all 0.2s ease !important;
}

.wc-block-cart__submit-button:hover {
    transform: translate(-3px, -3px) !important;
    box-shadow: 9px 9px 0px #000 !important;
    background-color: #FFD700 !important; 
    color: #000 !important;
}

.wc-block-components-product-name {
    color: #FF1493 !important;
    font-weight: 800 !important;
    text-transform: uppercase;
}

.wc-block-components-totals-coupon__button {
    color: #000 !important;
    font-weight: 700 !important;
    text-decoration: underline !important;
}

h2.wc-block-cart__totals-title {
    font-size: 3rem !important; 
    font-weight: 900 !important;
    text-transform: uppercase !important;
    line-height: 0.9 !important;
    margin-bottom: 1.5rem !important;
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: #FF1493 !important; 
    -webkit-text-stroke: 1.5px #000000; 
    text-shadow: 4px 4px 0px #000000; 
    transition: all 0.3s ease;
}

h2.wc-block-cart__totals-title:hover {
    color: #ffffff !important;
    text-shadow: 6px 6px 0px #FF1493; 
    -webkit-text-stroke: 1.5px #000000;
    transform: skewX(-5deg); 
}

.wc-block-components-totals-coupon__input {
    margin-bottom: 10px !important;
}

.wc-block-components-totals-coupon__input input {
    border: 3px solid #000 !important;
    border-radius: 0 !important;
    padding: 15px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    background: #fff !important;
}

.wc-block-components-totals-coupon__input input:focus {
    box-shadow: 5px 5px 0px #FF1493 !important; 
    border-color: #FF1493 !important;
    outline: none;
}

.wc-block-components-totals-coupon__button {
    background-color: #FFD700 !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 0 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    padding: 12px !important;
    width: 100% !important;
    box-shadow: 4px 4px 0px #000 !important;
    transition: all 0.2s ease !important;
    opacity: 1 !important; 
    cursor: pointer !important;
}

.wc-block-components-totals-coupon__button:hover {
    background-color: #FF1493 !important;
    color: #fff !important;
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px #000 !important;
}

.wc-block-components-totals-coupon__button[disabled] {
    background-color: #eee !important;
    border-color: #ccc !important;
    box-shadow: none !important;
    color: #999 !important;
    pointer-events: none;
}

.wc-block-components-product-name {
    display: inline-block !important;
    font-size: 1.2rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    color: #000000 !important;
    text-decoration: none !important;
    line-height: 1.1 !important;
    margin-bottom: 5px !important;
    transition: all 0.3s ease !important;
}

.wc-block-components-product-name:hover {
    color: #FF1493 !important; 
    -webkit-text-stroke: 1px #000; 
    transform: translateX(5px); 
}

.wc-block-components-product-price {
    font-family: inherit !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    color: #FF1493 !important; 
    letter-spacing: 0.05em !important;
}

.wc-block-components-product-metadata {
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    font-weight: 600 !important;
    color: #666 !important;
    margin-top: 10px !important;
}

/* ! Checkout Page */

.wc-block-checkout__form {
    gap: 2rem !important;
}

.wc-block-checkout__contact-fields,
.wc-block-checkout__shipping-address-block,
.wc-block-checkout__shipping-methods-block,
.wc-block-checkout__payment-block {
    border: 4px solid #000 !important;
    padding: 2.5rem !important;
    margin-bottom: 3rem !important;
    background: #fff !important;
    box-shadow: 8px 8px 0px #FF1493 !important; 
    border-radius: 0 !important;
}

.wc-block-components-checkout-step__title {
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: -0.05em !important;
    color: #000 !important;
    line-height: 1 !important;
    margin-bottom: 20px !important;
    border-bottom: 6px solid #FF1493 !important;
    display: inline-block;
    padding-bottom: 5px;
}

.wc-block-components-radio-control__input:checked {
    background-color: #FF1493 !important;
    border-color: #000 !important;
}

.wc-block-components-radio-control__label {
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.1em;
}

.wc-block-checkout__actions {
    padding: 2rem 0 !important;
    border-top: 5px solid #000;
}

.wc-block-components-checkout-place-order-button {
    background: #FF1493 !important; 
    color: #fff !important;
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    padding: 25px !important;
    border: 4px solid #000 !important;
    box-shadow: 10px 10px 0px #000 !important;
    transition: all 0.2s ease-in-out !important;
}

.wc-block-components-checkout-place-order-button:hover {
    transform: translate(-4px, -4px) !important;
    box-shadow: 14px 14px 0px #FFD700 !important; 
    background: #000 !important;
}

/* ! Confirmation page */

.wc-block-order-confirmation-status h2 {
    font-size: 5rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    line-height: 0.8 !important;
    letter-spacing: -0.05em !important;
    color: #FF1493 !important; 
    -webkit-text-stroke: 2px #000 !important; 
    text-shadow: 6px 6px 0px #000 !important; 
    margin-bottom: 2rem !important;
}

.wc-block-order-confirmation-status-message {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #000;
    border-bottom: 5px solid #FF1493;
    padding-bottom: 15px;
    margin-bottom: 3rem;
}

.wc-block-order-confirmation-summary {
    background: #fff !important;
    border: 4px solid #000 !important;
    box-shadow: 8px 8px 0px #FF1493 !important;
    padding: 2rem !important;
    margin-bottom: 4rem !important;
}

.wc-block-order-confirmation-summary__title {
    font-size: 10px !important;
    text-transform: uppercase;
    font-weight: 900;
    color: #FF1493 !important;
}

.wc-block-order-confirmation-summary__value {
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: #000 !important;
}

.wc-block-order-confirmation-totals-table {
    border-collapse: collapse !important;
}

.wc-block-order-confirmation-totals-table th {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.1em;
    border-bottom: 4px solid #000 !important;
    padding: 15px 0 !important;
}

.wc-block-order-confirmation-totals-table td {
    padding: 20px 0 !important;
    font-weight: 700;
    text-transform: uppercase;
}

.wc-block-order-confirmation-totals-table__product-name a {
    color: #FF1493 !important;
    text-decoration: none !important;
    font-weight: 900 !important;
}

.wc-block-order-confirmation-shipping-address,
.wc-block-order-confirmation-billing-address {
    border-left: 8px solid #FF1493 !important; 
    padding-left: 20px !important;
}

.wc-block-order-confirmation-shipping-address__title,
.wc-block-order-confirmation-billing-address__title {
    font-weight: 900 !important;
    text-transform: uppercase !important;
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
}

/* ! Single product page */

h1.wp-block-post-title {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: -0.04em !important;
    line-height: 0.9 !important;
    margin-bottom: 1rem !important;
}

.wc-block-components-product-price {
    color: #FF1493 !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 2rem !important;
}

.wc-block-components-quantity-selector {
    border: 3px solid #000 !important;
    border-radius: 0 !important;
    background: #fff !important;
}

.wp-block-woocommerce-add-to-cart-form .wc-block-components-button {
    background-color: #000 !important; 
    color: #fff !important;
    border-radius: 0 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    padding: 1.5rem !important;
    border: 3px solid #000 !important;
    box-shadow: 6px 6px 0px #FF1493 !important; 
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wp-block-woocommerce-add-to-cart-form .wc-block-components-button:hover {
    background-color: #FF1493 !important; 
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0px #000 !important;
}

.woocommerce-breadcrumb a, 
.wc-block-woocommerce-product-meta a {
    color: #000 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.1em;
    border-bottom: 2px solid #FF1493;
}

.woocommerce-breadcrumb a:hover, 
.wc-block-woocommerce-product-meta a:hover {
    background: #FF1493;
    color: #fff !important;
}

.wc-block-components-product-details__tab-list button {
    text-transform: uppercase !important;
    font-weight: 900 !important;
    letter-spacing: 0.1em !important;
    border-radius: 0 !important;
}

.wc-block-components-product-details__tab-list button[aria-selected="true"] {
    border-bottom: 5px solid #FF1493 !important;
}

.quantity input.qty {
    width: 80px !important;
    height: 55px !important;
    border: 3px solid #000 !important;
    border-radius: 0 !important;
    font-weight: 900 !important;
    font-size: 1.2rem !important;
    text-align: center !important;
    background: #ffffff !important;
    margin-right: 15px !important;
    transition: all 0.3s ease;
}

.quantity input.qty:focus {
    outline: none;
    border-color: #FF1493 !important;
    box-shadow: 4px 4px 0px #FF1493 !important;
}

button.single_add_to_cart_button {
    background-color: #FF1493 !important; 
    color: #000000 !important;
    border: 3px solid #000000 !important;
    border-radius: 0 !important;
    padding: 15px 40px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    cursor: pointer !important;
    box-shadow: 6px 6px 0px #000000 !important; 
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

button.single_add_to_cart_button:hover {
    background-color: #000000 !important; 
    color: #ffffff !important; 
    transform: translate(-3px, -3px) !important;
    box-shadow: 10px 10px 0px #000000 !important; 
}

.cart {
    display: flex !important;
    align-items: center !important;
}

.woocommerce-tabs ul.tabs {
    padding: 0 !important;
    margin: 0 0 30px 0 !important;
    list-style: none;
    display: flex;
    gap: 40px;
    border-bottom: 3px solid #000; 
}

.woocommerce-tabs ul.tabs li {
    background: none !important;
    border: none !important;
    padding: 10px 0 !important;
}

.woocommerce-tabs ul.tabs li a {
    text-decoration: none !important;
    text-transform: uppercase !important;
    font-weight: 900 !important;
    font-size: 14px;
    letter-spacing: 0.15em;
    color: #000 !important;
    transition: all 0.3s ease;
    position: relative;
}

.woocommerce-tabs ul.tabs li.active a {
    color: #FF1493 !important;
}

.woocommerce-tabs ul.tabs li.active a::after {
    content: "";
    position: absolute;
    bottom: -13px; 
    left: 0;
    width: 100%;
    height: 6px;
    background: #FF1493;
}

.woocommerce-Tabs-panel h2 {
    font-size: 2rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: -0.02em !important;
    display: inline-block;
    -webkit-text-stroke: 1.5px #000000; 
    text-shadow: none; 
    color: #000000 !important;
}

.woocommerce-Tabs-panel p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ! User account */

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 4px solid #000; 
    box-shadow: 8px 8px 0px #FF1493; 
}

.woocommerce-MyAccount-navigation li {
    border-bottom: 2px solid #000;
}

.woocommerce-MyAccount-navigation li:last-child {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 1.2rem;
    text-decoration: none !important;
    text-transform: uppercase;
    font-weight: 900;
    color: #000;
    letter-spacing: 0.1em;
    transition: all 0.2s ease;
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
    background: #FF1493;
    color: #fff !important;
}

.woocommerce-MyAccount-content {
    padding-left: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.woocommerce-MyAccount-content p {
    font-weight: 500;
    margin-bottom: 2rem;
}

.woocommerce-MyAccount-content a {
    color: #000 !important;
    text-decoration: none !important;
    font-weight: 900;
    border-bottom: 4px solid #FF1493; 
    padding-bottom: 2px;
    transition: background 0.2s ease;
}

.woocommerce-MyAccount-content a:hover {
    background: #FF1493;
    color: #fff !important;
}

.woocommerce-notices-wrapper {
    margin-bottom: 2rem;
}

.woocommerce-orders-table {
    border: 4px solid #000 !important;
    border-collapse: separate !important;
    border-spacing: 0;
    width: 100%;
    background: #fff;
    box-shadow: 10px 10px 0px #FF1493; 
}

.woocommerce-orders-table thead th {
    background: #000 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    font-weight: 900 !important;
    letter-spacing: 0.1em !important;
    padding: 20px !important;
    border: none !important;
}

.woocommerce-orders-table__row {
    transition: background 0.2s ease;
}

.woocommerce-orders-table td {
    padding: 20px !important;
    border-bottom: 2px solid #000 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 13px;
}

.woocommerce-orders-table__cell-order-number a {
    color: #FF1493 !important;
    text-decoration: none !important;
    font-weight: 900 !important;
}

.woocommerce-orders-table__cell-order-actions a.button.view {
    background-color: #FFD700 !important;
    color: #000 !important;
    border-radius: 0 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    padding: 10px 20px !important;
    box-shadow: 4px 4px 0px #000 !important; 
    border: 2px solid #000 !important;
    transition: all 0.2s ease !important;
}

.woocommerce-orders-table__cell-order-actions a.button.view:hover {
    background-color: #FF1493 !important;
    color: #fff !important;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000 !important;
}

.woocommerce-orders-table__cell-order-status {
    font-style: italic;
    color: #FF1493;
}

button[name="save_account_details"] {
    background-color: #FF1493 !important; 
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 0 !important; 
    padding: 15px 40px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    cursor: pointer !important;
    box-shadow: 6px 6px 0px #000 !important; 
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    margin-top: 20px !important;
}

button[name="save_account_details"]:hover {
    background-color: #FF1493 !important;
    color: #000 !important; 
    transform: translate(-3px, -3px) !important;
    box-shadow: 10px 10px 0px #000 !important; 
}

.woocommerce-form-login {
    border: 4px solid #000 !important;
    padding: 3rem !important;
    box-shadow: 10px 10px 0px #FF1493 !important; 
    background: #fff;
    max-width: 500px;
    margin: 40px auto !important;
}

.woocommerce-form-login label {
    display: block;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.woocommerce-form-login input.input-text {
    border: 3px solid #000 !important;
    border-radius: 0 !important;
    padding: 12px !important;
    width: 100%;
    transition: all 0.2s ease;
}

.woocommerce-form-login input.input-text:focus {
    outline: none;
    border-color: #FF1493 !important;
    box-shadow: 4px 4px 0px #000 !important;
}

.lost_password a {
    color: #000 !important;
    text-decoration: none !important;
    font-weight: 700;
    font-style: italic;
    border-bottom: 2px solid #FF1493;
    transition: all 0.2s ease;
}

.lost_password a:hover {
    background: #FF1493;
    color: #fff !important;
}

.woocommerce-form-login__rememberme {
    margin-top: 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
}

button.woocommerce-form-login__submit {
    background-color: #FF1493 !important; 
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 0 !important; 
    padding: 15px 40px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    box-shadow: 6px 6px 0px #000 !important; 
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    cursor: pointer;
    margin-top: 10px;
}

button.woocommerce-form-login__submit:hover {
    background-color: #FF1493 !important; 
    color: #000 !important; 
    transform: translate(-3px, -3px) !important;
    box-shadow: 10px 10px 0px #000 !important; 
}

.wpforms-container {
    margin: 60px auto !important;
    max-width: 550px !important; 
    padding: 40px !important;
    border: 4px solid #000 !important;
    box-shadow: 12px 12px 0px #FF1493 !important;
    background: #fff;
}

.wpforms-head-container {
    text-align: center;
    margin-bottom: 30px;
}

.wpforms-title {
    font-weight: 900 !important;
    text-transform: uppercase;
    font-size: 2rem !important;
}

.wpforms-form .wpforms-field {
    padding: 10px 0 !important;
}

.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form textarea {
    width: 100% !important;
    border: 3px solid #000 !important;
    border-radius: 0 !important;
    padding: 15px !important;
    font-family: inherit;
    font-weight: 700 !important;
    font-size: 16px !important;
    transition: border-color 0.2s ease;
}

.wpforms-form input[type="text"]::placeholder,
.wpforms-form input[type="email"]::placeholder,
.wpforms-form textarea::placeholder {
    color: #777;
    opacity: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wpforms-form input:focus,
.wpforms-form textarea:focus {
    outline: none !important;
    border-color: #FF1493 !important;
}

.wpforms-form .wpforms-field-row,
.wpforms-form .wpforms-field-row-block,
.wpforms-form .wpforms-one-half,
.wpforms-form .wpforms-one-third,
.wpforms-form .wpforms-one-fourth,
.wpforms-form .wpforms-field-large,
.wpforms-form .wpforms-field-medium,
.wpforms-form .wpforms-field-small {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    float: none !important;
    clear: both !important;
    box-sizing: border-box;
}

.wpforms-form .wpforms-field-row {
    display: block !important;
}

.wpforms-form .wpforms-field-row-block {
    display: block !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.wpforms-field-label {
    display: block !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em;
    margin-bottom: 5px !important;
}

.wpforms-submit-container {
    text-align: center !important;
    padding-top: 20px !important;
}

button.wpforms-submit {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    background: linear-gradient(135deg, #ebebeb 0%, #edebeb 100%) !important;
    color: #000000 !important;
    border: 3px solid #000 !important;
    border-radius: 0 !important;
    padding: 16px 48px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.18em !important;
    line-height: 1;
    box-shadow: 6px 6px 0px #FF1493 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease !important;
    cursor: pointer;
    appearance: none;
}

button.wpforms-submit:hover {
    background: #FF1493 !important;
    color: #fff !important;
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0px #000 !important;
}

button.wpforms-submit:focus-visible {
    outline: 3px solid #FFB800;
    outline-offset: 3px;
}

button.wpforms-submit:active {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0px #000 !important;
}

button.wpforms-submit[disabled] {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none !important;
}

button.wpforms-submit:hover {
    background-color: #FF1493 !important;
    color: #fff !important;
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0px #000 !important;
}

/** Styling for the "Read More" block on blog post */
.wp-block-read-more {
    display: block;
    width: fit-content;
    padding: 12px 28px;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    background-color: transparent;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.wp-block-read-more:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.wp-block-read-more:active {
    transform: translateY(0);
}

/** Styling for the pagination on blog post archive pages */
.wp-block-query-pagination {
    margin-bottom: 4rem;
    justify-content: center;
    display: flex;
    gap: 1.5rem;
    border-top: 1px solid #eee; 
    padding-top: 3rem;
}

.wp-block-query-pagination-numbers a, 
.wp-block-query-pagination-numbers span {
    font-family: monospace; 
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
}

.wp-block-query-pagination-numbers .current {
    font-weight: 900;
    border: 2px solid #000; 
    background: transparent;
}

.wp-block-query-pagination-numbers a:hover {
    background-color: #FF1493;
    color: #fff;
}
@media (max-width: 768px) {
    /* Mobile: stack all cards with consistent spacing */
    .wp-block-columns,
    .wp-block-column {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 16px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .wp-block-column.has-border-color,
    .wp-block-columns.has-border-color {
        width: 100% !important;
        background: #fff !important;
        border: 4px solid #000 !important;
        box-shadow: 6px 6px 0px #000 !important;
        margin-bottom: 16px !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 0 0 1.25rem 0 !important;
        overflow: hidden !important;
    }

    .has-border-color h2 {
        font-size: 1.6rem !important;
        line-height: 1.05 !important;
        margin: 1.25rem 1.25rem 0.5rem 1.25rem !important;
        padding: 0 !important;
        text-transform: uppercase !important;
        -webkit-text-stroke: 1.2px black !important;
    }

    .has-border-color .wp-block-button__link {
        background-color: #ffbd03 !important;
        color: #000 !important;
        border: 2px solid #000 !important;
        box-shadow: 4px 4px 0px #000 !important;
        border-radius: 0 !important;
        font-weight: 900 !important;
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }

    .has-border-color .wp-block-buttons {
        margin: 0 1.25rem 1rem 1.25rem !important;
    }

    .has-border-color .wp-block-image {
        order: 10 !important;
        margin: 0 !important;
        border-top: 4px solid #000 !important;
    }

    .has-border-color img {
        height: 185px !important;
        width: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    .has-border-color p {
        margin: 0 1.25rem 1.25rem 1.25rem !important;
        font-size: 0.92rem !important;
        line-height: 1.45 !important;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    /* Tablet: one large card on top, two cards below */
    .wp-block-columns {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 25px !important;
        padding: 20px !important;
    }

    .wp-block-columns > .wp-block-column:first-child {
        grid-column: 1 / span 2 !important;
        width: 100% !important;
    }

    .wp-block-columns > .wp-block-column:last-child {
        display: contents !important;
    }

    .has-border-color {
        display: flex !important;
        flex-direction: column !important;
        background: #fff !important;
        border: 4px solid #000 !important;
        box-shadow: 8px 8px 0px #000 !important;
        height: 100% !important; /* Makes Box 2 and 3 the same height */
        margin: 0 !important;
        overflow: hidden !important;
    }

    .has-border-color h2 {
        font-size: 2rem !important;
        line-height: 1.1 !important;
        margin: 1.5rem !important;
        text-transform: uppercase !important;
        -webkit-text-stroke: 1.5px black !important;
    }

    .has-border-color .wp-block-button__link {
        background-color: #ffbd03 !important;
        color: #000 !important;
        border: 2px solid #000 !important;
        box-shadow: 4px 4px 0px #000 !important;
        border-radius: 0 !important;
        font-weight: 900 !important;
        padding: 12px 24px !important;
    }

    .has-border-color .wp-block-buttons {
        margin: 0 1.5rem 1.5rem 1.5rem !important;
    }

    .has-border-color .wp-block-image {
        order: 10 !important;
        margin-top: auto !important;
        border-top: 4px solid #000 !important;
        width: 100% !important;
    }

    .has-border-color img {
        height: 220px !important;
        width: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    .has-border-color p {
        margin: 0 1.5rem 1.5rem 1.5rem !important;
        font-size: 1rem !important;
        line-height: 1.4 !important;
    }
}
/* 1. THE CARD: Modern Editorial Look */
.wc-block-product {
    border: 1.5px solid #000; /* Thinner, cleaner lines */
    padding: 0px; /* Remove default padding to let image hit the edge */
    background: #fff;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); /* Smoother animation */
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.wc-block-product:hover {
    transform: translateY(-8px);
    box-shadow: 15px 15px 0px #FFB800; /* Sharp, offset shadow */
    border-color: #000;
}

/* 2. THE IMAGE: Full-bleed and Framed */
.wc-block-grid__product-image {
    padding: 30px;
    border-bottom: 1.5px solid #000;
    margin-bottom: 0 !important;
    transition: transform 0.6s ease;
}

.wc-block-product:hover .wc-block-grid__product-image {
    background: #fff;
}

/* 3. CONTENT WRAPPER: Inner Padding */
/* This prevents the text from hitting the borders */
.wc-block-product-template > li,
.wc-block-grid__product {
    display: flex;
    flex-direction: column;
}

.wc-block-grid__product-title, 
.wc-block-grid__product-price,
.wp-block-add-to-cart-form {
    padding-left: 20px;
    padding-right: 20px;
}

/* 4. THE TITLE: High-Contrast Branding */
.wc-block-grid__product-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: -0.05em; /* Tighter kerning for editorial feel */
    font-size: 1.4rem !important;
    line-height: 0.95;
    margin-top: 20px !important;
    
    margin-bottom: 8px !important;
    color: #000;
}

/* 5. THE PRICE: Tech-Chic Mono */
.wc-block-grid__product-price {
    font-family: 'Space Mono', monospace;
    font-weight: 500;
    color: #FF1493 !important; 
    font-size: 1.1rem !important;
    margin-bottom: 15px !important;
    display: block;
}

/* 6. THE BUTTON: Streetwear Label Style */
.wp-block-add-to-cart-form {
    margin-top: auto;
    padding-bottom: 20px;
}

.wp-block-add-to-cart-form .wp-block-button__link {
    background-color: #000 !important; /* Switch to black for a more "expensive" look */
    color: #FFB800 !important; /* Yellow text */
    border: none !important;
    border-radius: 0px !important;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 15px 0px !important;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.wp-block-add-to-cart-form .wp-block-button__link:hover {
    background-color: #FFB800 !important;
    color: #000 !important;
    box-shadow: inset 0 0 0 2px #000; /* Inset border effect */
}

/* 7. CAROUSEL DOTS: Minimalist */
.is-layout-carousel .dot {
    width: 40px !important; /* Longer bars instead of dots */
    height: 3px !important;
    background: #e0e0e0 !important;
    opacity: 1;
}

.is-layout-carousel .dot.is-active {
    background: #000 !important;
    width: 60px !important;
}
/* --- CONSOLIDATED RESPONSIVE (FOR TABLET & MOBILE) --- */
/* --- TABLET (Up to 1024px) --- */
@media (max-width: 1024px) {
    /* 1. Force exactly 2 cards and consistent box shadow */
    .is-layout-carousel .wc-block-product {
        flex: 0 0 calc(50% - 20px) !important; 
        min-width: calc(50% - 20px) !important;
        margin-right: 20px !important;
        box-shadow: 8px 8px 0px #FFB800;
        display: flex !important;
        flex-direction: column !important;
    }

    /* 2. Target that giant H1 header on tablet too */
    h1.wp-block-post-title.has-medium-font-size,
    .wc-block-grid__product-title,
    h1.has-text-align-center.wp-block-post-title {
        font-size: 1.2rem !important;
        line-height: 1.1 !important;
        height: 2.2em !important; /* Locks height for consistency */
        margin-top: 10px !important;
        padding: 0 15px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    /* 3. Push button to bottom */
    .wp-block-add-to-cart-form {
        margin-top: auto !important;
        padding-bottom: 20px !important;
    }
}

/* --- MOBILE PHONE (Up to 768px) --- */
@media (max-width: 768px) {
    /* 1. Target the H1 specifically to kill the 56px size */
    h1.wp-block-post-title.has-medium-font-size,
    .wc-block-grid__product-title,
    h1.has-text-align-center.wp-block-post-title {
        font-size: 1rem !important; /* Even smaller for mobile */
        line-height: 1 !important;
        text-transform: uppercase !important;
        margin-top: 10px !important;
        margin-bottom: 5px !important;
        
        /* THE ALIGNMENT LOCK */
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        min-height: 2.1em !important; 
        max-height: 2.1em !important;
    }

    /* 2. Card consistency */
    .wc-block-product {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        min-height: 400px !important;
        box-shadow: 6px 6px 0px #FFB800 !important;
    }

    /* 3. Button alignment */
    .wp-block-add-to-cart-form {
        margin-top: auto !important;
        padding-bottom: 15px !important;
    }

    /* 4. Image area consistency */
    .wc-block-product-image, 
    [data-block-name="woocommerce/product-image"],
    .wc-block-grid__product-image {
        height: 180px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        padding: 10px !important;
    }

    .wc-block-product-image img, 
    .wc-block-grid__product-image img {
        max-height: 100% !important;
        width: auto !important;
        object-fit: contain !important;
    }
}

/* --- PRIVACY POLICY PAGE: BRUTALIST LAYOUT --- */

/* 1. Main Container: The Columns Block */
.wp-block-columns.is-layout-flex {
    border: 3px solid #000 !important;
    padding: 40px !important;
    background: #fff !important;
    box-shadow: 15px 15px 0px #000 !important;
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

/* 2. Left Column: Sticky Sidebar Navigation */
.wp-block-column.is-layout-flow[style*="flex-basis:33.33%"] {
    position: sticky !important;
    top: 50px;
    height: fit-content;
    border-right: 2px solid #000;
    padding-right: 30px !important;
}

/* 3. Sidebar Links: Industrial List Style */
.wp-block-list li a {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    display: block;
    padding: 10px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.wp-block-list li a:hover {
    color: #FFB800; /* Your brand yellow */
    padding-left: 10px;
    border-bottom: 1px solid #000;
}

/* 4. Right Column: Content Area Headers */
.wp-block-heading[id^="section"] {
    font-family: 'Inter', sans-serif !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    font-size: 1.6rem !important;
    background: #000;
    color: #fff;
    padding: 10px 20px !important;
    display: inline-block;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.02em;
}



/* 6. Responsive Adjustments for Tablet/Mobile */
@media (max-width: 1024px) {
    .wp-block-columns.is-layout-flex {
        flex-direction: column !important;
        padding: 20px !important;
    }

    .wp-block-column.is-layout-flow[style*="flex-basis:33.33%"] {
        position: relative !important;
        top: 0 !important;
        border-right: none !important;
        border-bottom: 2px solid #000;
        padding-right: 0 !important;
        padding-bottom: 20px !important;
        margin-bottom: 30px !important;
    }
    
    .wp-block-heading[id^="section"] {
        font-size: 1.3rem !important;
        width: 100%;
    }
}

@media (max-width: 768px) {
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

    img,
    video,
    iframe,
    svg {
        max-width: 100% !important;
        height: auto !important;
    }

    .wp-block-columns,
    .wp-block-columns.is-layout-flex,
    .wp-block-column,
    .wp-block-group,
    .wp-block-cover,
    .wp-block-media-text,
    .wp-block-post-template,
    .wp-block-query,
    .wp-block-post {
        width: 100% !important;
        max-width: 100% !important;
        flex-direction: column !important;
    }

    .wp-block-columns.is-layout-flex,
    .wp-block-group,
    .wp-block-cover,
    .wp-block-media-text {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .wp-block-column,
    .wp-block-column.has-border-color,
    .wp-block-columns.has-border-color {
        min-width: 100% !important;
    }

    .wp-block-heading,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .wp-block-table,
    table {
        display: block;
        width: 100% !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .wp-block-table table,
    table {
        min-width: 100%;
    }

    .woocommerce-form-login,
    .wpforms-container,
    .wc-block-checkout__contact-fields,
    .wc-block-checkout__shipping-address-block,
    .wc-block-checkout__shipping-methods-block,
    .wc-block-checkout__payment-block,
    .wc-block-order-confirmation-summary {
        max-width: 100% !important;
        padding: 1.25rem !important;
        box-sizing: border-box;
    }

    .woocommerce-form-login input.input-text,
    .wpforms-form input[type="text"],
    .wpforms-form input[type="email"],
    .wpforms-form textarea,
    .wc-block-components-totals-coupon__input input,
    select.orderby {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
    }

    button.wpforms-submit {
        width: 100% !important;
        min-width: 0;
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    .woocommerce-tabs ul.tabs,
    .woocommerce-MyAccount-navigation ul,
    .footer-legal,
    .social-icons,
    .nav-utility {
        flex-wrap: wrap;
    }

    .woocommerce-orders-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .is-layout-carousel .wc-block-product {
        flex: 0 0 100% !important;
        min-width: 100% !important;
    }

    .wc-block-product,
    .wc-block-grid__product {
        max-width: 100% !important;
        min-width: 100% !important;
    }
}