:root {
    --rose: #e8b4b8;
    --rose-dark: #c98f95;
    --rose-deep: #a86971;
    --rose-light: #fff7f8;
    --rose-soft: #f9e9eb;

    --white: #ffffff;

    --text: #292529;
    --text-soft: #777277;
    --text-light: #a29ca0;

    --border: #eee8e9;

    --footer: #292529;

    --container: 1320px;

    --font-title: "Playfair Display", serif;
    --font-body: "Inter", sans-serif;

    --shadow-soft:
        0 20px 60px rgba(52, 34, 38, 0.08);

    --transition:
        0.3s cubic-bezier(
            0.2,
            0.7,
            0.2,
            1
        );
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;

    overflow-x: hidden;

    background: var(--white);
    color: var(--text);

    font-family: var(--font-body);

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
    font-family: var(--font-body);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}


/* =========================================================
   HEADER
========================================================= */

.announcement {
    min-height: 34px;

    padding: 9px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--rose-light);

    color: var(--text);

    text-align: center;

    font-size: 11px;
    letter-spacing: 0.05em;
}

.site-header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background:
        rgba(255, 255, 255, 0.94);

    border-bottom:
        1px solid rgba(238, 232, 233, 0.86);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-container {
    width: min(
        calc(100% - 56px),
        var(--container)
    );

    min-height: 82px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(170px, 1fr)
        auto
        minmax(170px, 1fr);

    align-items: center;

    gap: 34px;
}

.brand {
    display: inline-flex;
    flex-direction: column;

    width: fit-content;

    line-height: 1;
}

.brand-name {
    font-family: var(--font-title);

    font-size: 25px;
    font-weight: 500;

    letter-spacing: 0.17em;
}

.brand-subtitle {
    margin-top: 6px;

    color: var(--rose-dark);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.65em;
}

.main-navigation {
    display: flex;
    align-items: center;

    gap: 28px;
}

.main-navigation a {
    position: relative;

    color: var(--text-soft);

    font-size: 12px;
    font-weight: 500;
}

.main-navigation a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 0;
    height: 1px;

    background: var(--rose-dark);

    transition: width var(--transition);
}

.main-navigation a:hover {
    color: var(--text);
}

.main-navigation a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    gap: 5px;
}

.header-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 0;

    background: transparent;

    color: var(--text);

    font-size: 20px;

    border-radius: 50%;

    transition:
        background var(--transition),
        transform var(--transition);
}

.header-icon:hover {
    background: var(--rose-light);

    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero-home {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #fffafa 53%,
            #fff3f4 100%
        );
}

.hero-home::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -190px;
    top: -270px;

    border-radius: 50%;

    background:
        rgba(232, 180, 184, 0.18);

    filter: blur(10px);
}

.hero-home-container {
    position: relative;

    width: min(
        calc(100% - 56px),
        var(--container)
    );

    min-height: 720px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(480px, 0.85fr);

    align-items: center;

    gap: 72px;
}

.hero-home-content {
    position: relative;

    z-index: 2;

    padding: 80px 0;
}

.hero-eyebrow {
    color: var(--rose-deep);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.32em;
}

.hero-home-content h1 {
    max-width: 680px;

    margin-top: 22px;

    font-family: var(--font-title);

    font-size:
        clamp(58px, 6vw, 94px);

    font-weight: 500;

    line-height: 0.96;

    letter-spacing: -0.045em;
}

.hero-home-content h1 em {
    display: block;

    color: var(--rose-dark);

    font-weight: 500;
}

.hero-home-content > p {
    max-width: 510px;

    margin-top: 30px;

    color: var(--text-soft);

    font-size: 16px;

    line-height: 1.8;
}

.hero-actions {
    margin-top: 36px;

    display: flex;
    align-items: center;

    gap: 14px;
}

.primary-button,
.secondary-button {
    min-height: 54px;

    padding: 0 29px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 650;

    letter-spacing: 0.04em;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.primary-button {
    background: var(--rose-dark);

    color: var(--white);
}

.primary-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 20px 46px
        rgba(201, 143, 149, 0.3);
}

.secondary-button {
    border:
        1px solid rgba(41, 37, 41, 0.14);

    color: var(--text);
}

.secondary-button:hover {
    background: var(--white);

    transform: translateY(-2px);
}

.hero-trust {
    margin-top: 56px;

    display: flex;

    gap: 42px;
}

.hero-trust > div {
    display: flex;
    flex-direction: column;

    gap: 6px;
}

.hero-trust strong {
    font-family: var(--font-title);

    font-size: 16px;
    font-weight: 500;
}

.hero-trust span {
    color: var(--text-soft);

    font-size: 10px;
}

.hero-home-visual {
    position: relative;

    min-height: 590px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-picture {
    position: absolute;

    inset: 0;

    overflow: hidden;

    border-radius:
        260px 260px 34px 34px;
}

.hero-main-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 1.2s cubic-bezier(
            0.2,
            0.7,
            0.2,
            1
        );
}

.hero-home:hover
.hero-main-image {
    transform: scale(1.018);
}

.hero-photo-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    border-radius:
        260px 260px 34px 34px;

    background:
        linear-gradient(
            to top,
            rgba(32, 23, 27, 0.4),
            transparent 48%
        );
}

.hero-image-copy {
    z-index: 3;
}

.hero-floating-card {
    z-index: 4;
}

.hero-image-copy {
    position: absolute;

    left: 44px;
    bottom: 45px;

    z-index: 2;

    display: flex;
    flex-direction: column;

    gap: 12px;

    color: var(--white);
}

.hero-image-copy span {
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.35em;
}

.hero-image-copy strong {
    font-family: var(--font-title);

    font-size: 34px;
    font-weight: 500;

    line-height: 1.05;
}

.hero-floating-card {
    position: absolute;

    left: -58px;
    bottom: 65px;

    width: 220px;

    padding: 25px;

    display: flex;
    flex-direction: column;

    gap: 10px;

    background:
        rgba(255, 255, 255, 0.9);

    box-shadow: var(--shadow-soft);

    border:
        1px solid rgba(255, 255, 255, 0.8);

    border-radius: 20px;

    backdrop-filter: blur(14px);
}

.hero-floating-card span {
    color: var(--rose-deep);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.25em;
}

.hero-floating-card strong {
    font-family: var(--font-title);

    font-size: 20px;
    font-weight: 500;

    line-height: 1.35;
}


/* =========================================================
   SECTIONS
========================================================= */

.home-section {
    width: min(
        calc(100% - 56px),
        var(--container)
    );

    margin: 0 auto;

    padding: 112px 0;
}

.section-heading {
    max-width: 610px;

    margin: 0 auto 60px;

    text-align: center;
}

.section-heading > span {
    color: var(--rose-deep);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.3em;
}

.section-heading h2 {
    margin-top: 15px;

    font-family: var(--font-title);

    font-size:
        clamp(40px, 4vw, 58px);

    font-weight: 500;

    line-height: 1.06;

    letter-spacing: -0.035em;
}

.section-heading p {
    margin-top: 18px;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.75;
}

.section-heading-left {
    max-width: 600px;

    margin: 0;

    text-align: left;
}

.products-section-header {
    margin-bottom: 58px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}

.section-link,
.editorial-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding-bottom: 7px;

    border-bottom:
        1px solid rgba(41, 37, 41, 0.23);

    font-size: 11px;
    font-weight: 600;

    transition:
        color var(--transition),
        border var(--transition);
}

.section-link:hover,
.editorial-link:hover {
    color: var(--rose-deep);

    border-color: var(--rose-dark);
}


/* =========================================================
   CATEGORIES
========================================================= */

.categories-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.category-card-media {
    position: relative;

    aspect-ratio: 0.72;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #fff7f8,
            #efd5d8
        );

    border-radius: 24px;
}

.category-card-media img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 2;

    transition:
        transform 0.8s cubic-bezier(
            0.2,
            0.7,
            0.2,
            1
        );
}

.category-card:hover
.category-card-media img {
    transform: scale(1.045);
}

.category-card-fallback {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 8px;

    z-index: 1;
}

.category-card-fallback span {
    color:
        rgba(41, 37, 41, 0.28);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.4em;
}

.category-card-fallback strong {
    color:
        rgba(41, 37, 41, 0.26);

    font-family: var(--font-title);

    font-size: 28px;
    font-weight: 500;
}

.category-card-overlay {
    position: absolute;

    inset: 0;

    z-index: 3;

    background:
        linear-gradient(
            to top,
            rgba(28, 22, 25, 0.56),
            transparent 57%
        );
}

.category-card-copy {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 30px;

    z-index: 4;

    color: var(--white);
}

.category-card-copy > span {
    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.3em;
}

.category-card-copy h3 {
    margin-top: 9px;

    font-family: var(--font-title);

    font-size: 31px;
    font-weight: 500;
}

.category-card-copy small {
    margin-top: 15px;

    display: flex;
    align-items: center;

    gap: 8px;

    font-size: 10px;

    opacity: 0.85;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    padding-top: 105px;
}

.products-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:
        46px 18px;
}

.product-card {
    min-width: 0;
}

.product-card-media {
    position: relative;

    overflow: hidden;

    background: var(--rose-light);

    border-radius: 20px;
}

.product-card-image-link {
    position: relative;

    display: block;

    aspect-ratio: 0.82;

    overflow: hidden;
}

.product-card-image {
    position: absolute;

    inset: 0;

    z-index: 2;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        opacity var(--transition),
        transform 0.7s cubic-bezier(
            0.2,
            0.7,
            0.2,
            1
        );
}

.product-card-image-secondary {
    opacity: 0;

    z-index: 3;
}

.product-card:hover
.product-card-image-primary {
    transform: scale(1.025);
}

.product-card:hover
.product-card-image-secondary {
    opacity: 1;

    transform: scale(1.025);
}

.product-image-fallback {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 9px;

    background:
        radial-gradient(
            circle at 50% 40%,
            #ffffff,
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #fff9f9,
            #efd7da
        );
}

.product-image-fallback::before {
    content: "◇";

    color:
        rgba(201, 143, 149, 0.34);

    font-size: 72px;
}

.product-image-fallback-brand {
    color:
        rgba(41, 37, 41, 0.28);

    font-family: var(--font-title);

    font-size: 19px;

    letter-spacing: 0.22em;
}

.product-image-fallback-category {
    color:
        rgba(41, 37, 41, 0.32);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.3em;

    text-transform: uppercase;
}

.product-badges {
    position: absolute;

    left: 14px;
    top: 14px;

    z-index: 10;

    display: flex;
    flex-wrap: wrap;

    gap: 6px;
}

.product-badge {
    min-height: 25px;

    padding: 0 11px;

    display: inline-flex;
    align-items: center;

    background:
        rgba(255, 255, 255, 0.92);

    color: var(--text);

    border-radius: 999px;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    backdrop-filter: blur(8px);
}

.product-badge-sale {
    background: var(--rose-dark);

    color: var(--white);
}

.product-badge-best {
    background: var(--text);

    color: var(--white);
}

.product-favorite-button {
    position: absolute;

    right: 14px;
    top: 14px;

    z-index: 10;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 0;

    background:
        rgba(255, 255, 255, 0.9);

    color: var(--text);

    border-radius: 50%;

    font-size: 20px;

    backdrop-filter: blur(8px);

    transition:
        transform var(--transition),
        background var(--transition);
}

.product-favorite-button:hover {
    background: var(--white);

    transform: scale(1.05);
}

.product-quick-add {
    position: absolute;

    left: 14px;
    right: 14px;
    bottom: 14px;

    z-index: 10;

    min-height: 46px;

    padding: 0 20px;

    border: 0;

    background:
        rgba(255, 255, 255, 0.94);

    color: var(--text);

    border-radius: 999px;

    font-size: 10px;
    font-weight: 650;

    opacity: 0;

    transform: translateY(12px);

    transition:
        opacity var(--transition),
        transform var(--transition),
        background var(--transition),
        color var(--transition);

    backdrop-filter: blur(10px);
}

.product-card:hover
.product-quick-add {
    opacity: 1;

    transform: translateY(0);
}

.product-quick-add:hover {
    background: var(--text);

    color: var(--white);
}

.product-card-content {
    padding: 18px 3px 0;
}

.product-card-category {
    color: var(--rose-deep);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.product-card-title {
    margin-top: 8px;

    font-family: var(--font-title);

    font-size: 19px;
    font-weight: 500;

    line-height: 1.35;
}

.product-card-title a {
    transition: color var(--transition);
}

.product-card-title a:hover {
    color: var(--rose-deep);
}

.product-card-price {
    margin-top: 13px;

    display: flex;
    align-items: center;

    gap: 9px;
}

.product-card-price strong {
    font-size: 13px;
    font-weight: 650;
}

.product-old-price {
    color: var(--text-light);

    font-size: 11px;

    text-decoration: line-through;
}

.product-installment {
    margin-top: 6px;

    color: var(--text-soft);

    font-size: 10px;
}

.products-empty {
    padding: 90px 30px;

    background: var(--rose-light);

    text-align: center;

    border-radius: 28px;
}

.products-empty span {
    color: var(--rose-deep);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.3em;
}

.products-empty h3 {
    margin-top: 15px;

    font-family: var(--font-title);

    font-size: 34px;
    font-weight: 500;
}

.products-empty p {
    margin-top: 12px;

    color: var(--text-soft);

    font-size: 13px;
}


/* =========================================================
   EDITORIAL
========================================================= */

.editorial-banner {
    padding:
        40px 28px 110px;
}

.editorial-banner-container {
    width: min(
        100%,
        1440px
    );

    min-height: 640px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    overflow: hidden;

    background: var(--text);

    border-radius: 34px;
}

.editorial-banner-visual {
    position: relative;

    min-height: 640px;

    display: grid;
    place-items: center;

    overflow: hidden;

    background: var(--rose-dark);
}

.editorial-banner-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 1.2s cubic-bezier(
            0.2,
            0.7,
            0.2,
            1
        );
}

.editorial-banner-container:hover
.editorial-banner-image {
    transform: scale(1.02);
}

.editorial-image-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            rgba(117, 69, 77, 0.2),
            rgba(46, 29, 34, 0.42)
        );
}

.editorial-visual-mark {
    z-index: 2;
}

.editorial-banner-visual::before,
.editorial-banner-visual::after {
    content: "";

    position: absolute;

    border:
        1px solid rgba(255, 255, 255, 0.28);

    border-radius: 50%;
}

.editorial-banner-visual::before {
    width: 330px;
    height: 330px;
}

.editorial-banner-visual::after {
    width: 440px;
    height: 440px;
}

.editorial-visual-mark {
    position: relative;

    z-index: 3;

    width: 190px;
    height: 190px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255, 255, 255, 0.72);

    color: var(--white);

    border-radius: 50%;
}

.editorial-visual-mark span {
    font-family: var(--font-title);

    font-size: 72px;

    line-height: 1;
}

.editorial-visual-mark small {
    margin-top: 8px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.42em;
}

.editorial-banner-content {
    padding: 90px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    color: var(--white);
}

.editorial-banner-content
.hero-eyebrow {
    color: var(--rose);
}

.editorial-banner-content h2 {
    max-width: 510px;

    margin-top: 18px;

    font-family: var(--font-title);

    font-size:
        clamp(46px, 4.8vw, 70px);

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -0.04em;
}

.editorial-banner-content h2 em {
    display: block;

    color: var(--rose);

    font-weight: 500;
}

.editorial-banner-content p {
    max-width: 460px;

    margin-top: 28px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 14px;

    line-height: 1.85;
}

.editorial-link {
    width: fit-content;

    margin-top: 35px;

    border-color:
        rgba(255, 255, 255, 0.28);
}


/* =========================================================
   BENEFITS
========================================================= */

.benefits-section {
    padding: 82px 28px;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.benefits-container {
    width: min(
        100%,
        var(--container)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;

    gap: 18px;
}

.benefit-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border:
        1px solid var(--border);

    color: var(--rose-deep);

    border-radius: 50%;

    font-family: var(--font-title);

    font-size: 15px;
}

.benefit-item h3 {
    font-family: var(--font-title);

    font-size: 17px;
    font-weight: 500;
}

.benefit-item p {
    margin-top: 7px;

    color: var(--text-soft);

    font-size: 11px;

    line-height: 1.65;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter-section {
    padding: 120px 28px;

    background:
        linear-gradient(
            145deg,
            #fff9fa,
            #f8e5e7
        );
}

.newsletter-container {
    max-width: 690px;

    margin: 0 auto;

    text-align: center;
}

.newsletter-eyebrow {
    color: var(--rose-deep);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.32em;
}

.newsletter-container h2 {
    margin-top: 16px;

    font-family: var(--font-title);

    font-size:
        clamp(42px, 5vw, 62px);

    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -0.035em;
}

.newsletter-container > p {
    max-width: 510px;

    margin:
        20px auto 0;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.8;
}

.newsletter-form {
    max-width: 590px;

    min-height: 62px;

    margin:
        36px auto 0;

    padding: 6px;

    display: flex;

    background: var(--white);

    border:
        1px solid rgba(201, 143, 149, 0.18);

    border-radius: 999px;

    box-shadow:
        0 20px 60px
        rgba(90, 56, 61, 0.07);
}

.newsletter-form input {
    flex: 1;

    min-width: 0;

    padding: 0 24px;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--text);

    font-size: 12px;
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form button {
    min-width: 175px;

    padding: 0 24px;

    border: 0;

    background: var(--rose-dark);

    color: var(--white);

    border-radius: 999px;

    font-size: 10px;
    font-weight: 650;
}

.newsletter-container small {
    display: block;

    margin-top: 16px;

    color: var(--text-light);

    font-size: 9px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: var(--footer);

    color: var(--white);
}

.footer-container {
    width: min(
        calc(100% - 56px),
        var(--container)
    );

    margin: 0 auto;

    padding: 88px 0;

    display: grid;

    grid-template-columns:
        2fr repeat(3, 1fr);

    gap: 50px;
}

.footer-brand .brand-name,
.footer-brand .brand-subtitle {
    display: block;
}

.footer-brand p {
    max-width: 300px;

    margin-top: 25px;

    color:
        rgba(255, 255, 255, 0.56);

    font-size: 12px;

    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.footer-column h3 {
    margin-bottom: 8px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.footer-column a {
    color:
        rgba(255, 255, 255, 0.56);

    font-size: 12px;

    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--rose);
}

.footer-bottom {
    padding: 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    color:
        rgba(255, 255, 255, 0.38);

    text-align: center;

    font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
    .header-container {
        grid-template-columns:
            1fr auto 1fr;
    }

    .main-navigation {
        display: none;
    }

    .mobile-menu-button {
        display: grid;

        justify-self: start;
    }

    .brand {
        justify-self: center;
    }

    .hero-home-container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(390px, 0.82fr);

        gap: 45px;
    }

    .hero-home-content h1 {
        font-size:
            clamp(55px, 7vw, 76px);
    }

    .hero-home-visual {
        min-height: 530px;
    }

    .hero-image-placeholder {
        height: 530px;
    }

    .hero-floating-card {
        left: -30px;
    }

    .categories-grid,
    .products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .editorial-banner-content {
        padding: 60px;
    }

    .benefits-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 45px 30px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {
    .announcement {
        min-height: 30px;

        padding: 8px 14px;

        font-size: 9px;
    }
    
    .hero-home-visual {
    position: relative;

    min-height: auto;

    aspect-ratio: 0.82;

    margin: 0 14px 30px;

    padding: 0;
}

.hero-picture,
.hero-photo-overlay {
    border-radius:
        180px 180px 25px 25px;
}

.hero-image-copy {
    left: 28px;
    bottom: 30px;
}
    
    .header-container {
        width: calc(100% - 24px);

        min-height: 66px;

        gap: 6px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-subtitle {
        margin-top: 5px;

        font-size: 6px;
    }

    .header-actions {
        gap: 0;
    }

    .header-icon {
        width: 34px;
        height: 34px;

        font-size: 17px;
    }

    .desktop-action,
    .header-actions
    .header-icon:nth-child(2) {
        display: none;
    }

    .hero-home-container {
        width: 100%;

        min-height: auto;

        grid-template-columns: 1fr;

        gap: 0;
    }

    .hero-home-content {
        padding:
            78px 22px 56px;

        text-align: center;
    }

    .hero-home-content h1 {
        max-width: 100%;

        margin-top: 18px;

        font-size:
            clamp(50px, 16vw, 70px);
    }

    .hero-home-content > p {
        max-width: 400px;

        margin:
            25px auto 0;

        font-size: 14px;
    }

    .hero-actions {
        margin-top: 31px;

        flex-direction: column;

        gap: 10px;
    }

    .primary-button,
    .secondary-button {
        width: min(100%, 330px);

        min-height: 52px;
    }

    .hero-trust {
        margin-top: 45px;

        justify-content: center;

        gap: 22px;
    }

    .hero-trust > div {
        flex: 1;

        max-width: 155px;
    }

    .hero-trust strong {
        font-size: 14px;
    }

    .hero-trust span {
        font-size: 9px;
    }

    .hero-home-visual {
        min-height: auto;

        padding: 0 14px 30px;
    }

    .hero-image-copy {
        left: 28px;
        bottom: 30px;
    }

    .hero-image-copy strong {
        font-size: 28px;
    }

    .hero-floating-card {
        display: none;
    }

    .home-section {
        width: calc(100% - 28px);

        padding: 78px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size:
            clamp(38px, 12vw, 50px);
    }

    .section-heading p {
        font-size: 12px;
    }

    .categories-grid {
        gap: 10px;
    }

    .category-card-media {
        border-radius: 17px;
    }

    .category-card-copy {
        left: 16px;
        right: 16px;
        bottom: 18px;
    }

    .category-card-copy > span {
        font-size: 6px;
    }

    .category-card-copy h3 {
        margin-top: 7px;

        font-size: 22px;
    }

    .category-card-copy small {
        margin-top: 10px;

        font-size: 8px;
    }

    .products-section-header {
        margin-bottom: 40px;

        align-items: flex-end;

        gap: 10px;
    }

    .section-heading-left {
        max-width: calc(100% - 74px);
    }

    .section-heading-left h2 {
        font-size:
            clamp(34px, 10vw, 44px);
    }

    .section-heading-left p {
        display: none;
    }

    .section-link {
        flex: 0 0 auto;

        font-size: 9px;
    }

    .products-grid {
        gap:
            34px 10px;
    }

    .product-card-media {
        border-radius: 14px;
    }

    .product-badges {
        left: 8px;
        top: 8px;

        gap: 4px;
    }

    .product-badge {
        min-height: 21px;

        padding: 0 8px;

        font-size: 6px;
    }

    .product-badge-best {
        display: none;
    }

    .product-favorite-button {
        right: 8px;
        top: 8px;

        width: 31px;
        height: 31px;

        font-size: 17px;
    }

    .product-quick-add {
        position: static;

        width: calc(100% - 16px);

        min-height: 38px;

        margin:
            0 8px 8px;

        padding: 0 10px;

        opacity: 1;

        transform: none;

        background:
            rgba(255, 255, 255, 0.95);

        font-size: 8px;
    }

    .product-card-content {
        padding:
            13px 2px 0;
    }

    .product-card-category {
        font-size: 6px;
    }

    .product-card-title {
        margin-top: 6px;

        font-size: 15px;
    }

    .product-card-price {
        margin-top: 9px;

        flex-wrap: wrap;

        gap: 5px;
    }

    .product-card-price strong {
        font-size: 11px;
    }

    .product-old-price {
        font-size: 9px;
    }

    .product-installment {
        font-size: 8px;

        line-height: 1.4;
    }

    .editorial-banner {
        padding:
            10px 14px 75px;
    }

    .editorial-banner-container {
        min-height: auto;

        grid-template-columns: 1fr;

        border-radius: 24px;
    }

    .editorial-banner-visual {
        min-height: auto;

        aspect-ratio: 1;
    }

    .editorial-banner-visual::before {
        width: 230px;
        height: 230px;
    }

    .editorial-banner-visual::after {
        width: 300px;
        height: 300px;
    }

    .editorial-visual-mark {
        width: 150px;
        height: 150px;
    }

    .editorial-visual-mark span {
        font-size: 58px;
    }

    .editorial-banner-content {
        padding:
            55px 28px 62px;
    }

    .editorial-banner-content h2 {
        font-size:
            clamp(40px, 12vw, 54px);
    }

    .editorial-banner-content p {
        font-size: 12px;
    }

    .benefits-section {
        padding: 62px 22px;
    }

    .benefits-container {
        grid-template-columns: 1fr;

        gap: 34px;
    }

    .benefit-item {
        gap: 16px;
    }

    .newsletter-section {
        padding: 82px 20px;
    }

    .newsletter-container h2 {
        font-size:
            clamp(40px, 12vw, 54px);
    }

    .newsletter-container > p {
        font-size: 12px;
    }

    .newsletter-form {
        min-height: auto;

        padding: 6px;

        flex-direction: column;

        background: transparent;

        border: 0;
        box-shadow: none;
    }

    .newsletter-form input {
        width: 100%;
        min-height: 55px;

        padding: 0 22px;

        background: var(--white);

        border:
            1px solid rgba(
                201,
                143,
                149,
                0.2
            );

        border-radius: 999px;

        text-align: center;
    }

    .newsletter-form button {
        width: 100%;
        min-height: 53px;

        margin-top: 9px;
    }

    .footer-container {
        width: calc(100% - 40px);

        padding: 65px 0;

        grid-template-columns: 1fr;

        gap: 42px;
    }
}

.benefit-icon svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-925 {
    font-family: var(--font-title);

    font-size: 13px;
}

/* =========================================================
   PRODUCT DETAIL
========================================================= */

.product-page {
    background: var(--white);
}

.product-page-container {
    width: min(
        calc(100% - 56px),
        var(--container)
    );

    margin: 0 auto;

    padding: 36px 0 120px;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 40px;

    color: var(--text-light);

    font-size: 10px;
}

.product-breadcrumb a {
    transition: color var(--transition);
}

.product-breadcrumb a:hover {
    color: var(--rose-deep);
}

.product-breadcrumb strong {
    color: var(--text);

    font-weight: 500;
}

.product-detail {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(380px, 0.65fr);

    align-items: start;

    gap: clamp(60px, 7vw, 110px);
}

.product-gallery {
    min-width: 0;

    display: grid;

    grid-template-columns: 92px minmax(0, 1fr);

    align-items: start;

    gap: 16px;
}

.product-thumbnails {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.product-thumbnail {
    position: relative;

    width: 92px;

    aspect-ratio: 0.82;

    overflow: hidden;

    padding: 0;

    border:
        1px solid transparent;

    background: var(--rose-light);

    border-radius: 14px;

    opacity: 0.58;

    transition:
        opacity var(--transition),
        border var(--transition),
        transform var(--transition);
}

.product-thumbnail:hover {
    opacity: 1;

    transform: translateY(-1px);
}

.product-thumbnail.is-active {
    opacity: 1;

    border-color: var(--rose-dark);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.product-main-media {
    position: relative;

    aspect-ratio: 0.82;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #fffafa,
            #f7e5e7
        );

    border-radius: 28px;
}

.product-main-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        opacity 0.22s ease,
        transform 0.8s cubic-bezier(
            0.2,
            0.7,
            0.2,
            1
        );
}

.product-main-media:hover
.product-main-image {
    transform: scale(1.025);
}

.product-main-image.is-changing {
    opacity: 0.28;
}

.product-main-fallback {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 10px;

    color:
        rgba(41, 37, 41, 0.28);
}

.product-main-fallback span {
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.38em;
}

.product-main-fallback strong {
    font-family: var(--font-title);

    font-size: 34px;
    font-weight: 500;
}

.product-detail-favorite {
    position: absolute;

    top: 20px;
    right: 20px;

    z-index: 5;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 0;

    background:
        rgba(255, 255, 255, 0.92);

    color: var(--text);

    border-radius: 50%;

    font-size: 23px;

    backdrop-filter: blur(10px);

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition);
}

.product-detail-favorite:hover {
    transform: scale(1.04);

    background: var(--white);
}

.product-detail-favorite.is-active {
    color: var(--rose-deep);
}

.product-image-counter {
    position: absolute;

    left: 20px;
    bottom: 20px;

    z-index: 5;

    min-height: 34px;

    padding: 0 14px;

    display: none;
    align-items: center;

    gap: 5px;

    background:
        rgba(255, 255, 255, 0.88);

    color: var(--text);

    border-radius: 999px;

    font-size: 9px;

    backdrop-filter: blur(10px);
}

.product-info {
    position: sticky;

    top: 145px;

    padding-top: 18px;
}

.product-info-category {
    color: var(--rose-deep);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.28em;

    text-transform: uppercase;
}

.product-info h1 {
    margin-top: 14px;

    font-family: var(--font-title);

    font-size:
        clamp(48px, 4.5vw, 70px);

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -0.04em;
}

.product-short-description {
    max-width: 470px;

    margin-top: 24px;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.8;
}

.product-detail-price {
    margin-top: 34px;

    display: flex;
    align-items: baseline;
    flex-wrap: wrap;

    gap: 12px;
}

.product-detail-price strong {
    font-family: var(--font-title);

    font-size: 34px;
    font-weight: 500;
}

.product-detail-old-price {
    color: var(--text-light);

    font-size: 13px;

    text-decoration: line-through;
}

.product-detail-installment {
    margin-top: 8px;

    color: var(--text-soft);

    font-size: 11px;
}

.product-detail-installment strong {
    color: var(--text);

    font-weight: 600;
}

.product-stock {
    margin-top: 28px;

    padding: 18px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.product-stock span {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    font-size: 10px;
    font-weight: 650;
}

.product-stock .is-available {
    color: #52725c;
}

.product-stock .is-available i {
    width: 7px;
    height: 7px;

    background: #6f9b7b;

    border-radius: 50%;
}

.product-stock .is-unavailable {
    color: #a45d63;
}

.product-stock small {
    display: block;

    margin-top: 8px;

    color: var(--rose-deep);

    font-size: 9px;
}

.product-add-to-cart {
    width: 100%;
    min-height: 60px;

    margin-top: 28px;

    padding: 0 26px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 0;

    background: var(--rose-dark);

    color: var(--white);

    border-radius: 999px;

    font-size: 11px;
    font-weight: 650;

    letter-spacing: 0.04em;

    transition:
        transform var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.product-add-to-cart:hover {
    background: var(--rose-deep);

    transform: translateY(-2px);

    box-shadow:
        0 20px 50px
        rgba(201, 143, 149, 0.3);
}

.product-add-to-cart:disabled {
    cursor: wait;

    opacity: 0.72;
}

.product-secondary-actions {
    margin-top: 15px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;
}

.product-secondary-actions button {
    min-height: 48px;

    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border:
        1px solid var(--border);

    background: var(--white);

    color: var(--text-soft);

    border-radius: 999px;

    font-size: 9px;
    font-weight: 500;

    transition:
        border var(--transition),
        color var(--transition),
        background var(--transition);
}

.product-secondary-actions button:hover {
    border-color: var(--rose-dark);

    color: var(--rose-deep);

    background: var(--rose-light);
}

.product-secondary-favorite.is-active {
    border-color: var(--rose-dark);

    color: var(--rose-deep);

    background: var(--rose-light);
}

.product-assurances {
    margin-top: 38px;

    display: flex;
    flex-direction: column;
}

.product-assurances article {
    padding: 18px 0;

    display: flex;
    align-items: center;

    gap: 15px;

    border-bottom:
        1px solid var(--border);
}

.product-assurance-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border:
        1px solid var(--border);

    color: var(--rose-deep);

    border-radius: 50%;

    font-family: var(--font-title);

    font-size: 13px;
}

.product-assurances h3 {
    font-family: var(--font-title);

    font-size: 15px;
    font-weight: 500;
}

.product-assurances p {
    margin-top: 4px;

    color: var(--text-soft);

    font-size: 9px;

    line-height: 1.5;
}


/* =========================================================
   PRODUCT DESCRIPTION
========================================================= */

.product-description-section {
    margin-top: 20px;

    padding: 120px 28px;

    background: var(--rose-light);
}

.product-description-inner {
    width: min(
        100%,
        var(--container)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(320px, 0.65fr);

    align-items: center;

    gap: 100px;
}

.product-description-heading > span {
    color: var(--rose-deep);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.3em;
}

.product-description-heading h2 {
    max-width: 650px;

    margin-top: 17px;

    font-family: var(--font-title);

    font-size:
        clamp(50px, 5vw, 72px);

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -0.04em;
}

.product-description-heading h2 em {
    display: block;

    color: var(--rose-dark);

    font-weight: 500;
}

.product-description-copy {
    color: var(--text-soft);

    font-family: var(--font-title);

    font-size: 20px;

    line-height: 1.8;
}


/* =========================================================
   RELATED PRODUCTS
========================================================= */

.product-related-section {
    width: min(
        calc(100% - 56px),
        var(--container)
    );

    margin: 0 auto;

    padding: 120px 0;
}


/* =========================================================
   PRODUCT TABLET
========================================================= */

@media (max-width: 1100px) {
    .product-detail {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(330px, 0.72fr);

        gap: 45px;
    }

    .product-gallery {
        grid-template-columns:
            74px minmax(0, 1fr);
    }

    .product-thumbnail {
        width: 74px;

        border-radius: 11px;
    }

    .product-info h1 {
        font-size:
            clamp(43px, 5vw, 58px);
    }

    .product-description-inner {
        gap: 60px;
    }
}


/* =========================================================
   PRODUCT MOBILE
========================================================= */

@media (max-width: 760px) {
    .product-page-container {
        width: 100%;

        padding: 22px 0 75px;
    }

    .product-breadcrumb {
        width: calc(100% - 36px);

        margin:
            0 auto 22px;

        font-size: 8px;
    }

    .product-breadcrumb strong {
        max-width: 130px;

        overflow: hidden;

        text-overflow: ellipsis;

        white-space: nowrap;
    }

    .product-detail {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .product-gallery {
        display: block;
    }

    .product-thumbnails {
        display: none;
    }

    .product-main-media {
        aspect-ratio: 0.9;

        border-radius: 0;
    }

    .product-main-media:hover
    .product-main-image {
        transform: none;
    }

    .product-detail-favorite {
        top: 16px;
        right: 16px;

        width: 43px;
        height: 43px;

        font-size: 21px;
    }

    .product-image-counter {
        display: flex;
    }

    .product-info {
        position: static;

        padding:
            38px 20px 0;
    }

    .product-info h1 {
        margin-top: 12px;

        font-size:
            clamp(44px, 13vw, 58px);
    }

    .product-short-description {
        margin-top: 20px;

        font-size: 13px;
    }

    .product-detail-price {
        margin-top: 30px;
    }

    .product-detail-price strong {
        font-size: 30px;
    }

    .product-add-to-cart {
        min-height: 57px;

        margin-top: 24px;
    }

    .product-secondary-actions {
        grid-template-columns: 1fr 1fr;
    }

    .product-secondary-actions button {
        min-height: 45px;

        padding: 0 10px;

        font-size: 8px;
    }

    .product-assurances {
        margin-top: 28px;
    }

    .product-description-section {
        margin-top: 0;

        padding:
            80px 20px;
    }

    .product-description-inner {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .product-description-heading h2 {
        font-size:
            clamp(43px, 13vw, 57px);
    }

    .product-description-copy {
        font-size: 18px;
    }

    .product-related-section {
        width: calc(100% - 28px);

        padding: 80px 0;
    }
}

/* =========================================================
   PRODUCT IMAGE FALLBACK
========================================================= */

.product-thumbnail.has-image-error {
    opacity: 1;

    background:
        linear-gradient(
            145deg,
            #fffafa,
            #f7e5e7
        );
}

.product-thumbnail.has-image-error::before {
    content: "◇";

    position: absolute;

    inset: 0;

    display: grid;
    place-items: center;

    color:
        rgba(201, 143, 149, 0.4);

    font-size: 26px;
}

.product-main-media.has-image-error::before {
    content: "AURALIS";

    position: absolute;

    inset: 0;

    display: grid;
    place-items: center;

    color:
        rgba(41, 37, 41, 0.22);

    font-family: var(--font-title);

    font-size: clamp(
        28px,
        4vw,
        54px
    );

    letter-spacing: 0.24em;
}

.product-main-media.has-image-error::after {
    content: "PRATA 925";

    position: absolute;

    left: 50%;
    top: calc(50% + 48px);

    transform: translateX(-50%);

    color:
        rgba(168, 105, 113, 0.42);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.4em;
}