.bb-summary-totals {
    margin-top: 2rem;
    border-top-width: 1px;
    border-bottom-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
    padding-top: 2rem;
    padding-bottom: 2rem;
}


.bb-summary-table {
    width: 100%;
    border-collapse: collapse;
}


.bb-summary-table tbody tr {
    height: 3rem;
}


/* ==========================================================
   BeautyBop Checkout Sections
   ========================================================== */


.bb-checkout-section {
    margin-bottom: 2rem;
}


.bb-checkout-section:last-child {
    margin-bottom: 0;
}


/* ==========================================
   Shipping Methods
========================================== */


.bb-shipping-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px}


.bb-shipping-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    background: #fff;
    transition: all .25s ease;
    cursor: pointer;
    margin-bottom: 20px;
}


.bb-shipping-card:hover {
    border-color: #ff5ca8;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}


.bb-shipping-radio {
    flex-shrink: 0;
}


.bb-shipping-content {
    flex: 1;
}


.bb-shipping-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.bb-shipping-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #172554;
}


.bb-shipping-price {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
}


.bb-shipping-description {
    margin-top: 6px;

    font-size: 14px;
    color: #64748B;
}


#block-discount-heading span {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: black;
}


button.action-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    height: 52px;
    padding: 0 32px;
    background: #000;
    border: 1px solid #7c3aed;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all .25s ease;
    margin-top: 20px;
    
}


#discount-form .actions-toolbar {
    float:left;
}


/***************************************
Empty Basket
***************************************/


.cart-empty {
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
}


@media screen and (max-width: 767px) {
    .cart-empty {
        font-size: 12px;
        font-family: 'Poppins', sans-serif;
    }
}


/* ==========================================================
   BeautyBop Forms
   ========================================================== */


.bb-form-row {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;

}


.bb-form-row > .field {
    width: 100%;
}


.bb-form-row > .field > label span {
    padding-bottom: 8px;
}


.bb-form-row--name,
.bb-form-row--country,
.bb-form-row--city {
    grid-template-columns: repeat(2, 1fr);
    
}


.bb-form-row--company,
.bb-form-row--street,
.bb-form-row--phone {
    grid-template-columns: 1fr;
}


.bb-form .control  input,
.bb-form .control select {
    height: 56px;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    padding: 0 20px;
    font-size: 16px;
    margin-top: 8px;
}


.bb-card__title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}


.bb-card__subtitle {
    margin-top: 8px;
    font-size: 16px;
    color: #6B7280;
    line-height: 1.5;
}


.checkout-index-index,
.checkout-index-index input,
.checkout-index-index select,
.checkout-index-index textarea,
.checkout-index-index button {
    font-family: 'Poppins', sans-serif;
}


/* Mobile */


@media (max-width: 768px) {

    .bb-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bb-card {
        padding: 24px 20px;
    }

    .bb-form input,
    .bb-form select {
        width: 100%;
    }

    .bb-form-row {
        margin-bottom: 17px;
    }

}


.bb-announcement {
    position: relative;
    height: 20px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    overflow: hidden;
}


.bb-announcement .bb-message {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity .6s ease;
}


.bb-announcement .bb-message.active {
    opacity: 1;
}


/* homepage categories section */


@media (max-width: 1024px) {

    .bb-category-card {
        min-height: 360px;
        padding: 28px;
    }

    .bb-category-content {
        width: 100%;
    }

    .bb-category-image {
        width: 100%;
        transform: translateY(-15px);
    }

}


@media (max-width: 767px) {

    .bb-category-card {

        min-height: auto;

        padding: 24px;

        display: flex;
        flex-direction: column;

        text-align: center;
        align-items: center;
    }

    .bb-category-content {

        width: 100% !important;

        order: 2;
    }

    .bb-category-image {

        position: relative;

        width: 100%;


        right: auto;
        bottom: auto;

        transform: none;

        margin-bottom: 24px;

        order: 1;
    }

}


.catalog-category-view .product-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}


@media (min-width: 768px) {
  .catalog-category-view .product-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-category-view .action.tocompare {
    display: none;
}

 .catalog-category-view .product-item .action.tocart {
        height: 44px;
        font-size: 14px;
    }
}


@media (min-width: 1024px) {
  .catalog-category-view .product-items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* =====================================================
   Product Card
===================================================== */


.catalog-category-view .product-item {
    overflow: hidden;
    border-radius: 0.75rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}


.catalog-category-view .product-item-photo {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 16px;
    background: #fff;
}


.catalog-category-view .product-image-container {
    width: 100% !important;
    max-width: 100% !important;
}


.catalog-category-view .product-image-wrapper {
    padding-bottom: 100% !important;
}


.catalog-category-view .product-item-photo {
    background: #fafafa;
}


.catalog-category-view .product-image-photo {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
}


.catalog-category-view .product-item-info {
    position: relative;
}


.catalog-category-view .actions-secondary {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
}


/* styling the heart */


.catalog-category-view .action.towishlist {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 9999px;

    background: rgba(255,255,255,.95);

    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}


.catalog-category-view .action.towishlist:hover {
    background: #ff5ca8;
    color: #fff;
}


/* ==========================================
   Add to Bag Button
========================================== */


.catalog-category-view .product-item .action.tocart {
    width: 100%;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #000;
    color: #fff !important;

    border: none;
    border-radius: 10px;

    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;

    transition: all .25s ease;
}


.catalog-category-view .product-item .action.tocart span {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-weight: 600;
    text-transform: none;
}


.catalog-category-view .product-item .action.tocart:hover {
    background: #ff5ca8;
}


.catalog-category-view .product-item .action.tocart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    height: 48px;

    border: 0;
    border-radius: 10px;

    background: #000;
    color: #fff;

    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;

    transition: all .25s ease;
}


.catalog-category-view .product-item .tocart-form {
    width: 100%;
}


.catalog-category-view .product-item .action.tocart span {
    display: block;
    width: 100%;

    text-align: center;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #fff;

    text-transform: none;
}


.catalog-category-view .product-item .action.tocart:hover {
    background: #ff5ca8;
}


.catalog-category-view .product-item-inner,
.catalog-category-view .product-item-actions,
.catalog-category-view .actions-primary {
    width: 100%;
}


/* ==========================================
   Add Fixed Height to Cards
========================================== */


.catalog-category-view .product-item-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}


.catalog-category-view .product-item-name {
    min-height: 52px;
}


.catalog-category-view .product-item-name a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}


.catalog-category-view .product-item-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}


.catalog-category-view .product-item-inner {
    margin-top: auto;
}


/* ==========================================
   Stock in/out badges
========================================== */


.stock.available {
    color: #16a34a;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin: 12px 0;
}


.stock.unavailable {
    color: #dc2626;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin: 12px 0;
}


.stock.available::before,
.stock.unavailable::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
}


.stock.available::before {
    background: #16a34a;
}


.stock.unavailable::before {
    background: #dc2626;
}


/* slick track responsiveness */


.slick-list {
    overflow: hidden;
}


.slider-container {
    width: 100%;
    overflow: hidden;
}


.slick-slide img {
    width: 100%;
    height: auto;
    display: block;
}


@media (max-width: 768px) {
    .slick-track {
        display: flex !important;
    }
}


.bb-home-carousel {
    overflow: hidden;
}


.bb-home-carousel .swiper-slide {
    height: auto;
}


.bb-home-carousel .group {
    height: 100%;
}


.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
.swiper-button-next:after {
    color: #000;
}


.btn-primary {
    border-radius: 0.125rem;
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
}


.bb-success .action.primary,
.bb-success .action.primary.continue,
.checkout-success .action.primary,
.checkout-registration .action.primary,
.checkout-index-index .action.primary {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    height: 52px;
    padding: 0 32px;
    background: #7c3aed;
    border: 1px solid #7c3aed;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all .25s ease;
    margin-top:20px
}


.bb-success .action.primary:hover,
.checkout-success .action.primary:hover,
.checkout-registration .action.primary:hover {

    background: #6d28d9;
    border-color: #6d28d9;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(124,58,237,.25);
}


.bb-success .action.primary:active {

    transform: translateY(0);

}


.bb-checkout-header {

    text-align: center;

}


.bb-mobile-toolbar{

    display:none;

}


.bb-filter-header {

    display: none;
}


/*************************************************

Accordion Style 

*************************************************/


.filter-options-content {

    display: none;
    padding: 0;

}


.filter-options-title.active + .filter-options-content {

    display: block;

    padding: 16px 0;

}


.filter-options-item.active .filter-options-content {

    display: block;

}


.block-content.filter-content {
    padding: 25px;
}


.filter-options-title {

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    border-bottom: 1px solid #e5e7eb;

}


.filter-options-title::after {
     content: "";

    width: 8px;
    height: 8px;

    border-right: 2px solid #555;
    border-bottom: 2px solid #555;

    transform: rotate(45deg);

    transition: .25s ease;

}


.filter-options-title.active::after {

    transform: rotate(-135deg);

}


.filter-options-item.active .filter-options-title::after {
    content: '−';
}


@media (max-width:768px){

.logo {
    z-index: 1;
}

 .sidebar.sidebar-main {

    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 360px;  
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(-100%);
    transition: transform .3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    border-radius: 0 20px 20px 0;

}

.sidebar.sidebar-main.is-open {

    transform: translateX(0);

}

.block.filter > .block-title,
.block.filter > .block-subtitle {

    display: none;

}

.bb-filter-header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 24px;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
    background:#fff;
    z-index:10;

}

.filter-options-title{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    border-bottom:1px solid #f1f1f1;
    cursor:pointer;
    font-weight:600;

}


.filter-options-content .items {

    display:flex;
    flex-direction:column;
    gap:14px;
    padding:16px 0;

}

input[type="checkbox"]{
    width:22px;
    height:22px;
    border-radius:6px;
}

.page-with-filter .columns {

    display: block;
}

.block.filter {

    position: static;
    width: 100%;
    height: auto;
    flex: 1;
    overflow: visible;
    background: transparent;

}

.bb-filter-overlay {

    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9998;
    overflow: auto;

}

.bb-filter-overlay.active{

    opacity:1;
    visibility:visible;

}

.bb-no-scroll{

    overflow:hidden;
}

.bb-mobile-toolbar{

    display:flex;
    gap:12px;
    margin:20px 0;

}



.bb-mobile-toolbar button{

    flex:1;
    height:48px;
    border:1px solid #ddd;
    border-radius:12px;
    background:#fff;
    font-weight:600;

}



}


@media (min-width: 768px) {
    .block.filter #narrow-by-list > .filter-options-title {
        position: relative;
        cursor: pointer;
        padding: 14px 36px 14px 0;
        margin: 0;
        word-break: normal;
        -webkit-user-select: none;
           -moz-user-select: none;
                user-select: none;
    }

    .block.filter #narrow-by-list > .filter-options-title::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 8px;
        width: 7px;
        height: 7px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: translateY(-70%) rotate(45deg);
        transition: transform 0.2s ease;
    }

    .block.filter #narrow-by-list > .filter-options-title.active::after {
        transform: translateY(-30%) rotate(225deg);
    }

    .block.filter #narrow-by-list > .filter-options-content {
        display: none;
        padding: 8px 0 18px;
        margin: 0;
    }

    .block.filter #narrow-by-list > .filter-options-content.active {
        display: block;
    }
}


.pages {
    display: flex;
    justify-content: center;
    margin: 60px 0 20px;
}


.pages .items {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}


.pages .item > * {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    width:100%;
    height: 42px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    text-decoration: none;
    color: #222;
    font-weight: 600;
    transition: all .25s ease;
    background: #fff;
    padding: 20px;
}


.pages .item a:hover {
    background: #ec4899;
    color: #fff;
    border-color: #111;
}


.pages .items .item > a > span {
    color: #000;
}


.pages .items .item > a > span:hover {
    color: #fff;
}


.pages .item.current strong {
    background: #111;
    color: #fff;
    border-color: #111;
}


.pages .action.previous,
.pages .action.next {
    width: auto;
    padding: 0 18px;
    font-weight: 600;
}


.pages .action.previous:hover,
.pages .action.next:hover {
    background: #111;
    color: #fff;
}


@media (max-width:768px){

    .pages{
        margin:40px 0;
    }

    .pages .items{
        gap:6px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .pages .item > *{
        min-width:38px;
        height:38px;
        width: 100%;
        font-size:14px;
    }

    .pages .action.previous,
    .pages .action.next{
        padding:0 14px;
    }

}


.header.content {
    display: none;
}


.bb-checkout-header{  
    border-bottom:1px solid #eee;
    background:#fff;

}


.bb-checkout-header__inner {

    max-width: 1280px;   /* or match your site's container */
    margin: 0 auto;
    padding: 24px 32px;

    display: grid;
    grid-template-columns: 413px 1fr auto;
    align-items: center;
    gap: 48px;

}


.bb-checkout-title {
    display: flex;
    align-items: flex-start;
    gap: 20px;

}


.bb-lock-icon {
    font-size: 2rem;
    line-height: 1;
    margin-top: 8px;

}


.bb-checkout-copy {

    display: flex;
    flex-direction: column;
    align-items: flex-start;

}


.bb-checkout-copy h2 {

    margin: 0;
    line-height: 1.1;

}


.bb-checkout-copy p {

    margin-top: 12px;
    color: #666;

}


.bb-lock-icon img {

    width: 40px;
    height: 40px;

}


.checkout-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: auto;
}


@media (max-width: 1200px) {

    .bb-checkout-header__inner {

        padding: 24px;

    }

}


@media (max-width:1024px){

.bb-checkout-header{

    grid-template-columns:1fr;
    justify-items:center;
    text-align:center;
    gap:24px;

}

.bb-checkout-title{

    justify-content:center;

}

}


@media (max-width:768px){

 .bb-checkout-header__inner {
    padding: 20px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;

}

.bb-checkout-logo img{
    width:180px;

}

.bb-checkout-title{
    flex-direction:column;
    align-items:center;
    gap:12px;

}

.bb-checkout-copy{

    align-items:center;

}

.bb-checkout-copy h2{

    font-size:2rem;
    line-height:1.2;

}

.bb-checkout-copy p{

    margin-top:8px;
    font-size:1rem;
    line-height:1.5;

}

.bb-lock-icon img{

    width:32px;
    height:32px;

}

}


/* Header Section */


.bb-test {
    color: red !important;
    font-size: 50px !important;
}


.bb-header-main {
    display: flex;
    height: 4rem;
    align-items: center;
    justify-content: space-between;
    border-bottom-width: 1px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding-left: 1rem;
    padding-right: 1rem;
}


.bb-header-nav {
    display: flex;
    flex-grow: 1;
    justify-content: center;
}


.action.skip,
.header.links {
    display: none !important;
}


.page-header nav ul {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}


@media (max-width:768px){

    .bb-mobile-header {
        position: relative;
        transition: box-shadow .3s ease;
    }

    .bb-mobile-header.is-fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,.08);
    }

    .mobile-cart-link {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-cart-count {
        position: absolute;
        top: -2px;
        right: -5px;

        min-width: 18px;
        height: 18px;
        padding: 0 5px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 9999px;
        background: #ec4899;
        color: #fff;

        font-size: 11px;
        font-weight: 700;
        line-height: 18px;
    }

}


.bb-header-account {
    margin-left: 1rem;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}


.bb-account-logout {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;
}


.bb-account-logout a {
    display: block;
    font-weight: 600;
    color: #111;
}


.bb-account-logout a:hover {
    color: #ec4899;
}


.account-menu {
    position: relative;
}


.account-menu > div:last-child {
    pointer-events: none;
}


.account-menu:hover > div:last-child {
    pointer-events: auto;
}


.account-wrapper {
    position: relative;
}


.account-dropdown {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    min-width: 190px;

    position: absolute;
    top: 100%;
    right: 0;

    background: #fff;
    z-index: 100;
}


.account-dropdown .bb-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 8px;
    text-align: center;
    white-space: nowrap;

}


/* SHOW ON HOVER */


.account-wrapper:hover .account-dropdown {
    display: flex;
}


.account-dropdown .bb-btn:last-child {
    margin-bottom: 0;
}


.product-info-stock-sku .product.attribute.sku {
    display: none;
}


.product.info.detailed,
.product.info.detailed .info {
    position: relative !important;
    opacity: 1 !important;
    margin: 0 !important;
}


.product-info-price .bb-product-rrp {
    font-size: 17px;
    padding-top: 20px;
}


.product-info-price .price-box .price-final_price span.price {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 20px;
}


/**************************************************
At a glance section
**************************************************/


.bb-product-glance {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}


.bb-product-glance__title {
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
}


.bb-product-glance__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
}


.bb-product-glance__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}


.bb-product-glance__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f7f5f8;
    font-size: 16px;
}


.bb-product-glance__item strong {
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}


.bb-product-glance__item span:not(.bb-product-glance__icon) {
    display: block;
    font-size: 12px;
    line-height: 1.45;
    color: #6b7280;
}


@media (max-width: 767px) {
    .bb-product-glance {
        margin-top: 22px;
        padding-top: 20px;
    }

    .bb-product-glance__items {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}


/******************************************
Stock message styling
******************************************/


.bb-product-stock-message {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
}


.bb-product-stock-message__scarce {
    color: #b42318;
}


.bb-product-stock-message__low {
    color: #b54708;
}


.bb-product-stock-message__available {
    color: #18794e;
}


/* =====================================
Product info details and gallery layout
=======================================*/


@media (min-width: 1024px) {
    .catalog-product-view .column.main {
        display: grid;
        grid-template-columns: 57% 40%;
        grid-template-rows: auto auto;
        -moz-column-gap: 3%;
             column-gap: 3%;
        align-items: start;
    }

    .catalog-product-view .product.media {
        grid-column: 1;
        grid-row: 1;
        float: none !important;
        width: 100% !important;
        margin-bottom: 0;
    }

    .catalog-product-view .product-info-main {
        grid-column: 2;
        grid-row: 1 / span 2;
        float: none !important;
        width: 100% !important;
    }

    .catalog-product-view .product.info.detailed {
        grid-column: 1;
        grid-row: 2;
        width: 100% !important;
        clear: none !important;
        margin-top: 12px !important;
        margin-bottom: 30px;
    }
}


.catalog-product-view .product.info.detailed {
    border-top: 1px solid #e5e7eb;
}


.catalog-product-view .product.data.items {
    border: 0;
}


.catalog-product-view .product.data.items > .item.title {
    margin: 0 24px 0 0;
    border: 0;
    background: transparent;
}


.catalog-product-view .product.data.items > .item.title > .switch {
    display: inline-block;
    padding: 14px 0 10px;
    border: 0;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease;
    height: 100% !important;
}


.catalog-product-view .product.data.items > .item.title > .switch:hover {
    color: #111827;
}


.catalog-product-view .product.data.items > .item.title.active > .switch {
    color: #111827;
    font-weight: 600;
    border-bottom: 2px solid #111827;
}


.catalog-product-view .product.data.items > .item.content {
    padding: 20px 0 0;
    border: 0;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}


.bb-header-cart {
    flex-shrink: 0;
}


/* replace basket icon */


.action.showcart:before {
    display: none !important;
}


.bb-header-cart .minicart-wrapper {
    margin-left: 0;
}


.minicart-wrapper .action.showcart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: auto;
}


.minicart-wrapper .action.showcart::after {
    content: '';
    width: 24px;
    height: 24px;
    display: block;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23333' viewBox='0 0 24 24'%3E%3Cpath stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M5 8h14l-1 12H6L5 8zm4-3a3 3 0 016 0v3H9V5z'/%3E%3C/svg%3E");

    background-size: contain;
    background-repeat: no-repeat;
}


.minicart-wrapper .action.showcart .counter.qty {
    background-color: #b81679;
    border-radius: 10px;
    width: 22px;
}


.minicart-wrapper .action.showcart.counter.qty {
    background: #d946a3;
    color: white;
    border-radius: 999px;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
    line-height: 18px;
}


#top-cart-btn-checkout {
    background-color: black;
    border-radius: 5px;
    border: none;
    color: white;
}


.product-item-details .product-item-name a {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}


/***********************************************
 Mobile checkout cart 
***********************************************/


@media (max-width: 768px) {
    .cart-container {
        display: flex;
        flex-direction: column;
    }

    .cart.items {
        order: 1;
    }

    .cart-summary {
        order: 2;
    }

    .minicart-wrapper .action.showcart::after {
    content: '';
    width: 24px;
    height: 24px;
    display: block;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23333' viewBox='0 0 24 24'%3E%3Cpath stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M5 8h14l-1 12H6L5 8zm4-3a3 3 0 016 0v3H9V5z'/%3E%3C/svg%3E");

    background-size: contain;
    background-repeat: no-repeat;
    }
}


.block-compare,
.block-wishlist {
    display: none;
}


.bb-login-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}


.bb-login-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}


.bb-login-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 25px;
}


.bb-field {
    margin-bottom: 20px;
}


.bb-field label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}


.bb-input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}


.bb-input:focus {
    border-color: #000;
    outline: none;
}


.bb-login-btn {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 10px;
    border: none;
}


.bb-login-btn:hover {
    background: #333;
}


.bb-login-help {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}


.bb-login-help a {
    display: block;
    margin-top: 5px;
    color: #000;
    text-decoration: underline;
}


.block.block-new-customer {
    display: none;
}


/********************************
Register Form
********************************/


.bb-benefits {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}


.bb-benefits li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
}


.bb-auth-wrapper {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}


.bb-auth-card {
    max-width: 800px;
    width: 100%;
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}


.bb-auth-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}


.bb-auth-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}


.bb-primary-btn {
    width: 100%;
    padding: 14px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
}


.bb-primary-btn:hover {
    background: #222;
}


/* Stack label above input */


.bb-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}


/* Label styling */


.bb-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #333;
}


/* Input styling */


.bb-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}


/* Focus state (premium feel) */


.bb-input:focus {
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
    outline: none;
}


.form-create-account {
    max-width: 100%;
}


.bb-auth-card .field .control {
    width: 100%;
}


.bb-auth-card input {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}


.bb-auth-card input:focus {
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
    outline: none;
}


.fieldset {
    border: none;
    margin: 0;
    padding: 0;
}


.legend {
    display: none;
}


.bb-auth-card .field {
    margin-bottom: 16px;
}


.newsletter {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 20px;
}


.form-create-account .actions-toolbar {
    margin: 0;
    padding-top: 20px;
}


footer {
 font-family: 'Poppins', sans-serif;   
}


/*************************
Checkout Footer 
*************************/


.bb-checkout-footer{

    margin-top:80px;
    border-top:1px solid #ececec;
    background:#fff;

}


.bb-checkout-footer__trust{

    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:40px;

    padding:40px 20px;

}


.bb-trust-item{

    display:flex;
    gap:16px;
    align-items:flex-start;

}


.bb-icon{

    font-size:26px;

}


.bb-trust-item strong{

    display:block;
    margin-bottom:6px;

}


.bb-trust-item small{

    color:#777;

}


.bb-checkout-footer__bottom{

    border-top:1px solid #eee;

    padding:24px 20px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    max-width:1200px;
    margin:auto;

}


.bb-payment-methods{

    display:flex;
    align-items:center;
    gap:14px;

}


.bb-payment-methods img{

    height:24px;

}


.bb-checkout-links{

    display:flex;
    gap:20px;

}


.bb-checkout-copy{

    color:#777;

}


@media(max-width:768px){

    .bb-checkout-footer__trust{

        grid-template-columns:1fr;
        gap:24px;

    }

    .bb-checkout-footer__bottom{

        flex-direction:column;
        gap:20px;
        text-align:center;

    }

}


.bb-success {
    max-width:900px;
    margin:80px auto;
    padding:0 20px;
}


.bb-success__header {
    text-align:center;
    margin-bottom:50px;
}


.bb-success__icon {
    width:90px;
    height:90px;
    margin:0 auto 30px;
    border-radius:50%;
    background:#16a34a;
    color:#fff;
    font-size:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}


.bb-success h1 {
    font-size:54px;
    margin-bottom:20px;
    font-weight:600;
}


.bb-success__intro {
    font-size:20px;
    color:#666;
    max-width:700px;
    margin:0 auto;
}


.bb-success__card {
    background:#fff;
    border-radius:18px;
    padding:35px;
    margin-bottom:30px;
    box-shadow:
        0 10px 30px rgba(0,0,0,.06);
}


.bb-success__card h2 {
    margin-bottom:20px;
}


.bb-success__order {
    font-size:26px;
    font-weight:700;
    color:#6C2BD9;
    text-decoration:none;
}


.bb-success__steps {
    margin:0;
    padding:0;
    list-style:none;
}


.bb-success__steps li {
    position:relative;
    padding-left:34px;
    margin-bottom:18px;
}


.bb-success__steps li:before {
    content:"✓";
    position:absolute;
    left:0;
    color:#16a34a;
    font-weight:bold;
}


.bb-success__actions {
    text-align:center;
    margin-top:40px;
}


.bb-success__actions .action {
    min-width:240px;
}


/* Mobile */


@media (max-width:768px){

    .bb-success  {
        margin:40px auto;
    }

    .bb-success h1 {
        font-size:36px;
    }

    .bb-success__intro {
        font-size:17px;
    }

    .bb-success__card {
        padding:25px;
    }

}


/*********************************
Registration Form
*********************************/


.bb-registration-card {

    max-width:700px;
    margin:60px auto 0;
    background:#fff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    text-align:center;

}


.bb-registration-card h2 {
    margin-bottom:20px;
    font-size:30px;
}


.bb-registration-intro {
    color:#666;
    margin-bottom:25px;
    line-height:1.7;
}


.bb-registration-benefits{

    list-style:none;

    padding:0;

    margin:0 0 35px;

}


.bb-registration-benefits li{

    position:relative;

    padding-left:28px;

    margin-bottom:15px;

}


.bb-registration-benefits li::before {
    content:"✓";
    position:absolute;
    left:0;
    color:#22c55e;
    font-weight:700;
}


.bb-registration-actions{
    margin-top:30px;
}


.bb-home-hero-wrapper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}


.bb-home-hero {
    width: 100%;
    background: #f8f5f0;
    background-image:url('../images/home/hero-banner_desktop_slide-1.jpg'); 
    background-size: cover;
    background-position: center;
    min-height: 550px;
    display: flex;
    align-items: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}


.bb-home-hero-slide-2 {
    background: #f8f5f0;
    background: url('../images/home/hero-banner_desktop_slide-2.jpg');
    background-size: cover;
    background-position: center;
    min-height: 550px;
    display: flex;
    align-items: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}


.bb-home-hero__content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}


.bb-home-hero h1 {
    line-height: 1;
    margin-bottom: 24px;
}


.bb-home-hero__buttons {
    position: relative;
    display: flex;
    gap: 16px;
    margin-top: 32px;
}


.bb-home-hero__buttons a:hover {
    color: white;
}


/* response style */


@media screen and (min-width: 1920px ) {

    .bb-home-hero-wrapper .bb-home-hero {
        background-position-y: -271px;
    }
    
    .bb-home-hero-slide-2 {
        background-position-y: -276px;

    }
}


/* Hero banner */


@media (max-width: 1023px) {

    .bb-home-hero {
        background-position: 100% 100%;
        background-image: url('../images/home/mobile/hero-banner_mobile_slide-1.jpg');
        background-repeat: no-repeat;
        justify-content: start;
        flex-direction: column;
    }

    .bb-home-hero-slide-2 {
        background-position: 100% 100%;
        background-image: url('../images/home/mobile/hero-banner_mobile_slide-2.jpg');
        background-repeat: no-repeat;
        justify-content: start;
        flex-direction: column;
    }

    .bb-home-hero__eyebrow {
        margin-bottom: 46px;
        font-size: 12px;
        font-weight: 700;
    } 

    .bb-home-hero__content {
        padding-top: 57px;
    }

    .bb-home-hero__content p {
        display: none;
    }

    .bb-home-hero h1,
    .bb-home-hero-slide-2 h1 {
        font-size: 33px;
        line-height: 1.3;
        font-weight: bold;
        margin-top:20px;
    }

    .bb-home-hero p {
        font-size: 18px;
        line-height: 1.6;
    }

    .bb-home-hero__buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .bb-home-hero__right {
        display: none !important;
    }

}


.navigation .level0.parent {
    position: relative;
}


/* Submenu (your actual class) */


.navigation .level0.parent > ul.level0.level-top {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-45%);
    width: 100%;
    min-width: 1200px;

    display: grid !important;
    grid-template-columns: repeat(8, 1fr);

    gap: 2px;
    padding: 20px 100px;
    background: white;
    color: black;
    
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 999;
}


/* SHOW ON HOVER */


.navigation .level0.parent:hover > ul.level0.level-top {
    opacity: 1;
    visibility: visible;
}


/* Mega Menu */


.navigation .submenu {
    border-radius: 0.5rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding: 2rem;
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}


.navigation .submenu li {
    margin-bottom: 0.5rem;
}


.navigation .submenu a {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}


.navigation .submenu a:hover {
    --tw-text-opacity: 1;
    color: rgb(236 72 153 / var(--tw-text-opacity, 1));
}


.navigation .level-top {
    font-weight: 500;
    letter-spacing: 0.025em;
}


/* =========================================
   BRANDS MEGA MENU
========================================= */


.bb-header-nav .navigation {
    position: relative;
}


.bb-header-nav .navigation > ul > .nav-4 {
    position: static;
}


/* Main dropdown */


.bb-header-nav .navigation > ul > .nav-4 > ul.level0 {
    display: none;

    position: absolute;
    top: 100%;
    left: 50%;

    width: min(860px, calc(100vw - 48px));
    padding: 24px 28px;
   
    transform: translateX(-50%);

    background: #fff;
    border: 1px solid #eee;
    border-radius: 0 0 8px 8px;

    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10);

    z-index: 1000;
}


/* Open */


.bb-header-nav .navigation > ul > .nav-4:hover > ul.level0 {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(170px, 1fr));

    -moz-column-gap: 28px;

         column-gap: 28px;
    row-gap: 4px;
}


/* Individual brand */


.bb-header-nav .navigation > ul > .nav-4 > ul.level0 > li {
    width: 100%;
    margin: 0;
    padding: 0;
}


/* Link */


.bb-header-nav .navigation > ul > .nav-4 > ul.level0 > li > a {
    display: block;

    padding: 9px 8px;

    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;

    color: #1e1240;

    border-radius: 4px;

    white-space: normal;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.bb-header-nav .navigation > ul > .nav-4 > ul.level0 > li > a:hover {
    background: #f8f5fa;
    color: #c84f95;
}


/* =========================================
   BRANDS LINK / ARROW
========================================= */


.bb-header-nav .navigation > ul > .nav-4 > a {
    position: relative;
}


.bb-header-nav .navigation > ul > .nav-4 > a::after {
    content: "";

    display: inline-block;

    width: 6px;
    height: 6px;

    margin-left: 7px;
    margin-bottom: 3px;

    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;

    transform: rotate(45deg);

    transition: transform 0.2s ease;
}


.bb-header-nav .navigation > ul > .nav-4:hover > a::after {
    transform: rotate(225deg);
}


/* =========================================
Footer For Brands
============================================ */


.bb-header-nav
.navigation
> ul
> .nav-4
> ul.level0
> .bb-view-all-brands {
    grid-column: 1 / -1;

    margin-top: 10px;
    padding-top: 14px;

    border-top: 1px solid #eee;
}


.bb-header-nav
.navigation
> ul
> .nav-4
> ul.level0
> .bb-view-all-brands
> a {
    display: inline-flex;

    padding: 8px 0;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.5px;
    text-transform: uppercase;

    color: #1e1240;
}


.bb-header-nav
.navigation
> ul
> .nav-4
> ul.level0
> .bb-view-all-brands
> a::after {
    content: "→";
    margin-left: 8px;
}


.bb-header-nav
.navigation
> ul
> .nav-4
> ul.level0
> .bb-view-all-brands
> a:hover {
    background: transparent;
    color: #c84f95;
}


/* =========================================
   TABLET / MOBILE
========================================= */


@media (max-width: 1023px) {

    /*
     * Don't use desktop mega-menu positioning
     * inside the mobile navigation.
     */
    .bb-header-nav .navigation > ul > .nav-4 {
        position: relative;
    }

    .bb-header-nav .navigation > ul > .nav-4 > ul.level0 {
        position: static;

        width: 100%;
        padding: 10px 0 10px 16px;

        transform: none;

        border: 0;
        border-radius: 0;

        box-shadow: none;
    }

    .bb-header-nav .navigation > ul > .nav-4:hover > ul.level0 {
        display: block;
    }
}


.catalog-category-view .category-description h2 {
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #252525;
}


.catalog-category-view .category-description p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.65;
    color: #444;
}


.catalog-category-view .category-description {
    max-width: 1100px;
    margin-bottom: 40px;
}


/*****************************************
Hero image banner
*****************************************/


.bb-brand-hero {
    background-color: #f3f0eb;
    background-image:  url('../images/home/hugo-boss-landing-page-hero-bg.svg');
    background-repeat: no-repeat;
    background-position: 0px -252px;
    background-size: cover;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}


@media (max-width: 1400px) {
   .bb-brand-hero {
        background-position: center;
    }
}


.bb-brand-hero__inner {
    width: min(100% - 40px, 1280px);
    min-height: 580px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 60px;
    padding: 0px 20px;
}


.bb-brand-hero__eyebrow,
.bb-brand-section-heading__eyebrow {
    display: block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: white;
}


.bb-brand-hero__title {
    margin: 0 0 24px;
    font-size: clamp(44px, 5vw, 58px);
    line-height: 1.04;
    font-weight: 400;
    letter-spacing: -0.045em;
    font-family: "Poppins", sans-serif;
    color: white;
    text-transform: uppercase;
}


.bb-brand-hero__sub_title {
    margin: 0 0 24px;
    font-size: 23px;
    line-height: 1.04;
    font-weight: 200;
    letter-spacing: -0.045em;
    font-family: "Poppins", sans-serif;
    color: white;
    text-transform: inherit;

}


.bb-brand-hero__description {
    max-width: 610px;
    margin: 0 0 32px;
    font-size: 15px;
    line-height: 1.4;
    color: #a19b9b;
    font-family: "Poppins", sans-serif;
    font-weight: normal;
}


.bb-brand-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


.bb-brand-hero__button {
    min-height: 50px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #191919;
    border: 1px solid #191919;
    color: #fff;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}


.bb-brand-hero__button:hover {
    background: transparent;
    color: #191919;
}


.bb-brand-hero__button--outline {
    background: transparent;
    color: #191919;
}


.bb-brand-hero__button--outline:hover {
    background: #191919;
    color: #fff;
}


.bb-brand-hero__media img {
    display: block;
    width: 100%;
    max-height: 500px;
    -o-object-fit: contain;
       object-fit: contain;
}


.bb-brand-collections {
    padding: 80px 0;
}


.bb-brand-container {
    width: min(100% - 40px, 1400px);
    margin: 0 auto;
}


.bb-brand-section-heading {
    max-width: 720px;
    margin-bottom: 40px;
}


.bb-brand-section-heading__title {
    margin: 0 0 16px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 400;
}


.bb-brand-section-heading__description {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}


.bb-brand-collections__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}


.bb-brand-collection-card {
    min-height: 425px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #f5f5f5;
    color: white;
    text-decoration: none;
}


.bb-brand-collection-card:nth-child(1) {
    background-image: url('../images/brands/hugo-boss/boss_bottled.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}


.bb-brand-collection-card:nth-child(2) {
    background-image: url('../images/brands/hugo-boss/hugo_scent.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}


.bb-brand-collection-card:nth-child(3) {
    background-image: url('../images/brands/hugo-boss/hugo_man.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}


.bb-brand-collection-card h3 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 400;

}


.catalog-category-view .brand-product-filters {
    max-width: 1440px;
    margin: 40px auto 20px;
    padding: 0 24px;
}


@media (max-width: 767px) {
    .catalog-category-view .brand-product-filters {
        margin-top: 24px;
        padding: 0 16px;
    }
}


@media (max-width: 768px) {
    .bb-brand-hero__inner {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 32px;
        padding: 45px 0;
    }

    .bb-brand-hero__title {
        font-size: 44px;
    }

    .bb-brand-hero__media {
        order: -1;
    }

    .bb-brand-collections {
        padding: 55px 0;
    }

    .bb-brand-collections__grid {
        grid-template-columns: 1fr;
    }
}


.sections.nav-sections {
    display: none;
}


/**********************************
Buying Guide CSS
**********************************/


.brand-buying-guide {
    padding: 72px 24px;
    background: #f7f6f3;
}


.brand-buying-guide__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}


.brand-buying-guide__header {
    max-width: 780px;
    margin-bottom: 48px;
}


.brand-buying-guide__eyebrow {
    display: block;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}


.brand-buying-guide__title {
    margin: 0 0 20px;
    font-size: clamp(2.8rem, 4vw, 4.6rem);
    line-height: 1.1;
}


.brand-buying-guide__intro {
    margin: 0;
    font-size: 1.7rem;
    line-height: 1.7;
}


.brand-buying-guide__section + .brand-buying-guide__section {
    margin-top: 56px;
}


.brand-buying-guide__section h3 {
    margin: 0 0 24px;
    font-size: 2.6rem;
}


.brand-buying-guide__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


.brand-buying-guide__card {
    padding: 28px;
    background: #fff;
    border: 1px solid #e7e4de;
}


.brand-buying-guide__card h4 {
    margin: 0 0 14px;
    font-size: 2rem;
}


.brand-buying-guide__card p {
    line-height: 1.65;
}


.brand-buying-guide__detail {
    margin-bottom: 0;
}


.brand-buying-guide__table-wrapper {
    overflow-x: auto;
    background: #fff;
}


.brand-buying-guide__table {
    width: 100%;
    border-collapse: collapse;
}


.brand-buying-guide__table th,
.brand-buying-guide__table td {
    padding: 18px 20px;
    border-bottom: 1px solid #e5e5e5;
    text-align: left;
}


.brand-buying-guide__table th {
    font-weight: 700;
    background: #efede8;
}


.brand-buying-guide__concentrations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}


.brand-buying-guide__concentrations article {
    padding: 28px;
    background: #fff;
    border: 1px solid #e7e4de;
}


.brand-buying-guide__concentrations h4 {
    margin-top: 0;
    font-size: 2rem;
}


.brand-buying-guide__why-shop ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}


.brand-buying-guide__why-shop li {
    padding: 20px;
    background: #fff;
    border: 1px solid #e7e4de;
    text-align: center;
    font-weight: 600;
}


@media (max-width: 767px) {
    .brand-buying-guide {
        padding: 48px 20px;
    }

    .brand-buying-guide__cards,
    .brand-buying-guide__concentrations,
    .brand-buying-guide__why-shop ul {
        grid-template-columns: 1fr;
    }

    .brand-buying-guide__section + .brand-buying-guide__section {
        margin-top: 40px;
    }

    .brand-buying-guide__title {
        font-size: 3rem;
    }

    .brand-buying-guide__section h3 {
        font-size: 2.2rem;
    }
}


/***************************************
FAQ Accordion CSS
***************************************/


.brand-faq {
    padding: 72px 24px;
    background: #fff;
}


.brand-faq__container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}


.brand-faq__header {
    max-width: 720px;
    margin-bottom: 40px;
}


.brand-faq__eyebrow {
    display: block;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}


.brand-faq__title {
    margin: 0 0 18px;
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    line-height: 1.15;
}


.brand-faq__intro {
    margin: 0;
    font-size: 1.7rem;
    line-height: 1.7;
}


.brand-faq__item {
    border-top: 1px solid #ddd;
}


.brand-faq__item:last-child {
    border-bottom: 1px solid #ddd;
}


.brand-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: 600;
    list-style: none;
}


.brand-faq__question::-webkit-details-marker {
    display: none;
}


.brand-faq__question::marker {
    display: none;
    content: '';
}


.brand-faq__icon {
    flex: 0 0 auto;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.25s ease;
}


.brand-faq__item[open] .brand-faq__icon {
    transform: rotate(45deg);
}


.brand-faq__answer {
    max-width: 780px;
    padding: 0 48px 24px 0;
}


.brand-faq__answer p {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.75;
}


@media (max-width: 767px) {
    .brand-faq {
        padding: 48px 20px;
    }

    .brand-faq__question {
        padding: 20px 0;
        font-size: 1.65rem;
    }

    .brand-faq__answer {
        padding-right: 24px;
    }
}


/********* Change Font for Blog Section *******/


.bb-journal-list,
.bb-article,
.action .submit .primary span {
    font-family: 'Poppins', sans-serif;

    * {
        font-family: inherit;
    }
}


.bb-journal-list {
    padding: 30px 0 60px;
}


.bb-journal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}


.bb-journal-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
}


.bb-journal-card__image-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #f7f7f7;
}


.bb-journal-card__image {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.35s ease;
}


.bb-journal-card:hover .bb-journal-card__image {
    transform: scale(1.03);
}


.bb-journal-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}


.bb-journal-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #777;
}


.bb-journal-card__category a {
    color: inherit;
    text-decoration: none;
}


.bb-journal-card__title {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 600;
}


.bb-article h1 {
    font-weight: 700;
}


.bb-article h2 {
    font-weight: 600;
}


.bb-article h3 {
    font-weight: 600;
}


.bb-journal-card__title a {
    color: #111;
    text-decoration: none;
}


.bb-journal-card__excerpt {
    margin-bottom: 22px;
    color: #555;
    line-height: 1.7;
}


.bb-journal-card__excerpt p:last-child {
    margin-bottom: 0;
}


.bb-journal-card__link {
    margin-top: auto;
    font-weight: 600;
    color: #111;
    text-decoration: none;
}


.bb-journal-card__link span {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.2s ease;
}


.bb-journal-card__link:hover span {
    transform: translateX(4px);
}


.bb-journal-pagination {
    margin-top: 40px;
}


.bb-journal-empty {
    padding: 40px 0;
    text-align: center;
}


@media only screen and (max-width: 1024px) {
    .bb-journal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media only screen and (max-width: 767px) {
    .bb-journal-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .bb-journal-card__content {
        padding: 20px;
    }

    .bb-journal-card__title {
        font-size: 21px;
    }
}


/* BLOG LIST WRAPPER */


.bb-journal-list {
    margin-top: 64px;
}


/* FEATURED ARTICLE */


.bb-journal-featured {
    margin-bottom: 90px;
}


.bb-journal-featured .bb-journal-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}


.bb-journal-featured .bb-journal-card__image-link {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}


.bb-journal-featured .bb-journal-card__image {
    display: block;
    width: 100%;
    height: 360px;
    -o-object-fit: cover;
       object-fit: cover;
}


.bb-journal-featured .bb-journal-card__content {
    padding: 10px 20px 10px 0;
}


/* Featured label */


.bb-journal-card__featured-label {
    display: none;
}


.bb-journal-featured .bb-journal-card__featured-label {
    display: block;
    margin-bottom: 22px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d946ef;
}


/* Featured title */


.bb-journal-featured .bb-journal-card__title {
    max-width: 580px;
    margin: 0 0 18px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: #111827;
}


.bb-journal-featured .bb-journal-card__title a {
    color: inherit;
    text-decoration: none;
}


/* Featured excerpt */


.bb-journal-featured .bb-journal-card__excerpt {
    max-width: 520px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.65;
    color: #6b7280;
}


/* Featured meta */


.bb-journal-featured .bb-journal-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #6b7280;
}


.bb-journal-featured .bb-journal-card__category a {
    color: #111827;
    text-decoration: none;
}


/* Featured CTA */


.bb-journal-featured .bb-journal-card__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: #000;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 3px;
}


/* LATEST ARTICLES */


.bb-journal-latest {
    margin-top: 0;
}


.bb-journal-latest__title {
    margin: 0 0 36px;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
}


/* Latest article grid */


.bb-journal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}


/* Tablet */


@media (max-width: 1024px) {

    .bb-journal-featured .bb-journal-card {
        gap: 32px;
    }

    .bb-journal-featured .bb-journal-card__image {
        height: 320px;
    }

    .bb-journal-featured .bb-journal-card__title {
        font-size: 30px;
    }

    .bb-journal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* Mobile */


@media (max-width: 767px) {

    .bb-journal-list {
        margin-top: 40px;
    }

    .bb-journal-featured {
        margin-bottom: 60px;
    }

    .bb-journal-featured .bb-journal-card {
        display: block;
    }

    .bb-journal-featured .bb-journal-card__image {
        height: 260px;
    }

    .bb-journal-featured .bb-journal-card__content {
        padding: 28px 0 0;
    }

    .bb-journal-featured .bb-journal-card__title {
        font-size: 28px;
    }

    .bb-journal-latest__title {
        margin-bottom: 26px;
        font-size: 28px;
    }

    .bb-journal-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}


.wordpress-post-view .page-title-wrapper{
    text-align: center;
}


.bb-article {
    max-width: 980px;
    margin: 0 auto;
    padding-bottom: 70px;
}


.bb-article__header {
    margin-bottom: 26px;
}


.bb-article__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 18px;
    font-size: 13px;
    line-height: 1.5;
    color: #6f6f6f;
}


.bb-article__category {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


.bb-article__category a {
    color: inherit;
    text-decoration: none;
}


.bb-article__category a:hover {
    text-decoration: underline;
}


.bb-article__date {
    position: relative;
}


.bb-article__date::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    margin-right: 14px;
    vertical-align: middle;
    border-radius: 50%;
    background: currentColor;
}


.bb-article__hero {
    margin: 0 0 42px;
    overflow: hidden;
    border-radius: 8px;
    background: #f6f6f6;
}


.bb-article__hero-image {
    display: block;
    width: 100%;
    height: auto;
}


.bb-article__content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.9;
    color: #333;
    font-weight: 400;
}


.bb-article__content > *:first-child {
    margin-top: 0;
}


.bb-article__content > *:last-child {
    margin-bottom: 0;
}


.bb-article__content p {
    margin: 0 0 24px;
}


.bb-article__content h2,
.bb-article__content h3,
.bb-article__content h4 {
    color: #202020;
    line-height: 1.3;
}


.bb-article__content h2 {
    margin: 48px 0 20px;
    font-size: 32px;
}


.bb-article__content h3 {
    margin: 38px 0 18px;
    font-size: 25px;
}


.bb-article__content h4 {
    margin: 30px 0 16px;
    font-size: 20px;
}


.bb-article__content ul,
.bb-article__content ol {
    margin: 0 0 26px;
    padding-left: 28px;
}


.bb-article__content li {
    margin-bottom: 10px;
}


.bb-article__content a {
    color: #b51f73;
    text-decoration: underline;
    text-underline-offset: 3px;
}


.bb-article__content img {
    max-width: 100%;
    height: auto;
    margin: 18px 0 28px;
    border-radius: 6px;
}


.bb-article__content blockquote {
    margin: 36px 0;
    padding: 8px 0 8px 28px;
    border-left: 3px solid #b51f73;
    font-size: 20px;
    line-height: 1.65;
    color: #444;
}


.bb-article__footer,
.bb-article__back,
.bb-article__comments {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}


.bb-article__footer {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid #e5e5e5;
}


.bb-article__tags {
    font-size: 14px;
    color: #666;
}


.bb-article__tags-label {
    margin-right: 6px;
    font-weight: 600;
    color: #222;
}


.bb-article__tags a {
    color: inherit;
}


.bb-article__back {
    margin-top: 28px;
}


.bb-article__back a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
}


.bb-article__back a:hover {
    text-decoration: underline;
}


.bb-article__comments {
    margin-top: 55px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
}


@media only screen and (max-width: 767px) {
    .bb-article {
        padding-bottom: 50px;
    }

    .bb-article__hero {
        margin-bottom: 30px;
        border-radius: 4px;
    }

    .bb-article__content {
        font-size: 16px;
        line-height: 1.75;
    }

    .bb-article__content h2 {
        margin-top: 38px;
        font-size: 27px;
    }

    .bb-article__content h3 {
        font-size: 22px;
    }

    .bb-article__date::before {
        display: none;
    }
}


.bb-comments__heading {
    margin-bottom: 28px;
}


.bb-comments__eyebrow {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a62572;
}


.bb-comments__title {
    margin: 0;
    font-size: 28px;
    line-height: 1.3;
    color: #222;
}


.bb-comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
}


.bb-comment-list--children {
    margin: 22px 0 0 42px;
}


.bb-comment {
    margin-bottom: 22px;
}


.bb-comment__card {
    padding: 24px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    background: #fff;
}


.bb-comment__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}


.bb-comment__avatar {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    overflow: hidden;
    border-radius: 50%;
    background: #f2f2f2;
}


.bb-comment__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}


.bb-comment__meta {
    min-width: 0;
}


.bb-comment__author {
    margin-bottom: 3px;
    font-weight: 600;
    color: #222;
}


.bb-comment__author a {
    color: inherit;
    text-decoration: none;
}


.bb-comment__date {
    font-size: 13px;
    color: #777;
    text-decoration: none;
}


.bb-comment__content {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}


.bb-comment__reply {
    margin-top: 16px;
}


.bb-comment__reply-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
}


.bb-comment__reply-link:hover {
    color: #a62572;
}


.bb-comment-form {
    margin-top: 45px;
}


.bb-comment-form__fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}


.bb-comment-form__legend {
    margin: 0 0 8px;
    padding: 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: #222;
}


.bb-comment-form__intro {
    margin: 0 0 28px;
    color: #666;
    line-height: 1.65;
}


.bb-comment-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}


.bb-comment-form__field {
    margin-bottom: 22px;
}


.bb-comment-form__field .label {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #222;
}


.bb-comment-form__optional {
    font-size: 12px;
    font-weight: 400;
    color: #888;
}


.bb-comment-form__field .input-text,
.bb-comment-form__field textarea {
    width: 100%;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    background: #fff;
    box-shadow: none;
}


.bb-comment-form__field .input-text {
    height: 48px;
    padding: 0 14px;
}


.bb-comment-form__field textarea {
    min-height: 170px;
    padding: 14px;
    resize: vertical;
}


.bb-comment-form__field .input-text:focus,
.bb-comment-form__field textarea:focus {
    border-color: #a62572;
}


.bb-comment-form__actions {
    margin-top: 4px;
    text-align: left;
}


.bb-comment-form__actions .primary {
    float: none;
}


.bb-comment-form__actions .action.primary {
     min-width: 180px;
    padding: 14px 28px;

    border: 1px solid #24123f;
    border-radius: 4px;

    background: #24123f;
    color: #fff;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;

    box-shadow: none;
    transition:background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}


.bb-comment-form__actions .action.primary:hover,
.bb-comment-form__actions .action.primary:focus {
    border-color: #b51f73;
    background: #b51f73;
    color: #fff;
    transform: translateY(-1px);
}


.bb-comment-form__actions .action.primary:active {
    transform: translateY(0);
}


.bb-comment-form__actions .action.primary span {
    color: inherit;
}


.bb-comment-form__notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    background: #f7f7f7;
    color: #444;
}


.bb-comment-form__login {
    display: inline-block;
}


@media only screen and (max-width: 767px) {
    .bb-comment-list--children {
        margin-left: 18px;
    }

    .bb-comment__card {
        padding: 20px;
    }

    .bb-comment-form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bb-comments__title,
    .bb-comment-form__legend {
        font-size: 24px;
    }
}


.bb-smell-good-container p {
    padding-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
}


@media screen and (max-width: 1000px) {
    .bb-smell-good-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}


.bb-makeup-products-container {
    margin-left: calc(50% - 50vw);
    --tw-bg-opacity: 1;
    background-color: rgb(246 247 248 / var(--tw-bg-opacity, 1));
}


.bb-makeup-container {
    margin-left: auto;
    margin-right: auto;
    display: grid;
    height: 100%;
    min-height: 660px;
    width: 100%;
    max-width: 1280px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}


.bb-makeup-eyes {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
    padding-left: 70px;
    padding-right: 70px;
    padding-top: 16px;
}


.bb-makeup-eyes h3 {
    max-width: 650px;
    margin: 0 0 40px;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 600;
   
}


.bb-makeup-eyes .subtitle {
    font-family: 'Poppins', sans-serif;
    max-width: 700px;
    margin-bottom: 6px;
    font-size: 28px;
    line-height: 1.45;
}


.bb-makeup-eyes p {
    max-width: 760px;
    font-size: 20px;
    line-height: 1.6;
}


.bb-makeup-eyes .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    padding: 14px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
}


.bb-makeup-image {
    background-image: url(../images/home/makeup-products-banner.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 660px;
}


@media (max-width: 1024px) {
    .bb-makeup-container {
        min-height: 560px;
    }

    .bb-makeup-eyes {
        padding: 50px;
    }

    .bb-makeup-eyes h3 {
        margin-bottom: 28px;
        font-size: 48px;
    }

    .bb-makeup-eyes .subtitle {
        font-size: 22px;
    }

    .bb-makeup-eyes p {
        font-size: 17px;
    }

    .bb-makeup-image {
        min-height: 560px;
    }
}


@media (max-width: 767px) {
    .bb-makeup-container {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .bb-makeup-eyes {
        width: 100%;
        padding: 40px 24px;
    }

    .bb-makeup-eyes h3 {
        max-width: 100%;
        margin-bottom: 24px;
        font-size: 38px;
        line-height: 1.1;
    }

    .bb-makeup-eyes .subtitle {
        max-width: 100%;
        margin-bottom: 12px;
        font-size: 20px;
        line-height: 1.45;
    }

    .bb-makeup-eyes p {
        max-width: 100%;
        margin-bottom: 22px;

        font-size: 16px;
        line-height: 1.65;
    }

    .bb-makeup-eyes .btn-primary {
        padding: 13px 24px;
        font-size: 14px;
    }

    .bb-makeup-image {
        width: 100%;
        min-height: 360px;

        background-position: center;
        background-size: cover;
    }
}


@media (max-width: 480px) {
    .bb-makeup-eyes {
        padding: 32px 20px;
    }

    .bb-makeup-eyes h3 {
        font-size: 34px;
    }

    .bb-makeup-image {
        min-height: 300px;
    }
}


/* =====================================================
   Natural Look
===================================================== */


.bb-natural-look {
    width: 100%;
    padding: 70px 24px;
    background: #fff;
}


.bb-natural-look__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}


/* Header */


.bb-natural-look__header {
    max-width: 950px;
    margin: 0 auto 42px;
    text-align: center;
}


.bb-natural-look__header h2 {
    margin: 0 0 20px;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 600;

    color: #151515;
}


.bb-natural-look__header p {
    margin: 0;

    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;

    color: #303543;
}


/* Grid */


.bb-natural-look__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px;
}


/* Card */


.bb-natural-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    height: 100%;
}


.bb-natural-card h3 {
    margin: 0 0 22px;

    font-size: 28px;
    line-height: 1.25;
    font-weight: 600;

    color: #111;
}


/* Image */


.bb-natural-card__image {
    display: block;

    width: 100%;
    aspect-ratio: 16 / 10;

    margin-bottom: 22px;

    overflow: hidden;

    background: #f5f5f5;
}


.bb-natural-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: cover;

       object-fit: cover;

    transition: transform 0.35s ease;
}


.bb-natural-card:hover .bb-natural-card__image img {
    transform: scale(1.025);
}


/* Content */


.bb-natural-card__content {
    flex: 1;

    margin-bottom: 28px;
}


.bb-natural-card__content p {
    margin: 0;

    font-size: 16px;
    line-height: 1.7;

    color: #202020;
}


.bb-natural-card__content a {
    color: #202020;

    text-decoration: underline;
    text-underline-offset: 3px;
}


.bb-natural-card__content a:hover {
    color: #ec3c91;
}


/* CTA */


.bb-natural-card__button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 58px;

    padding: 14px 22px;

    background: #21113f;
    border: 1px solid #21113f;

    color: #fff;

    font-size: 15px;
    font-weight: 500;

    text-align: center;
    text-decoration: none;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.bb-natural-card__button span {
    margin-left: 6px;

    transition: transform 0.2s ease;
}


.bb-natural-card__button:hover {
    background: #ec3c91;
    border-color: #ec3c91;

    color: #fff;
}


.bb-natural-card__button:hover span {
    transform: translateX(4px);
}


/* =====================================================
   Tablet
===================================================== */


@media (max-width: 1024px) {

    .bb-natural-look {
        padding: 60px 32px;
    }

    .bb-natural-look__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 30px;
    }

    .bb-natural-look__header h2 {
        font-size: 34px;
    }

    .bb-natural-card h3 {
        font-size: 25px;
    }
}


/* =====================================================
   Mobile
===================================================== */


@media (max-width: 767px) {

    .bb-natural-look {
        padding: 48px 20px;
    }

    .bb-natural-look__header {
        margin-bottom: 36px;
        text-align: left;
    }

    .bb-natural-look__header h2 {
        margin-bottom: 14px;

        font-size: 30px;
        line-height: 1.2;
    }

    .bb-natural-look__header p {
        font-size: 15px;
        line-height: 1.65;
    }

    .bb-natural-look__header br {
        display: none;
    }

    .bb-natural-look__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .bb-natural-card h3 {
        margin-bottom: 18px;

        font-size: 25px;
    }

    .bb-natural-card__image {
        margin-bottom: 20px;
        aspect-ratio: 16 / 10;
    }

    .bb-natural-card__content {
        margin-bottom: 22px;
    }

    .bb-natural-card__content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .bb-natural-card__button {
        min-height: 52px;

        font-size: 14px;
    }
}


/* =====================================================
   Small Mobile
===================================================== */


@media (max-width: 480px) {

    .bb-natural-look {
        padding: 40px 18px;
    }

    .bb-natural-look__header h2 {
        font-size: 28px;
    }

    .bb-natural-card h3 {
        font-size: 23px;
    }
}


/* =====================================================
   Everything Beautiful
===================================================== */


.bb-beautiful-section {
    width: 100%;
    padding: 60px 24px;
    background: #fff;
}


.bb-beautiful-section__inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;

    width: 100%;
    max-width: 1280px;
    min-height: 460px;

    margin: 0 auto;

    overflow: hidden;

    background: #fbf6f2;
}


/* Content */


.bb-beautiful-section__content {
    padding: 60px 40px 60px 60px;
}


.bb-beautiful-section__content h2 {
    max-width: 480px;
    margin: 0 0 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;

    color: #303543;
}


.bb-beautiful-section__content p {
    max-width: 520px;
    margin: 0 0 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.75;

    color: #202020;
}


/* CTA */


.bb-beautiful-section__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding-bottom: 4px;

    border-bottom: 1px solid #21113f;

    color: #21113f;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}


.bb-beautiful-section__link span {
    transition: transform 0.2s ease;
}


.bb-beautiful-section__link:hover {
    color: #ec3c91;
    border-color: #ec3c91;
}


.bb-beautiful-section__link:hover span {
    transform: translateX(4px);
}


/* Image */


.bb-beautiful-section__image {
    display: flex;
    align-items: flex-end;
    justify-content: center;

    align-self: stretch;

    min-height: 460px;

    overflow: hidden;
}


.bb-beautiful-section__image img {
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: contain;

       object-fit: contain;
    -o-object-position: center bottom;
       object-position: center bottom;
}


/* =====================================================
   Tablet
===================================================== */


@media (max-width: 1024px) {

    .bb-beautiful-section {
        padding: 50px 32px;
    }

    .bb-beautiful-section__inner {
        grid-template-columns: 1fr 1fr;
        min-height: 400px;
    }

    .bb-beautiful-section__content {
        padding: 48px 30px 48px 40px;
    }

    .bb-beautiful-section__content h2 {
        font-size: 36px;
    }

    .bb-beautiful-section__image {
        min-height: 400px;
    }
}


/* =====================================================
   Mobile
===================================================== */


@media (max-width: 767px) {

    .bb-beautiful-section {
        padding: 40px 20px;
    }

    .bb-beautiful-section__inner {
        display: flex;
        flex-direction: column;

        min-height: 0;
    }

    .bb-beautiful-section__content {
        width: 100%;
        padding: 38px 24px 20px;
    }

    .bb-beautiful-section__content h2 {
        margin-bottom: 20px;

        font-size: 32px;
        line-height: 1.2;
    }

    .bb-beautiful-section__content p {
        margin-bottom: 24px;

        font-size: 15px;
        line-height: 1.7;
    }

    .bb-beautiful-section__image {
        width: 100%;
        min-height: 280px;
        padding: 0 15px;
    }

    .bb-beautiful-section__image img {
        width: 100%;
        height: auto;

        -o-object-fit: contain;

           object-fit: contain;
    }
}


/* Small mobile */


@media (max-width: 480px) {

    .bb-beautiful-section {
        padding: 32px 16px;
    }

    .bb-beautiful-section__content {
        padding: 32px 20px 16px;
    }

    .bb-beautiful-section__content h2 {
        font-size: 28px;
    }

    .bb-beautiful-section__image {
        min-height: 240px;
    }
}


/* =====================================================
   Homepage Blog
===================================================== */


.bb-home-blog {
    width: 100%;
    padding: 70px 24px;
    background: #fff;
}


.bb-home-blog__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}


/* Heading */


.bb-home-blog__header {
    margin-bottom: 36px;
    text-align: center;
}


.bb-home-blog__header h2 {
    margin: 0;

    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;

    text-transform: uppercase;

    color: #151515;
}


/* Grid */


.bb-home-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
}


/* Card */


.bb-home-blog-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    height: 100%;

    border: 1px solid #ececec;
    background: #fff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.bb-home-blog-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}


/* Image */


.bb-home-blog-card__image {
    display: block;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #f6f6f6;
}


.bb-home-blog-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: cover;

       object-fit: cover;

    transition: transform 0.35s ease;
}


.bb-home-blog-card:hover .bb-home-blog-card__image img {
    transform: scale(1.025);
}


/* Content */


.bb-home-blog-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 22px;
}


.bb-home-blog-card__content h3 {
    margin: 0 0 10px;

    font-size: 20px;
    line-height: 1.35;
    font-weight: 600;
}


.bb-home-blog-card__content h3 a {
    color: #111;
    text-decoration: none;
}


.bb-home-blog-card__content h3 a:hover {
    color: #ec3c91;
}


.bb-home-blog-card__content p {
    margin: 0 0 24px;

    font-size: 15px;
    line-height: 1.65;

    color: #333;
}


.bb-home-blog-card__excerpt {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.65;
}


/* Read link */


.bb-home-blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: auto;

    color: #21113f;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;
}


.bb-home-blog-card__link span {
    transition: transform 0.2s ease;
}


.bb-home-blog-card__link:hover {
    color: #ec3c91;
}


.bb-home-blog-card__link:hover span {
    transform: translateX(4px);
}


/* View all */


.bb-home-blog__footer {
    margin-top: 32px;
    text-align: center;
}


.bb-home-blog__view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding-bottom: 4px;

    border-bottom: 1px solid #21113f;

    color: #21113f;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}


.bb-home-blog__view-all:hover {
    color: #ec3c91;
    border-color: #ec3c91;
}


/* =====================================================
   Tablet
===================================================== */


@media (max-width: 1024px) {

    .bb-home-blog {
        padding: 60px 32px;
    }

    .bb-home-blog__grid {
        gap: 28px;
    }

    .bb-home-blog__header h2 {
        font-size: 32px;
    }

    .bb-home-blog-card__content {
        padding: 20px;
    }

    .bb-home-blog-card__content h3 {
        font-size: 18px;
    }
}


/* =====================================================
   Mobile
===================================================== */


@media (max-width: 767px) {

    .bb-home-blog {
        padding: 48px 20px;
    }

    .bb-home-blog__header {
        margin-bottom: 28px;
        text-align: left;
    }

    .bb-home-blog__header h2 {
        font-size: 28px;
    }

    .bb-home-blog__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .bb-home-blog-card__image {
        aspect-ratio: 16 / 9;
    }

    .bb-home-blog-card__content {
        padding: 20px;
    }

    .bb-home-blog-card__content h3 {
        font-size: 20px;
    }

    .bb-home-blog__footer {
        margin-top: 28px;
        text-align: left;
    }
}


.bb-checkout-assurance {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.bb-checkout-assurance__delivery,
.bb-checkout-assurance__payments,
.bb-checkout-assurance__row {
    background: #fff;
    border: 1px solid #ececf0;
    border-radius: 8px;
}


.bb-checkout-assurance__delivery {
    padding: 14px;
    background: #fff9dc;
}


.bb-checkout-assurance__delivery-row {
    display: flex;
    align-items: center;
    gap: 10px;
}


.bb-checkout-assurance__icon {
    font-size: 18px;
    flex-shrink: 0;
}


.bb-checkout-assurance__delivery-text {
    font-size: 12px;
    line-height: 1.4;
    color: #2b2b2b;
}


.bb-checkout-assurance__progress {
    width: 100%;
    height: 6px;
    margin-top: 12px;
    background: #ebe7d4;
    border-radius: 999px;
    overflow: hidden;
}


.bb-checkout-assurance__progress span {
    display: block;
    height: 100%;
    background: #231044;
    border-radius: inherit;
}


.bb-checkout-assurance__progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 10px;
    color: #777;
}


.bb-checkout-assurance__payments {
    padding: 14px;
}


.bb-checkout-assurance__payments h4 {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 600;
    color: #222;
}


.bb-checkout-assurance__payment-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}


.bb-checkout-assurance__payment-icons span {
    width: 70px;
    height: 40px;
}


.bb-payment-logo {
    min-width: 42px;
    height: 24px;
    padding: 0 7px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    border: 1px solid #dedee5;
    border-radius: 4px;

    font-size: 10px;
    font-weight: 700;
    color: #1d1d1f;
}


.bb-payment-logo img {
    display: block;
    width: auto;
    height: 24px;
    max-width: 52px;
}


.bb-checkout-assurance__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
}


.bb-checkout-assurance__large-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}


.bb-checkout-assurance__row strong {
    display: block;
    margin-bottom: 2px;
    font-size: 11px;
    font-weight: 600;
    color: #222;
}


.bb-checkout-assurance__row span:not(.bb-checkout-assurance__large-icon) {
    display: block;
    font-size: 10px;
    line-height: 1.4;
    color: #747474;
}


@media (max-width: 767px) {
    .bb-checkout-assurance {
        margin-top: 14px;
    }

    .bb-checkout-assurance__delivery,
    .bb-checkout-assurance__payments,
    .bb-checkout-assurance__row {
        border-radius: 6px;
    }
}


/* Contact information */


.bb-card__body .fieldset {
    margin: 0;
}


.bb-card__body .field {
    margin: 0;
}


.bb-card__body .field .label {
    display: block;
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}


.bb-card__body .field .control {
    width: 100%;
    max-width: 640px;
}


.bb-card__body .field input[type="email"],
.bb-card__body .field input[type="text"] {
    width: 100%;
    height: 48px;
    padding: 0 14px;

    border: 1px solid #cbd5e1;
    border-radius: 6px;

    background: #fff;
    font-size: 15px;
    color: #111827;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.bb-card__body .field input:focus {
    outline: none;
    border-color: #241043;
    box-shadow: 0 0 0 3px rgba(36, 16, 67, .08);
}


/* Required asterisk */


.bb-card__body .field.required > .label::after,
.bb-card__body .field._required > .label::after {
    color: #dc2626;
}


/* Tooltip */


.bb-card__body .field-tooltip {
    margin-left: 8px;
    vertical-align: middle;
}


.bb-card__body .field-tooltip .field-tooltip-action {
    width: 20px;
    height: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #cbd5e1;
    border-radius: 50%;

    color: #64748b;
}


/* Account message underneath */


.bb-card__body .note,
.bb-card__body .field-note {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.5;
    color: #6b7280;
}


/* =========================================
   CHECKOUT - CONTACT EMAIL
========================================= */


.bb-card--contact .form-login {
    width: 100%;
    max-width: 640px;
    margin: 0;
}


.bb-card--contact #customer-email-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}


/* Magento normally puts label + control side-by-side.
   Force normal vertical field layout. */


.bb-card--contact #customer-email-fieldset > .field.required {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
}


/* Label above input */


.bb-card--contact #customer-email-fieldset > .field.required > .label {
    display: block !important;
    float: none !important;
    width: 100% !important;
    margin: 0 0 8px !important;
    padding: 0 !important;

    text-align: left !important;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    color: #111827;
}


/* Input container */


.bb-card--contact #customer-email-fieldset > .field.required > .control {
    display: block !important;
    position: relative;

    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}


/* Email input */


.bb-card--contact #customer-email-fieldset input[type="email"],
.bb-card--contact #customer-email-fieldset input[name="username"] {
    display: block;

    width: 100% !important;
    height: 48px;

    margin: 0;
    padding: 0 14px;

    box-sizing: border-box;

    border: 1px solid #d5d9e2;
    border-radius: 6px;

    background: #fff;

    font-size: 15px;
    line-height: 48px;
    color: #111827;

    box-shadow: none;
}


.bb-card--contact #customer-email-fieldset input[type="email"]:focus,
.bb-card--contact #customer-email-fieldset input[name="username"]:focus {
    outline: none;
    border-color: #241043;
    box-shadow: 0 0 0 3px rgba(36, 16, 67, 0.08);
}


/* Placeholder */


.bb-card--contact #customer-email-fieldset input::-moz-placeholder {
    color: #9ca3af;
}


.bb-card--contact #customer-email-fieldset input::placeholder {
    color: #9ca3af;
}


.bb-card--contact #customer-email-fieldset .field-tooltip {
    display: none !important;
}


.bb-card--contact .bb-contact-email-help {
    max-width: 640px;

    margin: 10px 0 0;
    padding: 0;

    font-size: 12px;
    line-height: 1.5;
    color: #6b7280;
}


.bb-card--contact #customer-email-fieldset .note {
    display: block;
    margin: 10px 0 0 !important;

    font-size: 12px;
    line-height: 1.5;
    color: #64748b;
}


.bb-customer-email {
    max-width: 640px;
    padding: 16px 18px;

    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
}


.bb-customer-email__label {
    display: block;
    margin-bottom: 5px;

    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
}


.bb-customer-email__value {
    display: block;
    margin-bottom: 8px;

    font-size: 15px;
    font-weight: 600;
    color: #111827;
}


.bb-customer-email__status {
    display: inline-block;

    font-size: 12px;
    font-weight: 600;
    color: #18794e;
}


/* Trust bar section */


.bb-trust-bar {
    background: #ffffff;
    border-top: 1px solid #ece7df;
    border-bottom: 1px solid #ece7df;
}


.bb-trust-bar__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 15px 48px 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}


.bb-trust-item {
    flex: 1;
}


.bb-trust-icon {
    width: 36px;
    flex-shrink: 0;
}


.bb-trust-icon img {
    display: block;
    width: 100%;
    height: auto;
}


.bb-trust-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.bb-trust-content h3 {
    margin: 0;
    line-height: 1.2;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}


.bb-trust-content p {
    margin: 3px 0 0;
    line-height: 1.4;
    color: #6b7280;
}


/*********************************************
Trust Bar
*********************************************/


.bb-trust-desktop {
    display: flex;
}


.bb-trust-mobile {
    display: none;
}


@media (max-width: 1280px) {
    .bb-trust-bar__container {
        padding: 15px 0px 30px;
    }
}


@media (max-width: 768px) {

    .bb-trust-desktop {
        display: none;
    }

    .bb-trust-mobile {
        display: block;
    }

}


.bb-blog-hero {
    margin-bottom: 32px;
    background: #f7f3ee;
    overflow: hidden;
}


.bb-blog-hero__inner {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 420px;
    align-items: stretch;
}


.bb-blog-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 56px;
}


.bb-blog-hero__eyebrow {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1.2;
    color: #374151;
}


.bb-blog-hero__title {
    margin: 0 0 24px;
    font-size: 58px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 10px;
    color: #21163d;
}


.bb-blog-hero__intro {
    max-width: 330px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
}


.bb-blog-hero__image {
    position: relative;
    min-height: 420px;
}


.bb-blog-hero__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}


/* Tablet */


@media (max-width: 1024px) {

    .bb-blog-hero__inner {
        grid-template-columns: 45% 55%;
        min-height: 360px;
    }

    .bb-blog-hero__copy {
        padding: 48px 36px;
    }

    .bb-blog-hero__eyebrow {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .bb-blog-hero__title {
        font-size: 46px;
        letter-spacing: 7px;
    }

    .bb-blog-hero__intro {
        font-size: 13px;
    }

    .bb-blog-hero__image {
        min-height: 360px;
    }
}


/* Mobile */


@media (max-width: 767px) {

    .bb-blog-hero {
        margin-bottom: 24px;
    }

    .bb-blog-hero__inner {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .bb-blog-hero__copy {
        padding: 36px 24px 32px;
        text-align: center;
        align-items: center;
    }

    .bb-blog-hero__eyebrow {
        margin-bottom: 8px;
        font-size: 17px;
        letter-spacing: 3px;
    }

    .bb-blog-hero__title {
        margin-bottom: 18px;
        font-size: 38px;
        line-height: 1.05;
        letter-spacing: 6px;
    }

    .bb-blog-hero__intro {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.65;
    }

    .bb-blog-hero__image {
        width: 100%;
        min-height: 280px;
    }

    .bb-blog-hero__image img {
        min-height: 280px;
    }
}


/* Small mobile */


@media (max-width: 480px) {

    .bb-blog-hero__copy {
        padding: 30px 18px 26px;
    }

    .bb-blog-hero__eyebrow {
        font-size: 15px;
        letter-spacing: 2.5px;
    }

    .bb-blog-hero__title {
        font-size: 32px;
        letter-spacing: 5px;
    }

    .bb-blog-hero__image {
        min-height: 230px;
    }

    .bb-blog-hero__image img {
        min-height: 230px;
    }
}


.bb-blog-search {
    max-width: 1180px;
    margin: 28px auto 42px;
    padding: 0 24px;
}


.bb-blog-search__field {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    background: #f5f5f5;
  
}


.bb-blog-search__input {
    width: 100%;
    height: 58px;
    padding: 0 64px 0 20px;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: #111827;
}


input#bb-blog-search-input {
    border-radius: 5px;
    height: 53px;
}


.bb-blog-search__input::-moz-placeholder {
    color: #6b7280;
}


.bb-blog-search__input::placeholder {
    color: #6b7280;
}


.bb-blog-search__button {
    position: absolute;
    right: 0;
    top: 0;
    width: 58px;
    height: 100%;
    border: 0;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #111827;
}


.bb-blog-search__button:hover {
    background: #ececec;
}


@media (max-width: 767px) {
    .bb-blog-search {
        margin: 20px auto 32px;
        padding: 0 16px;
    }

    .bb-blog-search__input {
        height: 52px;
    }

    .bb-blog-search__button {
        width: 52px;
        height: 52px;
        font-size: 23px;
    }
}


.bb-404 {
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 260px);
    padding: 40px 24px 70px;
    text-align: center;
    background: #fff;
    
}


.bb-404__inner {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}


.bb-404__code {
    margin-bottom: 24px;
    font-size: 150px;
    line-height: 0.85;
    font-weight: 700;
    letter-spacing: -8px;
    color: #f3eef8;
}


.bb-404__title {
    margin: 0 auto 20px;
    max-width: 900px;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #17132d;
}


.bb-404__intro {
    max-width: 620px;
    margin: 0 auto 34px;
    font-size: 17px;
    line-height: 1.7;
    color: #6b7280;
}


.bb-404__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}


.bb-404__primary,
.bb-404__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 15px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.2s ease;
}


.bb-404__primary {
    background: #17132d;
    color: #fff;
    border: 1px solid #17132d;
}


.bb-404__primary:hover {
    background: #2b2050;
    color: #fff;
}


.bb-404__secondary {
    background: #fff;
    color: #17132d;
    border: 1px solid #d1d5db;
}


.bb-404__secondary:hover {
    border-color: #17132d;
}


.bb-404__divider {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 48px 0 28px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #9ca3af;
}


.bb-404__divider::before,
.bb-404__divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}


.bb-404__links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}


.bb-404__links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 14px;
    background: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    color: #17132d;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}


.bb-404__links a:hover {
    border-color: #e4b5d2;
    background: #fff8fc;
}


.cms-no-route .columns {
    display: block;
}


.cms-no-route .column.main {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
}


.cms-no-route .page-main {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}


.cms-no-route .bb-404 {
    width: 100%;
}


@media (max-width: 767px) {

    .bb-404 {
        min-height: 520px;
        padding: 56px 20px;
    }

    .bb-404__code {
        font-size: 105px;
        letter-spacing: -5px;
    }

    .bb-404__title {
        font-size: 30px;
    }

    .bb-404__intro {
        font-size: 15px;
    }

    .bb-404__actions {
        flex-direction: column;
    }

    .bb-404__primary,
    .bb-404__secondary {
        width: 100%;
    }

    .bb-404__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 480px) {

    .bb-404__code {
        font-size: 84px;
    }

    .bb-404__title {
        font-size: 26px;
    }

    .bb-404__links {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   BEAUTYBOP NEWSLETTER POPUP
========================================= */


.um-popup-newsletter .modal-popup._show .modal-inner-wrap {
    top: 0% !important;
}


.um-popup-newsletter .modal-popup .modal-inner-wrap {
    margin-top: 0 !important;
}


.um-popup-newsletter .modal-inner-wrap {
    width: calc(100% - 40px) !important;
    max-width: 860px !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}


.um-popup-newsletter .modal-header {
    padding: 0;
}


.um-popup-newsletter .modal-title {
    display: none;
}


.um-popup-newsletter .modal-content {
    padding: 0;
}


.um-popup-newsletter .action-close {
    top: 14px;
    right: 14px;
    z-index: 20;

    width: 38px;
    height: 38px;
    padding: 0px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}


/* =========================================
   POPUP LAYOUT
========================================= */


.bb-newsletter-popup {
    display: grid;
    grid-template-columns: 46% 54%;
    min-height: 520px;
    background: #fff;
}


.bb-newsletter-popup__image {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}


.bb-newsletter-popup__image img {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 520px;

    -o-object-fit: cover;

       object-fit: cover;
    -o-object-position: right center;
       object-position: right center;
}


.bb-newsletter-popup__content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 54px 48px;
}


/* =========================================
   CONTENT
========================================= */


.bb-newsletter-popup__eyebrow {
    margin-bottom: 14px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: #c84f95;
}


.bb-newsletter-popup__title {
    margin: 0 0 18px;

    font-size: 38px;
    line-height: 1.05;
    font-weight: 700;

    color: #17132d;
}


.bb-newsletter-popup__title span {
    display: block;
}


.bb-newsletter-popup__intro {
    max-width: 430px;
    margin: 0 0 28px;

    font-size: 14px;
    line-height: 1.7;

    color: #6b7280;
}


/* =========================================
   FORM
========================================= */


.bb-newsletter-popup__form {
    width: 100%;
}


.bb-newsletter-popup__label {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 600;

    color: #374151;
}


.bb-newsletter-popup__input {
    width: 100%;
    height: 50px;

    padding: 0 15px;

    box-sizing: border-box;

    background: #fff;

    border: 1px solid #d1d5db;
    border-radius: 5px;

    font-size: 14px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.bb-newsletter-popup__input:focus {
    outline: none;

    border-color: #21163d;
    box-shadow: 0 0 0 3px rgba(33, 22, 61, 0.08);
}


.bb-newsletter-popup__terms {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    margin-top: 14px;

    font-size: 12px;
    line-height: 1.5;

    color: #6b7280;
}


.bb-newsletter-popup__captcha {
    margin-top: 18px;
}


.bb-newsletter-popup__actions {
    margin-top: 18px !important;
}


.bb-newsletter-popup__submit {
    width: 100%;
    height: 50px;

    border: 0 !important;
    border-radius: 5px !important;

    background: #21163d !important;
    color: #fff !important;

    font-size: 13px !important;
    font-weight: 700 !important;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.bb-newsletter-popup__submit:hover {
    background: #352451 !important;
    transform: translateY(-1px);
}


.bb-newsletter-popup__privacy {
    margin: 14px 0 0;

    text-align: center;

    font-size: 11px;
    line-height: 1.5;

    color: #9ca3af;
}


/* =========================================
   MESSAGES
========================================= */


.bb-newsletter-popup__content .messages {
    display: none;
    margin: 0 0 18px;
}


.bb-newsletter-popup__content .message {
    margin: 0;
    padding: 12px 14px;

    border-radius: 4px;

    font-size: 13px;
}


.bb-newsletter-popup__content .message-success {
    background: #ecfdf3;
    color: #166534;
}


.bb-newsletter-popup__content .message-error {
    background: #fef2f2;
    color: #991b1b;
}


/* =========================================
   TABLET / LARGE MOBILE
   401px - 767px
========================================= */


@media (max-width: 767px) {

    .um-popup-newsletter .modal-inner-wrap {
        width: calc(100% - 28px) !important;
        max-width: 500px !important;

        max-height: calc(100vh - 28px);

        margin: 14px auto !important;

        overflow-y: auto;

        border-radius: 10px;
    }

    .um-popup-newsletter .modal-content {
        padding: 0 !important;
    }

    .bb-newsletter-popup {
        display: block;
        min-height: auto;
    }

    /* Show image as banner */
    .bb-newsletter-popup__image {
        display: block;

        width: 100%;
        height: 160px;
        min-height: 160px;

        overflow: hidden;
    }

    .bb-newsletter-popup__image img {
        display: block;

        width: 100%;
        height: 160px;
        min-height: 160px;

        -o-object-fit: cover;

           object-fit: cover;

        /*
         * Product is positioned on right-hand side
         * of our generated artwork.
         */
        -o-object-position: right 58%;
           object-position: right 58%;
    }

    .bb-newsletter-popup__content {
        padding: 30px 24px 26px;
    }

    .bb-newsletter-popup__eyebrow {
        margin-bottom: 9px;

        font-size: 10px;
        letter-spacing: 2px;
    }

    .bb-newsletter-popup__title {
        margin-bottom: 12px;

        font-size: 27px;
        line-height: 1.08;
    }

    .bb-newsletter-popup__intro {
        margin-bottom: 20px;

        font-size: 13px;
        line-height: 1.55;
    }

    .bb-newsletter-popup__label {
        margin-bottom: 7px;
        font-size: 12px;
    }

    .bb-newsletter-popup__input {
        height: 46px;
        font-size: 14px;
    }

    .bb-newsletter-popup__captcha {
        width: 304px;
        height: 67px;

        margin-top: 15px;

        transform: scale(0.86);
        transform-origin: left top;
    }

    .bb-newsletter-popup__actions {
        margin-top: 14px !important;
    }

    .bb-newsletter-popup__submit {
        height: 46px;

        font-size: 12px !important;
    }

    .bb-newsletter-popup__privacy {
        margin-top: 9px;

        font-size: 10px;
    }

    .um-popup-newsletter .action-close {
        top: 10px;
        right: 10px;

        width: 34px;
        height: 34px;
    }
}


/* =========================================
   SMALL MOBILE
   400px AND BELOW
========================================= */


@media (max-width: 350px) {

    .um-popup-newsletter .modal-inner-wrap {
        width: calc(100% - 20px) !important;
        max-width: 360px !important;

        max-height: calc(100vh - 20px);

        margin: 10px auto !important;

        border-radius: 8px;
        overflow-y: auto;
    }

    .um-popup-newsletter .block.newsletter input
    {
        float: none !important;
    }

    /* Hide artwork on small phones */
    .bb-newsletter-popup__image {
        display: none;
    }

    .bb-newsletter-popup__content {
        padding: 34px 18px 24px;
    }

    .bb-newsletter-popup__eyebrow {
        margin-bottom: 8px;

        font-size: 9px;
        letter-spacing: 1.8px;
    }

    .bb-newsletter-popup__title {
        margin-bottom: 12px;

        font-size: 24px;
        line-height: 1.08;
    }

    .bb-newsletter-popup__title span {
        display: block;
    }

    .bb-newsletter-popup__intro {
        margin-bottom: 18px;

        font-size: 12px;
        line-height: 1.5;
    }

    .bb-newsletter-popup__label {
        margin-bottom: 6px;

        font-size: 11px;
    }

    .bb-newsletter-popup__input {
        height: 44px;

        padding: 0 12px;

        font-size: 13px;
    }

    .bb-newsletter-popup__captcha {
        width: 304px;
        height: 62px;

        margin-top: 14px;

        transform: scale(0.82);
        transform-origin: left top;
    }

    .bb-newsletter-popup__actions {
        margin-top: 12px !important;
    }

    .bb-newsletter-popup .field.newsletter {
        display: block !important;
        width: 100%;
        margin: 0 0 18px !important;
    }

    .bb-newsletter-popup .field.newsletter .control {
        display: block !important;
        width: 100%;
    }

    .bb-newsletter-popup .field.newsletter .bb-newsletter-popup__label {
        display: block !important;
        width: 100%;
        margin-bottom: 8px;
    }

    .bb-newsletter-popup .field.newsletter .bb-newsletter-popup__input {
        display: block;
        width: 100% !important;
    }

    .bb-newsletter-popup__submit {
        height: 44px;

        font-size: 11px !important;
        letter-spacing: 0.8px;
    }

    .bb-newsletter-popup__privacy {
        margin-top: 8px;

        font-size: 9px;
        line-height: 1.4;
    }

    .bb-newsletter-popup__terms {
        margin-top: 10px;

        gap: 7px;

        font-size: 10px;
        line-height: 1.4;
    }

    .um-popup-newsletter .action-close {
        top: 8px;
        right: 8px;

        width: 30px;
        height: 30px;
    }

    .bb-newsletter-popup__content .message {
        padding: 10px 12px;

        font-size: 11px;
    }
}


/* Pages */


.bb-about {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px 70px;
}


.bb-about-intro {
    max-width: 850px;
    padding: 50px 0 70px;
}


.bb-about-eyebrow {
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.bb-about h2 {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}


.bb-about p {
    line-height: 1.8;
}


.bb-about-story {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 55px;
    border-radius: 20px;
    background: #f7f7f7;
}


.bb-about-story__stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 220px;
    padding: 40px;
    text-align: center;
    border-radius: 18px;
    background: #fff;
}


.bb-about-story__stat strong {
    display: block;
    font-size: 34px;
    font-weight: 700;
}


.bb-about-story__stat span {
    margin-top: 8px;
}


.bb-about-values {
    padding: 80px 0;
}


.bb-about-section-heading {
    margin-bottom: 35px;
}


.bb-about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


.bb-about-value {
    padding: 30px;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
}


.bb-about-value__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #f3f3f3;
    font-size: 20px;
    font-weight: 700;
}


.bb-about-value h3 {
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: 700;
}


.bb-about-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 45px 50px;
    border-radius: 20px;
    background: #111;
    color: #fff;
}


.bb-about-cta div h2 {
    color: #fff !important;
}


.bb-about-cta p {
    color: #d1d5db !important;
}


.bb-about-cta__accent {
    color: #b81679;
}


.bb-about-cta__button {
    flex-shrink: 0;
    padding: 15px 28px;
    border-radius: 10px;
    background: #fff;
    color: #111;
    font-weight: 700;
    text-decoration: none;
}


.bb-about-cta__button:hover {
    background: #ec4899;
    color: #111;
    text-decoration: none;
}


@media (max-width: 767px) {

    .bb-about {
        padding: 10px 18px 45px;
    }

    .bb-about-intro {
        padding: 30px 0 45px;
    }

    .bb-about h2 {
        font-size: 28px;
    }

    .bb-about-story {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 24px;
    }

    .bb-about-values {
        padding: 55px 0;
    }

    .bb-about-values__grid {
        grid-template-columns: 1fr;
    }

    .bb-about-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 25px;
    }
}


/* BeautyBop Contact Page */


.bb-contact-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 24px 70px;
}


.bb-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}


/* LEFT COLUMN */


.bb-contact-info {
    max-width: 560px;
}


.bb-contact-eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.bb-contact-info h2,
.bb-contact-form-panel h2 {
    margin: 0 0 18px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 600;
}


.bb-contact-lead {
    font-size: 17px;
    line-height: 1.7;
}


.bb-contact-info > p {
    margin-bottom: 16px;
    line-height: 1.7;
}


/* SUPPORT ITEMS */


.bb-contact-help {
    margin-top: 36px;
}


.bb-contact-help__item {
    padding: 22px 0;
    border-top: 1px solid #e5e5e5;
}


.bb-contact-help__item:last-child {
    border-bottom: 1px solid #e5e5e5;
}


.bb-contact-help__item h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
}


.bb-contact-help__item p {
    margin: 0;
    line-height: 1.6;
}


/* DIRECT EMAIL */


.bb-contact-direct {
    margin-top: 34px;
    padding: 24px;
    background: #f7f7f7;
    border-radius: 14px;
}


.bb-contact-direct__label {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}


.bb-contact-direct a {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: underline;
}


.bb-contact-direct p {
    margin: 0;
}


/* RIGHT FORM PANEL */


.bb-contact-form-panel {
    padding: 38px;
    background: #f7f7f7;
    border-radius: 18px;
}


.bb-contact-form-intro {
    margin-bottom: 28px;
    line-height: 1.6;
}


/* MAGENTO FORM */


.bb-contact-form-wrapper .fieldset {
    margin: 0;
}


.bb-contact-form-wrapper .field {
    margin-bottom: 20px;
}


.bb-contact-form-wrapper .label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
}


.bb-contact-form-wrapper input[type="text"],
.bb-contact-form-wrapper input[type="email"],
.bb-contact-form-wrapper input[type="tel"],
.bb-contact-form-wrapper textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d6d6d6;
    border-radius: 9px;
    background: #fff;
}


.bb-contact-form-wrapper textarea {
    min-height: 150px;
    resize: vertical;
}


.bb-contact-form-wrapper input:focus,
.bb-contact-form-wrapper textarea:focus {
    outline: none;
    border-color: #ec4899;
}


.bb-contact-form-wrapper .action.submit {
    width: 100%;
    padding: 15px 25px;
    border: 0;
    border-radius: 10px;
    background: #111;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}


.bb-contact-form-wrapper .action.submit:hover {
    background: #ec4899;
    color: #111;
}


/* MOBILE */


@media (max-width: 767px) {

    .bb-contact-page {
        padding: 5px 18px 45px;
    }

    .bb-contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bb-contact-info {
        max-width: none;
    }

    .bb-contact-info h2,
    .bb-contact-form-panel h2 {
        font-size: 28px;
    }

    .bb-contact-form-panel {
        padding: 28px 20px;
    }
}


/* Contact form - labels above inputs */


.bb-contact-form-wrapper .fieldset > .field {
    display: block;
    width: 100%;
    margin-bottom: 22px;
}


.bb-contact-form-wrapper .fieldset > .field > .label {
    display: block !important;
    float: none !important;
    width: 100% !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
    text-align: left !important;
}


.bb-contact-form-wrapper .fieldset > .field > .control {
    display: block !important;
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}


.bb-contact-form-wrapper input[type="text"],
.bb-contact-form-wrapper input[type="email"],
.bb-contact-form-wrapper input[type="tel"],
.bb-contact-form-wrapper textarea {
    width: 100% !important;
}


.bb-contact-form-wrapper form button span {
    font-family: 'Poppins', sans-serif;
}


/* BeautyBop Returns & Refunds Policy */


.bb-policy-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 24px 70px;
    color: #222;
}


.bb-policy-updated {
    margin-bottom: 24px;
    font-size: 13px;
    color: #6b7280;
}


.bb-policy-intro {
    margin-bottom: 42px;
    padding: 28px 30px;
    border-radius: 16px;
    background: #f7f7f7;
}


.bb-policy-intro p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.7;
}


.bb-policy-intro p:last-child {
    margin-bottom: 0;
}


.bb-policy-section {
    padding: 34px 0;
    border-top: 1px solid #e5e7eb;
}


.bb-policy-section:first-of-type {
    border-top: 0;
}


.bb-policy-section h2 {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 600;
}


.bb-policy-section h3 {
    margin: 28px 0 12px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
}


.bb-policy-section p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.75;
}


.bb-policy-section ul {
    margin: 18px 0 22px;
    padding-left: 22px;
}


.bb-policy-section li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.65;
}


.bb-policy-section a {
    font-weight: 600;
    text-decoration: underline;
}


.bb-policy-contact-box,
.bb-policy-address {
    margin: 24px 0;
    padding: 22px 24px;
    border-radius: 14px;
    background: #f7f7f7;
}


.bb-policy-contact-box strong,
.bb-policy-address strong {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}


.bb-policy-contact-box a {
    display: inline-block;
    font-size: 17px;
}


.bb-policy-address address {
    margin: 0;
    font-style: normal;
    font-size: 16px;
    line-height: 1.7;
}


.bb-policy-contact {
    margin-top: 20px;
    padding: 32px;
    border: 0;
    border-radius: 16px;
    background: #111;
    color: #fff;
}


.bb-policy-contact h2 {
    color: #fff;
}


.bb-policy-contact p {
    color: #e5e7eb;
}


.bb-policy-contact a {
    color: #fff;
    font-size: 17px;
}


.bb-policy-contact a:hover {
    color: #ec4899;
}


/* Mobile */


@media (max-width: 767px) {
    .bb-policy-page {
        padding: 5px 18px 45px;
    }

    .bb-policy-intro {
        padding: 22px 20px;
        margin-bottom: 30px;
    }

    .bb-policy-section {
        padding: 28px 0;
    }

    .bb-policy-section h2 {
        font-size: 25px;
    }

    .bb-policy-section h3 {
        font-size: 19px;
    }

    .bb-policy-section p,
    .bb-policy-section li {
        font-size: 15px;
    }

    .bb-policy-contact-box,
    .bb-policy-address {
        padding: 20px;
    }

    .bb-policy-contact {
        padding: 26px 22px;
    }
}


*, ::before, ::after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  ;
}


::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  ;
}


/* ! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com */


/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/


*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}


::before,
::after {
  --tw-content: '';
}


/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/


html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}


/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/


body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}


/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/


hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}


/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/


abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}


/*
Remove the default font size and weight for headings.
*/


h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}


/*
Reset links to optimize for opt-in styling instead of opt-out.
*/


a {
  color: inherit;
  text-decoration: inherit;
}


/*
Add the correct font weight in Edge and Safari.
*/


b,
strong {
  font-weight: bolder;
}


/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/


code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}


/*
Add the correct font size in all browsers.
*/


small {
  font-size: 80%;
}


/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/


sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}


sub {
  bottom: -0.25em;
}


sup {
  top: -0.5em;
}


/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/


table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}


/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/


button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}


/*
Remove the inheritance of text transform in Edge and Firefox.
*/


button,
select {
  text-transform: none;
}


/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/


button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}


/*
Use the modern Firefox focus style for all focusable elements.
*/


:-moz-focusring {
  outline: auto;
}


/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/


:-moz-ui-invalid {
  box-shadow: none;
}


/*
Add the correct vertical alignment in Chrome and Firefox.
*/


progress {
  vertical-align: baseline;
}


/*
Correct the cursor style of increment and decrement buttons in Safari.
*/


::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}


/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/


[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}


/*
Remove the inner padding in Chrome and Safari on macOS.
*/


::-webkit-search-decoration {
  -webkit-appearance: none;
}


/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/


::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}


/*
Add the correct display in Chrome and Safari.
*/


summary {
  display: list-item;
}


/*
Removes the default spacing and border for appropriate elements.
*/


blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}


fieldset {
  margin: 0;
  padding: 0;
}


legend {
  padding: 0;
}


ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}


/*
Reset default styling for dialogs.
*/


dialog {
  padding: 0;
}


/*
Prevent resizing textareas horizontally by default.
*/


textarea {
  resize: vertical;
}


/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/


input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}


input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}


/*
Set the default cursor for buttons.
*/


button,
[role="button"] {
  cursor: pointer;
}


/*
Make sure disabled buttons don't get the pointer cursor.
*/


:disabled {
  cursor: default;
}


/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/


img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}


/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/


img,
video {
  max-width: 100%;
  height: auto;
}


/* Make elements with the HTML hidden attribute stay hidden by default */


[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}


.container {
    width: 100%;
}


@media (min-width: 640px) {


    .container {
        max-width: 640px;
    }
}


@media (min-width: 768px) {


    .container {
        max-width: 768px;
    }
}


@media (min-width: 1024px) {


    .container {
        max-width: 1024px;
    }
}


@media (min-width: 1280px) {


    .container {
        max-width: 1280px;
    }
}


@media (min-width: 1536px) {


    .container {
        max-width: 1536px;
    }
}


.bb-summary-product__wrapper {
    display: grid;
    align-items: flex-start;
    gap: 1.5rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    grid-template-columns: 88px 1fr auto;
}


.bb-summary-items {
    padding-top: 1rem;
    padding-bottom: 1rem;
}


.bb-summary-items__header {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}


.bb-summary-items__title {
    text-align: right;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}


.bb-summary-items__content {
    padding-top: 1rem;
}


.bb-summary-products > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}


.bb-summary-product {
    padding-top: 1.5rem;
}


.bb-summary-product:first-child {
    border-width: 0px;
    padding-top: 0px;
}


.bb-card {
    overflow: hidden;
    border-radius: 1rem;
    border-left-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
    border-bottom-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}


.bb-card__header {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}


.bb-card__title {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}


.bb-card__body {
    padding: 1.5rem;
}


.bb-card__footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}


.bb-summary-product-details {
    flex: 1 1 0%;
}


.bb-summary-product-main {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
}


.bb-summary-product-info {
    flex: 1 1 0%;
}


.bb-summary-product-price {
    text-align: right;
}


.bb-summary-product-title {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5rem;
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}


@media (max-width:768px){

.bb-summary-product-title.filter > .block-title,.bb-summary-product-title.filter > .block-subtitle {

    display: none;

}

.bb-summary-product-title.filter {

    position: static;
    width: 100%;
    height: auto;
    flex: 1;
    overflow: visible;
    background: transparent;

}



}


@media (min-width: 768px) {
    .bb-summary-product-title.filter #narrow-by-list > .filter-options-title {
        position: relative;
        cursor: pointer;
        padding: 14px 36px 14px 0;
        margin: 0;
        word-break: normal;
        -webkit-user-select: none;
           -moz-user-select: none;
                user-select: none;
    }

    .bb-summary-product-title.filter #narrow-by-list > .filter-options-title::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 8px;
        width: 7px;
        height: 7px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: translateY(-70%) rotate(45deg);
        transition: transform 0.2s ease;
    }

    .bb-summary-product-title.filter #narrow-by-list > .filter-options-title.active::after {
        transform: translateY(-30%) rotate(225deg);
    }

    .bb-summary-product-title.filter #narrow-by-list > .filter-options-content {
        display: none;
        padding: 8px 0 18px;
        margin: 0;
    }

    .bb-summary-product-title.filter #narrow-by-list > .filter-options-content.active {
        display: block;
    }
}


.bb-summary-product-title.block-new-customer {
    display: none;
}


@media (max-width: 350px) {

    .um-popup-newsletter .bb-summary-product-title.newsletter input
    {
        float: none;
    }
}


.bb-summary-product-title.filter {
    max-height: calc(100vh - 120px);
    height: auto;
    overflow-y: auto;
    padding-right: 10px;
}


.bb-summary-product-title.upsell {
    clear: both;
}


.bb-summary-qty {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}


.bb-summary-qty-label {
    font-size: 0.75rem;
    line-height: 1rem;
    --tw-text-opacity: 1;
    color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}


.bb-summary-qty-value {
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}


/* Image/Thumbnail Resizing */


.bb-summary-product .product-item-photo {
    flex-shrink: 0;
}


.bb-summary-product .product-image-container {
     width: 96px !important;
}


.bb-summary-product .product-image-wrapper {
    height: auto !important;
    padding-bottom: 0 !important;
    overflow: visible;
}


.bb-summary-product .product-image-photo {
    position: static;
    height: auto;
    width: 100%;
    border-radius: 0.5rem;
}


.bb-categories__intro {
    margin-bottom: 3rem;
    text-align: center;
}


.bb-categories__intro .eyebrow {
    padding-top: 26px;
    padding-bottom: 26px;
    font-size: 14px;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(201 162 39 / var(--tw-text-opacity, 1));
}


.bb-categories__intro h2 {
    margin-bottom: 0.75rem;
    font-size: 48px;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}


.bb-categories__intro p {
    font-size: 16px;
    --tw-text-opacity: 1;
    color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}


.bb-category-card {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 0.75rem;
        min-height: 430px;
        padding: 40px;
        display: flex;
        align-items: flex-start;
}


.bb-category-image {
    position: absolute;
    top: 0px;
    right: 0px;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
        transform: translateY(-35px);
        height: 100%;
        min-height: 512px;
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center;
           object-position: center;

        transition: .35s ease;
}


.bb-category-card:hover .bb-category-image {
        transform: translateY(-45px) scale(1.03);
        
    }


a.bb-category-card:hover {
        text-decoration: none;
    }


.bb-category-overlay {
    position: absolute;
    inset: 0px;
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
    --tw-gradient-from: rgb(0 0 0 / 0.7) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.2) var(--tw-gradient-via-position), var(--tw-gradient-to);
    --tw-gradient-to: transparent var(--tw-gradient-to-position);
}


.bb-category-content {
    position: relative;
    top: 2rem;
    left: 1.25rem;
    z-index: 10;
        width: 45%;
}


.bb-category-content  p {
    padding-top: 39px;
    padding-bottom: 28px;
    font-size: 14px;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}


.bb-category-title {
    margin-bottom: 0.5rem;
    font-size: 28px;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}


.bb-category-link {
    font-size: 0.75rem;
    line-height: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


.visible {
    visibility: visible;
}


.collapse {
    visibility: collapse;
}


.static {
    position: static;
}


.fixed {
    position: fixed;
}


.absolute {
    position: absolute;
}


.relative {
    position: relative;
}


.sticky {
    position: sticky;
}


.inset-0 {
    inset: 0px;
}


.left-0 {
    left: 0px;
}


.left-2 {
    left: 0.5rem;
}


.right-0 {
    right: 0px;
}


.top-0 {
    top: 0px;
}


.top-2 {
    top: 0.5rem;
}


.top-full {
    top: 100%;
}


.z-10 {
    z-index: 10;
}


.z-40 {
    z-index: 40;
}


.z-50 {
    z-index: 50;
}


.z-\[2\] {
    z-index: 2;
}


.m-0 {
    margin: 0px;
}


.mx-auto {
    margin-left: auto;
    margin-right: auto;
}


.mb-2 {
    margin-bottom: 0.5rem;
}


.mb-4 {
    margin-bottom: 1rem;
}


.mb-\[5px\] {
    margin-bottom: 5px;
}


.mt-1 {
    margin-top: 0.25rem;
}


.mt-2 {
    margin-top: 0.5rem;
}


.mt-3 {
    margin-top: 0.75rem;
}


.mt-6 {
    margin-top: 1.5rem;
}


.mt-\[24px\] {
    margin-top: 24px;
}


.block {
    display: block;
}


.inline {
    display: inline;
}


.flex {
    display: flex;
}


.table {
    display: table;
}


.table-caption {
    display: table-caption;
}


.grid {
    display: grid;
}


.contents {
    display: contents;
}


.hidden {
    display: none;
}


.h-10 {
    height: 2.5rem;
}


.h-16 {
    height: 4rem;
}


.h-24 {
    height: 6rem;
}


.h-52 {
    height: 13rem;
}


.h-9 {
    height: 2.25rem;
}


.h-\[147\] {
    height: 147;
}


.h-\[3px\] {
    height: 3px;
}


.h-\[40px\] {
    height: 40px;
}


.h-full {
    height: 100%;
}


.h-screen {
    height: 100vh;
}


.max-h-0 {
    max-height: 0px;
}


.max-h-32 {
    max-height: 8rem;
}


.min-h-\[44px\] {
    min-height: 44px;
}


.w-10 {
    width: 2.5rem;
}


.w-12 {
    width: 3rem;
}


.w-48 {
    width: 12rem;
}


.w-9 {
    width: 2.25rem;
}


.w-\[100\%\] {
    width: 100%;
}


.w-\[100vw\] {
    width: 100vw;
}


.w-\[220px\] {
    width: 220px;
}


.w-\[300px\] {
    width: 300px;
}


.w-\[693\] {
    width: 693;
}


.w-full {
    width: 100%;
}


.min-w-\[280px\] {
    min-width: 280px;
}


.max-w-\[1280px\] {
    max-width: 1280px;
}


.max-w-\[1440px\] {
    max-width: 1440px;
}


.max-w-\[158px\] {
    max-width: 158px;
}


.max-w-\[437px\] {
    max-width: 437px;
}


.max-w-\[520px\] {
    max-width: 520px;
}


.grow {
    flex-grow: 1;
}


.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}


.cursor-pointer {
    cursor: pointer;
}


.select-all {
    -webkit-user-select: all;
       -moz-user-select: all;
            user-select: all;
}


.resize {
    resize: both;
}


.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}


.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}


.grid-cols-\[250px_1fr_220px\] {
    grid-template-columns: 250px 1fr 220px;
}


.grid-cols-\[64px_minmax\(43px\2c _1fr\)_103px\] {
    grid-template-columns: 64px minmax(43px, 1fr) 103px;
}


.flex-row {
    flex-direction: row;
}


.flex-col {
    flex-direction: column;
}


.flex-wrap {
    flex-wrap: wrap;
}


.items-end {
    align-items: flex-end;
}


.items-center {
    align-items: center;
}


.justify-end {
    justify-content: flex-end;
}


.justify-center {
    justify-content: center;
}


.justify-between {
    justify-content: space-between;
}


.gap-1 {
    gap: 0.25rem;
}


.gap-10 {
    gap: 2.5rem;
}


.gap-2 {
    gap: 0.5rem;
}


.gap-3 {
    gap: 0.75rem;
}


.gap-5 {
    gap: 1.25rem;
}


.gap-6 {
    gap: 1.5rem;
}


.gap-8 {
    gap: 2rem;
}


.gap-\[20px\] {
    gap: 20px;
}


.space-y-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}


.overflow-hidden {
    overflow: hidden;
}


.overflow-y-auto {
    overflow-y: auto;
}


.rounded {
    border-radius: 0.25rem;
}


.rounded-\[12px\] {
    border-radius: 12px;
}


.rounded-\[5px\] {
    border-radius: 5px;
}


.rounded-lg {
    border-radius: 0.5rem;
}


.rounded-md {
    border-radius: 0.375rem;
}


.rounded-xl {
    border-radius: 0.75rem;
}


.border {
    border-width: 1px;
}


.border-\[1px\] {
    border-width: 1px;
}


.border-b {
    border-bottom-width: 1px;
}


.border-t {
    border-top-width: 1px;
}


.border-solid {
    border-style: solid;
}


.border-none {
    border-style: none;
}


.border-black {
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}


.border-gray-700 {
    --tw-border-opacity: 1;
    border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}


.bg-\[\#000\] {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}


.bg-\[\#111827\] {
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}


.bg-\[\#1e1240\] {
    --tw-bg-opacity: 1;
    background-color: rgb(30 18 64 / var(--tw-bg-opacity, 1));
}


.bg-\[\#b81679\] {
    --tw-bg-opacity: 1;
    background-color: rgb(184 22 121 / var(--tw-bg-opacity, 1));
}


.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}


.bg-black\/50 {
    background-color: rgb(0 0 0 / 0.5);
}


.bg-red-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}


.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}


.object-contain {
    -o-object-fit: contain;
       object-fit: contain;
}


.p-4 {
    padding: 1rem;
}


.p-5 {
    padding: 1.25rem;
}


.p-6 {
    padding: 1.5rem;
}


.px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}


.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}


.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}


.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}


.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}


.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}


.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}


.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}


.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}


.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}


.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}


.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}


.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}


.pt-3 {
    padding-top: 0.75rem;
}


.text-left {
    text-align: left;
}


.text-center {
    text-align: center;
}


.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}


.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}


.text-\[12px\] {
    font-size: 12px;
}


.text-\[23px\] {
    font-size: 23px;
}


.text-\[24px\] {
    font-size: 24px;
}


.text-\[68px\] {
    font-size: 68px;
}


.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}


.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}


.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}


.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}


.font-\[400px\] {
    font-weight: 400px;
}


.font-bold {
    font-weight: 700;
}


.font-light {
    font-weight: 300;
}


.font-medium {
    font-weight: 500;
}


.font-semibold {
    font-weight: 600;
}


.leading-8 {
    line-height: 2rem;
}


.leading-none {
    line-height: 1;
}


.leading-tight {
    line-height: 1.25;
}


.tracking-wide {
    letter-spacing: 0.025em;
}


.text-\[\#000000\] {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}


.text-\[\#C9A227\] {
    --tw-text-opacity: 1;
    color: rgb(201 162 39 / var(--tw-text-opacity, 1));
}


.text-black {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}


.text-gray-300 {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}


.text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}


.text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}


.text-pink-500 {
    --tw-text-opacity: 1;
    color: rgb(236 72 153 / var(--tw-text-opacity, 1));
}


.text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}


.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}


.text-yellow-500 {
    --tw-text-opacity: 1;
    color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}


.shadow {
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}


.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}


.outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px;
}


.blur {
    --tw-blur: blur(8px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}


.invert {
    --tw-invert: invert(100%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}


.filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}


.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}


.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}


.duration-300 {
    transition-duration: 300ms;
}


html,
body,
button,
input,
select,
textarea {
    font-family: "Poppins", sans-serif;
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
label {
    font-family: inherit;
}


/* Scope Tailwind ONLY inside .bb */


.bb {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}


.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


.page-main {
    flex: 1 0 auto;
}


footer {
    flex-shrink: 0;
}


.customer-account-login .page-title-wrapper, 
.customer-account-create .page-title-wrapper {
    text-align: center;
}


.page-title-wrapper > h2 > span {
    font-size: 48px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}


.page-title-wrapper {
    margin-bottom: 10px;
}


/* Target Magento menu structure */


.bb-announcement {
    height: 40px;
    --tw-bg-opacity: 1;
    background-color: rgb(30 18 64 / var(--tw-bg-opacity, 1));
    padding: 1rem;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}


/* Header Section */


.bb-header-main {
    display: flex;
    height: 4rem;
    align-items: center;
    justify-content: space-between;
    border-bottom-width: 1px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding-left: 1rem;
    padding-right: 1rem;
}


.bb-header-nav {
    display: flex;
    flex-grow: 1;
    justify-content: center;
}


.bb-mobile-toggle {
    display: flex;
    height: 2rem;
    width: 2rem;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
}


.bb-mobile-toggle span {
    display: block;
    height: 0.125rem;
    border-radius: 0.25rem;
    --tw-bg-opacity: 1;
    background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
}


@media (max-width:768px){

.bb-mobile-toggle span.filter > .block-title,.bb-mobile-toggle span.filter > .block-subtitle {

    display: none;

}

.bb-mobile-toggle span.filter {

    position: static;
    width: 100%;
    height: auto;
    flex: 1;
    overflow: visible;
    background: transparent;

}



}


@media (min-width: 768px) {
    .bb-mobile-toggle span.filter #narrow-by-list > .filter-options-title {
        position: relative;
        cursor: pointer;
        padding: 14px 36px 14px 0;
        margin: 0;
        word-break: normal;
        -webkit-user-select: none;
           -moz-user-select: none;
                user-select: none;
    }

    .bb-mobile-toggle span.filter #narrow-by-list > .filter-options-title::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 8px;
        width: 7px;
        height: 7px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: translateY(-70%) rotate(45deg);
        transition: transform 0.2s ease;
    }

    .bb-mobile-toggle span.filter #narrow-by-list > .filter-options-title.active::after {
        transform: translateY(-30%) rotate(225deg);
    }

    .bb-mobile-toggle span.filter #narrow-by-list > .filter-options-content {
        display: none;
        padding: 8px 0 18px;
        margin: 0;
    }

    .bb-mobile-toggle span.filter #narrow-by-list > .filter-options-content.active {
        display: block;
    }
}


.bb-mobile-toggle span.block-new-customer {
    display: none;
}


@media (max-width: 350px) {

    .um-popup-newsletter .bb-mobile-toggle span.newsletter input
    {
        float: none;
    }
}


.bb-mobile-toggle span.filter {
    max-height: calc(100vh - 120px);
    height: auto;
    overflow-y: auto;
    padding-right: 10px;
}


.bb-mobile-toggle span.upsell {
    clear: both;
}


.bb-header-search {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    width: 260px;
}


.bb-header-search .block-search {
    margin: 0px;
}


.bb-header-search input {
    width: 100%;
    border-radius: 0.5rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}


.bb-header-search button {
    right: 0.75rem;
}


/* New style search form */


.bb-search-panel {
    border-top-width: 0px;
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 0.5rem;
}


@media (min-width: 768px) {


    .bb-search-panel {
        border-top-width: 0px;
    }
}


@media (min-width: 1280px) {


    .bb-search-panel {
        padding-bottom: 0px;
    }
}


input[type="text"],
input[type="email"],
input[type="password"] {
    height: 50px;
    width: 100%;
    cursor: pointer;
    border-radius: 0.5rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(111 111 111 / var(--tw-border-opacity, 1));
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}


.bb-header-cart {
    flex-shrink: 0;
}


/* Parent item */


.widget.block-static-block {
    display:none !important;
}


.navigation .level0.parent {
    position: relative;
}


/* replace basket icon */


.action.showcart:before {
    display: none !important;
}


.minicart-wrapper .action.showcart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: auto;
}


.minicart-wrapper .action.showcart::after {
    content: '';
    width: 24px;
    height: 24px;
    display: block;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23333' viewBox='0 0 24 24'%3E%3Cpath stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M5 8h14l-1 12H6L5 8zm4-3a3 3 0 016 0v3H9V5z'/%3E%3C/svg%3E");

    background-size: contain;
    background-repeat: no-repeat;
}


.minicart-wrapper .action.showcart.counter.qty {
    background: #d946a3;
    color: white;
    border-radius: 999px;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
    line-height: 18px;
}


.account-menu {
    position: relative;
}


.account-menu > div:last-child {
    pointer-events: none;
}


.account-menu:hover > div:last-child {
    pointer-events: auto;
}


.account-wrapper {
    position: relative;
}


.account-dropdown {
    /*display: none;*/
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    border-radius: 6px;
    width: 260px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    padding: 16px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    gap: 2;
    
}


.account-dropdown .bb-btn {
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 5px;

}


/* Side bar filtering */


/* Sidebar container */


.products-grid {
    display: block;
    width: 100%;
}


@media (max-width: 768px) {
    .product-items {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px;
        padding: 0 10px;
        min-width: 0;
    }
}


.block.filter {
    max-height: calc(100vh - 120px);
    height: auto;
    overflow-y: auto;
    padding-right: 10px;
}


.breadcrumbs ul.items {
    display: flex;
}


.breadcrumbs ul.items li.item {
    margin-right: 0.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}


/* Section title */


.filter-options-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}


/* Each filter group */


.filter-options-item {
    margin-bottom: 20px;
}


/* List */


.filter-options-content .items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* Individual item */


.filter-options-content .item a {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* Hover */


.filter-options-content .item a:hover {
    color: #ec4899; /* pink */
}


/* fake checkbox */


.filter-options-content .item a::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
}


/* SHOW ON HOVER */


.account-wrapper:hover .account-dropdown {
    /*display: block;*/
    opacity: 1;
    visibility: visible;
}


@media only screen and (min-width: 850px) {
    body {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}


.action.skip,
.header.links {
    display: none !important;
}


/* slick track responsiveness */


.slick-list {
    overflow: hidden;
}


body {
    overflow-x: hidden;
}


.page-main {
    overflow: visible !important;
}


.slider-container {
    width: 100%;
    overflow: hidden;
}


.slick-slide img {
    width: 100%;
    height: auto;
    display: block;
}


@media (max-width: 768px) {
    .slick-track {
        display: flex !important;
    }
}


/* Listing for Mens Perfume on Homepage */


.product-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}


.product-item {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}


.product-item .product-item-info .product-item-details {
    display: grid;
    gap: 6px;
}


.product-item .product-item-info .product-item-details .product-item-inner .product-item-actions .actions-primary form button.tocart {
    background-color: black;
    border-radius: 6px;
    color: white;
    padding: 3px 20px;
}


.product-item .product-item-info .product-item-details .product-item-name a.product-item-link {
    font-weight: 600 !important;
}


.product-item .product-item-info .product-item-details .price-box .price-container .price {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
}


/* header search form */


.page-header .search-input {
    width: 100%;
    border-bottom-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-right: 2.5rem;
    border-radius: 0;
    background: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
}


.page-header nav ul {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}


/* Trust bar section */


.bb-trust-bar {
    background: #ffffff;
    border-top: 1px solid #ece7df;
    border-bottom: 1px solid #ece7df;
}


.bb-trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}


.bb-trust-icon {
    font-size: 24px;
    flex-shrink: 0;
}


.bb-trust-content h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}


.bb-trust-content p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #6b7280;
}


/* Mega Menu */


/* =====================================================
   MEGA MENU
===================================================== */


.navigation .level0.level-top {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;

    min-width: 1100px;

    background: #fff;

    padding: 2rem;

    border-top: 1px solid #eee;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}


.navigation .level1 > a {
    display: block;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .08em;

    margin-bottom: 12px;

    color: #111827;
}


.navigation .level2 a {
    display: block;
    color: #4b5563;
    transition: .25s;
    line-height: normal;
}


.navigation .level2 a:hover {
    color: #d946a3;
}


.block.upsell {
    clear: both;
}


/* response style */


/* ==========================================
   MOBILE MENU
========================================== */


#bb-mobile-menu .navigation {
    width: 100%;
}


/* Override desktop flex menu */


#bb-mobile-menu .navigation > ul {
    display: block !important;
}


#bb-mobile-menu .navigation li {
    width: 100%;
    margin: 0;
    position: relative;
}


#bb-mobile-menu .navigation a {
    display: block;
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
}


/* Hide all child menus by default */


#bb-mobile-menu .parent > ul {
    display: none !important;
}


/* Show when JS adds active class */


#bb-mobile-menu .parent.active > ul {
    display: block !important;
}


/* Remove desktop mega menu styling */


#bb-mobile-menu .navigation .level0.level-top {
    position: static !important;
    transform: none !important;
    min-width: auto !important;
    width: 100% !important;

    display: block !important;
    grid-template-columns: none !important;

    opacity: 1 !important;
    visibility: visible !important;

    padding: 0 !important;
    margin: 0 !important;

    box-shadow: none !important;
    border: 0 !important;
    background: transparent !important;
}


/* Level 1 category */


#bb-mobile-menu .level1 > a {
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
}


/* Level 2 items */


#bb-mobile-menu .level2 a {
    padding-left: 36px;
    font-size: 14px;
    color: #64748b;
}


/* Active parent */


#bb-mobile-menu .parent.active > a {
    background: #f8fafc;
    color: #000;
}


#bb-mobile-menu .parent > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


#bb-mobile-menu .level1.parent > a::after {
    content: '';
    width: 8px;
    height: 8px;

    border-right: 2px solid #333;
    border-bottom: 2px solid #333;

    transform: rotate(45deg);
    transition: .2s;

}


#bb-mobile-menu .level1.parent.active > a::after {
    transform: rotate(-135deg);
}


#bb-mobile-menu .level0.nav-1 > a {
    display: none !important;
}


/* Hide Shop link */


#bb-mobile-menu .level0.nav-1 > a {
    display: none !important;
}


/* Flatten Shop container */


#bb-mobile-menu .level0.nav-1 {
    border: 0;
}


/* Always show Fragrance, Cosmetics, Toiletries etc */


#bb-mobile-menu .level0.nav-1 > ul {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
}


/* Hide second-level children until clicked */


#bb-mobile-menu .level1.parent > ul {
    display: none !important;  
}


/* Show second-level children when active */


#bb-mobile-menu .level1.parent.active > ul {
    display: block !important;
}


#bb-mobile-menu .ui-menu-icon,
#bb-mobile-menu .submenu-toggle {
    display: none !important;
}


@media (min-width: 1920px) {
    .navigation .level0.parent > ul.level0.level-top {
        transform: translateX(-47%);
        min-width: 1920px;
    }
}


/* Hero banner */


@media (max-width: 1024px) {

     .bb-trust-bar__container {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {

    

      .bb-trust-bar__container {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }

    .bb-trust-item {
        justify-content: center;
        text-align: center;
        flex-direction: row;
    }

    .navigation .parent .level-top:after {
        display: none;
    }

    input[type="text"] {
        margin-top: 12px;
    }
}


.hover\:-translate-y-1:hover {
    --tw-translate-y: -0.25rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}


.hover\:bg-\[\#111827\]:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}


.hover\:bg-\[\#EC4899\]:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(236 72 153 / var(--tw-bg-opacity, 1));
}


.hover\:bg-black:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}


.hover\:bg-gray-800:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}


.hover\:bg-pink-600:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(219 39 119 / var(--tw-bg-opacity, 1));
}


.hover\:text-\[\#1e1240\]:hover {
    --tw-text-opacity: 1;
    color: rgb(30 18 64 / var(--tw-text-opacity, 1));
}


.hover\:text-black:hover {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}


.hover\:text-white:hover {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}


.hover\:shadow-lg:hover {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}


.hover\:shadow-xl:hover {
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}


.group:hover .group-hover\:scale-105 {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}


@media (min-width: 768px) {


    .md\:block {
        display: block;
    }


    .md\:hidden {
        display: none;
    }


    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }


    .md\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}


@media (min-width: 1024px) {


    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }


    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}


@media (min-width: 1280px) {


    .xl\:h-10 {
        height: 2.5rem;
    }


    .xl\:w-10 {
        width: 2.5rem;
    }


    .xl\:w-\[270px\] {
        width: 270px;
    }
}

