* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #171717;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* .site-announcement {
    background: #171717;
    color: #ffffff;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    letter-spacing: 0.2px;
} */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #eee8df;
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.6px;
}

.nav {
    display: flex;
    gap: 28px;
    font-size: 14px;
}

.header-actions {
    display: flex;
    gap: 18px;
    font-size: 14px;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero {
    min-height: 72vh;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 42px;
    padding: 72px 24px;
    background: #f7f4ef;
}

.hero-content {
    max-width: 560px;
    margin-left: auto;
}

.eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #8b6f4e;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 76px);
    line-height: 0.96;
    margin: 0 0 22px;
    letter-spacing: -3px;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    color: #5f5f5f;
    margin: 0 0 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    background: #171717;
    color: #ffffff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #171717;
}

.btn:hover {
    background: #2b2b2b;
}

.btn-light {
    background: transparent;
    color: #171717;
    border-color: #cfc4b6;
}

.btn-light:hover {
    background: #fff;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-visual {
    min-height: 560px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.8), transparent 30%),
        linear-gradient(135deg, #eadfce, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: auto;
    width: min(520px, 100%);
    border: 1px solid #eadfce;
}

.hero-product-card {
    width: 68%;
    aspect-ratio: 1 / 1.18;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 38px;
    text-align: center;
}

.hero-product-card span {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.section {
    padding: 84px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 30px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(30px, 3vw, 46px);
    letter-spacing: -1.5px;
}

.section-head p {
    margin: 10px 0 0;
    color: #666;
    max-width: 520px;
    line-height: 1.6;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    position: relative;
}

.product-image {
    background: #f7f4ef;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #eee8df;
    margin-bottom: 14px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.045);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #8b8176;
    text-align: center;
    padding: 20px;
    font-weight: 700;
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ffffff;
    color: #171717;
    border: 1px solid #eee8df;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 700;
}

.product-title {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 6px;
}

.product-meta {
    color: #777;
    font-size: 13px;
    margin-bottom: 8px;
}

.product-price {
    font-size: 14px;
    font-weight: 800;
}

.sale-price {
    margin-left: 8px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.brand-strip {
    background: #171717;
    color: #fff;
    padding: 60px 0;
}

.brand-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.brand-strip h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.brand-strip p {
    margin: 0;
    color: #d8d8d8;
    line-height: 1.6;
}




@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 54px;
    }

    .hero-content {
        margin: 0;
    }

    .hero-visual {
        margin: 0;
        min-height: 420px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-strip-inner {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }
}

@media (max-width: 560px) {
    .header-inner {
        padding: 16px;
    }

    .header-actions {
        gap: 12px;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 44px 16px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-visual {
        min-height: 340px;
        border-radius: 24px;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .product-image {
        border-radius: 18px;
    }

    .section {
        padding: 60px 0;
    }

    .section-head {
        display: block;
    }

    .footer-inner {
        flex-direction: column;
    }
}

.shop-hero {
    background: #f7f4ef;
    padding: 64px 0 46px;
    border-bottom: 1px solid #eee8df;
}

.shop-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(38px, 5vw, 66px);
    letter-spacing: -2.5px;
    line-height: 1;
}

.shop-hero p {
    margin: 0;
    color: #666;
    font-size: 17px;
    line-height: 1.7;
    max-width: 620px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: start;
}

.shop-sidebar {
    background: #fff;
    border: 1px solid #eee8df;
    border-radius: 24px;
    padding: 22px;
    position: sticky;
    top: 94px;
}

.shop-filter-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 800;
    margin: 0 0 16px;
}

.filter-group {
    border-top: 1px solid #eee8df;
    padding-top: 18px;
    margin-top: 18px;
}

.filter-group:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.filter-group h3 {
    margin: 0 0 12px;
    font-size: 15px;
}

.filter-link {
    display: block;
    padding: 8px 0;
    color: #666;
    font-size: 14px;
}

.filter-link:hover,
.filter-link.active {
    color: #171717;
    font-weight: 800;
}

.shop-topbar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 24px;
}

.shop-count {
    color: #666;
    font-size: 14px;
}

.shop-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.shop-search {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.shop-search input,
.shop-controls select {
    border: 1px solid #ddd4ca;
    border-radius: 999px;
    padding: 13px 16px;
    outline: none;
    background: #fff;
    font-size: 14px;
}

.shop-search input {
    width: 100%;
}

.shop-search button {
    border: none;
    border-radius: 999px;
    padding: 0 22px;
    background: #171717;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.empty-state {
    background: #fff;
    border: 1px solid #eee8df;
    border-radius: 24px;
    padding: 42px;
    text-align: center;
}

.empty-state h2 {
    margin: 0 0 10px;
}

.empty-state p {
    margin: 0 0 20px;
    color: #666;
}

@media (max-width: 980px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: relative;
        top: 0;
    }

    .shop-topbar {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .shop-search {
        flex-direction: column;
    }

    .shop-search button {
        min-height: 46px;
    }

    .shop-controls {
        width: 100%;
    }

    .shop-controls select {
        width: 100%;
    }
}

.product-detail {
    padding: 64px 0 84px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 56px;
    align-items: start;
}

.product-gallery {
    display: grid;
    gap: 16px;
}

.product-main-image {
    background: #f7f4ef;
    border: 1px solid #eee8df;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.product-thumb {
    border: 1px solid #eee8df;
    border-radius: 16px;
    overflow: hidden;
    background: #f7f4ef;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    position: sticky;
    top: 110px;
}

.product-breadcrumb {
    color: #777;
    font-size: 13px;
    margin-bottom: 20px;
}

.product-breadcrumb a {
    color: #777;
}

.product-info h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -2px;
}

.product-info .product-price-large {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
}

.product-info .product-price-large .old-price {
    font-size: 17px;
    margin-right: 8px;
}

.product-short {
    color: #5f5f5f;
    line-height: 1.75;
    font-size: 16px;
    margin-bottom: 24px;
}

.stock-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid #eee8df;
    background: #fff;
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 22px;
}

.product-actions {
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
}

.quantity-row {
    display: flex;
    gap: 12px;
}

.quantity-row input {
    width: 96px;
    border: 1px solid #ddd4ca;
    border-radius: 999px;
    padding: 0 16px;
    font-size: 15px;
    text-align: center;
}

.product-actions .btn {
    width: 100%;
    min-height: 52px;
}

.product-trust {
    display: grid;
    gap: 10px;
    margin-bottom: 26px;
    color: #666;
    font-size: 14px;
}

.product-accordion {
    border-top: 1px solid #eee8df;
}

.accordion-item {
    border-bottom: 1px solid #eee8df;
    padding: 18px 0;
}

.accordion-item summary {
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.accordion-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.related-section {
    background: #f7f4ef;
}

@media (max-width: 980px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .product-info {
        position: relative;
        top: 0;
    }
}

@media (max-width: 560px) {
    .product-detail {
        padding-top: 34px;
    }

    .product-main-image {
        border-radius: 22px;
    }

    .product-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 34px;
    align-items: start;
}

.cart-items {
    display: grid;
    gap: 16px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 18px;
    background: #fff;
    border: 1px solid #eee8df;
    border-radius: 24px;
    padding: 16px;
    align-items: center;
}

.cart-item-image {
    width: 120px;
    aspect-ratio: 1 / 1;
    background: #f7f4ef;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eee8df;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.cart-item-info p {
    margin: 0 0 12px;
    color: #666;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-item-actions input {
    width: 82px;
    border: 1px solid #ddd4ca;
    border-radius: 999px;
    padding: 10px 12px;
    text-align: center;
}

.cart-item-actions a {
    color: #777;
    font-size: 14px;
    text-decoration: underline;
}

.cart-item-total {
    font-weight: 800;
}

.cart-summary {
    background: #f7f4ef;
    border: 1px solid #eee8df;
    border-radius: 24px;
    padding: 24px;
    position: sticky;
    top: 110px;
}

.cart-summary h2 {
    margin: 0 0 20px;
    font-size: 22px;
}

.summary-row,
.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #e2d8cc;
    color: #555;
}

.summary-total {
    font-size: 20px;
    color: #171717;
    border-bottom: none;
    margin-bottom: 18px;
}

.cart-summary .btn {
    width: 100%;
    margin-bottom: 12px;
}

.cart-note {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    margin: 6px 0 0;
}

@media (max-width: 980px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: relative;
        top: 0;
    }
}

@media (max-width: 620px) {
    .cart-item {
        grid-template-columns: 86px 1fr;
    }

    .cart-item-image {
        width: 86px;
    }

    .cart-item-total {
        grid-column: 2;
    }
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 34px;
    align-items: start;
}

.checkout-form,
.checkout-summary {
    background: #fff;
    border: 1px solid #eee8df;
    border-radius: 24px;
    padding: 24px;
}

.checkout-summary {
    background: #f7f4ef;
    position: sticky;
    top: 110px;
}

.checkout-form h2,
.checkout-summary h2 {
    margin: 0 0 22px;
    font-size: 24px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.checkout-field {
    margin-bottom: 18px;
}

.checkout-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
}

.checkout-field input,
.checkout-field select,
.checkout-field textarea {
    width: 100%;
    border: 1px solid #ddd4ca;
    border-radius: 14px;
    padding: 13px 14px;
    font-size: 15px;
    outline: none;
    background: #fff;
}

.checkout-field textarea {
    min-height: 110px;
    resize: vertical;
}

.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
    border-color: #9b7c55;
}

.checkout-product {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #e2d8cc;
}

.checkout-product-image {
    width: 64px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid #eee8df;
    border-radius: 14px;
    overflow: hidden;
}

.checkout-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-product h3 {
    margin: 0 0 4px;
    font-size: 14px;
}

.checkout-product p {
    margin: 0;
    color: #666;
    font-size: 13px;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #e2d8cc;
    color: #555;
}

.checkout-grand-total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    font-size: 22px;
    font-weight: 900;
}

.checkout-summary .btn {
    width: 100%;
}

.success-box {
    background: #effaf1;
    border: 1px solid #ccefd4;
    color: #176d2e;
    border-radius: 24px;
    padding: 34px;
    text-align: center;
}

.success-box h1 {
    margin-top: 0;
}

@media (max-width: 980px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: relative;
        top: 0;
    }
}

@media (max-width: 620px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

.header-search {
    margin: 0;
}

.header-search input {
    width: 150px;
    border: 1px solid #ddd4ca;
    border-radius: 999px;
    padding: 9px 13px;
    font-size: 13px;
    outline: none;
    background: #fff;
}

.header-search input:focus {
    border-color: #9b7c55;
}

@media (max-width: 760px) {
    .header-search {
        display: none;
    }
}

.newsletter-alert {
    max-width: 1180px;
    margin: 18px auto;
    padding: 14px 18px;
    border-radius: 16px;
    background: #edf8ef;
    color: #226b35;
    border: 1px solid #ccebd2;
    font-weight: 700;
}

.newsletter-alert-error {
    background: #fff0f0;
    color: #a33131;
    border-color: #ffd0d0;
}


.discount-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(8px);
}

.discount-popup-overlay.show {
    display: flex;
}

.discount-popup {
    position: relative;
    width: min(480px, 100%);
    padding: 34px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(217, 176, 117, 0.18), transparent 34%),
        #fffaf3;
    border: 1px solid rgba(120, 82, 38, 0.16);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
    text-align: center;
    animation: popupRise 0.45s ease forwards;
}

.discount-popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #1d1a17;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.discount-popup-label {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #1d1a17;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.discount-popup h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.05;
    color: #1d1a17;
}

.discount-popup p {
    margin: 0 0 22px;
    color: #6d6258;
    line-height: 1.7;
}

.discount-popup-form {
    display: grid;
    gap: 10px;
}

.discount-popup-form input {
    width: 100%;
    border: 1px solid #e1d4c3;
    border-radius: 999px;
    padding: 14px 18px;
    background: #ffffff;
    color: #1d1a17;
    outline: none;
}

.discount-popup-form button {
    border: none;
    border-radius: 999px;
    padding: 14px 18px;
    background: #1d1a17;
    color: #ffffff;
    font-weight: 900;
    cursor: pointer;
}

.discount-popup-skip {
    margin-top: 14px;
    border: none;
    background: transparent;
    color: #7a6c60;
    cursor: pointer;
    text-decoration: underline;
}

@keyframes popupRise {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 520px) {
    .discount-popup {
        padding: 28px 20px;
        border-radius: 24px;
    }
}

.checkout-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    width: min(420px, calc(100% - 32px));
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f1fff4;
    color: #205c2e;
    border: 1px solid #bfe8c8;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
    animation: checkoutToastSlide 0.35s ease forwards;
}

.checkout-toast-error {
    background: #fff2f2;
    color: #9f2525;
    border-color: #ffcaca;
}

.checkout-toast-success {
    background: #f1fff4;
    color: #205c2e;
    border-color: #bfe8c8;
}

.checkout-toast strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.checkout-toast p {
    margin: 0;
    line-height: 1.5;
    font-size: 14px;
}

.checkout-toast button {
    border: none;
    background: transparent;
    color: inherit;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.checkout-toast.hide {
    animation: checkoutToastOut 0.25s ease forwards;
}

@keyframes checkoutToastSlide {
    from {
        opacity: 0;
        transform: translateY(-12px) translateX(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

@keyframes checkoutToastOut {
    from {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px) translateX(16px);
    }
}

@media (max-width: 640px) {
    .checkout-toast {
        top: 16px;
        right: 16px;
        left: 16px;
        width: auto;
    }
}

.variation-box {
    margin: 22px 0;
    padding: 18px;
    border-radius: 20px;
    background: #fffaf3;
    border: 1px solid #e8dac9;
}

.variation-box h3 {
    margin: 0 0 14px;
    font-size: 17px;
}

.variation-options {
    display: grid;
    gap: 10px;
}

.variation-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid #e3d8ca;
    background: #fff;
    cursor: pointer;
}

.variation-option input {
    accent-color: #1d1a17;
}

.variation-swatch {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    flex: 0 0 auto;
}

.variation-option strong {
    display: block;
}

.variation-option small {
    display: block;
    margin-top: 2px;
    color: #7a6c60;
    font-size: 12px;
}

.variation-option.variation-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f3eee8;
}

.variation-option.variation-disabled input,
.variation-option.variation-disabled span {
    pointer-events: none;
}

.logo-image {
    display: inline-flex;
    align-items: center;
}

.logo-image img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 560px) {
    .logo-image img {
        height: 34px;
    }
}

.hero-visual-image {
    position: relative;
    padding: 0;
    background: #f3eee7;
}

.hero-visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    max-width: 260px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.hero-floating-card span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 900;
    color: #8b6f4e;
}

.hero-floating-card strong {
    display: block;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

@media (max-width: 560px) {
    .hero-floating-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }

    .hero-floating-card strong {
        font-size: 17px;
    }
}

.site-footer {
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.72), transparent 34%),
        linear-gradient(180deg, #f8f4ee 0%, #efe7dc 100%);
    padding: 72px 0 26px;
    border-top: 1px solid #e7dacb;
}



.newsletter-form input {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    outline: none;
    font-size: 14px;
}

.newsletter-form input:focus {
    border-color: rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.newsletter-form button {
    min-height: 52px;
    border: none;
    border-radius: 999px;
    padding: 0 22px;
    background: #ffffff;
    color: #171717;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.newsletter-form button:hover {
    transform: translateY(-1px);
    background: #f4eadc;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.8fr 0.8fr;
    gap: 38px;
    align-items: start;
}

.footer-brand p {
    margin: 18px 0 22px;
    max-width: 430px;
    color: #5f574f;
    line-height: 1.75;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-logo img {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.footer-socials {
    display: grid;
    gap: 10px;
}

.footer-socials a,
.footer-column a {
    color: #5f574f;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.footer-socials a:hover,
.footer-column a:hover {
    color: #171717;
}

.footer-column {
    display: grid;
    gap: 10px;
}

.footer-column h3 {
    margin: 0 0 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #171717;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 46px;
    padding-top: 22px;
    border-top: 1px solid #ded1c1;
    color: #70665c;
    font-size: 13px;
}

@media (max-width: 980px) {
    .footer-newsletter-card,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-newsletter-card {
        padding: 30px 24px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .site-footer {
        padding-top: 54px;
    }

    .footer-newsletter-card {
        border-radius: 26px;
        margin-bottom: 36px;
    }

    .footer-newsletter-card h2 {
        letter-spacing: -1px;
    }

    .footer-logo img {
        height: 44px;
    }
}

/* LOVE-U Premium Homepage Polish */

.lue-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 86px;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.9), transparent 30%),
        radial-gradient(circle at 86% 12%, rgba(199, 161, 120, 0.18), transparent 34%),
        linear-gradient(135deg, #f9f4ec 0%, #f0e5d7 52%, #fffaf4 100%);
}

.lue-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 58px;
    align-items: center;
}

.lue-hero-content {
    max-width: 680px;
}

.lue-hero-content h1 {
    margin: 0 0 24px;
    font-size: clamp(46px, 6vw, 86px);
    line-height: 0.92;
    letter-spacing: -4px;
    color: #151311;
}

.lue-hero-content p {
    max-width: 610px;
    margin: 0 0 34px;
    color: #63594f;
    font-size: 18px;
    line-height: 1.75;
}

.lue-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.lue-hero-points span {
    display: inline-flex;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(119, 91, 62, 0.14);
    color: #6b5845;
    font-size: 13px;
    font-weight: 800;
}

.lue-hero-visual {
    position: relative;
    min-height: 620px;
}

.lue-hero-image-wrap {
    position: relative;
    height: 620px;
    border-radius: 42px;
    overflow: hidden;
    border: 1px solid rgba(120, 82, 38, 0.14);
    box-shadow: 0 34px 90px rgba(70, 52, 33, 0.20);
    background: #eee2d2;
}

.lue-hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.18)),
        radial-gradient(circle at 50% 18%, transparent 30%, rgba(255,255,255,0.08));
    pointer-events: none;
}

.lue-hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    animation: lueImageFloat 8s ease-in-out infinite alternate;
}

.lue-hero-card {
    position: absolute;
    z-index: 3;
    width: min(270px, 72%);
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.66);
    box-shadow: 0 20px 58px rgba(0,0,0,0.14);
}

.lue-hero-card span {
    display: block;
    margin-bottom: 6px;
    color: #8b6f4e;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.lue-hero-card strong {
    display: block;
    color: #171717;
    font-size: 19px;
    line-height: 1.18;
}

.lue-card-top {
    top: 42px;
    left: -34px;
}

.lue-card-bottom {
    right: -24px;
    bottom: 54px;
}

.lue-hero-bg-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.55;
    pointer-events: none;
}

.lue-orb-one {
    width: 260px;
    height: 260px;
    left: -80px;
    top: 18%;
    background: rgba(209, 173, 132, 0.28);
    animation: lueOrbMove 9s ease-in-out infinite alternate;
}

.lue-orb-two {
    width: 360px;
    height: 360px;
    right: -120px;
    bottom: 8%;
    background: rgba(255, 255, 255, 0.64);
    animation: lueOrbMove 11s ease-in-out infinite alternate-reverse;
}

.lue-trust-row {
    padding: 28px 0;
    background: #171717;
    color: #ffffff;
}

.lue-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lue-trust-grid div {
    padding: 18px 0;
}

.lue-trust-grid span {
    display: block;
    margin-bottom: 10px;
    color: #d8bd96;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.lue-trust-grid strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.lue-trust-grid p {
    margin: 0;
    color: rgba(255,255,255,0.68);
    line-height: 1.6;
}

.lue-product-section {
    background: #fffaf4;
}

.lue-product-section-alt {
    background: #f7efe5;
}

.lue-animated-grid > div {
    min-width: 0;
}

.lue-story-section {
    padding: 96px 0;
    background:
        radial-gradient(circle at top left, rgba(139, 111, 78, 0.12), transparent 34%),
        #171717;
    color: #ffffff;
}

.lue-story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 58px;
    align-items: center;
}

.lue-story-image {
    min-height: 520px;
    overflow: hidden;
    border-radius: 38px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.28);
}

.lue-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: lueImageFloat 9s ease-in-out infinite alternate;
}

.lue-story-content h2 {
    margin: 0 0 18px;
    max-width: 620px;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -2.4px;
}

.lue-story-content p {
    margin: 0 0 24px;
    max-width: 590px;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    font-size: 17px;
}

.lue-story-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 30px;
}

.lue-story-list span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #f5e6d2;
    font-weight: 800;
    font-size: 13px;
}

.lue-banner-cta {
    padding: 92px 0;
    background: linear-gradient(135deg, #efe3d3, #fffaf4);
}

.lue-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 42px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.8), transparent 32%),
        #171717;
    color: #ffffff;
    box-shadow: 0 28px 80px rgba(23, 23, 23, 0.18);
}

.lue-banner-inner h2 {
    margin: 0 0 10px;
    max-width: 720px;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -1.8px;
}

.lue-banner-inner p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
}

.lue-banner-inner .btn {
    background: #ffffff;
    color: #171717;
    border-color: #ffffff;
    flex: 0 0 auto;
}

.reveal-up {
    opacity: 0;
    transform: translateY(22px);
    animation: lueRevealUp 0.8s cubic-bezier(.2,.8,.2,1) forwards;
}

.reveal-delay-1 {
    animation-delay: 0.12s;
}

.reveal-delay-2 {
    animation-delay: 0.24s;
}

@keyframes lueRevealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lueImageFloat {
    from {
        transform: scale(1.03) translateY(0);
    }

    to {
        transform: scale(1.07) translateY(-10px);
    }
}

@keyframes lueOrbMove {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(20px, -18px, 0) scale(1.08);
    }
}

.product-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 60px rgba(80, 57, 34, 0.12);
    border-color: #dac6ad;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-image img {
    transition: transform 0.5s ease;
}

@media (max-width: 980px) {
    .lue-hero-inner,
    .lue-story-grid,
    .lue-trust-grid {
        grid-template-columns: 1fr;
    }

    .lue-hero {
        padding-top: 64px;
    }

    .lue-hero-content h1 {
        letter-spacing: -2.4px;
    }

    .lue-hero-visual,
    .lue-hero-image-wrap {
        min-height: auto;
        height: 520px;
    }

    .lue-card-top {
        left: 18px;
    }

    .lue-card-bottom {
        right: 18px;
    }

    .lue-banner-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .lue-hero {
        padding: 48px 0 58px;
    }

    .lue-hero-content h1 {
        font-size: 44px;
        letter-spacing: -1.8px;
    }

    .lue-hero-content p {
        font-size: 16px;
    }

    .lue-hero-visual,
    .lue-hero-image-wrap {
        height: 430px;
    }

    .lue-hero-card {
        width: calc(100% - 36px);
    }

    .lue-card-top {
        top: 18px;
        left: 18px;
    }

    .lue-card-bottom {
        right: 18px;
        bottom: 18px;
    }

    .lue-story-section,
    .lue-banner-cta {
        padding: 62px 0;
    }

    .lue-story-image {
        min-height: 360px;
        border-radius: 28px;
    }

    .lue-banner-inner {
        padding: 28px 22px;
        border-radius: 28px;
    }
}

/* Popup safety fix after homepage animation polish */


.discount-popup-overlay.show .discount-popup {
    animation: popupRise 0.45s ease forwards;
}

.discount-popup-overlay {
    display: none;
}

.discount-popup-overlay.show {
    display: flex;
}

.discount-popup-overlay.is-hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.discount-popup-overlay.show {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Story section image height protection */
.lue-story-image {
    height: clamp(360px, 42vw, 520px);
    max-height: 520px;
    min-height: 360px;
}

.lue-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Optional: better crop position for product photos */
.lue-story-image.story-product-focus img {
    object-position: center 45%;
}

@media (max-width: 768px) {
    .lue-story-image {
        height: 360px;
        max-height: 360px;
        min-height: 360px;
    }
}

@media (max-width: 480px) {
    .lue-story-image {
        height: 320px;
        max-height: 320px;
        min-height: 320px;
    }
}

/* LOVE-U Soft Luxury Footer */

.lue-footer {
    position: relative;
    overflow: hidden;
    padding: 76px 0 28px;
    background:
        radial-gradient(circle at 12% 0%, rgba(255,255,255,0.9), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(218,198,173,0.36), transparent 36%),
        linear-gradient(180deg, #fffaf4 0%, #f1e5d7 100%);
    border-top: 1px solid #eadfce;
}

.lue-footer::before {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -140px;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: rgba(204, 169, 126, 0.18);
    filter: blur(4px);
    pointer-events: none;
}

.lue-footer .container {
    position: relative;
    z-index: 2;
}

.lue-footer-newsletter {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 54px;
    padding: 34px;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,250,244,0.78)),
        #fffaf4;
    border: 1px solid rgba(139,111,78,0.16);
    box-shadow: 0 24px 70px rgba(94, 67, 37, 0.10);
}

.lue-footer-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 13px;
    border-radius: 999px;
    background: #171717;
    color: #f4e3cc;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.lue-footer-newsletter h2 {
    margin: 0 0 12px;
    max-width: 620px;
    color: #171717;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -1.7px;
}

.lue-footer-newsletter p {
    margin: 0;
    max-width: 610px;
    color: #675c51;
    font-size: 15px;
    line-height: 1.75;
}

.lue-newsletter-form {
    display: grid;
    grid-template-columns: 1fr 1.1fr auto;
    gap: 10px;
    align-items: center;
    padding: 8px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #eadfce;
    box-shadow: 0 14px 42px rgba(94, 67, 37, 0.08);
}

.lue-newsletter-form input {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 999px;
    padding: 0 16px;
    background: transparent;
    color: #171717;
    outline: none;
    font-size: 14px;
}

.lue-newsletter-form input::placeholder {
    color: #9b8d7d;
}

.lue-newsletter-form input:focus {
    background: #fbf4ec;
}

.lue-newsletter-form button {
    height: 46px;
    border: none;
    border-radius: 999px;
    padding: 0 22px;
    background: #171717;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease;
}

.lue-newsletter-form button:hover {
    transform: translateY(-1px);
    background: #2a241f;
}

.lue-footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 1.45fr) 0.72fr 0.78fr 0.86fr;
    gap: 42px;
    align-items: start;
    padding: 10px 0 38px;
}

.lue-footer-logo {
    display: inline-flex;
    align-items: center;
}

.lue-footer-logo img {
    height: 58px;
    width: auto;
    object-fit: contain;
}

.lue-footer-brand p {
    margin: 18px 0 24px;
    max-width: 430px;
    color: #675c51;
    line-height: 1.75;
    font-size: 15px;
}

.lue-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 520px;
}

.lue-footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    padding: 7px 13px 7px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(139,111,78,0.16);
    color: #4f463e;
    font-size: 13px;
    font-weight: 800;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.lue-footer-socials a:hover {
    transform: translateY(-2px);
    background: #ffffff;
    border-color: rgba(23,23,23,0.18);
    color: #171717;
}

.lue-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #f3e6d6;
    color: #171717;
    flex: 0 0 28px;
}

.lue-social-icon svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lue-social-icon svg path,
.lue-social-icon svg rect,
.lue-social-icon svg circle {
    vector-effect: non-scaling-stroke;
}

.lue-footer-column {
    display: grid;
    gap: 11px;
}

.lue-footer-column h3 {
    margin: 0 0 7px;
    color: #171717;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.lue-footer-column a {
    position: relative;
    width: fit-content;
    color: #675c51;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.22s ease, transform 0.22s ease;
}

.lue-footer-column a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: #171717;
    transition: width 0.22s ease;
}

.lue-footer-column a:hover {
    color: #171717;
    transform: translateX(2px);
}

.lue-footer-column a:hover::after {
    width: 100%;
}

.lue-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(139,111,78,0.16);
    color: #7c6f62;
    font-size: 13px;
}

@media (max-width: 1080px) {
    .lue-footer-newsletter,
    .lue-footer-main {
        grid-template-columns: 1fr;
    }

    .lue-newsletter-form {
        grid-template-columns: 1fr;
        border-radius: 26px;
        padding: 12px;
    }

    .lue-newsletter-form input,
    .lue-newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .lue-footer {
        padding: 56px 0 24px;
    }

    .lue-footer-newsletter {
        padding: 26px 20px;
        border-radius: 28px;
        margin-bottom: 42px;
    }

    .lue-footer-newsletter h2 {
        letter-spacing: -1px;
    }

    .lue-footer-logo img {
        height: 48px;
    }

    .lue-footer-socials {
        display: grid;
    }

    .lue-footer-socials a {
        width: 100%;
    }

    .lue-footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

/* LOVE-U Premium Shop Page */

.lue-shop-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 74px;
    background:
        radial-gradient(circle at 14% 10%, rgba(255,255,255,0.9), transparent 32%),
        radial-gradient(circle at 86% 20%, rgba(218,198,173,0.34), transparent 34%),
        linear-gradient(135deg, #fffaf4 0%, #efe3d3 100%);
}

.lue-shop-hero-orb {
    position: absolute;
    right: -120px;
    top: -120px;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: rgba(255,255,255,0.62);
    filter: blur(4px);
}

.lue-shop-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 34px;
}

.lue-shop-hero h1 {
    margin: 0 0 16px;
    max-width: 760px;
    color: #171717;
    font-size: clamp(46px, 6vw, 82px);
    line-height: 0.92;
    letter-spacing: -3.5px;
}

.lue-shop-hero p {
    margin: 0;
    max-width: 620px;
    color: #675c51;
    font-size: 17px;
    line-height: 1.75;
}

.lue-shop-hero-card {
    min-width: 210px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(139,111,78,0.14);
    box-shadow: 0 20px 60px rgba(94,67,37,0.10);
    backdrop-filter: blur(14px);
}

.lue-shop-hero-card span {
    display: block;
    margin-bottom: 3px;
    color: #171717;
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
}

.lue-shop-hero-card strong {
    display: block;
    margin-bottom: 6px;
    color: #171717;
    font-size: 14px;
}

.lue-shop-hero-card p {
    font-size: 13px;
    line-height: 1.5;
}

.lue-shop-page {
    padding: 44px 0 94px;
    background:
        linear-gradient(180deg, #fffaf4 0%, #ffffff 42%, #fffaf4 100%);
}

.lue-shop-search-panel {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 26px;
    padding: 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #eadfce;
    box-shadow: 0 18px 50px rgba(94,67,37,0.08);
}

.lue-search-input-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    padding-left: 14px;
}

.lue-search-input-wrap span {
    color: #8b6f4e;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.lue-shop-search-panel input[type="search"] {
    width: 100%;
    height: 48px;
    border: none;
    outline: none;
    background: transparent;
    color: #171717;
    font-size: 15px;
}

.lue-shop-search-panel input::placeholder {
    color: #9b8d7d;
}

.lue-shop-search-panel button,
.lue-reset-link,
.lue-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid #171717;
    background: #171717;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}

.lue-reset-link {
    background: transparent;
    color: #171717;
    border-color: #d8c8b5;
}

.shop-filter-checkbox {
    display: none;
}

.lue-mobile-shop-tools {
    display: none;
    margin-bottom: 20px;
    gap: 10px;
}

.lue-mobile-sort {
    flex: 1;
}

.lue-mobile-sort select {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid #e3d5c4;
    background: #ffffff;
    color: #171717;
    font-weight: 800;
}

.lue-shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 34px;
    align-items: start;
}

.lue-shop-sidebar {
    position: sticky;
    top: 112px;
    padding: 24px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,250,244,0.9));
    border: 1px solid #eadfce;
    box-shadow: 0 20px 54px rgba(94,67,37,0.08);
}

.lue-filter-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.lue-filter-panel-head span {
    display: block;
    margin-bottom: 4px;
    color: #8b6f4e;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.lue-filter-panel-head h2 {
    margin: 0;
    color: #171717;
    font-size: 28px;
    letter-spacing: -1px;
}

.lue-filter-close {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: #171717;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.filter-group {
    padding: 20px 0;
    border-top: 1px solid rgba(139,111,78,0.14);
}

.filter-group h3 {
    margin: 0 0 12px;
    color: #171717;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.filter-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    margin-bottom: 8px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.64);
    border: 1px solid transparent;
    color: #675c51;
    font-size: 14px;
    font-weight: 800;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.filter-link:hover {
    transform: translateX(2px);
    background: #ffffff;
    color: #171717;
    border-color: #eadfce;
}

.filter-link.active {
    background: #171717;
    color: #ffffff;
    border-color: #171717;
}

.lue-filter-note p {
    margin: 0;
    color: #7b6d60;
    font-size: 13px;
    line-height: 1.65;
}

.lue-shop-results {
    min-width: 0;
}

.lue-shop-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding: 18px 20px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid #eadfce;
}

.shop-count {
    color: #171717;
    font-weight: 900;
}

.lue-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 9px;
}

.lue-active-filters span {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: #f7efe5;
    color: #6b5845;
    font-size: 12px;
    font-weight: 800;
}

.lue-desktop-sort label {
    display: grid;
    gap: 6px;
    color: #8b6f4e;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.lue-desktop-sort select {
    min-width: 190px;
    height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #e3d5c4;
    background: #fffaf4;
    color: #171717;
    font-weight: 800;
    outline: none;
}

.lue-shop-grid {
    align-items: stretch;
}

.lue-shop-grid > div {
    min-width: 0;
}

.lue-shop-card {
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #eadfce;
}

.lue-shop-card-image {
    aspect-ratio: 1 / 1.08;
    background: #f7efe5;
}

.lue-shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lue-shop-card-body {
    padding: 18px;
}

.lue-shop-card-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    color: #8b7a69;
    font-size: 12px;
    font-weight: 800;
}

.lue-stock-dot {
    position: relative;
    padding-left: 12px;
    color: #5f7d4c;
    white-space: nowrap;
}

.lue-stock-dot::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: currentColor;
    transform: translateY(-50%);
}

.lue-stock-dot-out {
    color: #a24b3d;
}

.lue-shop-card-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
}

.lue-shop-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 34px;
    border-radius: 999px;
    background: #171717;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.lue-shop-empty {
    padding: 58px 24px;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid #eadfce;
}

.lue-shop-empty span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f7efe5;
    color: #8b6f4e;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .lue-shop-hero-inner {
        align-items: start;
        flex-direction: column;
    }

    .lue-shop-hero-card {
        width: 100%;
    }

    .lue-shop-search-panel {
        grid-template-columns: 1fr;
        border-radius: 28px;
    }

    .lue-search-input-wrap {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 6px 12px;
    }

    .lue-mobile-shop-tools {
        display: flex;
    }

    .lue-shop-layout {
        grid-template-columns: 1fr;
    }

    .lue-shop-sidebar {
        display: none;
        position: static;
        top: auto;
    }

    .shop-filter-checkbox:checked + .lue-mobile-shop-tools + .lue-shop-layout .lue-shop-sidebar {
        display: block;
    }

    .lue-filter-close {
        display: inline-flex;
    }

    .lue-desktop-sort {
        display: none;
    }

    .lue-shop-topbar {
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .lue-shop-hero {
        padding: 58px 0 50px;
    }

    .lue-shop-hero h1 {
        font-size: 46px;
        letter-spacing: -2px;
    }

    .lue-shop-page {
        padding-top: 28px;
    }

    .lue-shop-card-body {
        padding: 15px;
    }

    .lue-shop-card-meta-row,
    .lue-shop-card-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .lue-shop-view {
        width: 100%;
    }
}

/* LOVE-U Account Auth Pages */

.lue-auth-page {
    position: relative;
    overflow: hidden;
    padding: 76px 0 96px;
    background:
        radial-gradient(circle at 12% 12%, rgba(255,255,255,0.9), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(218,198,173,0.34), transparent 34%),
        linear-gradient(135deg, #fffaf4 0%, #efe3d3 100%);
}

.lue-auth-orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(5px);
}

.lue-auth-orb-one {
    width: 300px;
    height: 300px;
    left: -120px;
    bottom: 12%;
    background: rgba(204, 169, 126, 0.20);
}

.lue-auth-orb-two {
    width: 380px;
    height: 380px;
    right: -160px;
    top: -120px;
    background: rgba(255,255,255,0.72);
}

.lue-auth-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.lue-auth-login-grid {
    grid-template-columns: 0.95fr 0.85fr;
}

.lue-auth-visual {
    position: relative;
}

.lue-auth-image {
    height: 680px;
    overflow: hidden;
    border-radius: 42px;
    border: 1px solid rgba(139,111,78,0.16);
    background: #f7efe5;
    box-shadow: 0 34px 90px rgba(94,67,37,0.16);
}

.lue-auth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: lueImageFloat 9s ease-in-out infinite alternate;
}

.lue-auth-floating-card {
    position: absolute;
    left: 28px;
    bottom: 28px;
    max-width: 320px;
    padding: 20px 22px;
    border-radius: 26px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.72);
    box-shadow: 0 20px 58px rgba(0,0,0,0.14);
}

.lue-auth-floating-card span {
    display: block;
    margin-bottom: 7px;
    color: #8b6f4e;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.lue-auth-floating-card strong {
    display: block;
    color: #171717;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.6px;
}

.lue-auth-card {
    padding: 38px;
    border-radius: 38px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,250,244,0.86));
    border: 1px solid rgba(139,111,78,0.16);
    box-shadow: 0 28px 80px rgba(94,67,37,0.12);
}

.lue-auth-card-wide {
    padding: 34px;
}

.lue-auth-head {
    margin-bottom: 26px;
}

.lue-auth-head h1 {
    margin: 0 0 14px;
    color: #171717;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 0.95;
    letter-spacing: -2.4px;
}

.lue-auth-head p {
    margin: 0;
    max-width: 560px;
    color: #675c51;
    font-size: 16px;
    line-height: 1.75;
}

.lue-auth-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #eef7ea;
    border: 1px solid #cfe8c6;
    color: #456b35;
    font-size: 14px;
    font-weight: 800;
}

.lue-auth-alert-error {
    background: #fff1ee;
    border-color: #efc7bf;
    color: #9a3f2f;
}

.lue-auth-form {
    display: grid;
    gap: 16px;
}

.lue-auth-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.lue-auth-field {
    display: grid;
    gap: 8px;
}

.lue-auth-field label {
    color: #171717;
    font-size: 13px;
    font-weight: 900;
}

.lue-auth-field input {
    width: 100%;
    min-height: 52px;
    border: 1px solid #e3d5c4;
    border-radius: 999px;
    padding: 0 17px;
    background: #ffffff;
    color: #171717;
    outline: none;
    font-size: 14px;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.lue-auth-field input:focus {
    border-color: #b79670;
    background: #fffaf4;
    box-shadow: 0 0 0 4px rgba(183,150,112,0.14);
}

.lue-auth-field input::placeholder {
    color: #a09284;
}

.lue-auth-field small {
    color: #7b6d60;
    line-height: 1.55;
}

.lue-auth-submit {
    width: 100%;
    margin-top: 4px;
    min-height: 54px;
}

.lue-auth-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(139,111,78,0.14);
    color: #675c51;
    font-size: 14px;
}

.lue-auth-switch a {
    color: #171717;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.lue-auth-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    justify-content: center;
}

.lue-auth-benefits span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f7efe5;
    color: #6b5845;
    font-size: 12px;
    font-weight: 900;
}

@media (max-width: 980px) {
    .lue-auth-grid,
    .lue-auth-login-grid {
        grid-template-columns: 1fr;
    }

    .lue-auth-image {
        height: 460px;
    }
}

@media (max-width: 640px) {
    .lue-auth-page {
        padding: 46px 0 66px;
    }

    .lue-auth-card,
    .lue-auth-card-wide {
        padding: 26px 20px;
        border-radius: 30px;
    }

    .lue-auth-form-grid {
        grid-template-columns: 1fr;
    }

    .lue-auth-image {
        height: 360px;
        border-radius: 30px;
    }

    .lue-auth-floating-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
        max-width: none;
    }

    .lue-auth-floating-card strong {
        font-size: 18px;
    }
}

/* Password visibility toggle */

.lue-password-wrap {
    position: relative;
}

.lue-password-wrap input {
    padding-right: 54px;
}

.lue-password-toggle {
    position: absolute;
    top: 50%;
    right: 9px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 999px;
    background: #f7efe5;
    color: #6b5845;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.lue-password-toggle:hover {
    background: #171717;
    color: #ffffff;
}

.lue-password-toggle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lue-password-toggle.is-visible {
    background: #171717;
    color: #ffffff;
}

/* LOVE-U Account Dashboard */

.lue-account-page {
    position: relative;
    overflow: hidden;
    padding: 72px 0 96px;
    background:
        radial-gradient(circle at 12% 6%, rgba(255,255,255,0.9), transparent 30%),
        radial-gradient(circle at 90% 8%, rgba(218,198,173,0.34), transparent 34%),
        linear-gradient(135deg, #fffaf4 0%, #efe3d3 100%);
}

.lue-account-orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(5px);
}

.lue-account-orb-one {
    width: 300px;
    height: 300px;
    left: -120px;
    bottom: 12%;
    background: rgba(204, 169, 126, 0.20);
}

.lue-account-orb-two {
    width: 380px;
    height: 380px;
    right: -160px;
    top: -120px;
    background: rgba(255,255,255,0.72);
}

.lue-account-page .container {
    position: relative;
    z-index: 2;
}

.lue-account-alert {
    margin-bottom: 22px;
    padding: 15px 18px;
    border-radius: 18px;
    background: #eef7ea;
    border: 1px solid #cfe8c6;
    color: #456b35;
    font-size: 14px;
    font-weight: 900;
}

.lue-account-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.lue-account-hero h1 {
    margin: 0 0 14px;
    color: #171717;
    font-size: clamp(44px, 6vw, 82px);
    line-height: 0.92;
    letter-spacing: -3.2px;
}

.lue-account-hero p {
    margin: 0;
    max-width: 680px;
    color: #675c51;
    font-size: 16px;
    line-height: 1.75;
}

.lue-account-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #eadfce;
    color: #171717;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 14px 40px rgba(94,67,37,0.08);
}

.lue-account-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.lue-account-stat {
    padding: 22px;
    border-radius: 28px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(139,111,78,0.15);
    box-shadow: 0 18px 48px rgba(94,67,37,0.08);
}

.lue-account-stat span {
    display: block;
    margin-bottom: 10px;
    color: #8b6f4e;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.35px;
    text-transform: uppercase;
}

.lue-account-stat strong {
    display: block;
    color: #171717;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -1.4px;
}

.lue-account-ref-code strong {
    font-size: 22px;
    letter-spacing: -0.4px;
    word-break: break-word;
}

.lue-account-stat p {
    margin: 10px 0 0;
    color: #75695d;
    font-size: 13px;
    line-height: 1.55;
}

.lue-account-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.lue-account-main {
    display: grid;
    gap: 24px;
    min-width: 0;
}

.lue-account-sidebar {
    position: sticky;
    top: 110px;
}

.lue-account-panel {
    padding: 26px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,250,244,0.84));
    border: 1px solid rgba(139,111,78,0.16);
    box-shadow: 0 22px 62px rgba(94,67,37,0.10);
}

.lue-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.lue-panel-head span {
    display: block;
    margin-bottom: 6px;
    color: #8b6f4e;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.lue-panel-head h2 {
    margin: 0;
    color: #171717;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1px;
}

.lue-panel-head a {
    color: #171717;
    font-size: 13px;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
    white-space: nowrap;
}

.lue-referral-panel p {
    margin: -6px 0 18px;
    color: #675c51;
    line-height: 1.65;
}

.lue-referral-copy {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #eadfce;
}

.lue-referral-copy input {
    width: 100%;
    min-height: 46px;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 14px;
    color: #171717;
    font-size: 14px;
}

.lue-referral-copy button {
    min-height: 46px;
    border: none;
    border-radius: 999px;
    padding: 0 18px;
    background: #171717;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

#referralCopyMessage {
    display: block;
    min-height: 20px;
    margin-top: 10px;
    color: #456b35;
    font-size: 13px;
    font-weight: 900;
    opacity: 0;
    transition: opacity 0.2s ease;
}

#referralCopyMessage.show {
    opacity: 1;
}

.lue-order-list {
    display: grid;
    gap: 12px;
}

.lue-order-card {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.85fr 0.85fr 0.8fr;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #eadfce;
}

.lue-order-card span {
    display: block;
    margin-bottom: 5px;
    color: #8b7a69;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lue-order-card strong {
    display: block;
    color: #171717;
    font-size: 14px;
    line-height: 1.35;
}

.lue-status-pill {
    display: inline-flex !important;
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: #f7efe5;
    color: #6b5845 !important;
}

.lue-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.lue-wishlist-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #eadfce;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.lue-wishlist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(94,67,37,0.10);
}

.lue-wishlist-image {
    aspect-ratio: 1 / 1;
    background: #f7efe5;
    overflow: hidden;
}

.lue-wishlist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lue-wishlist-card div:last-child {
    padding: 15px;
}

.lue-wishlist-card h3 {
    margin: 0 0 7px;
    color: #171717;
    font-size: 15px;
    line-height: 1.25;
}

.lue-wishlist-card p {
    margin: 0;
    color: #7b6d60;
    font-size: 12px;
    font-weight: 800;
}

.lue-account-empty {
    padding: 34px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px dashed #d8c8b5;
    text-align: center;
}

.lue-account-empty span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f7efe5;
    color: #8b6f4e;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.lue-account-empty h3 {
    margin: 0 0 9px;
    color: #171717;
    font-size: 24px;
    letter-spacing: -0.5px;
}

.lue-account-empty p {
    margin: 0 0 18px;
    color: #675c51;
    line-height: 1.65;
}

.lue-profile-avatar {
    width: 86px;
    height: 86px;
    margin: 0 auto 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #171717;
    color: #f4e3cc;
    font-size: 34px;
    font-weight: 900;
}

.lue-profile-name {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(139,111,78,0.14);
}

.lue-profile-name h3 {
    margin: 0 0 6px;
    color: #171717;
    font-size: 22px;
    line-height: 1.15;
}

.lue-profile-name p {
    margin: 0;
    color: #675c51;
    font-size: 13px;
    word-break: break-word;
}

.lue-profile-list {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}

.lue-profile-list div {
    padding: 14px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #eadfce;
}

.lue-profile-list span {
    display: block;
    margin-bottom: 5px;
    color: #8b7a69;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lue-profile-list strong {
    display: block;
    color: #171717;
    font-size: 14px;
    word-break: break-word;
}

.lue-profile-shop-btn {
    width: 100%;
}

@media (max-width: 1120px) {
    .lue-account-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .lue-account-layout {
        grid-template-columns: 1fr;
    }

    .lue-account-sidebar {
        position: static;
    }
}

@media (max-width: 780px) {
    .lue-account-page {
        padding: 52px 0 70px;
    }

    .lue-account-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .lue-account-hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .lue-account-logout {
        width: 100%;
    }

    .lue-order-card {
        grid-template-columns: 1fr 1fr;
    }

    .lue-wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lue-referral-copy {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }
}

@media (max-width: 520px) {
    .lue-account-stats {
        grid-template-columns: 1fr;
    }

    .lue-account-panel {
        padding: 22px 18px;
        border-radius: 28px;
    }

    .lue-panel-head {
        flex-direction: column;
    }

    .lue-order-card {
        grid-template-columns: 1fr;
    }

    .lue-wishlist-grid {
        grid-template-columns: 1fr;
    }
}

/* LOVE-U Premium Cart Page */

.lue-cart-page {
    position: relative;
    overflow: hidden;
    padding: 72px 0 96px;
    background:
        radial-gradient(circle at 12% 6%, rgba(255,255,255,0.9), transparent 30%),
        radial-gradient(circle at 90% 8%, rgba(218,198,173,0.34), transparent 34%),
        linear-gradient(135deg, #fffaf4 0%, #efe3d3 100%);
}

.lue-cart-orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(5px);
}

.lue-cart-orb-one {
    width: 300px;
    height: 300px;
    left: -120px;
    bottom: 12%;
    background: rgba(204, 169, 126, 0.20);
}

.lue-cart-orb-two {
    width: 380px;
    height: 380px;
    right: -160px;
    top: -120px;
    background: rgba(255,255,255,0.72);
}

.lue-cart-page .container {
    position: relative;
    z-index: 2;
}

.lue-cart-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.lue-cart-hero h1 {
    margin: 0 0 14px;
    color: #171717;
    font-size: clamp(46px, 6vw, 82px);
    line-height: 0.92;
    letter-spacing: -3.2px;
}

.lue-cart-hero p {
    margin: 0;
    max-width: 680px;
    color: #675c51;
    font-size: 16px;
    line-height: 1.75;
}

.lue-cart-continue,
.lue-cart-update-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #eadfce;
    color: #171717;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 40px rgba(94,67,37,0.08);
}

.lue-cart-alert {
    margin-bottom: 18px;
    padding: 15px 18px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #eadfce;
    color: #675c51;
    font-size: 14px;
    font-weight: 900;
}

.lue-cart-alert-success {
    background: #eef7ea;
    border-color: #cfe8c6;
    color: #456b35;
}

.lue-cart-alert-error {
    background: #fff1ee;
    border-color: #efc7bf;
    color: #9a3f2f;
}

.lue-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.lue-cart-items-panel,
.lue-cart-summary-card,
.lue-cart-empty {
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,250,244,0.84));
    border: 1px solid rgba(139,111,78,0.16);
    box-shadow: 0 22px 62px rgba(94,67,37,0.10);
}

.lue-cart-items-panel {
    padding: 26px;
}

.lue-cart-panel-head,
.lue-summary-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.lue-cart-panel-head span,
.lue-summary-head span {
    display: block;
    margin-bottom: 6px;
    color: #8b6f4e;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.lue-cart-panel-head h2,
.lue-summary-head h2 {
    margin: 0;
    color: #171717;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1px;
}

.lue-cart-items {
    display: grid;
    gap: 14px;
}

.lue-cart-item {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 18px;
    padding: 14px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid #eadfce;
}

.lue-cart-item-image {
    overflow: hidden;
    border-radius: 22px;
    background: #f7efe5;
    aspect-ratio: 1 / 1;
}

.lue-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lue-cart-item-info {
    min-width: 0;
    display: grid;
    gap: 18px;
}

.lue-cart-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.lue-cart-item h3 {
    margin: 0 0 7px;
    color: #171717;
    font-size: 19px;
    line-height: 1.25;
    letter-spacing: -0.35px;
}

.lue-cart-item h3 a {
    color: inherit;
}

.lue-cart-variation {
    margin: 0 0 6px;
    color: #675c51;
    font-size: 13px;
}

.lue-cart-unit-price {
    margin: 0;
    color: #8b7a69;
    font-size: 13px;
    font-weight: 800;
}

.lue-cart-remove {
    color: #9a3f2f;
    font-size: 13px;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
    white-space: nowrap;
}

.lue-cart-item-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.lue-qty-control {
    display: inline-grid;
    grid-template-columns: 38px 58px 38px;
    align-items: center;
    padding: 5px;
    border-radius: 999px;
    background: #f7efe5;
    border: 1px solid #eadfce;
}

.lue-qty-btn {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 999px;
    background: #ffffff;
    color: #171717;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease, opacity 0.22s ease;
}

.lue-qty-btn:hover {
    background: #171717;
    color: #ffffff;
}

.lue-qty-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.lue-qty-input {
    width: 58px;
    height: 38px;
    border: none;
    background: transparent;
    color: #171717;
    text-align: center;
    font-size: 15px;
    font-weight: 900;
    outline: none;
    appearance: textfield;
}

.lue-qty-input::-webkit-outer-spin-button,
.lue-qty-input::-webkit-inner-spin-button {
    appearance: none;
    margin: 0;
}

.lue-cart-line-total {
    text-align: right;
}

.lue-cart-line-total span {
    display: block;
    margin-bottom: 5px;
    color: #8b7a69;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lue-cart-line-total strong {
    display: block;
    color: #171717;
    font-size: 18px;
    letter-spacing: -0.4px;
}

.lue-cart-summary {
    position: sticky;
    top: 112px;
}

.lue-cart-summary-card {
    padding: 26px;
}

.lue-summary-lines {
    display: grid;
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid rgba(139,111,78,0.14);
    border-bottom: 1px solid rgba(139,111,78,0.14);
}

.lue-summary-row,
.lue-summary-total {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #675c51;
    font-size: 14px;
}

.lue-summary-row strong {
    color: #171717;
    font-size: 14px;
    text-align: right;
}

.lue-summary-total {
    align-items: flex-end;
    margin: 20px 0;
}

.lue-summary-total span {
    color: #171717;
    font-weight: 900;
}

.lue-summary-total strong {
    color: #171717;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -1px;
}

.lue-cart-summary-actions {
    display: grid;
    gap: 10px;
}

.lue-cart-summary-actions .btn {
    width: 100%;
}

.lue-cart-trust {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.lue-cart-trust span {
    position: relative;
    padding-left: 18px;
    color: #675c51;
    font-size: 13px;
    font-weight: 800;
}

.lue-cart-trust span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.48em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #8b6f4e;
}

.lue-cart-empty {
    max-width: 760px;
    margin: 0 auto;
    padding: 62px 28px;
    text-align: center;
}

.lue-cart-empty span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f7efe5;
    color: #8b6f4e;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.lue-cart-empty h2 {
    margin: 0 0 12px;
    color: #171717;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1;
    letter-spacing: -1.7px;
}

.lue-cart-empty p {
    margin: 0 auto 24px;
    max-width: 520px;
    color: #675c51;
    line-height: 1.7;
}

@media (max-width: 1080px) {
    .lue-cart-layout {
        grid-template-columns: 1fr;
    }

    .lue-cart-summary {
        position: static;
    }
}

@media (max-width: 720px) {
    .lue-cart-page {
        padding: 52px 0 72px;
    }

    .lue-cart-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .lue-cart-hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .lue-cart-continue,
    .lue-cart-update-top {
        width: 100%;
    }

    .lue-cart-panel-head {
        flex-direction: column;
    }

    .lue-cart-item {
        grid-template-columns: 100px 1fr;
        gap: 14px;
    }

    .lue-cart-item-top,
    .lue-cart-item-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .lue-cart-line-total {
        text-align: left;
    }
}

@media (max-width: 520px) {
    .lue-cart-items-panel,
    .lue-cart-summary-card {
        padding: 20px 16px;
        border-radius: 28px;
    }

    .lue-cart-item {
        grid-template-columns: 1fr;
    }

    .lue-cart-item-image {
        width: 100%;
        max-height: 260px;
    }

    .lue-qty-control {
        width: 100%;
        grid-template-columns: 44px 1fr 44px;
    }

    .lue-qty-input {
        width: 100%;
    }
}

/* LOVE-U Premium Wishlist Page */

.lue-wishlist-page {
    position: relative;
    overflow: hidden;
    padding: 72px 0 96px;
    background:
        radial-gradient(circle at 12% 6%, rgba(255,255,255,0.9), transparent 30%),
        radial-gradient(circle at 90% 8%, rgba(218,198,173,0.34), transparent 34%),
        linear-gradient(135deg, #fffaf4 0%, #efe3d3 100%);
}

.lue-wishlist-orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(5px);
}

.lue-wishlist-orb-one {
    width: 300px;
    height: 300px;
    left: -120px;
    bottom: 12%;
    background: rgba(204, 169, 126, 0.20);
}

.lue-wishlist-orb-two {
    width: 380px;
    height: 380px;
    right: -160px;
    top: -120px;
    background: rgba(255,255,255,0.72);
}

.lue-wishlist-page .container {
    position: relative;
    z-index: 2;
}

.lue-wishlist-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.lue-wishlist-hero h1 {
    margin: 0 0 14px;
    color: #171717;
    font-size: clamp(46px, 6vw, 82px);
    line-height: 0.92;
    letter-spacing: -3.2px;
}

.lue-wishlist-hero p {
    margin: 0;
    max-width: 680px;
    color: #675c51;
    font-size: 16px;
    line-height: 1.75;
}

.lue-wishlist-shop-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #eadfce;
    color: #171717;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 14px 40px rgba(94,67,37,0.08);
}

.lue-wishlist-alert {
    margin-bottom: 18px;
    padding: 15px 18px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #eadfce;
    color: #675c51;
    font-size: 14px;
    font-weight: 900;
}

.lue-wishlist-alert-success {
    background: #eef7ea;
    border-color: #cfe8c6;
    color: #456b35;
}

.lue-wishlist-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 22px;
    padding: 20px 22px;
    border-radius: 28px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(139,111,78,0.15);
    box-shadow: 0 18px 48px rgba(94,67,37,0.08);
}

.lue-wishlist-toolbar span {
    display: block;
    margin-bottom: 5px;
    color: #8b6f4e;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.35px;
    text-transform: uppercase;
}

.lue-wishlist-toolbar strong {
    display: block;
    color: #171717;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.7px;
}

.lue-wishlist-toolbar p {
    margin: 0;
    color: #675c51;
    font-size: 14px;
    line-height: 1.6;
}

.lue-wishlist-grid-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.lue-wishlist-product-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,250,244,0.86));
    border: 1px solid rgba(139,111,78,0.16);
    box-shadow: 0 20px 58px rgba(94,67,37,0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lue-wishlist-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 70px rgba(94,67,37,0.13);
}

.lue-wishlist-product-image {
    display: block;
    aspect-ratio: 1 / 1.08;
    overflow: hidden;
    background: #f7efe5;
}

.lue-wishlist-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.lue-wishlist-product-card:hover .lue-wishlist-product-image img {
    transform: scale(1.045);
}

.lue-wishlist-product-body {
    padding: 18px;
}

.lue-wishlist-product-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.lue-wishlist-product-meta span,
.lue-wishlist-product-meta strong {
    color: #8b7a69;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.35;
}

.lue-wishlist-product-meta strong {
    color: #5f7d4c;
    white-space: nowrap;
}

.lue-wishlist-product-body h3 {
    margin: 0 0 8px;
    color: #171717;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.35px;
}

.lue-wishlist-product-body h3 a {
    color: inherit;
}

.lue-wishlist-scent {
    margin: 0 0 12px;
    color: #675c51;
    font-size: 13px;
    line-height: 1.45;
}

.lue-wishlist-price {
    margin-bottom: 16px;
    color: #171717;
    font-size: 17px;
    font-weight: 900;
}

.lue-wishlist-actions {
    display: grid;
    gap: 9px;
}

.lue-wishlist-actions form {
    margin: 0;
}

.lue-wishlist-actions .btn {
    width: 100%;
}

.lue-wishlist-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid #eadfce;
    color: #9a3f2f;
    font-size: 13px;
    font-weight: 900;
    transition: background 0.22s ease, border-color 0.22s ease;
}

.lue-wishlist-remove:hover {
    background: #fff1ee;
    border-color: #efc7bf;
}

.lue-wishlist-empty {
    max-width: 760px;
    margin: 0 auto;
    padding: 62px 28px;
    text-align: center;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,250,244,0.84));
    border: 1px solid rgba(139,111,78,0.16);
    box-shadow: 0 22px 62px rgba(94,67,37,0.10);
}

.lue-wishlist-empty span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f7efe5;
    color: #8b6f4e;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.lue-wishlist-empty h2 {
    margin: 0 0 12px;
    color: #171717;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1;
    letter-spacing: -1.7px;
}

.lue-wishlist-empty p {
    margin: 0 auto 24px;
    max-width: 520px;
    color: #675c51;
    line-height: 1.7;
}

@media (max-width: 1120px) {
    .lue-wishlist-grid-page {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    .lue-wishlist-page {
        padding: 52px 0 72px;
    }

    .lue-wishlist-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .lue-wishlist-hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .lue-wishlist-shop-link {
        width: 100%;
    }

    .lue-wishlist-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .lue-wishlist-grid-page {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .lue-wishlist-grid-page {
        grid-template-columns: 1fr;
    }

    .lue-wishlist-product-card,
    .lue-wishlist-empty {
        border-radius: 28px;
    }

    .lue-wishlist-product-body {
        padding: 16px;
    }
}

/* LOVE-U Premium Product Detail Page */

.lue-product-page {
    position: relative;
    overflow: hidden;
    padding: 42px 0 86px;
    background:
        radial-gradient(circle at 12% 6%, rgba(255,255,255,0.9), transparent 30%),
        radial-gradient(circle at 90% 8%, rgba(218,198,173,0.34), transparent 34%),
        linear-gradient(135deg, #fffaf4 0%, #efe3d3 100%);
}

.lue-product-orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(5px);
}

.lue-product-orb-one {
    width: 300px;
    height: 300px;
    left: -120px;
    bottom: 16%;
    background: rgba(204, 169, 126, 0.20);
}

.lue-product-orb-two {
    width: 380px;
    height: 380px;
    right: -160px;
    top: -120px;
    background: rgba(255,255,255,0.72);
}

.lue-product-page .container {
    position: relative;
    z-index: 2;
}

.lue-product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    color: #7b6d60;
    font-size: 13px;
    font-weight: 800;
}

.lue-product-breadcrumb a {
    color: #171717;
}

.lue-product-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 42px;
    align-items: start;
}

.lue-product-gallery {
    position: sticky;
    top: 106px;
}

.lue-product-main-image {
    overflow: hidden;
    border-radius: 42px;
    background: #f7efe5;
    border: 1px solid rgba(139,111,78,0.16);
    box-shadow: 0 34px 90px rgba(94,67,37,0.16);
    aspect-ratio: 1 / 1.1;
}

.lue-product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lue-product-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.lue-product-thumb {
    overflow: hidden;
    height: 86px;
    border-radius: 18px;
    border: 2px solid transparent;
    background: #ffffff;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 12px 34px rgba(94,67,37,0.08);
}

.lue-product-thumb.active {
    border-color: #171717;
}

.lue-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lue-product-info-card,
.lue-product-accordion,
.lue-review-list-panel,
.lue-review-form-panel,
.lue-related-product-card {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,250,244,0.86));
    border: 1px solid rgba(139,111,78,0.16);
    box-shadow: 0 22px 62px rgba(94,67,37,0.10);
}

.lue-product-info-card {
    padding: 34px;
    border-radius: 38px;
}

.lue-product-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.lue-product-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    background: #171717;
    color: #f4e3cc;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.lue-product-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8b6f4e;
    font-size: 13px;
    font-weight: 900;
}

.lue-product-rating strong {
    color: #675c51;
    font-size: 12px;
}

.lue-product-info h1 {
    margin: 0 0 18px;
    color: #171717;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 0.92;
    letter-spacing: -2.8px;
}

.lue-product-price {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 18px;
}

.lue-product-price strong {
    color: #171717;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -1px;
}

.lue-product-short {
    margin-bottom: 20px;
    color: #675c51;
    font-size: 16px;
    line-height: 1.75;
}

.lue-product-alert {
    margin-bottom: 18px;
    padding: 15px 18px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #eadfce;
    color: #675c51;
    font-size: 14px;
    font-weight: 900;
}

.lue-product-alert-success {
    background: #eef7ea;
    border-color: #cfe8c6;
    color: #456b35;
}

.lue-product-alert-error {
    background: #fff1ee;
    border-color: #efc7bf;
    color: #9a3f2f;
}

.lue-product-stock {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 10px 13px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #eadfce;
    color: #675c51;
    font-size: 13px;
    font-weight: 900;
}

.lue-product-stock .lue-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #5f7d4c;
}

.lue-product-stock .lue-stock-dot-error {
    background: #9a3f2f;
}

.lue-product-actions {
    display: grid;
    gap: 16px;
}

.lue-variation-panel {
    padding: 18px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #eadfce;
}

.lue-variation-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.lue-variation-head span {
    display: block;
    margin-bottom: 4px;
    color: #8b6f4e;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.lue-variation-head h3 {
    margin: 0;
    color: #171717;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.lue-variation-head small {
    color: #675c51;
    font-weight: 900;
}

.lue-variation-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.lue-variation-option {
    position: relative;
    display: flex;
    gap: 11px;
    align-items: center;
    min-height: 64px;
    padding: 12px;
    border-radius: 20px;
    background: #fffaf4;
    border: 1px solid #eadfce;
    cursor: pointer;
    transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.lue-variation-option:hover {
    transform: translateY(-2px);
    background: #ffffff;
}

.lue-variation-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.lue-variation-option:has(input:checked) {
    border-color: #171717;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(94,67,37,0.10);
}

.lue-variation-option.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.lue-variation-swatch {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border-radius: 999px;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 1px rgba(23,23,23,0.16);
}

.lue-variation-copy {
    display: grid;
    gap: 2px;
}

.lue-variation-copy strong {
    color: #171717;
    font-size: 14px;
}

.lue-variation-copy small {
    color: #7b6d60;
    font-size: 12px;
    font-weight: 800;
}

.lue-product-purchase-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
}

.lue-product-cart-btn {
    width: 100%;
    min-height: 52px;
}

.lue-product-wishlist-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #eadfce;
    color: #171717;
    font-size: 13px;
    font-weight: 900;
}

.lue-product-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.lue-product-trust span {
    display: inline-flex;
    padding: 8px 11px;
    border-radius: 999px;
    background: #f7efe5;
    color: #6b5845;
    font-size: 12px;
    font-weight: 900;
}

.lue-product-accordion {
    margin-top: 18px;
    padding: 12px;
    border-radius: 30px;
}

.lue-accordion-item {
    padding: 16px 14px;
    border-bottom: 1px solid rgba(139,111,78,0.14);
}

.lue-accordion-item:last-child {
    border-bottom: none;
}

.lue-accordion-item summary {
    color: #171717;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
}

.lue-accordion-item p {
    margin: 12px 0 0;
    color: #675c51;
    line-height: 1.7;
}

.lue-review-section,
.lue-related-section {
    padding: 82px 0;
    background: #fffaf4;
}

.lue-review-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
    margin-bottom: 28px;
}

.lue-review-head h2 {
    margin: 0 0 12px;
    color: #171717;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -2px;
}

.lue-review-head p {
    margin: 0;
    max-width: 640px;
    color: #675c51;
    line-height: 1.7;
}

.lue-review-score {
    min-width: 180px;
    padding: 20px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #eadfce;
    text-align: center;
}

.lue-review-score span {
    display: block;
    color: #171717;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.lue-review-score strong {
    display: block;
    margin: 7px 0 4px;
    color: #8b6f4e;
}

.lue-review-score small {
    color: #675c51;
    font-weight: 800;
}

.lue-review-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.lue-review-list-panel,
.lue-review-form-panel {
    border-radius: 34px;
    padding: 26px;
}

.lue-review-form-panel {
    position: sticky;
    top: 110px;
}

.lue-review-panel-head {
    margin-bottom: 20px;
}

.lue-review-panel-head span {
    display: block;
    margin-bottom: 6px;
    color: #8b6f4e;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.lue-review-panel-head h3 {
    margin: 0;
    color: #171717;
    font-size: 28px;
    letter-spacing: -0.8px;
}

.lue-review-list {
    display: grid;
    gap: 14px;
}

.lue-review-card,
.lue-review-empty {
    padding: 20px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #eadfce;
}

.lue-review-stars {
    color: #8b6f4e;
    font-size: 18px;
    font-weight: 900;
}

.lue-review-card h3 {
    margin: 8px 0;
    color: #171717;
}

.lue-review-card p {
    color: #675c51;
    line-height: 1.7;
}

.lue-review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: #7b6d60;
    font-size: 13px;
}

.lue-review-meta strong {
    color: #171717;
}

.lue-review-meta span {
    padding: 5px 9px;
    border-radius: 999px;
    background: #eef7ea;
    color: #456b35;
    font-weight: 900;
}

.lue-review-media {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.lue-review-media a {
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #eadfce;
}

.lue-review-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lue-review-video-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    padding: 0 14px;
    background: #f7efe5;
    color: #171717;
    font-weight: 900;
}

.lue-review-login-text {
    color: #675c51;
    line-height: 1.7;
}

.lue-review-form {
    display: grid;
    gap: 14px;
}

.lue-review-field {
    display: grid;
    gap: 8px;
}

.lue-review-field label {
    color: #171717;
    font-size: 13px;
    font-weight: 900;
}

.lue-review-field input,
.lue-review-field select,
.lue-review-field textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid #e3d5c4;
    border-radius: 22px;
    padding: 0 15px;
    background: #ffffff;
    color: #171717;
    outline: none;
    font-size: 14px;
}

.lue-review-field textarea {
    min-height: 130px;
    padding-top: 14px;
    resize: vertical;
}

.lue-review-field small,
.lue-review-note {
    color: #7b6d60;
    font-size: 12px;
    line-height: 1.5;
}

.lue-review-submit-btn,
.lue-review-login-btn {
    width: 100%;
}

.lue-related-section {
    background: #ffffff;
}

.lue-related-grid {
    align-items: stretch;
}

.lue-related-product-card {
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
}

.lue-related-product-image {
    aspect-ratio: 1 / 1.05;
}

.lue-related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lue-related-product-body {
    padding: 18px;
}

.lue-related-view {
    display: inline-flex;
    margin-top: 12px;
    min-height: 36px;
    padding: 0 14px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #171717;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

@media (max-width: 1080px) {
    .lue-product-grid,
    .lue-review-layout {
        grid-template-columns: 1fr;
    }

    .lue-product-gallery,
    .lue-review-form-panel {
        position: static;
    }
}

@media (max-width: 720px) {
    .lue-product-page {
        padding-top: 28px;
    }

    .lue-product-info-card {
        padding: 24px 18px;
        border-radius: 30px;
    }

    .lue-product-topline,
    .lue-review-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .lue-product-info h1 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .lue-product-main-image {
        border-radius: 30px;
    }

    .lue-product-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .lue-product-purchase-row,
    .lue-variation-options {
        grid-template-columns: 1fr;
    }

    .lue-product-cart-btn {
        width: 100%;
    }

    .lue-product-qty {
        width: 100%;
        grid-template-columns: 44px 1fr 44px;
    }

    .lue-product-qty .lue-qty-input {
        width: 100%;
    }

    .lue-review-score {
        width: 100%;
    }
}

/* Checkout same-address control */

.lue-checkout-section-head {
    margin: 30px 0 16px;
}

.lue-checkout-section-head h2 {
    margin: 0 0 6px;
}

.lue-checkout-section-head p {
    margin: 0;
    color: #675c51;
    font-size: 14px;
    line-height: 1.6;
}

.lue-checkout-section-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.lue-same-address-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 8px 14px 8px 8px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #eadfce;
    color: #171717;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}

.lue-same-address-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.lue-same-address-toggle span {
    position: relative;
    width: 34px;
    height: 22px;
    border-radius: 999px;
    background: #eadfce;
    transition: background 0.22s ease;
}

.lue-same-address-toggle span::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.14);
    transition: transform 0.22s ease;
}

.lue-same-address-toggle input:checked + span {
    background: #171717;
}

.lue-same-address-toggle input:checked + span::after {
    transform: translateX(12px);
}

.checkout-field input.is-copied-address,
.checkout-field select.is-copied-address {
    background: #f7efe5;
    border-color: #d8c8b5;
}

@media (max-width: 720px) {
    .lue-checkout-section-head-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .lue-same-address-toggle {
        width: 100%;
        justify-content: flex-start;
    }
}

/* LOVE-U About Page */

.lue-about-page {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 90px 0;
    background:
        radial-gradient(circle at 12% 8%, rgba(244, 227, 204, 0.72), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(255, 250, 244, 0.95), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #fffaf4 48%, #f2e6d7 100%);
}

.lue-about-container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.lue-about-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    pointer-events: none;
}

.lue-about-orb-one {
    width: 340px;
    height: 340px;
    top: -120px;
    right: -100px;
    background: rgba(244, 227, 204, 0.55);
}

.lue-about-orb-two {
    width: 260px;
    height: 260px;
    left: -90px;
    bottom: 12%;
    background: rgba(231, 216, 196, 0.42);
}

.lue-about-hero {
    max-width: 820px;
    margin-bottom: 54px;
}

.lue-about-kicker,
.lue-about-label {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 13px;
    border-radius: 999px;
    background: #171717;
    color: #f4e3cc;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.lue-about-hero h1 {
    margin: 18px 0 18px;
    color: #171717;
    font-size: clamp(46px, 7vw, 92px);
    line-height: 0.92;
    letter-spacing: -4px;
}

.lue-about-hero p {
    max-width: 650px;
    margin: 0;
    color: #675c51;
    font-size: 19px;
    line-height: 1.7;
}

.lue-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 24px;
}

.lue-about-card,
.lue-about-statement,
.lue-about-closing {
    border: 1px solid rgba(139, 111, 78, 0.16);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 70px rgba(94, 67, 37, 0.08);
    backdrop-filter: blur(16px);
}

.lue-about-card {
    border-radius: 32px;
    padding: 34px;
}

.lue-about-story-card h2,
.lue-about-statement h2,
.lue-about-closing h2 {
    margin: 18px 0;
    color: #171717;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -1.8px;
}

.lue-about-card p,
.lue-about-statement p,
.lue-about-closing p,
.lue-about-values p {
    color: #675c51;
    font-size: 16px;
    line-height: 1.8;
}

.lue-about-card p:last-child,
.lue-about-statement p:last-child,
.lue-about-closing p:last-child {
    margin-bottom: 0;
}

.lue-about-highlight-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(180deg, rgba(23,23,23,0.08), rgba(23,23,23,0.02)),
        #fffaf4;
}

.lue-about-highlight-card h3 {
    margin: 0 0 12px;
    color: #171717;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.8px;
}

.lue-about-statement {
    margin-bottom: 24px;
    padding: 42px;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,250,244,0.88));
}

.lue-about-statement h2 {
    max-width: 850px;
    margin-top: 0;
}

.lue-about-statement p {
    max-width: 760px;
    margin-bottom: 0;
}

.lue-about-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.lue-about-values div {
    padding: 26px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #eadfce;
    box-shadow: 0 16px 44px rgba(94, 67, 37, 0.06);
}

.lue-about-values span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #f4e3cc;
    color: #171717;
    font-size: 12px;
    font-weight: 900;
}

.lue-about-values h3 {
    margin: 0 0 10px;
    color: #171717;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.lue-about-values p {
    margin: 0;
}

.lue-about-closing {
    padding: 44px;
    border-radius: 38px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(244,227,204,0.55), transparent 42%),
        #ffffff;
}

.lue-about-closing p {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.lue-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 12px;
    padding: 0 24px;
    border-radius: 999px;
    background: #171717;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: transform 0.22s ease, background 0.22s ease;
}

.lue-about-btn:hover {
    transform: translateY(-2px);
    background: #2a241f;
}

@media (max-width: 900px) {
    .lue-about-page {
        padding: 72px 0;
    }

    .lue-about-grid,
    .lue-about-values {
        grid-template-columns: 1fr;
    }

    .lue-about-hero h1 {
        letter-spacing: -2.5px;
    }

    .lue-about-card,
    .lue-about-statement,
    .lue-about-closing {
        padding: 28px;
        border-radius: 28px;
    }
}

@media (max-width: 520px) {
    .lue-about-container {
        width: min(100% - 28px, 1180px);
    }

    .lue-about-hero h1 {
        font-size: 44px;
        letter-spacing: -1.8px;
    }

    .lue-about-hero p {
        font-size: 16px;
    }

    .lue-about-card,
    .lue-about-statement,
    .lue-about-closing,
    .lue-about-values div {
        padding: 22px;
        border-radius: 24px;
    }

    .lue-about-story-card h2,
    .lue-about-statement h2,
    .lue-about-closing h2 {
        font-size: 32px;
    }
}

/* Announcement Bar Fix */

.site-announcement {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 16px;
    background: #171717;
    color: #f4e3cc;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.2px;
    text-align: center;
    position: relative;
    z-index: 1000;
}

@media (max-width: 520px) {
    .site-announcement {
        min-height: auto;
        padding: 8px 14px;
        font-size: 11px;
        line-height: 1.45;
    }
}

/* FORCE Announcement Bar - Hosting Fix */
.site-announcement {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 38px !important;
    height: auto !important;
    padding: 9px 16px !important;
    background: #171717 !important;
    color: #f4e3cc !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.45 !important;
    letter-spacing: 0.2px !important;
    text-align: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
    text-indent: 0 !important;
    white-space: normal !important;
    position: relative !important;
    z-index: 9999 !important;
}

.site-announcement * {
    color: #f4e3cc !important;
}

@media (max-width: 520px) {
    .site-announcement {
        padding: 8px 14px !important;
        font-size: 11px !important;
        line-height: 1.45 !important;
    }
}