:root {
    --lux-black: #111111;
    --lux-ink: #241f19;
    --lux-gold: #d4af37;
    --lux-gold-soft: #f4df98;
    --lux-cream: #fbf5ea;
    --lux-white: #ffffff;
    --lux-muted: #756d63;
    --lux-rose: #7b2837;
    --lux-green: #1f5f4a;
    --lux-line: rgba(17, 17, 17, .1);
    --lux-shadow: 0 24px 70px rgba(17, 17, 17, .12);
}

body.index-page,
body.luxury-store {
    background: var(--lux-cream);
    color: var(--lux-ink);
    font-family: "Poppins", system-ui, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.luxury-shell .top-bar {
    background: var(--lux-black);
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
}

.luxury-shell .main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .78);
    border-bottom: 1px solid var(--lux-line);
    backdrop-filter: blur(18px);
    transition: background .25s ease, box-shadow .25s ease;
}

.luxury-shell .main-header.is-scrolled {
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 38px rgba(17, 17, 17, .08);
}

.luxury-shell .logo img {
    max-height: 58px;
    width: auto;
    object-fit: contain;
}

.luxury-shell .navmenu ul {
    gap: 26px;
}

.luxury-shell .navmenu a {
    color: var(--lux-black);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
}

.luxury-shell .navmenu a.active,
.luxury-shell .navmenu a:hover {
    color: var(--lux-rose);
}

.desktop-search-form .form-control,
#mobileSearch .form-control {
    min-height: 44px;
    border-color: var(--lux-line);
    border-radius: 999px 0 0 999px;
}

.desktop-search-form .btn,
#mobileSearch .btn {
    min-width: 48px;
    border-radius: 0 999px 999px 0;
    background: var(--lux-black);
    color: var(--lux-white);
}

.header-action-btn {
    position: relative;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--lux-line);
    border-radius: 50%;
    background: var(--lux-white);
    color: var(--lux-black);
    transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.header-action-btn:hover {
    transform: translateY(-2px);
    border-color: var(--lux-gold);
    color: var(--lux-rose);
}

.header-action-btn .badge {
    position: absolute;
    top: -5px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    background: var(--lux-gold);
    color: var(--lux-black);
    border-radius: 50%;
    font-size: 11px;
}

.lux-hero {
    height: 780px;
    position: relative;
    overflow: hidden;
    background: var(--lux-black);
}

.lux-hero .swiper,
.lux-hero .swiper-wrapper,
.lux-hero .swiper-slide {
    width: 100%;
    height: 100%;
}

.lux-hero-slide {
    position: relative;
    display: grid;
    align-items: center;
    height: 780px;
    padding: 130px 0 84px;
}

.lux-hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 17, 17, .86), rgba(17, 17, 17, .35), rgba(17, 17, 17, .12));
    z-index: 1;
}

.lux-hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 780px;
    object-fit: cover;
    object-position: center;
}

.lux-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    color: var(--lux-white);
}

.lux-kicker,
.lux-section-kicker {
    color: var(--lux-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.lux-hero h1 {
    margin: 14px 0 18px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(42px, 8vw, 86px);
    line-height: .94;
}

.lux-hero p {
    max-width: 560px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(16px, 2.4vw, 19px);
}

.lux-btn,
.lux-btn-outline {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.lux-btn {
    background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-soft));
    color: var(--lux-black);
    box-shadow: 0 14px 35px rgba(212, 175, 55, .24);
}

.lux-btn-outline {
    border: 1px solid rgba(255, 255, 255, .4);
    color: var(--lux-white);
}

.lux-btn:hover,
.lux-btn-outline:hover {
    transform: translateY(-2px);
}

.lux-section {
    padding: clamp(54px, 8vw, 96px) 0;
}

.lux-section.alt {
    background: var(--lux-white);
}

.lux-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 28px;
}

.lux-section-head h2 {
    margin: 6px 0 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(32px, 5vw, 54px);
}

.lux-section-head p {
    max-width: 560px;
    margin: 8px 0 0;
    color: var(--lux-muted);
}

.lux-category-card {
    position: relative;
    height: 340px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--lux-shadow);
    background: linear-gradient(145deg, #fff, #f6efe0);
}

.lux-category-media {
    width: 100%;
    height: 100%;
    padding: 22px;
}

.lux-category-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: .94;
    transition: transform .45s ease;
}

.lux-category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, .06), rgba(17, 17, 17, .76));
}

.lux-category-card:hover img {
    transform: scale(1.06);
}

.lux-category-card .content {
    position: absolute;
    inset: auto 20px 20px;
    color: var(--lux-white);
    z-index: 2;
}

.lux-category-card h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
}

.lux-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.lux-product-card {
    position: relative;
    background: var(--lux-white);
    border: 1px solid var(--lux-line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(17, 17, 17, .07);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.lux-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, .58);
    box-shadow: 0 28px 74px rgba(17, 17, 17, .14), 0 0 0 1px rgba(212, 175, 55, .14);
}

.lux-product-media {
    position: relative;
    display: block;
    height: 460px;
    background: #fff;
    overflow: hidden;
}

.lux-product-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 18px;
    transition: opacity .28s ease, transform .45s ease;
}

.lux-product-img.secondary {
    opacity: 0;
}

.lux-product-card:hover .lux-product-img.primary {
    opacity: 0;
    transform: scale(1.04);
}

.lux-product-card:hover .lux-product-img.secondary {
    opacity: 1;
    transform: scale(1.04);
}

.lux-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(17, 17, 17, .82);
    color: var(--lux-white);
    font-size: 12px;
    font-weight: 700;
}

.lux-badge-secondary {
    top: 52px;
    background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-soft));
    color: var(--lux-black);
}

.lux-product-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    display: grid;
    gap: 9px;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity .2s ease, transform .2s ease;
}

.lux-product-card:hover .lux-product-actions {
    opacity: 1;
    transform: translateX(0);
}

.lux-product-actions a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--lux-black);
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.lux-product-actions a:hover,
.lux-product-actions a.is-active {
    transform: scale(1.08);
    background: var(--lux-black);
    color: var(--lux-gold);
}

.lux-product-body {
    display: grid;
    grid-template-rows: auto auto auto auto 1fr;
    padding: 20px;
}

.lux-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--lux-gold);
    font-size: 13px;
}

.lux-rating span {
    margin-left: 5px;
    color: var(--lux-muted);
    font-size: 12px;
    font-weight: 700;
}

.lux-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 9px;
}

.lux-product-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(212, 175, 55, .16);
    color: var(--lux-ink);
    font-size: 11px;
    font-weight: 700;
}

.lux-product-body h3 {
    min-height: 52px;
    margin: 8px 0 10px;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
}

.lux-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
}

.lux-price {
    color: var(--lux-rose);
    font-weight: 800;
}

.lux-old-price {
    color: var(--lux-muted);
    text-decoration: line-through;
    font-size: 13px;
}

.lux-card-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}

.lux-cart-btn,
.lux-buy-btn {
    display: inline-flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 999px;
    background: var(--lux-black);
    color: var(--lux-white);
    font-weight: 700;
}

.lux-buy-btn {
    border: 1px solid var(--lux-black);
    background: var(--lux-white);
    color: var(--lux-black);
}

.lux-cart-btn:hover,
.lux-buy-btn:hover {
    background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-soft));
    border-color: var(--lux-gold);
    color: var(--lux-black);
}

.lux-cart-btn.disabled {
    background: #bbb;
}

.lux-story {
    background: var(--lux-black);
    color: var(--lux-white);
}

.lux-story p,
.lux-review-card p {
    color: rgba(255, 255, 255, .74);
}

.lux-review-card,
.lux-instagram-tile,
.lux-trust-card {
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 24px;
}

.lux-instagram-tile {
    min-height: 180px;
    display: grid;
    place-items: end start;
    background: linear-gradient(135deg, rgba(123, 40, 55, .9), rgba(31, 95, 74, .78));
    color: var(--lux-white);
}

.lux-footer {
    background: #0e0e0e;
    color: rgba(255, 255, 255, .74);
}

.lux-footer h4,
.lux-footer .sitename {
    color: var(--lux-white);
}

.lux-footer a:hover {
    color: var(--lux-gold);
}

.lux-newsletter {
    background: linear-gradient(135deg, #1f5f4a, #111111);
    color: var(--lux-white);
    border-radius: 8px;
    padding: clamp(26px, 5vw, 48px);
}

.lux-newsletter input {
    min-height: 50px;
    border: 0;
    border-radius: 999px 0 0 999px;
    padding: 0 18px;
}

.lux-newsletter button {
    min-height: 50px;
    border: 0;
    border-radius: 0 999px 999px 0;
    padding: 0 20px;
    background: var(--lux-gold);
    color: var(--lux-black);
    font-weight: 800;
}

.otp-modal .modal-content {
    border: 1px solid rgba(212, 175, 55, .28);
    border-radius: 8px;
    overflow: hidden;
    background:
        linear-gradient(150deg, rgba(17, 17, 17, .95), rgba(43, 31, 24, .92)),
        radial-gradient(circle at top right, rgba(212, 175, 55, .24), transparent 34%);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
    color: var(--lux-white);
}

.modal-backdrop.show {
    opacity: .74;
    backdrop-filter: blur(12px);
}

.lux-auth-modal__brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background: rgba(0, 0, 0, .22);
}

.lux-auth-modal__brand img {
    max-height: 54px;
    width: auto;
    object-fit: contain;
}

.lux-phone-field {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
}

.lux-phone-field span {
    padding: 0 14px;
    color: var(--lux-gold);
    font-weight: 800;
}

.lux-phone-field input {
    width: 100%;
    min-height: 54px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--lux-white);
}

.lux-phone-field input::placeholder {
    color: rgba(255, 255, 255, .42);
}

.lux-otp-boxes {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 9px;
}

.lux-otp-boxes input {
    width: 100%;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    color: var(--lux-white);
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    outline: 0;
}

.lux-otp-boxes input:focus {
    border-color: var(--lux-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, .16);
}

.lux-auth-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.lux-auth-links a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: var(--lux-white);
    font-weight: 700;
}

.toast-stack {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 2000;
    display: grid;
    gap: 10px;
}

.lux-toast {
    min-width: 260px;
    padding: 14px 16px;
    border-radius: 8px;
    background: var(--lux-black);
    color: var(--lux-white);
    box-shadow: var(--lux-shadow);
}

.lux-toast-success {
    background: var(--lux-green);
}

.lux-toast-error {
    background: var(--lux-rose);
}

.lux-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1500;
    pointer-events: none;
    opacity: 0;
    background: rgba(0, 0, 0, .58);
    backdrop-filter: blur(8px);
    transition: opacity .28s ease;
}

.lux-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1501;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    width: min(460px, 100vw);
    height: 100vh;
    background: #fffaf1;
    box-shadow: -30px 0 80px rgba(0, 0, 0, .25);
    transform: translateX(104%);
    transition: transform .32s ease;
}

.lux-drawer-open {
    overflow: hidden;
}

.lux-drawer-open .lux-drawer-backdrop {
    pointer-events: auto;
    opacity: 1;
}

.lux-drawer-open .lux-cart-drawer {
    transform: translateX(0);
}

.lux-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px;
    background: var(--lux-black);
    color: var(--lux-white);
}

.lux-drawer-head h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
}

.lux-drawer-head button {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: transparent;
    color: var(--lux-white);
}

.lux-drawer-offer {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-soft));
    color: var(--lux-black);
    font-size: 13px;
    font-weight: 800;
}

.lux-drawer-body {
    overflow-y: auto;
    padding: 18px;
}

.lux-drawer-empty {
    min-height: 250px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 26px;
    border: 1px dashed rgba(17, 17, 17, .16);
    border-radius: 8px;
    background: var(--lux-white);
}

.lux-drawer-empty i {
    font-size: 58px;
    color: var(--lux-gold);
}

.lux-drawer-empty h4 {
    margin: 12px 0 4px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
}

.lux-drawer-empty p {
    color: var(--lux-muted);
}

.lux-drawer-items {
    display: grid;
    gap: 14px;
}

.lux-drawer-item {
    display: grid;
    grid-template-columns: 92px 1fr auto;
    gap: 14px;
    padding: 12px;
    border: 1px solid var(--lux-line);
    border-radius: 8px;
    background: var(--lux-white);
}

.lux-drawer-item img {
    width: 92px;
    height: 116px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    background: var(--lux-cream);
}

.lux-drawer-item h4 {
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 1.35;
}

.lux-drawer-item label {
    display: block;
    margin-bottom: 4px;
    color: var(--lux-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.lux-drawer-item select {
    width: 100%;
    height: 34px;
    border: 1px solid var(--lux-line);
    border-radius: 999px;
    padding: 0 10px;
    background: var(--lux-white);
    font-size: 12px;
}

.lux-drawer-price {
    margin: 8px 0;
    color: var(--lux-rose);
    font-weight: 800;
}

.lux-drawer-qty {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.lux-drawer-qty button {
    min-width: 30px;
    height: 30px;
    border: 1px solid var(--lux-line);
    border-radius: 999px;
    background: var(--lux-white);
}

.lux-drawer-qty button[data-cart-remove] {
    width: auto;
    padding: 0 8px;
    color: var(--lux-rose);
    font-size: 12px;
    font-weight: 800;
}

.lux-drawer-item > strong {
    white-space: nowrap;
    color: var(--lux-black);
}

.lux-drawer-recs {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.lux-drawer-title {
    color: var(--lux-muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.lux-drawer-recs article {
    display: grid;
    grid-template-columns: 54px 1fr 36px;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--lux-line);
    border-radius: 8px;
    background: var(--lux-white);
}

.lux-drawer-recs img {
    width: 54px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
}

.lux-drawer-recs h5 {
    margin: 0 0 3px;
    font-size: 13px;
}

.lux-drawer-recs span {
    color: var(--lux-rose);
    font-weight: 800;
}

.lux-drawer-recs a {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: var(--lux-black);
    color: var(--lux-gold);
}

.lux-drawer-foot {
    padding: 16px 18px 18px;
    border-top: 1px solid var(--lux-line);
    background: var(--lux-white);
}

.lux-coupon-form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.lux-coupon-form input {
    min-width: 0;
    flex: 1;
    min-height: 42px;
    border: 1px solid var(--lux-line);
    border-radius: 999px;
    padding: 0 14px;
}

.lux-coupon-form button {
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    padding: 0 16px;
    background: var(--lux-black);
    color: var(--lux-white);
    font-weight: 800;
}

.lux-drawer-summary {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
}

.lux-drawer-summary div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.lux-drawer-summary span {
    color: var(--lux-muted);
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 88px;
    z-index: 1050;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: var(--lux-white);
    box-shadow: 0 16px 36px rgba(37, 211, 102, .32);
}

.lux-page-hero {
    padding: clamp(70px, 10vw, 120px) 0 clamp(38px, 6vw, 70px);
    background:
        linear-gradient(120deg, rgba(17, 17, 17, .92), rgba(17, 17, 17, .62)),
        url("/uploads/banners/1750006277_banner.png") center/cover;
    color: var(--lux-white);
}

.lux-page-hero h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1;
}

.lux-panel {
    background: var(--lux-white);
    border: 1px solid var(--lux-line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(17, 17, 17, .07);
}

.lux-form-control,
.lux-panel input,
.lux-panel select,
.lux-panel textarea {
    min-height: 48px;
    border: 1px solid var(--lux-line);
    border-radius: 8px;
    padding: 10px 14px;
}

.lux-panel textarea {
    min-height: 140px;
}

.lux-cart-item {
    display: grid;
    grid-template-columns: 96px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--lux-line);
}

.lux-cart-item:last-child {
    border-bottom: 0;
}

.lux-cart-item img {
    width: 96px;
    height: 112px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--lux-cream);
}

.lux-qty {
    display: inline-flex;
    overflow: hidden;
    border: 1px solid var(--lux-line);
    border-radius: 999px;
}

.lux-qty button,
.lux-qty input {
    width: 42px;
    height: 40px;
    border: 0;
    background: var(--lux-white);
    text-align: center;
}

.lux-summary-line {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--lux-line);
}

.lux-summary-line.total {
    border-bottom: 0;
    color: var(--lux-rose);
    font-size: 20px;
    font-weight: 800;
}

.lux-auth {
    min-height: 72vh;
    display: grid;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(17, 17, 17, .88), rgba(123, 40, 55, .48)),
        url("/uploads/banners/1750909447_banner.png") center/cover;
}

.lux-auth-card {
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 8px;
    box-shadow: var(--lux-shadow);
    backdrop-filter: blur(16px);
}

.lux-step {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--lux-muted);
    font-weight: 700;
}

.lux-step span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--lux-gold);
    color: var(--lux-black);
}

.lux-contact-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, .18);
    color: var(--lux-rose);
}

.lux-product-page {
    background: var(--lux-cream);
}

.lux-product-detail {
    padding: clamp(28px, 5vw, 64px) 0 clamp(44px, 7vw, 82px);
}

.lux-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 22px;
    color: var(--lux-muted);
    font-size: 13px;
    font-weight: 700;
}

.lux-breadcrumb a:hover {
    color: var(--lux-rose);
}

.lux-pdp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
    gap: clamp(28px, 5vw, 58px);
    align-items: start;
}

.lux-pdp-gallery {
    position: sticky;
    top: 112px;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
}

.lux-pdp-main {
    width: 100%;
    border: 1px solid rgba(212, 175, 55, .22);
    border-radius: 8px;
    background: var(--lux-white);
    box-shadow: 0 24px 70px rgba(17, 17, 17, .11);
}

.lux-pdp-main .swiper-slide {
    height: min(680px, 72vh);
}

.lux-pdp-zoom {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: zoom-in;
    background:
        radial-gradient(circle at 50% 28%, rgba(212, 175, 55, .12), transparent 38%),
        #fff;
}

.lux-pdp-zoom img {
    width: 100%;
    height: 100%;
    padding: clamp(18px, 4vw, 44px);
    object-fit: contain;
    object-position: center;
    transition: transform .28s ease, transform-origin .12s ease;
}

.lux-pdp-zoom:hover img {
    transform: scale(1.55);
}

.lux-pdp-thumbs {
    width: 92px;
    height: min(680px, 72vh);
}

.lux-pdp-thumb {
    width: 92px;
    height: 104px !important;
    overflow: hidden;
    border: 1px solid var(--lux-line);
    border-radius: 8px;
    background: var(--lux-white);
    padding: 7px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.lux-pdp-thumb.swiper-slide-thumb-active,
.lux-pdp-thumb:hover {
    border-color: var(--lux-gold);
    box-shadow: 0 10px 26px rgba(212, 175, 55, .18);
    transform: translateY(-2px);
}

.lux-pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.lux-pdp-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: rgba(17, 17, 17, .82);
    color: var(--lux-gold);
    transform: translateY(-50%);
    cursor: pointer;
}

.lux-pdp-prev {
    left: 16px;
}

.lux-pdp-next {
    right: 16px;
}

.lux-pdp-info {
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
    padding: clamp(22px, 4vw, 34px);
    box-shadow: 0 24px 70px rgba(17, 17, 17, .1);
    backdrop-filter: blur(14px);
}

.lux-pdp-labels,
.lux-pdp-rating,
.lux-pdp-price,
.lux-pdp-stock,
.lux-pdp-urgency,
.lux-pdp-option-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.lux-pdp-labels {
    justify-content: space-between;
    margin-bottom: 12px;
}

.lux-pdp-labels span {
    color: var(--lux-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.lux-pdp-labels strong,
.lux-pdp-price span {
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(212, 175, 55, .16);
    color: var(--lux-rose);
    font-size: 12px;
    font-weight: 900;
}

.lux-pdp-info h1 {
    margin: 0 0 14px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    color: var(--lux-black);
}

.lux-pdp-rating {
    margin-bottom: 18px;
    color: var(--lux-gold);
}

.lux-pdp-rating span {
    color: var(--lux-muted);
    font-weight: 800;
}

.lux-pdp-price {
    margin-bottom: 16px;
}

.lux-pdp-price strong {
    color: var(--lux-rose);
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1;
}

.lux-pdp-price del {
    color: var(--lux-muted);
    font-size: 17px;
}

.lux-pdp-stock {
    margin-bottom: 14px;
}

.lux-pdp-stock span {
    font-weight: 900;
}

.lux-pdp-stock .in-stock {
    color: var(--lux-green);
}

.lux-pdp-stock .out-stock {
    color: var(--lux-rose);
}

.lux-pdp-stock small,
.lux-pdp-summary,
.lux-pincode-checker p {
    color: var(--lux-muted);
}

.lux-pdp-urgency {
    margin-bottom: 18px;
    padding: 12px;
    border-radius: 8px;
    background: #fff8e5;
    color: var(--lux-black);
    font-size: 13px;
    font-weight: 800;
}

.lux-pdp-summary {
    margin-bottom: 20px;
    line-height: 1.75;
}

.lux-pdp-option {
    margin-bottom: 18px;
}

.lux-pdp-option-head {
    justify-content: space-between;
    margin-bottom: 10px;
}

.lux-pdp-option-head span {
    color: var(--lux-muted);
    font-weight: 900;
}

.lux-pdp-option-head strong {
    color: var(--lux-black);
}

.lux-pdp-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lux-pdp-pills button {
    min-height: 42px;
    border: 1px solid var(--lux-line);
    border-radius: 999px;
    padding: 0 16px;
    background: var(--lux-white);
    color: var(--lux-black);
    font-weight: 900;
}

.lux-pdp-pills button.active,
.lux-pdp-pills button:hover {
    border-color: var(--lux-gold);
    background: var(--lux-black);
    color: var(--lux-gold);
}

.lux-pdp-actions {
    display: grid;
    grid-template-columns: 124px 1fr 1fr 52px;
    gap: 10px;
    margin-top: 22px;
}

.lux-pdp-qty {
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    overflow: hidden;
    border: 1px solid var(--lux-line);
    border-radius: 999px;
    background: var(--lux-white);
}

.lux-pdp-qty button,
.lux-pdp-qty input {
    min-width: 0;
    height: 52px;
    border: 0;
    background: transparent;
    text-align: center;
    font-weight: 900;
}

.lux-pdp-qty input::-webkit-inner-spin-button,
.lux-pdp-qty input::-webkit-outer-spin-button {
    appearance: none;
}

.lux-pdp-cart,
.lux-pdp-buy,
.lux-pdp-wishlist,
.lux-pdp-whatsapp a,
.lux-pincode-checker button,
.lux-sticky-buy button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    font-weight: 900;
}

.lux-pdp-cart,
.lux-sticky-buy button:first-of-type {
    background: var(--lux-black);
    color: var(--lux-white);
}

.lux-pdp-buy,
.lux-pincode-checker button,
.lux-sticky-buy button:last-of-type {
    background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-soft));
    color: var(--lux-black);
}

.lux-pdp-wishlist {
    width: 52px;
    padding: 0;
    border: 1px solid var(--lux-line);
    background: var(--lux-white);
    color: var(--lux-black);
}

.lux-pdp-wishlist.is-active,
.lux-pdp-wishlist:hover {
    border-color: var(--lux-gold);
    background: var(--lux-black);
    color: var(--lux-gold);
}

.lux-pdp-whatsapp {
    margin: 14px 0;
}

.lux-pdp-whatsapp a {
    width: 100%;
    background: #1f5f4a;
    color: var(--lux-white);
}

.lux-pincode-checker {
    margin: 18px 0;
    padding: 16px;
    border: 1px solid var(--lux-line);
    border-radius: 8px;
    background: var(--lux-white);
}

.lux-pincode-checker label {
    display: block;
    margin-bottom: 9px;
    font-weight: 900;
}

.lux-pincode-checker > div {
    display: flex;
    gap: 8px;
}

.lux-pincode-checker input {
    min-width: 0;
    flex: 1;
    min-height: 48px;
    border: 1px solid var(--lux-line);
    border-radius: 999px;
    padding: 0 15px;
}

.lux-pincode-checker p {
    margin: 9px 0 0;
    font-size: 13px;
    font-weight: 700;
}

.lux-pdp-trust {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.lux-pdp-trust article {
    display: grid;
    gap: 7px;
    place-items: center;
    min-height: 92px;
    padding: 10px;
    border: 1px solid var(--lux-line);
    border-radius: 8px;
    background: var(--lux-white);
    text-align: center;
    font-size: 11px;
    font-weight: 900;
}

.lux-pdp-trust i {
    color: var(--lux-gold);
    font-size: 22px;
}

.lux-product-tabs-section {
    padding: 0 0 clamp(54px, 8vw, 92px);
}

.lux-product-tabs {
    overflow: hidden;
    border: 1px solid var(--lux-line);
    border-radius: 8px;
    background: var(--lux-white);
    box-shadow: 0 18px 45px rgba(17, 17, 17, .07);
}

.lux-product-tabs .nav-tabs {
    border: 0;
    background: var(--lux-black);
    padding: 10px;
    gap: 8px;
}

.lux-product-tabs .nav-link {
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    color: rgba(255, 255, 255, .72);
    font-weight: 900;
}

.lux-product-tabs .nav-link.active,
.lux-product-tabs .nav-link:hover {
    background: var(--lux-gold);
    color: var(--lux-black);
}

.lux-tab-content {
    padding: clamp(22px, 4vw, 42px);
    color: var(--lux-muted);
    line-height: 1.8;
}

.lux-tab-content h3,
.lux-review-score strong {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--lux-black);
}

.lux-review-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    padding: clamp(22px, 4vw, 42px);
}

.lux-review-score {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 230px;
    border-radius: 8px;
    background: var(--lux-cream);
    color: var(--lux-gold);
    text-align: center;
}

.lux-review-score strong {
    font-size: 58px;
    line-height: 1;
}

.lux-review-score span {
    color: var(--lux-muted);
}

.lux-review-list {
    display: grid;
    gap: 14px;
}

.lux-review-list article {
    padding: 16px;
    border: 1px solid var(--lux-line);
    border-radius: 8px;
}

.lux-review-list article > div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.lux-review-list span,
.lux-review-list p {
    color: var(--lux-muted);
}

.lux-sticky-buy {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    display: none;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    align-items: center;
    padding: 10px 12px;
    border-top: 1px solid var(--lux-line);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 -18px 40px rgba(17, 17, 17, .12);
    backdrop-filter: blur(16px);
}

.lux-sticky-buy strong,
.lux-sticky-buy span {
    display: block;
}

.lux-sticky-buy strong {
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
}

.lux-sticky-buy span {
    color: var(--lux-rose);
    font-weight: 900;
}

.lux-auth-page {
    min-height: calc(100vh - 138px);
    background: var(--lux-black);
}

.lux-auth-split {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: calc(100vh - 138px);
}

.lux-auth-brand {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 720px;
    overflow: hidden;
    padding: clamp(34px, 6vw, 76px);
    color: var(--lux-white);
}

.lux-auth-brand-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(15, 15, 15, .94), rgba(15, 15, 15, .62) 48%, rgba(123, 40, 55, .48)),
        url("/uploads/banners/1750909447_banner.png") center/cover;
    transform: scale(1.03);
}

.lux-auth-brand::before,
.lux-auth-brand::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.lux-auth-brand::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(212, 175, 55, .16), transparent 18%),
        linear-gradient(0deg, rgba(15, 15, 15, .82), transparent 42%);
}

.lux-auth-brand::after {
    right: 12%;
    bottom: 14%;
    width: min(230px, 26vw);
    aspect-ratio: 1 / 1.8;
    border: 1px solid rgba(212, 175, 55, .28);
    border-radius: 46% 46% 10px 10px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.18), transparent 18%, rgba(212,175,55,.15) 54%, transparent),
        linear-gradient(180deg, rgba(255,255,255,.14), rgba(212,175,55,.2) 42%, rgba(15,15,15,.42));
    box-shadow: 0 34px 80px rgba(0, 0, 0, .42);
    opacity: .72;
    animation: luxBottleFloat 5.5s ease-in-out infinite;
}

.lux-auth-glow {
    position: absolute;
    pointer-events: none;
    opacity: .55;
}

.lux-auth-glow.one {
    left: 0;
    top: 16%;
    width: 62%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .72), transparent);
    animation: luxLightSweep 6s ease-in-out infinite;
}

.lux-auth-glow.two {
    right: 5%;
    top: 0;
    width: 1px;
    height: 62%;
    background: linear-gradient(180deg, transparent, rgba(244, 223, 152, .6), transparent);
    animation: luxVerticalGlow 7s ease-in-out infinite;
}

.lux-auth-brand-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.lux-auth-brand-content h1 {
    margin: 12px 0 18px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(46px, 7vw, 88px);
    line-height: .92;
    color: var(--lux-white);
}

.lux-auth-brand-content p {
    max-width: 560px;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
    line-height: 1.75;
}

.lux-auth-brand-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.lux-auth-brand-points span,
.lux-auth-floating-card {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(14px);
}

.lux-auth-brand-points span {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
    font-weight: 800;
}

.lux-auth-brand-points i {
    color: var(--lux-gold);
}

.lux-auth-floating-card {
    position: absolute;
    z-index: 3;
    right: clamp(28px, 6vw, 86px);
    top: clamp(34px, 9vw, 118px);
    display: grid;
    gap: 4px;
    border-radius: 8px;
    padding: 18px 20px;
    color: var(--lux-white);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    animation: luxCardFloat 4.8s ease-in-out infinite;
}

.lux-auth-floating-card span {
    color: var(--lux-gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.lux-auth-form-panel {
    display: grid;
    place-items: center;
    min-height: 720px;
    padding: clamp(24px, 5vw, 58px);
    background:
        linear-gradient(145deg, rgba(248, 245, 239, .94), rgba(255, 255, 255, .72)),
        var(--lux-cream);
}

.lux-auth-card-premium {
    width: min(100%, 520px);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
    padding: clamp(24px, 4vw, 42px);
    box-shadow: 0 30px 90px rgba(15, 15, 15, .16);
    backdrop-filter: blur(20px);
}

.lux-auth-card-head {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 12px;
}

.lux-auth-card-head img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.lux-auth-card-head h2 {
    margin: 2px 0 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(32px, 4vw, 44px);
    color: var(--lux-black);
}

.lux-auth-copy {
    margin-bottom: 24px;
    color: var(--lux-muted);
    line-height: 1.65;
}

.lux-auth-form {
    display: grid;
    gap: 12px;
}

.lux-auth-form > label,
.lux-floating-field label {
    color: var(--lux-black);
    font-size: 13px;
    font-weight: 900;
}

.lux-auth-phone {
    display: flex;
    overflow: hidden;
    border: 1px solid var(--lux-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .84);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.lux-auth-phone:focus-within,
.lux-floating-field:focus-within {
    border-color: var(--lux-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, .14);
}

.lux-auth-phone span {
    display: grid;
    min-width: 58px;
    place-items: center;
    border-right: 1px solid var(--lux-line);
    color: var(--lux-black);
    font-weight: 900;
}

.lux-auth-phone input,
.lux-floating-field input {
    width: 100%;
    min-height: 54px;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 15px;
    color: var(--lux-black);
}

.lux-auth-gold,
.lux-auth-black {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.lux-auth-gold {
    background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-soft));
    color: var(--lux-black);
    box-shadow: 0 18px 36px rgba(212, 175, 55, .24);
}

.lux-auth-black {
    width: 100%;
    background: var(--lux-black);
    color: var(--lux-white);
}

.lux-auth-gold:hover,
.lux-auth-black:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 45px rgba(15, 15, 15, .16);
}

.lux-auth-black:hover {
    background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-soft));
    color: var(--lux-black);
}

.lux-auth-assurance,
.lux-auth-row,
.lux-auth-footer-links,
.lux-auth-otp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.lux-auth-assurance {
    justify-content: flex-start;
    color: var(--lux-muted);
    font-size: 12px;
    font-weight: 700;
}

.lux-auth-assurance i {
    color: var(--lux-gold);
}

.lux-auth-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    margin: 24px 0;
    color: var(--lux-muted);
    font-size: 13px;
    font-weight: 800;
}

.lux-auth-divider::before,
.lux-auth-divider::after {
    content: "";
    height: 1px;
    background: var(--lux-line);
}

.lux-floating-field {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--lux-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .84);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.lux-floating-field label {
    position: absolute;
    left: 15px;
    top: 16px;
    color: var(--lux-muted);
    pointer-events: none;
    transition: transform .18s ease, font-size .18s ease, color .18s ease;
}

.lux-floating-field input {
    padding-top: 16px;
}

.lux-floating-field input:focus + label,
.lux-floating-field input:not(:placeholder-shown) + label {
    color: var(--lux-gold);
    font-size: 11px;
    transform: translateY(-11px);
}

.lux-auth-row,
.lux-auth-footer-links,
.lux-auth-otp-row {
    font-size: 14px;
}

.lux-auth-row a,
.lux-auth-footer-links a,
.lux-auth-otp-row button {
    border: 0;
    background: transparent;
    color: var(--lux-black);
    font-weight: 800;
}

.lux-auth-row a:hover,
.lux-auth-footer-links a:hover,
.lux-auth-otp-row button:hover {
    color: var(--lux-rose);
}

.lux-remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lux-muted);
    font-weight: 800;
}

.lux-remember input {
    accent-color: var(--lux-gold);
}

.lux-otp-boxes.light input {
    border-color: var(--lux-line);
    background: rgba(255, 255, 255, .86);
    color: var(--lux-black);
}

.lux-otp-boxes.light input:focus {
    border-color: var(--lux-gold);
}

@keyframes luxBottleFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-16px) rotate(2deg); }
}

@keyframes luxCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes luxLightSweep {
    0%, 100% { transform: translateX(-12%); opacity: .28; }
    50% { transform: translateX(42%); opacity: .72; }
}

@keyframes luxVerticalGlow {
    0%, 100% { transform: translateY(-10%); opacity: .24; }
    50% { transform: translateY(36%); opacity: .64; }
}

@media (max-width: 1199px) {
    .luxury-shell .navmenu {
        display: none;
    }

    .luxury-shell .navmenu.navmenu-mobile-open {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 100%;
        display: block;
        padding: 16px;
        border: 1px solid var(--lux-line);
        border-radius: 8px;
        background: var(--lux-white);
        box-shadow: var(--lux-shadow);
    }

    .luxury-shell .navmenu.navmenu-mobile-open ul {
        display: grid !important;
        gap: 12px;
    }
}

@media (max-width: 991px) {
    .lux-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lux-product-media {
        height: 360px;
    }

    .lux-hero,
    .lux-hero-slide,
    .lux-hero-slide img {
        height: 550px;
    }

    .lux-section-head {
        display: block;
    }

    .lux-pdp-grid {
        grid-template-columns: 1fr;
    }

    .lux-pdp-gallery {
        position: relative;
        top: auto;
    }

    .lux-pdp-main .swiper-slide,
    .lux-pdp-thumbs {
        height: 560px;
    }

    .lux-pdp-trust {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lux-auth-split {
        grid-template-columns: 1fr;
    }

    .lux-auth-brand,
    .lux-auth-form-panel {
        min-height: auto;
    }

    .lux-auth-brand {
        align-items: center;
        padding: 58px 24px;
    }

    .lux-auth-brand-content h1 {
        max-width: 620px;
    }

    .lux-auth-floating-card {
        position: relative;
        right: auto;
        top: auto;
        justify-self: start;
        margin-top: 24px;
    }

    .lux-auth-brand::after {
        right: 7%;
        bottom: 10%;
        width: 150px;
        opacity: .42;
    }
}

@media (max-width: 575px) {
    .lux-hero-slide {
        padding: 92px 0 48px;
    }

    .lux-hero,
    .lux-hero-slide,
    .lux-hero-slide img {
        height: 420px;
    }

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

    .lux-category-card {
        height: 220px;
    }

    .lux-product-media {
        height: 280px;
    }

    .lux-product-body {
        padding: 12px;
    }

    .lux-product-body h3 {
        min-height: 58px;
        font-size: 13px;
    }

    .lux-cart-btn {
        min-height: 40px;
        font-size: 12px;
    }

    .lux-product-actions {
        opacity: 1;
        transform: none;
    }

    .desktop-search-form {
        display: none;
    }

    .lux-cart-item {
        grid-template-columns: 76px 1fr;
    }

    .lux-cart-item .lux-cart-total {
        grid-column: 1 / -1;
    }

    .lux-auth-links {
        grid-template-columns: 1fr;
    }

    .lux-otp-boxes {
        gap: 6px;
    }

    .lux-otp-boxes input {
        height: 48px;
        font-size: 18px;
    }

    .lux-cart-drawer {
        width: 100vw;
    }

    .lux-product-detail {
        padding-top: 18px;
    }

    .lux-breadcrumb {
        display: none;
    }

    .lux-pdp-gallery {
        grid-template-columns: 1fr;
    }

    .lux-pdp-main {
        order: 1;
    }

    .lux-pdp-main .swiper-slide {
        height: 390px;
    }

    .lux-pdp-thumbs {
        order: 2;
        width: 100%;
        height: 92px;
    }

    .lux-pdp-thumb {
        width: 82px;
        height: 82px !important;
    }

    .lux-pdp-nav {
        width: 38px;
        height: 38px;
    }

    .lux-pdp-info {
        padding: 18px;
    }

    .lux-pdp-actions {
        grid-template-columns: 1fr 1fr 52px;
    }

    .lux-pdp-qty {
        grid-column: 1 / -1;
    }

    .lux-pdp-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lux-product-tabs .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .lux-product-tabs .nav-link {
        white-space: nowrap;
    }

    .lux-review-layout {
        grid-template-columns: 1fr;
    }

    .lux-sticky-buy {
        display: grid;
    }

    .lux-product-page {
        padding-bottom: 74px;
    }

    .lux-auth-page,
    .lux-auth-split {
        min-height: auto;
    }

    .lux-auth-brand {
        min-height: 420px;
        padding: 42px 18px;
    }

    .lux-auth-brand-content h1 {
        font-size: 42px;
    }

    .lux-auth-brand-content p {
        font-size: 15px;
    }

    .lux-auth-brand-points {
        display: grid;
    }

    .lux-auth-form-panel {
        padding: 18px;
    }

    .lux-auth-card-premium {
        padding: 22px 16px;
    }

    .lux-auth-card-head {
        align-items: flex-start;
    }

    .lux-auth-card-head img {
        width: 48px;
        height: 48px;
    }

    .lux-auth-assurance,
    .lux-auth-row,
    .lux-auth-footer-links,
    .lux-auth-otp-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .lux-drawer-head {
        padding: 18px;
    }

    .lux-drawer-item {
        grid-template-columns: 80px 1fr;
    }

    .lux-drawer-item img {
        width: 80px;
        height: 102px;
    }

    .lux-drawer-item > strong {
        grid-column: 2;
    }
}
