@font-face {
  font-family: 'Ubuntu';
  src: url('/wp-content/uploads/fonts/Ubuntu_300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('/wp-content/uploads/fonts/Ubuntu_400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('/wp-content/uploads/fonts/Ubuntu_500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('/wp-content/uploads/fonts/Ubuntu_700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
    font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, "Helvetica Neue", Arial, sans-serif;
}

p {
    a {
        text-decoration: none;
        position: relative;
        &::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 100%;
            height: 4px;
            background: var(--pink);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .3s ease;
        }
        &:hover {
            &:after {
                transform: scaleX(1);
            }
        }
    }
}

/* Utility Classes */
.px-0 {
    padding-left: 0!important;
    padding-right: 0!important;
}

.py-0 {
    padding-top: 0!important;
    padding-bottom: 0!important;
}

.pt-0 {
    padding-top: 0!important;
}

.pt-1 {
    padding-top: 0.6em!important;
}

.py-1 {
    padding-top: 0.5em!important;
    padding-bottom: 0.5em!important;
}

/* Typography */
h1.oxy-text:not(.home-hero__title) {
    font-size: clamp(2.441rem, 1.842rem + 2.003vw, 3.552rem);
    font-size: 2rem;
    font-weight: 700;
    &.heading-m {
        font-size: 1.7rem;
    }
    &:not(.no-cube) {
        display: flex;
        gap: 0.4rem;
        &::before {
            content: "";
            height: 1em;
            aspect-ratio: 1;
            background: var(--pink);
            flex: 0 0 auto; 
            transform: translateY(10%);
        }
    }
}

.text-pink {
    color: var(--pink);
}

/* Utility Header */
.account-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: 600;
}

.account-indicator.logged-in {
  background: #333;
  color: #fff;
}

.account-indicator.logged-out {
  background: #eee;
  color: #333;
}

.account-indicator svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

h1.home-hero__title {
    text-wrap: pretty;
}

h2:is(.oxy-text,.wp-block-heading):not(.no-cube),
.heading-m {
    font-size: clamp(1.875rem, 1.3081rem + 1.3953vw, 2.25rem);
    margin-top: 0;
    margin-bottom: 30px;
    display: flex;
    gap: 0.4rem;
    &::before {
        content: "";
        height: 1em;
        aspect-ratio: 1;
        background: var(--pink);
        flex: 0 0 auto; 
        transform: translateY(15%);
    }
}

.heading-m {
    font-size: 1.7rem;
    font-weight: 700;
    &::before {
        transform: translateY(0%);
    }
}

.home-hero h2 {
    font-size: clamp(1.875rem, 1.3081rem + 1.3953vw, 2.25rem);
}

h3 {
    font-size: clamp(1.563rem, 1.327rem + 0.787vw, 1.999rem);
    &.category-tile__name {
        margin-top: 0;
        margin-bottom: 0;
        text-decoration: none;
        @media (min-width:786px) and (max-width:992px), (max-width: 500px) {
            margin-top:8px;
            font-size: 22px;
        }
    }
}

.cube-before {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    &::before {
        content: "";
        height: 1em;
        aspect-ratio: 1;
        background: var(--pink);
        flex: 0 0 auto; /* prevents stretching */
    }
}

a.category-tile__link {
    text-decoration: none;
    transition: 0.2s ease-in-out;
    h3 {
        transition: 0.2s ease-in-out;
    }
    &:hover {
        transform: scale(1.02);
        h3 {
            color: var(--pink);
        }
    }
}

/* Header */
.header-utility__usp {
    @media (max-width:900px) {
        max-width:200px;
    }
}

/* Footer */
.footer {
    a {
        color:  #fff;
        text-decoration: none;
        transition: 0.2s ease-in-out;
        &:hover {
            color: var(--hcl-charcoal-9);
        }
    }
    .oxy-rich-text p {
        margin: 0;
    }
    .footer__left {
        .oxy-svg-icon {
    
        }
    }
    .footer-nav-1 {
        ul {
            display: flex;
            @media (max-width: 767px) {
                align-items: center;
            }
        }
    }
}

.mini-cart-mobile {
    .bde-mini-cart-toggle__subtotal {
        display: none;
    }
    .bde-mini-cart-toggle {
        padding-right: 0;
    }
}

.my-account-m-icon {
    svg {
        font-size:30px!important;
        color: var(--hcl-brand-1);
    }
}

.my-account-icon {
    svg {
        font-size: 22px !important;
        color: var(--hcl-brand-1);
    }
}

.home-usps__repeater {
    .usp-tile {
        font-size: 14px;
        .usp-tile__icon {
            height: 60px;
            width: 60px;
            @media (max-width: 500px) {
                height: 40px;
                width: 40px;
            }
        }
        @media (min-width: 992px) {
            font-size: 16px;
        }
    }
    .bde-loop {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0px;
        @media (min-width: 768px) {
            grid-template-columns: repeat(6, minmax(0, 1fr));
        }
    }
}

.home-categories__categories {
    .bde-loop {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        @media (min-width:768px) {
            grid-template-columns: repeat(4, minmax(0, 1fr));    
        }
        .bde-loop-item {
            padding: 0;
        }
    }
}

.breakdance {
    a.button-atom--custom {
        justify-content: flex-start;
        border: none;
        border-radius: 0;
        background: var(--pink);
        padding-right: 64px;
        &::after {
            content: url(/wp-content/uploads/2026/03/right-arrow.svg);
            width: 15px;
            position: absolute;
            right: 20px;
            top: 11px;
            font-size: 20px;
            transition: 0.2s ease-in-out;
        }
        &:hover {
            &::after {
                transform: translateX(4px);
            }
        }
    }
}

.bde-posts-pagination.bde-posts-navigation-numbers-prev-next {
    flex-direction: row;
    .bde-posts-prev-next-link {
        a {
            height: 36px;
            width: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--hcl-charcoal-9);
            color: #fff;
            transition: 0.2s;
            font-size: 18px;
            font-weight:600;
            &:hover {
                background: var(--pink);
                color: #fff;
            }
        }
    }
}

.bde-posts-pagination {
    ul {
        li {
            a {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 36px;
                width: 36px;
                background: var(--hcl-charcoal-9);
                color: #fff;
                cursor: pointer;
                transition: 0.2s;
                font-size: 18px;
                font-weight: 600;
                &:hover {
                    background: var(--pink);
                    color: #fff;
                }
                &.is-active {
                    background: var(--pink);
                    color: #fff;
                    cursor: default;
                    &:hover {
                        background: var(--pink);
                        color: #fff;
                    }
                }
            }
            &.bde-posts-navigation-numbers--active {
                a.is-active {
                    color: #fff;
                }
            }
        }
    }
}

.breakdance-woocommerce {
    nav.woocommerce-pagination {
        ul.page-numbers {
            gap: 16px;
            li {
                width: 36px;
                height: 36px;
                span.current {
                    width: 100%;
                    height: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background: var(--pink);
                    color: #fff;
                    font-size: 18px;
                    font-weight: 600;
                }
                a {
                    width: 100%;
                    height: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background: var(--hcl-charcoal-9);
                    color: #fff;
                    transition: 0.2s;
                    font-size: 18px;
                    font-weight: 600;
                    &:hover {
                        background: var(--pink);
                        color: #fff;
                    }
                }
            }
        }
    }
}

/* WooCommerce */

.wp-block-woocommerce-cart :is(input, select, textarea, button, .wc-block-components-totals-item, .wc-block-components-panel),
.wp-block-woocommerce-checkout :is(input, select, textarea, button, .wc-block-components-totals-item, .wc-block-components-panel) {
  border-radius: 0 !important;
}

.bde-mini-cart-toggle__subtotal {
    .tax_label {
        display: none;
    }
}

.woocommerce {
    ul.products {
        li.product {
            background: var(--charcoal-10);
            padding: 20px;
            h2.woocommerce-loop-product__title {
                font-size: 16px;
                min-height: 38px;
            }
            .price {
                font-size: 16px;
                .woocommerce-Price-amount {
                    bdi {
                        font-size: 16px;
                    }
                }
            }
            a.add_to_cart_button {
                justify-content: flex-start;
                border: none;
                padding-left: 16px;
                &::after {
                    content: url(/wp-content/uploads/2026/03/right-arrow.svg);
                    width: 15px;
                    position: absolute;
                    right: 20px;
                    top: 10px;
                    font-size: 20px;
                    transition: 0.2s ease-in-out;
                }
                &:hover {
                    &::after {
                        transform: translateX(4px);
                    }
                }
            }
        }
    }
}

.wc-block-components-button:not(.is-link) {
    justify-content: flex-start;
    border: none;
    padding-left: 16px;
    background: var(--pink);
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
    .wc-block-components-button__text {
        font-size: 16px;
    }
    &::after {
        content: url(/wp-content/uploads/2026/03/right-arrow.svg);
        width: 15px;
        position: absolute;
        right: 20px;
        top: 10px;
        font-size: 20px;
        transition: 0.2s ease-in-out;
    }
    &.wc-block-components-checkout-place-order-button {
        padding-right: 80px;
        &::after {
            top: 16px;
        }
    }
    &:hover {
        background: #000;
        color: #fff;
        &::after {
            transform: translateX(4px);
        }
    }
}

.shop-inner {
    display: flex;
    flex-direction: column;
    gap: 2em;
    .shop-left {
        width: 100%;
        .shop-filters {
            max-height: 50px;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out;
            .toggle-filters {
                display: flex;
                @media (min-width:1024px){
                    display: none;
                }
            }
            .toggle-filters .oxy-svg-icon {
                transition: transform 0.3s ease-in-out;
                font-size: 20px;
            }
            &.filters-open {
                max-height: 1000px;
                .toggle-filters .oxy-svg-icon {
                    transform: rotate(180deg);
                }
            }
        }
    }
    .shop-right {
        flex: 1;
    }
    @media (min-width: 1024px) {
        flex-direction: row;
        .shop-left {
            width: 280px;
            .shop-filters {
                max-height: 1000px;
            }
        }
    }
}

/* Category Navigation */
.wc-cat-accordion {
    list-style: none;
    margin: 0;
    padding-left: 0;
    ul {
        list-style: none;
        margin: 0;
        padding-left: 0;
        line-height: 1.4;
    }
    li {
        padding-bottom: 6px;
    }
    a {
        text-decoration: none;
        position: relative;
        font-size: 18px;
        color: #fff;
        &::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px; /* adjust spacing */
            
            width: 100%;
            height: 4px;
            background: var(--green);
        
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        &:hover {
            color: #fff;
            &::after {
                transform: scaleX(1);
            }
        }
    }
    .current-cat > .cat-item-inner > a {
            transition: none;
            &::after {
                transform: scaleX(1);
                background: var(--pink);
            }
    }
    .cat-children {
        padding: 0 0 0 1.5em;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
        .cat-item:first-child {
            margin-top: 8px;
        }
    }
    .open > .cat-children {
        max-height: 1000px;
    }
}

.wc-cat-accordion.no-animation .cat-children {
    transition: none !important;
}

.cat-item-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cat-toggle {
    width: 18px;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
}

.cat-toggle::after {
    /*content: url(/wp-content/uploads/2026/03/right-arrow.svg);*/
    content: "";
    display: block;
    position: relative;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 9px solid var(--pink); /* triangle */
    cursor: pointer;
    transition: transform 0.2s ease;
}

.cat-toggle.no-animation::after {
    transition: none !important;
}

.open > .cat-item-inner .cat-toggle::after {
    transform: rotate(90deg);
}

.wc-block-comments-form input {
    border-radius: 0!important;
}

.bde-wooshoppage {
    @media (min-width:1024px) {
        align-items: flex-end!important;
    }
    gap: 1.2em!important;
}

.bde-woo-product-image {
    background: #fff;
}

.pal-fields {
    width: 100%;
    p:first-child {
        margin-top: 0;
        margin-bottom: 20px;
    }
    label {
        margin-bottom: 8px;
    }
    label:has(input[type=radio]) {
        display: flex;
    }
    input[type=text] {
        padding: 14px 16px;
        border: 1px solid rgb(209, 213, 219);
        font-size: 18px;
        color: #000;
    }
    bdi {
        font-size: 16px;
        font-weight: 400;
    }
}

.wapf-field-label {
    margin-bottom: 8px;
}

.wapf-field-input {
    input {
        padding: 14px 14px;
        border: 1px solid rgb(209, 213, 219);
        font-size: var(--bde-woo-typography__size-standard);
        color: #000;
        &::placeholder {
            color: #000;
        }
    }
}

.wapf-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.woocommerce-page.woocommerce-account .breakdance-woocommerce .col2-set.addresses {
    flex-direction: column;
    margin: 0;
    max-width: 100%;
    h2 {
        margin: 0;
        font-size: clamp(1.875rem, 1.3081rem + 1.3953vw, 2.25rem);
    }
}

.breakdance-woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a {
    border-radius: 0;
}

.breakdance-menu--effect .menu-item.breakdance-menu-item::before {
    transition: none;
}

.breakdance-menu--effect .menu-item.breakdance-menu-item.effect-active::before {
    transition: var(--menu-duration) transform ease, var(--menu-duration) opacity ease, var(--menu-duration) background-color ease;
}

/* Search */
input.dgwt-wcas-search-input {
    border-radius: 0!important;
    &::placeholder {
        font-style: normal!important;
    }
}

.dgwt-wcas-search-wrapp {
    @media (min-width: 1024px) {
        max-width: 450px!important;
        margin: 0 0 0 auto!important;
    }
}

.icon-small img {
    height: 24px;
}