/* ============================================
   LEEF 2.0 — Shop Page Styles
   ============================================ */

/* ============================================
   HUD HEADER (Fixed & Clean)
   ============================================ */
.hud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 100;
    padding: 0 40px;
    background: transparent;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

/* Left & Right Groups */
.hud__left,
.hud__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    pointer-events: auto;
    min-width: 150px;
}

.hud__right {
    align-items: flex-end;
    text-align: right;
}

/* HUD Text Elements */
.hud__time,
.hud__moon,
.hud__temp,
.hud__date {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hud__time {
    color: var(--color-primary);
    font-size: 15px;
}

/* Timer Bars */
.hud__timer-bars {
    display: flex;
    gap: 3px;
    margin-top: 4px;
}

.hud__timer-bar {
    width: 8px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.hud__timer-bar.active {
    background: var(--color-primary);
    box-shadow: 0 0 6px rgba(254, 194, 0, 0.5);
}

/* Center Logo */
.hud__center {
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hud__logo-img {
    height: 44px;
    width: auto;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hud__logo-img:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Cart Button */
.hud__cart {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 8px 16px;
    border: none;
    /* No border as requested */
    border-radius: 4px;
    transition: all 0.2s;
    user-select: none;
    background: transparent;
    /* No background */
}

.hud__cart:hover {
    background: rgba(254, 194, 0, 0.15);
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

.hud__cart-plus {
    font-weight: 900;
    font-size: 13px;
}

/* Mobile Toggle */
.hud__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    pointer-events: auto;
    padding: 10px;
}

.hud__toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* ============================================
   PRODUCT GRID (CPFM Style)
   ============================================ */
/* ============================================
   PRODUCT GRID (CPFM Style)
   ============================================ */
.shop {
    padding-top: 150px;
    /* Fix overlap */
    padding-bottom: 50px;
    min-height: 100vh;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
    /* Row gap big, col gap standard */
    padding: 0 20px;
    width: 100%;
    max-width: none;
    /* Full width */
    margin: 0;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PRODUCT CARD
   ============================================ */
.product-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: none;
    /* No lift */
}

/* Image */
.product-card__images {
    position: relative;
    aspect-ratio: 4/5;
    width: 100%;
    overflow: hidden;
    margin-bottom: 16px;
    background: #0f0f0f;
    cursor: pointer;
}

.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Only zoom when hovering the IMAGE, not the buttons */
.product-card__images:hover .product-card__img {
    transform: scale(1.03);
}

/* Info Layout: CPFM Style */
.product-card__info {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Name: "olive crochet knit cardigan" style */
.product-card__name {
    font-family: 'Space Mono', monospace;
    /* Typewriter */
    font-size: 16px;
    /* Larger */
    font-weight: 400;
    color: #fff;
    text-transform: lowercase;
    /* CPFM style */
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* Bottom Row: $430 | Size | BUY ME */
.product-card__bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.product-card__price {
    font-family: 'Space Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    /* Bold */
    color: #fff;
    letter-spacing: -1px;
}

.product-card__controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    /* Push to right? Or inline? Ref has it inline */
}

/* Controls Container: SEPARATED */
.product-card__controls {
    display: flex;
    align-items: center;
    gap: 12px;
    /* Separated gap */
    margin-left: auto;
    border: none;
    /* No wrapper border */
    background: transparent;
    height: auto;
    padding: 0;
    transform: none !important;
    /* No wrapper hover */
    box-shadow: none !important;
}

/* Size Select: Box Style */
.product-card__size {
    appearance: none;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    padding: 0;
    height: 48px;
    /* Match height */
    width: 60px;
    /* Fixed width box */
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.product-card__size:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

/* BUY ME / ADD + Button: Borderless, Big Text */
.product-card__buy {
    background: transparent;
    border: none;
    padding: 0;
    height: auto;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 28px;
    /* Bigger */
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.product-card__buy:hover {
    transform: scale(1.15);
    /* Just grows */
    box-shadow: none;
    background: transparent;
    color: #fff;
}

/* Extra text from ref */
.product-card__extra {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: #666;
    margin-top: 4px;
    letter-spacing: 1px;
    max-width: 250px;
    line-height: 1.4;
}

/* ============================================
   LIQUID GLASS EMAIL POPUP
   ============================================ */
.email-popup {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    max-width: 560px;
    width: 90%;

    /* Liquid glass effect */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);

    transition: bottom 0.5s var(--ease-out), opacity 0.5s;
    opacity: 0;
}

.email-popup.visible {
    bottom: 24px;
    opacity: 1;
}

.email-popup__text {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.email-popup__input-wrap {
    flex: 1;
    display: flex;
}

.email-popup__input {
    width: 100%;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    font-family: var(--font-mono);
}

.email-popup__input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.email-popup__input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.email-popup__submit {
    padding: 8px 16px;
    background: var(--color-primary);
    color: var(--color-dark);
    border: none;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.email-popup__submit:hover {
    background: #e5af00;
}

.email-popup__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
    line-height: 1;
}

.email-popup__close:hover {
    color: #fff;
}

/* ============================================
   OVERLAY
   ============================================ */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ============================================
   CART / CHECKOUT SIDEBAR
   ============================================ */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -480px;
    width: 460px;
    max-width: 100vw;
    height: 100vh;
    background: #0f0f0f;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 600;
    transition: right 0.35s var(--ease-out);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.cart-sidebar.open {
    right: 0;
}

.cart-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    min-height: 60px;
}

.cart-sidebar__title {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cart-sidebar__close {
    background: none;
    border: none;
    color: #555;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
}

.cart-sidebar__close:hover {
    color: #fff;
}

/* Cart Items */
.cart-sidebar__items {
    flex: 1;
    padding: 16px 24px;
    overflow-y: auto;
}

.cart-sidebar__empty {
    text-align: center;
    padding: 60px 0;
    font-family: var(--font-mono);
    font-size: 12px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Single cart item - BOX Style */
.cart-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.cart-item__top {
    display: flex;
    gap: 16px;
}

.cart-item__img {
    width: 100px;
    /* Bigger */
    height: 100px;
    object-fit: cover;
    border-radius: 0;
    background: #1a1a1a;
}

.cart-item__details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item__name {
    font-family: 'Outfit', sans-serif;
    /* Bold heading font */
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.cart-item__meta {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
    font-family: var(--font-mono);
}

.cart-item__price {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    /* Yellow/Gold */
    margin-top: 8px;
}

/* Qty Row */
.cart-item__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.cart-item__qty {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    color: #fff;
    font-size: 14px;
}

.cart-item__qty-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 0 5px;
}

.cart-item__qty-btn:hover {
    color: var(--color-primary);
}

.cart-item__remove {
    background: none;
    border: none;
    color: #555;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-mono);
    letter-spacing: 1px;
}

.cart-item__remove:hover {
    color: #fff;
}

.cart-item__remove {
    background: none;
    border: none;
    color: #555;
    font-size: 16px;
    cursor: pointer;
    align-self: flex-start;
    transition: color 0.2s;
    padding: 2px;
}

.cart-item__remove:hover {
    color: #ff5349;
}

/* Cart footer */
.cart-sidebar__footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-sidebar__total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.cart-sidebar__total-label {
    font-family: var(--font-mono);
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-sidebar__total-value {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.cart-sidebar__checkout {
    width: 100%;
    padding: 20px;
    background: var(--color-primary);
    color: #000;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    margin-top: 10px;
}



.cart-sidebar__checkout:hover {
    background: #e5af00;
}

/* Cart step toggling */
.cart-step {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

/* ============================================
   CHECKOUT (inside sidebar)
   ============================================ */
.checkout__back {
    background: none;
    border: none;
    color: #888;
    font-family: var(--font-mono);
    font-size: 12px;
    cursor: pointer;
    transition: color 0.2s;
}

.checkout__back:hover {
    color: #fff;
}

.checkout__body {
    flex: 1;
    padding: 20px 24px;
    overflow-y: auto;
}

/* Checkout order summary */
.checkout__summary {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
}

.checkout__summary-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 6px 0;
}

.checkout__summary-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    background: #1a1a1a;
}

.checkout__summary-name {
    font-size: 11px;
    color: #ccc;
    flex: 1;
}

.checkout__summary-price {
    font-family: var(--font-mono);
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}

/* Steps breadcrumb */
.checkout__steps {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 20px;
}

.checkout__step {
    font-family: var(--font-mono);
    font-size: 11px;
    color: #555;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.checkout__step.active {
    color: var(--color-primary);
}

.checkout__step-arrow {
    color: #333;
    font-size: 12px;
}

/* Form */
.checkout__fieldset {
    border: none;
    margin-bottom: 20px;
}

.checkout__legend {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: lowercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.checkout__input {
    width: 100%;
    padding: 12px 14px;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    font-family: var(--font-mono);
    margin-bottom: 8px;
    transition: border-color 0.2s;
}

.checkout__input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.checkout__input::placeholder {
    color: #555;
}

.checkout__select option {
    background: #141414;
}

.checkout__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.checkout__checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #888;
    margin-top: 4px;
    margin-bottom: 8px;
    cursor: pointer;
}

.checkout__checkbox-label input[type="checkbox"] {
    accent-color: var(--color-primary);
}

/* Stripe element */
.checkout__stripe-element {
    padding: 16px;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    min-height: 60px;
}

.checkout__stripe-placeholder {
    font-size: 12px;
    color: #555;
    text-align: center;
}

/* Total + submit */
.checkout__total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 16px;
    font-family: var(--font-mono);
    font-size: 14px;
    color: #fff;
}

.checkout__total-value {
    font-weight: 700;
    font-size: 18px;
    color: var(--color-primary);
}

.checkout__submit {
    width: 100%;
    padding: 16px;
    background: var(--color-primary);
    color: var(--color-dark);
    border: none;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}

.checkout__submit:hover {
    background: #e5af00;
}

/* ============================================
   TOAST
   ============================================ */
.toast {
    position: fixed;
    bottom: 80px;
    right: 24px;
    padding: 12px 24px;
    background: var(--color-primary);
    color: var(--color-dark);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 700;
    pointer-events: none;
}

.toast.active {
    transform: translateY(0);
    opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
        padding: 0 var(--space-4);
    }

    .hud__moon {
        display: none;
    }
}

@media (max-width: 600px) {
    .hud {
        height: 56px;
        padding: 0 var(--space-3);
    }

    .hud__left {
        flex: 0 0 auto;
    }

    .hud__timer-bars {
        display: none;
    }

    .hud__date {
        display: none;
    }

    .hud__moon {
        display: none;
    }

    .hud__temp {
        display: none;
    }

    .hud__toggle {
        display: flex;
    }

    .hud__right {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
        padding: 0 var(--space-3);
    }

    .shop {
        padding-top: 70px;
    }

    .cart-sidebar {
        width: 100vw;
    }

    .email-popup {
        flex-direction: column;
        gap: 10px;
        padding: 14px 18px;
    }
}

/* ============================================
   CPFM Footer
   ============================================ */
.cpfm-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    background: #fff;
    color: #000;
    margin-top: auto;
    /* Push to bottom */
    width: 100%;
    border-top: 1px solid #e6e6e6;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-wrap: wrap;
    gap: 20px;
}

/* ============================================
   CPFM Footer (Fixed)
   ============================================ */
.cpfm-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 40px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    background: #1a1a1a;
    color: #fff;
    margin-top: 100px;
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cpfm-footer__left {
    font-weight: 700;
    opacity: 0.6;
}

.cpfm-footer__right {
    display: flex;
    gap: 30px;
}

.cpfm-footer__right a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.cpfm-footer__right a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .cpfm-footer {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 40px 20px;
        gap: 30px;
    }

    .cpfm-footer__right {
        flex-direction: column;
        gap: 15px;
    }

    /* ============================================
   OVERRIDES (User Feedback)
   ============================================ */

    /* Remove Header Buttons Border/Background */
    .hud__cart,
    .hud__btn,
    .hud__cart:hover {
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    /* Footer Style: No top border, more padding, rougher font */
    .cpfm-footer {
        border-top: none !important;
        padding-top: 80px !important;
        font-weight: 900 !important;
        font-size: 14px !important;
        letter-spacing: 2px !important;
    }

    /* FORCE WHITE BUTTONS & ALIGNMENT */
    .hud__cart,
    .hud__btn {
        color: #fff !important;
        font-family: 'Space Mono', monospace !important;
        font-weight: 700 !important;
        background: transparent !important;
        border: none !important;
        padding: 0 10px !important;
        margin: 0 !important;
        box-shadow: none !important;
        text-shadow: none !important;
        display: inline-flex !important;
        align-items: center !important;
        height: auto !important;
        text-transform: uppercase !important;
        font-size: 14px !important;
    }

    .hud__cart-plus {
        color: #fff !important;
        font-weight: 400 !important;
        margin-left: 5px !important;
    }
}

/* ============================================
   GLOBAL OVERRIDES (Re-applied to ensure Desktop support)
   ============================================ */

/* Remove Header Buttons Border/Background */
.hud__cart,
.hud__btn,
.hud__cart:hover {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #fff !important;
}

/* Footer Style: No top border, more padding, rougher font */
.cpfm-footer {
    border-top: none !important;
    padding-top: 80px !important;
    font-weight: 900 !important;
    font-size: 14px !important;
    letter-spacing: 2px !important;
}

/* FORCE WHITE BUTTONS & ALIGNMENT */
.hud__cart,
.hud__btn {
    color: #fff !important;
    font-family: 'Space Mono', monospace !important;
    font-weight: 700 !important;
    background: transparent !important;
    border: none !important;
    padding: 0 10px !important;
    margin: 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    display: inline-flex !important;
    align-items: center !important;
    height: auto !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
}

.hud__cart-plus {
    color: #fff !important;
    font-weight: 400 !important;
    margin-left: 5px !important;
}

/* FINAL HEADER FIX - CROPPING */
.hud {
    padding-top: 30px !important;
    align-items: flex-start !important;
}