body.home-redesign {
    --ldp-plum: #9B2D72;
    --ldp-pink: #D73EA6;
    --ldp-blush: #F4DDEB;
    --ldp-ink: #2C1423;
    --ldp-sand: #F8F1EC;
    --ldp-stone: #B6AEAE;
    --ldp-white: #FFFFFF;
    --ldp-border: rgba(155, 45, 114, 0.16);
    --ldp-shadow: 0 22px 60px rgba(44, 20, 35, 0.12);
    background:
        radial-gradient(circle at top right, rgba(215, 62, 166, 0.14), transparent 24%),
        radial-gradient(circle at 0% 20%, rgba(155, 45, 114, 0.09), transparent 20%),
        linear-gradient(180deg, #f8f1ec 0%, #fffaf6 18%, #ffffff 45%, #f9f1f4 100%);
    color: var(--ldp-ink);
}

.home-redesign .container {
    max-width: 1320px;
    padding: 0 24px;
}

.home-redesign section[id],
.home-redesign div[id] {
    scroll-margin-top: 132px;
}

.home-redesign .btn {
    border-radius: 999px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.95rem;
    padding: 16px 28px;
    font-weight: 700;
    box-shadow: none;
}

.home-redesign .btn-primary {
    background: linear-gradient(135deg, var(--ldp-plum), var(--ldp-pink));
    border-color: transparent;
    color: var(--ldp-white);
}

.home-redesign .btn-primary:hover {
    background: linear-gradient(135deg, #7f245d, #bf2f90);
    transform: translateY(-1px);
}

.home-redesign .btn-outline {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--ldp-white);
}

.home-redesign .btn-outline:hover {
    background: var(--ldp-white);
    color: var(--ldp-plum);
    border-color: var(--ldp-white);
}

.home-redesign .site-header {
    position: fixed;
    top: 18px;
    left: 24px;
    right: 24px;
    width: auto;
    max-width: calc(100% - 48px);
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(248, 241, 236, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 38px rgba(44, 20, 35, 0.12);
    border-radius: 26px;
}

.home-redesign .site-header.scrolled {
    box-shadow: 0 20px 52px rgba(44, 20, 35, 0.18);
}

.home-redesign .header-inner {
    max-width: 1320px;
    margin: 0 auto;
    height: 88px;
    padding: 0 28px;
    gap: 18px;
}

.home-redesign .header-logo img {
    max-height: 50px;
    width: auto;
}

.home-redesign .header-nav {
    gap: 34px;
}

.home-redesign .header-nav a {
    font-size: 0.92rem;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(44, 20, 35, 0.88);
}

.home-redesign .header-nav a::after {
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ldp-plum), var(--ldp-pink));
}

.home-redesign .header-actions {
    gap: 10px;
}

.home-redesign .header-actions > a.header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.home-redesign .lang-toggle {
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(155, 45, 114, 0.09);
    border: 1px solid rgba(155, 45, 114, 0.12);
}

.home-redesign .lang-btn {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    color: rgba(44, 20, 35, 0.7);
}

.home-redesign .lang-btn.active {
    background: linear-gradient(135deg, var(--ldp-plum), var(--ldp-pink));
    color: var(--ldp-white);
}

.home-redesign .header-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: var(--ldp-plum);
    border: 1px solid rgba(155, 45, 114, 0.12);
    box-shadow: 0 8px 22px rgba(44, 20, 35, 0.08);
}

.home-redesign .header-icon:hover {
    color: var(--ldp-pink);
}

.home-redesign .cart-badge {
    background: var(--ldp-pink);
    min-width: 18px;
}

.home-redesign .hero {
    position: relative;
    background: transparent;
    padding: 126px 24px 0;
    overflow: visible;
}

.home-redesign .hero-inner {
    position: relative;
    display: flex;
    min-height: min(820px, calc(100vh - 160px));
    align-items: stretch;
    justify-content: flex-start;
    padding: clamp(36px, 5vw, 72px);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--ldp-shadow);
}

.home-redesign .hero-bg-media,
.home-redesign .hero-overlay {
    position: absolute;
    inset: 0;
}

.home-redesign .hero-bg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100%;
}

.home-redesign .hero-overlay {
    background:
        linear-gradient(90deg, rgba(44, 20, 35, 0.62) 0%, rgba(44, 20, 35, 0.42) 45%, rgba(44, 20, 35, 0.18) 100%),
        linear-gradient(180deg, rgba(155, 45, 114, 0.12), rgba(255, 255, 255, 0.02));
}

.home-redesign .hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    min-height: min(640px, calc(100vh - 230px));
    justify-content: flex-end;
    padding: 0;
    animation: homeFadeUp 0.9s ease both;
}

.home-redesign .hero-badge {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--ldp-white);
    backdrop-filter: blur(8px);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    padding: 9px 18px;
    border-radius: 999px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.home-redesign .hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 5.15rem);
    line-height: 0.98;
    color: var(--ldp-white);
    margin-bottom: 71px;
    text-wrap: balance;
}

.home-redesign .hero-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    max-width: 520px;
    margin-bottom: 0;
}

.home-redesign .hero-cta-wrap {
    position: absolute;
    z-index: 3;
    display: flex;
}

.home-redesign .hero-shop-btn {
    min-width: 176px;
    justify-content: center;
    animation: homeFadeUp 1.15s ease both;
}

.home-redesign .hero-cta-top-left { top: 48px; left: 48px; }
.home-redesign .hero-cta-top-center { top: 48px; left: 50%; transform: translateX(-50%); }
.home-redesign .hero-cta-top-right { top: 48px; right: 48px; }
.home-redesign .hero-cta-center-left { top: 50%; left: 48px; transform: translateY(-50%); }
.home-redesign .hero-cta-center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.home-redesign .hero-cta-center-right { top: 50%; right: 48px; transform: translateY(-50%); }
.home-redesign .hero-cta-bottom-left { bottom: 48px; left: 48px; }
.home-redesign .hero-cta-bottom-center { bottom: 48px; left: 50%; transform: translateX(-50%); }
.home-redesign .hero-cta-bottom-right { bottom: 48px; right: 48px; }

.home-redesign .benefits-marquee {
    margin: 16px 24px 0;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--ldp-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(44, 20, 35, 0.08);
}

.home-redesign .benefits-track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    min-width: 100%;
    padding: 15px 0;
    animation: homeMarquee 30s linear infinite;
}

.home-redesign .benefit-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.83rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--ldp-plum);
    white-space: nowrap;
}

.home-redesign .benefit-item i {
    color: var(--ldp-pink);
    font-size: 1rem;
}

.home-redesign .home-cta-section {
    padding: 82px 0 28px;
}

.home-redesign .home-cta-section .container {
    text-align: center;
    animation: homeFadeUp 0.95s ease both;
}

.home-redesign .home-cta-section h2,
.home-redesign .section-header h2,
.home-redesign .home-steps-section h2,
.home-redesign .newsletter-section h2,
.home-redesign .about-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 3.8vw, 4rem);
    line-height: 1.05;
    color: var(--ldp-plum);
    font-weight: 700;
}

.home-redesign .home-cta-section p,
.home-redesign .section-header p,
.home-redesign .newsletter-section p,
.home-redesign .about-content p {
    max-width: 780px;
    margin: 18px auto 0;
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(44, 20, 35, 0.74);
}

.home-redesign .home-mosaic-section {
    padding: 18px 0 84px;
}

.home-redesign .home-mosaic-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr 0.85fr;
    grid-template-rows: minmax(240px, 1fr) minmax(240px, 1fr);
    gap: 18px;
    animation: homeFadeUp 1.05s ease both;
}

.home-redesign .mosaic-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 240px;
    box-shadow: 0 18px 42px rgba(44, 20, 35, 0.1);
}

.home-redesign .mosaic-product-card {
    cursor: pointer;
}

.home-redesign .mosaic-product-card:focus-visible {
    outline: 3px solid rgba(215, 62, 166, 0.45);
    outline-offset: 4px;
}

.home-redesign .mosaic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.home-redesign .mosaic-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(44, 20, 35, 0.05) 0%, rgba(44, 20, 35, 0.72) 100%);
}

.home-redesign .mosaic-card:hover img {
    transform: scale(1.06);
}

.home-redesign .mosaic-card-preview {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(44, 20, 35, 0.16);
}

.home-redesign .mosaic-card-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 1;
    color: var(--ldp-white);
}

.home-redesign .mosaic-card-content span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.home-redesign .mosaic-card-content strong {
    display: block;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1.18;
}

.home-redesign .mosaic-card-title {
    cursor: pointer;
}

.home-redesign .mosaic-card-add {
    position: relative;
    z-index: 2;
    width: fit-content;
    margin-top: 14px;
    padding: 12px 18px;
    box-shadow: 0 12px 24px rgba(44, 20, 35, 0.16);
}

.home-redesign .mosaic-card-add:hover {
    transform: translateY(-1px);
}

.home-redesign .mosaic-card-1 { grid-area: 1 / 1 / 3 / 2; }
.home-redesign .mosaic-card-2 { grid-area: 1 / 2 / 2 / 3; }
.home-redesign .mosaic-card-3 { grid-area: 1 / 3 / 2 / 4; }
.home-redesign .mosaic-card-4 { grid-area: 2 / 2 / 3 / 4; }

.home-redesign .home-mosaic-grid--1 {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(320px, 1fr);
}

.home-redesign .home-mosaic-grid--1 .mosaic-card-1 {
    grid-area: auto;
}

.home-redesign .home-mosaic-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(260px, 1fr);
}

.home-redesign .home-mosaic-grid--2 .mosaic-card-1,
.home-redesign .home-mosaic-grid--2 .mosaic-card-2 {
    grid-area: auto;
}

.home-redesign .home-mosaic-grid--3 {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: repeat(2, minmax(240px, 1fr));
}

.home-redesign .home-mosaic-grid--3 .mosaic-card-1 {
    grid-area: 1 / 1 / 3 / 2;
}

.home-redesign .home-mosaic-grid--3 .mosaic-card-2 {
    grid-area: 1 / 2 / 2 / 3;
}

.home-redesign .home-mosaic-grid--3 .mosaic-card-3 {
    grid-area: 2 / 2 / 3 / 3;
}

.home-redesign .home-steps-section {
    padding: 0 0 90px;
}

.home-redesign .home-steps-section .container {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 241, 236, 0.98));
    border: 1px solid var(--ldp-border);
    border-radius: 34px;
    padding: clamp(28px, 4vw, 56px);
    box-shadow: 0 18px 45px rgba(44, 20, 35, 0.08);
}

.home-redesign .home-steps-section h2 {
    text-align: center;
    margin-bottom: 26px;
}

.home-redesign .home-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-redesign .step-card {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(155, 45, 114, 0.1);
}

.home-redesign .step-card span {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ldp-blush);
    color: var(--ldp-plum);
    font-weight: 800;
    margin-bottom: 18px;
}

.home-redesign .step-card h3 {
    font-size: 1.32rem;
    margin-bottom: 10px;
    color: var(--ldp-ink);
}

.home-redesign .step-card p {
    color: rgba(44, 20, 35, 0.7);
    line-height: 1.7;
}

.home-redesign .home-steps-btn {
    display: flex;
    width: fit-content;
    margin: 28px auto 0;
    color: var(--ldp-plum);
    border-color: rgba(155, 45, 114, 0.22);
    background: rgba(215, 62, 166, 0.08);
}

.home-redesign .home-steps-btn:hover {
    background: linear-gradient(135deg, var(--ldp-plum), var(--ldp-pink));
    color: var(--ldp-white);
    border-color: transparent;
}

.home-redesign .categories-section,
.home-redesign .products-section,
.home-redesign .about-section {
    padding: 84px 0;
    background: transparent;
}

.home-redesign .section-header {
    margin-bottom: 42px;
}

.home-redesign .section-header p {
    max-width: 720px;
}

.home-redesign .categories-grid {
    gap: 18px;
}

.home-redesign .category-card {
    border-radius: 28px;
    box-shadow: 0 18px 42px rgba(44, 20, 35, 0.09);
}

.home-redesign .category-card-overlay {
    padding: 26px;
    background: linear-gradient(180deg, rgba(44, 20, 35, 0.05) 10%, rgba(44, 20, 35, 0.72) 100%);
}

.home-redesign .category-card-overlay h3 {
    font-size: 1.8rem;
}

.home-redesign .category-card-overlay span {
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.95rem;
}

.home-redesign .filters-bar {
    justify-content: space-between;
    align-items: flex-end;
}

.home-redesign .filter-pill {
    border-radius: 999px;
    border-color: rgba(155, 45, 114, 0.2);
    color: var(--ldp-plum);
    padding: 10px 18px;
    text-transform: none;
    letter-spacing: 0;
}

.home-redesign .filter-pill:hover {
    background: rgba(215, 62, 166, 0.08);
}

.home-redesign .filter-pill.active {
    background: linear-gradient(135deg, var(--ldp-plum), var(--ldp-pink));
    border-color: transparent;
}

.home-redesign .search-input input,
.home-redesign .per-page-select select {
    border-radius: 999px;
    border-color: rgba(155, 45, 114, 0.16);
}

.home-redesign .search-input input:focus,
.home-redesign .per-page-select select:focus {
    border-color: var(--ldp-plum);
}

.home-redesign .products-grid {
    gap: 22px;
}

.home-redesign .product-card {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(155, 45, 114, 0.09);
    box-shadow: 0 18px 42px rgba(44, 20, 35, 0.08);
}

.home-redesign .product-card-image {
    background: linear-gradient(180deg, rgba(248, 241, 236, 0.9), rgba(255, 255, 255, 1));
}

.home-redesign .product-card-body {
    padding: 20px 18px 22px;
}

.home-redesign .product-card-category {
    color: var(--ldp-pink);
    letter-spacing: 0.08em;
}

.home-redesign .product-card-title {
    font-size: 1.2rem;
}

.home-redesign .product-card-price {
    color: var(--ldp-plum);
    font-size: 1.15rem;
    font-weight: 800;
}

.home-redesign .btn-add-cart {
    background: linear-gradient(135deg, var(--ldp-plum), var(--ldp-pink));
    text-transform: none;
    letter-spacing: 0;
    border-radius: 999px;
}

.home-redesign .btn-add-cart:hover {
    background: linear-gradient(135deg, #7f245d, #bf2f90);
}

.home-redesign .pagination button {
    border-radius: 50%;
    border-color: rgba(155, 45, 114, 0.15);
}

.home-redesign .pagination button.active {
    background: linear-gradient(135deg, var(--ldp-plum), var(--ldp-pink));
    border-color: transparent;
}

.home-redesign .trust-section {
    background: transparent;
    border: 0;
    padding: 16px 0 84px;
}

.home-redesign .trust-grid {
    gap: 18px;
}

.home-redesign .trust-item {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(155, 45, 114, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(44, 20, 35, 0.06);
}

.home-redesign .trust-icon {
    border-radius: 16px;
    background: var(--ldp-blush);
    color: var(--ldp-plum);
}

.home-redesign .trust-item h4 {
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: none;
}

.home-redesign .about-inner {
    gap: 34px;
    padding: 0 24px;
    align-items: stretch;
}

.home-redesign .about-image,
.home-redesign .about-content {
    border-radius: 30px;
    overflow: hidden;
}

.home-redesign .about-image {
    min-height: 460px;
    box-shadow: 0 18px 42px rgba(44, 20, 35, 0.08);
}

.home-redesign .about-content {
    padding: clamp(26px, 4vw, 46px);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(155, 45, 114, 0.08);
    box-shadow: 0 18px 42px rgba(44, 20, 35, 0.06);
}

.home-redesign .about-content h2 {
    font-size: clamp(2.2rem, 3vw, 3.3rem);
}

.home-redesign .about-content p {
    margin: 0 0 14px;
    max-width: none;
}

.home-redesign .newsletter-section {
    background: transparent;
    padding: 0 0 82px;
}

.home-redesign .newsletter-section .container {
    padding-top: clamp(28px, 4vw, 54px);
    padding-bottom: clamp(28px, 4vw, 54px);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(155, 45, 114, 0.96), rgba(215, 62, 166, 0.96));
    box-shadow: var(--ldp-shadow);
}

.home-redesign .newsletter-section h2,
.home-redesign .newsletter-section p {
    color: var(--ldp-white);
}

.home-redesign .newsletter-form {
    max-width: 560px;
    gap: 10px;
}

.home-redesign .newsletter-form input,
.home-redesign .newsletter-form button {
    border-radius: 999px;
}

.home-redesign .newsletter-form button {
    background: var(--ldp-ink);
    border-color: var(--ldp-ink);
}

.home-redesign .site-footer {
    background: #2c1423;
    color: rgba(255, 255, 255, 0.72);
    border-top: 0;
    padding: 68px 24px 42px;
}

.home-redesign .site-footer .container {
    max-width: 1320px;
}

.home-redesign .footer-brand h3,
.home-redesign .footer-col h4,
.home-redesign .footer-col a:hover,
.home-redesign .footer-bottom {
    color: var(--ldp-white);
}

.home-redesign .footer-social a {
    border-radius: 50%;
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--ldp-white);
}

.home-redesign .footer-social a:hover {
    border-color: var(--ldp-pink);
    color: var(--ldp-pink);
}

.home-redesign .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.home-redesign .mobile-nav {
    top: 114px;
    left: 24px;
    right: 24px;
    bottom: auto;
    background: rgba(248, 241, 236, 0.98);
    border: 1px solid rgba(155, 45, 114, 0.1);
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(44, 20, 35, 0.16);
    padding: 16px 24px;
}

.home-redesign .mobile-nav a {
    border-bottom-color: rgba(155, 45, 114, 0.1);
    color: var(--ldp-ink);
}

.home-redesign .mobile-nav a:last-child {
    border-bottom: 0;
}

.home-redesign.blog-page {
    padding-top: 126px;
}

.home-redesign .blog-hero {
    padding: 126px 24px 30px;
}

.home-redesign .blog-hero-card {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(38px, 6vw, 72px);
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(215, 62, 166, 0.16), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 241, 236, 0.98));
    border: 1px solid rgba(155, 45, 114, 0.12);
    box-shadow: var(--ldp-shadow);
}

.home-redesign .blog-hero-card span {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(215, 62, 166, 0.1);
    color: var(--ldp-plum);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
    font-weight: 700;
}

.home-redesign .blog-hero-card h1 {
    margin-top: 18px;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1;
    color: var(--ldp-plum);
}

.home-redesign .blog-hero-card p {
    max-width: 760px;
    margin-top: 18px;
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(44, 20, 35, 0.74);
}

.home-redesign .blog-list-section {
    padding: 18px 0 88px;
}

.home-redesign .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.home-redesign .blog-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(155, 45, 114, 0.08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(44, 20, 35, 0.08);
    min-height: 100%;
}

.home-redesign .blog-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.home-redesign .blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.home-redesign .blog-card:hover .blog-card-media img {
    transform: scale(1.05);
}

.home-redesign .blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.home-redesign .blog-card-date {
    font-size: 0.82rem;
    color: var(--ldp-pink);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-redesign .blog-card h2 {
    font-size: 1.35rem;
    line-height: 1.25;
    color: var(--ldp-ink);
    margin-bottom: 12px;
}

.home-redesign .blog-card p {
    color: rgba(44, 20, 35, 0.72);
    line-height: 1.75;
    margin-bottom: 20px;
    flex: 1;
}

.home-redesign .blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ldp-plum);
    font-weight: 700;
}

.home-redesign .blog-empty {
    text-align: center;
    padding: 44px 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(155, 45, 114, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(44, 20, 35, 0.06);
}

.home-redesign .blog-empty p {
    max-width: 620px;
    margin: 0 auto 22px;
    color: rgba(44, 20, 35, 0.72);
    line-height: 1.75;
}

@keyframes homeMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes homeFadeUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .home-redesign .header-nav {
        gap: 20px;
    }

    .home-redesign .hero-inner {
        min-height: 700px;
    }

    .home-redesign .home-mosaic-grid,
    .home-redesign .blog-grid,
    .home-redesign .products-grid,
    .home-redesign .categories-grid,
    .home-redesign .trust-grid,
    .home-redesign .home-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-redesign .home-mosaic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(3, minmax(240px, auto));
    }

    .home-redesign .mosaic-card-1,
    .home-redesign .mosaic-card-2,
    .home-redesign .mosaic-card-3,
    .home-redesign .mosaic-card-4 {
        grid-area: auto;
    }

    .home-redesign .mosaic-card-add {
        width: 100%;
    }

    .home-redesign .about-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .home-redesign .site-header {
        top: 14px;
        left: 16px;
        right: 16px;
        max-width: calc(100% - 32px);
        border-radius: 22px;
    }

    .home-redesign .header-inner {
        height: 78px;
        padding: 0 18px;
    }

    .home-redesign .header-nav,
    .home-redesign .lang-toggle {
        display: none;
    }

    .home-redesign .hamburger {
        display: inline-flex;
    }

    .home-redesign .hero {
        padding: 108px 16px 0;
    }

    .home-redesign .blog-hero {
        padding: 108px 16px 24px;
    }

    .home-redesign .hero-inner {
        padding: 30px 24px 24px;
        min-height: 620px;
    }

    .home-redesign .hero-content {
        min-height: 500px;
    }

    .home-redesign .hero-shop-btn {
        min-width: 154px;
    }

    .home-redesign .hero-cta-top-left,
    .home-redesign .hero-cta-top-center,
    .home-redesign .hero-cta-top-right,
    .home-redesign .hero-cta-center-left,
    .home-redesign .hero-cta-center,
    .home-redesign .hero-cta-center-right,
    .home-redesign .hero-cta-bottom-left,
    .home-redesign .hero-cta-bottom-center,
    .home-redesign .hero-cta-bottom-right {
        left: 24px;
        right: auto;
        top: auto;
        bottom: 24px;
        transform: none;
    }

    .home-redesign .benefits-marquee {
        margin: 12px 16px 0;
    }

    .home-redesign .home-cta-section {
        padding-top: 64px;
    }

    .home-redesign .filters-bar {
        justify-content: center;
    }

    .home-redesign .filters-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .home-redesign .mobile-nav {
        top: 100px;
        left: 16px;
        right: 16px;
    }
}

@media (max-width: 640px) {
    .home-redesign .container {
        padding: 0 16px;
    }

    .home-redesign .header-inner {
        height: 70px;
    }

    .home-redesign .header-logo img {
        max-height: 42px;
    }

    .home-redesign .header-icon {
        width: 42px;
        height: 42px;
    }

    .home-redesign .hero {
        padding: 98px 16px 0;
    }

    .home-redesign .blog-hero {
        padding: 98px 16px 20px;
    }

    .home-redesign .hero-inner {
        padding: 24px 18px 20px;
        border-radius: 28px;
        min-height: 560px;
    }

    .home-redesign .hero-content {
        min-height: 440px;
    }

    .home-redesign .hero h1 {
        font-size: 2.5rem;
    }

    .home-redesign .hero-desc,
    .home-redesign .home-cta-section p,
    .home-redesign .section-header p,
    .home-redesign .blog-hero-card p {
        font-size: 0.98rem;
    }

    .home-redesign .home-mosaic-grid,
    .home-redesign .blog-grid,
    .home-redesign .products-grid,
    .home-redesign .categories-grid,
    .home-redesign .trust-grid,
    .home-redesign .home-steps-grid,
    .home-redesign .footer-grid,
    .home-redesign .newsletter-form {
        grid-template-columns: 1fr;
    }

    .home-redesign .mosaic-card {
        min-height: 260px;
    }

    .home-redesign .step-card,
    .home-redesign .blog-card-body,
    .home-redesign .trust-item,
    .home-redesign .about-content {
        padding: 22px;
    }

    .home-redesign .newsletter-form {
        gap: 12px;
    }

    .home-redesign .newsletter-form button {
        width: 100%;
    }

    .home-redesign .site-footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .home-redesign .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
