* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
}

body {
    background-color: #ffffff;
    color: #2d2d2d;
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
}

.navbar {
    background-color: #e7344c;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 4px solid #1e1e1e;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}

.nav-logo img {
    height: 120px;
    width: auto;
    border-radius: 50%;
    margin-top: 10px;
}

@media (min-width: 1024px) {
    .nav-logo img {
        height: 200px;
    }
}

.nav-logo_ch {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    text-align: center;
}

.nav-logo span {
    letter-spacing: 1px;
    font-size: 24px;
    font-weight: 800;
    display: inline-block;
    color: #e95367ef;
    text-shadow: 2px 2px 0 #1e1e1e;
}

@media (min-width: 600px) {
    .nav-logo span {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .nav-logo span {
        font-size: 52px;
    }
}

.faberlic-word {
    transform: translateX(-150px);
    opacity: 0;
}

.avon-word {
    transform: translateX(150px);
    opacity: 0;
}

.plus {
    opacity: 0;
}

.nav-logo_ch.animate .faberlic-word {
    animation: slideFromLeft 0.8s ease-out forwards;
}

.nav-logo_ch.animate .avon-word {
    animation: slideFromRight 0.8s ease-out forwards;
}

.nav-logo_ch.animate .plus {
    animation: fadeIn 0.3s ease-out 0.4s forwards;
}

@keyframes slideFromLeft {
    0% {
        transform: translateX(-150px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideFromRight {
    0% {
        transform: translateX(150px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.nav-links {
    display: flex;
    gap: 20px;
    background: #e7344c;
    padding: 10px 0;
}

@media (max-width: 800px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -280px;
        width: 260px;
        height: 100vh;
        background: #e7344c;
        flex-direction: column;
        padding: 80px 20px;
        transition: 0.3s;
        z-index: 1000;
        gap: 20px;
    }
    .nav-links.active {
        right: 0;
    }
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}

@media (min-width: 1024px) {
    .nav-links a {
        font-size: 18px;
    }
}

.nav-links a:hover {
    border-bottom-color: white;
    transform: translateY(-2px);
}

.burger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.burger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
}

@media (max-width: 800px) {
    .burger {
        display: flex;
    }
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 999;
}

.overlay.active {
    display: block;
}

.section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .section {
        padding: 50px 30px;
    }
}

h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    color: #1e1e1e;
}

@media (min-width: 768px) {
    h2 {
        font-size: 38px;
    }
}

h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background-color: #c0394b;
    margin-top: 8px;
    border-radius: 4px;
}

.hero {
    background: linear-gradient(145deg, #fff9f9, #ffffff);
    border: 3px solid #c0394b;
    border-radius: 48px;
    padding: 30px 25px;
    margin-top: 20px;
    box-shadow: 8px 8px 0 #1e1e1e;
}

@media (min-width: 768px) {
    .hero {
        padding: 40px 50px;
    }
}

.hero h1 {
    font-size: 28px;
    font-weight: 900;
    color: #e95367ef;
    text-shadow: 2px 2px 0 #1e1e1e;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 44px;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 52px;
    }
}

.hero p {
    font-size: 16px;
    font-weight: 500;
    color: #2d2d2d;
}

@media (min-width: 768px) {
    .hero p {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .hero p {
        font-size: 24px;
    }
}

.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    margin: 30px 0;
}

.about-text {
    flex: 2;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 20px;
    background: white;
    padding: 16px;
    border-radius: 30px;
    border: 2px solid #c0394b;
    box-shadow: 6px 6px 0 #1e1e1e;
}

@media (min-width: 768px) {
    .about-text p {
        font-size: 18px;
        padding: 20px;
    }
}

@media (min-width: 1024px) {
    .about-text p {
        font-size: 20px;
    }
}

.about-wrapper2 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
    margin: 30px 0;
}

.about-text2 {
    flex: 2;
    min-width: 280px;
}

.about-text2 p {
    font-size: 16px;
    margin-bottom: 20px;
    padding: 16px;
    border-radius: 30px;
}

@media (min-width: 768px) {
    .about-text2 p {
        font-size: 18px;
        padding: 20px;
    }
}

@media (min-width: 1024px) {
    .about-text2 p {
        font-size: 20px;
    }
}

.about-text2 p:last-child {
    margin-bottom: 0;
}

.card-50 {
    background-image: url('./pour toujour.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    padding: 20px;
    position: relative;
}

.card-50::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.50);
    border-radius: 30px;
    z-index: 1;
}

.card-50 p {
    position: relative;
    z-index: 2;
}

.card-100 {
    background-image: url('./today.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    padding: 20px;
    position: relative;
}

.card-100::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.50);
    border-radius: 30px;
    z-index: 1;
}

.card-100 p {
    position: relative;
    z-index: 2;
}

.partner-card {
    flex: 1.3;
    background-color: #fff5f5;
    padding: 20px 15px;
    border-radius: 50px 50px 50px 0;
    border: 2px solid #c0394b;
    box-shadow: 8px 8px 0 #1e1e1e;
}

@media (min-width: 768px) {
    .partner-card {
        padding: 30px 25px;
    }
}

.partner-card h4 {
    font-size: 24px;
    font-weight: 800;
    color: #e95367ef;
    text-shadow: 1px 1px 0 #1e1e1e;
}

@media (min-width: 768px) {
    .partner-card h4 {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {
    .partner-card h4 {
        font-size: 36px;
    }
}

.partner-card p {
    font-size: 14px;
    margin: 8px 0;
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 40px;
}

@media (min-width: 768px) {
    .partner-card p {
        font-size: 16px;
        padding: 8px 16px;
    }
}

@media (min-width: 1024px) {
    .partner-card p {
        font-size: 20px;
    }
}

.partner-card .car {
    font-size: 18px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 60px;
    margin-top: 15px;
    border: 2px white;
    color: #e95367ef;
    text-shadow: 1px 1px 0 #1e1e1e;
}

@media (min-width: 768px) {
    .partner-card .car {
        font-size: 22px;
        padding: 10px 24px;
    }
}

@media (min-width: 1024px) {
    .partner-card .car {
        font-size: 28px;
    }
}

.step-bonus-section {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-radius: 48px;
    margin: 30px auto;
    border: 2px solid #c0394b;
    box-shadow: 0 15px 35px rgba(192, 57, 75, 0.15);
    padding: 20px;
}

@media (min-width: 768px) {
    .step-bonus-section {
        padding: 0;
    }
}

.step-bonus-subtitle {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .step-bonus-subtitle {
        font-size: 20px;
    }
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

@media (min-width: 768px) {
    .steps-container {
        gap: 25px;
    }
}

.step-card {
    background: white;
    border-radius: 32px;
    padding: 20px 15px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid #1e1e1e;
    box-shadow: 8px 8px 0 #1e1e1e;
    position: relative;
    overflow: hidden;
}

@media (min-width: 600px) {
    .step-card {
        width: 280px;
        padding: 25px 20px;
    }
}

@media (min-width: 768px) {
    .step-card {
        width: 310px;
    }
}

@media (min-width: 1024px) {
    .step-card {
        width: 350px;
    }
}

.step-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 #c0394b;
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 45px;
    height: 45px;
    background: #c0394b;
    color: white;
    font-size: 22px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #1e1e1e;
    box-shadow: 3px 3px 0 #1e1e1e;
}

@media (min-width: 600px) {
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

.step-condition {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 12px;
    color: #333;
}

@media (min-width: 768px) {
    .step-condition {
        font-size: 20px;
    }
}

.step-condition .price {
    color: #c0394b;
    font-size: 22px;
    font-weight: 800;
}

@media (min-width: 768px) {
    .step-condition .price {
        font-size: 26px;
    }
}

.step-bonus-badge {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #1e1e1e;
    padding: 8px 12px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: bold;
    margin: 12px 0;
    display: inline-block;
    border: 2px solid #1e1e1e;
}

.step-prize {
    background: #fef4f4;
    padding: 12px;
    border-radius: 24px;
    margin: 15px 0;
    border: 2px solid #c0394b;
}

.step-prize i {
    color: #c0394b;
    font-size: 20px;
    margin-right: 8px;
}

@media (min-width: 768px) {
    .step-prize i {
        font-size: 24px;
    }
}

.step-prize span {
    font-size: 14px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .step-prize span {
        font-size: 16px;
    }
}

.step-prize strong {
    color: #c0394b;
    font-size: 16px;
}

@media (min-width: 768px) {
    .step-prize strong {
        font-size: 18px;
    }
}

.step-prize img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.step-period {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

@media (min-width: 768px) {
    .step-period {
        font-size: 14px;
    }
}

.step-fragrances {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.step-fragrances span {
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .step-fragrances span {
        font-size: 12px;
        padding: 4px 10px;
    }
}

.step-brand {
    color: #2c6e2f;
    font-weight: 800;
    margin: 10px 0;
    font-size: 12px;
}

@media (min-width: 768px) {
    .step-brand {
        font-size: 14px;
    }
}

.step-products {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

@media (min-width: 768px) {
    .step-products {
        font-size: 13px;
    }
}

.step-choice {
    margin-top: 12px;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 20px;
}

.choice-option {
    font-size: 12px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .choice-option {
        font-size: 13px;
    }
}

.choice-or {
    font-size: 11px;
    color: #c0394b;
    font-weight: bold;
    margin: 5px 0;
}

@media (min-width: 768px) {
    .choice-or {
        font-size: 12px;
    }
}

.step-action {
    text-align: center;
    margin-top: 30px;
}

.btn-step {
    display: inline-block;
    background: #c0394b;
    color: white;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 60px;
    border: 3px solid #1e1e1e;
    box-shadow: 7px 7px 0 #1e1e1e;
    transition: all 0.2s;
}

@media (min-width: 768px) {
    .btn-step {
        font-size: 18px;
        padding: 12px 25px;
    }
}

@media (min-width: 1024px) {
    .btn-step {
        font-size: 22px;
        padding: 16px 40px;
    }
}

.btn-step:hover {
    transform: translate(3px, 3px);
    box-shadow: 4px 4px 0 #1e1e1e;
    background: #a82334;
}

.slider-container {
    position: relative;
    max-width: 1300px;
    margin: 30px auto;
    border-radius: 40px;
    box-shadow: 0 20px 30px -8px rgba(0,0,0,0.3);
    border: 4px solid #c0394b;
    background: #fefafa;
    padding: 8px;
}

@media (min-width: 768px) {
    .slider-container {
        padding: 12px;
    }
}

.slider-inner {
    overflow: hidden;
    border-radius: 28px;
    background: #000;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    flex: 0 0 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
}

@media (min-width: 480px) {
    .slide img {
        height: 350px;
    }
}

@media (min-width: 768px) {
    .slide img {
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .slide img {
        height: 700px;
    }
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #c0394b;
    color: white;
    border: 4px solid #1e1e1e;
    font-size: 24px;
    padding: 2px 12px 6px;
    border-radius: 60px;
    cursor: pointer;
    z-index: 10;
    transition: 0.1s linear;
}

@media (min-width: 600px) {
    .prev, .next {
        font-size: 32px;
        padding: 3px 14px 8px;
    }
}

@media (min-width: 1024px) {
    .prev, .next {
        font-size: 44px;
        padding: 5px 18px 10px;
    }
}

.prev:hover, .next:hover {
    transform: translateY(-50%) scale(1.05);
    background-color: #a82334;
}

.prev {
    left: 8px;
}

@media (min-width: 600px) {
    .prev {
        left: 15px;
    }
}

@media (min-width: 1024px) {
    .prev {
        left: 25px;
    }
}

.next {
    right: 8px;
}

@media (min-width: 600px) {
    .next {
        right: 15px;
    }
}

@media (min-width: 1024px) {
    .next {
        right: 25px;
    }
}

.dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .dots-container {
        gap: 12px;
    }
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #1e1e1e;
}

@media (min-width: 768px) {
    .dot {
        width: 12px;
        height: 12px;
    }
}

.dot.active {
    background-color: #c0394b;
    transform: scale(1.2);
    border-color: #1e1e1e;
}

.catalogs-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .catalogs-wrapper {
        gap: 40px;
    }
}

.catalog-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 40px;
    border: 3px solid #1e1e1e;
    box-shadow: 8px 8px 0 #1e1e1e;
    overflow: hidden;
    transition: transform 0.2s;
}

@media (min-width: 768px) {
    .catalog-card {
        min-width: 320px;
    }
}

.catalog-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 #1e1e1e;
}

.catalog-header {
    padding: 15px;
    text-align: center;
    color: white;
}

@media (min-width: 768px) {
    .catalog-header {
        padding: 20px;
    }
}

.catalog-header i {
    font-size: 30px;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .catalog-header i {
        font-size: 40px;
    }
}

.catalog-header h3 {
    font-size: 22px;
    margin: 0;
}

@media (min-width: 768px) {
    .catalog-header h3 {
        font-size: 28px;
    }
}

.faberlic-bg {
    background-color: #2c6e2f;
}

.avon-bg {
    background-color: #c0394b;
}

.catalog-body {
    padding: 15px;
    text-align: center;
}

@media (min-width: 768px) {
    .catalog-body {
        padding: 20px;
    }
}

.catalog-body img {
    width: 100%;
    border-radius: 24px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
}

.timer-block-catalog {
    background: #fef4f4;
    padding: 12px;
    border-radius: 30px;
    margin: 15px 0;
}

@media (min-width: 768px) {
    .timer-block-catalog {
        padding: 15px;
    }
}

.timer-grid {
    display: flex;
    justify-content: space-around;
    gap: 8px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .timer-grid {
        gap: 10px;
    }
}

.timer-grid div {
    text-align: center;
    background: white;
    padding: 6px 8px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    min-width: 55px;
}

@media (min-width: 600px) {
    .timer-grid div {
        min-width: 70px;
        padding: 8px 12px;
    }
}

.timer-num {
    font-size: 18px;
    font-weight: 800;
    display: block;
    font-family: monospace;
    color: #c0394b;
}

@media (min-width: 600px) {
    .timer-num {
        font-size: 22px;
    }
}

@media (min-width: 768px) {
    .timer-num {
        font-size: 28px;
    }
}

.catalog-btn {
    display: inline-block;
    background: #c0394b;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 60px;
    border: 2px solid #1e1e1e;
    margin-top: 10px;
    transition: 0.2s;
    font-size: 14px;
}

@media (min-width: 768px) {
    .catalog-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
}

.catalog-btn:hover {
    background: #1e1e1e;
    transform: scale(0.97);
}

.double-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

@media (min-width: 768px) {
    .double-benefits {
        gap: 20px;
    }
}

.benefit {
    background: white;
    padding: 10px 18px;
    border-radius: 60px;
    border: 2px solid #c0394b;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 4px 4px 0 #1e1e1e;
}

@media (min-width: 600px) {
    .benefit {
        font-size: 16px;
        padding: 12px 20px;
    }
}

@media (min-width: 768px) {
    .benefit {
        font-size: 18px;
        padding: 15px 25px;
    }
}

.pink-bg {
    background-color: #fef4f4;
    border-radius: 32px;
    padding: 20px 20px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .pink-bg {
        padding: 30px 40px;
    }
}

.pink-ng {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

@media (min-width: 768px) {
    .pink-ng {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .pink-ng {
        font-size: 24px;
    }
}

.btn {
    display: inline-block;
    background-color: #c0394b;
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 60px;
    border: 3px solid #1e1e1e;
    box-shadow: 7px 7px 0 #1e1e1e;
    margin: 10px 5px;
}

@media (min-width: 600px) {
    .btn {
        font-size: 18px;
        padding: 12px 24px;
    }
}

@media (min-width: 1024px) {
    .btn {
        font-size: 22px;
        padding: 16px 40px;
    }
}

.btn-dark {
    background-color: #2d2d2d;
    box-shadow: 7px 7px 0 #c0394b;
}

.btn-dark:hover {
    transform: scale(1.05);
}

.tg {
    display: flex;
    justify-content: center;
}

.telegram {
    background-color: #1e1e1e;
    box-shadow: 7px 7px 0 #c0394b;
}

.telegram:hover {
    transform: scale(1.05);
}

.help-text {
    font-size: 14px;
    background: white;
    padding: 10px 16px;
    border-radius: 60px;
    display: inline-block;
    margin: 20px 0;
}

@media (min-width: 768px) {
    .help-text {
        font-size: 16px;
        padding: 12px 20px;
    }
}

@media (min-width: 1024px) {
    .help-text {
        font-size: 20px;
    }
}

footer {
    background-color: #1e1e1e;
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-top: 6px solid #1e1e1e;
    margin-top: 50px;
}

@media (min-width: 768px) {
    footer {
        padding: 40px;
    }
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin: 0 5px;
    font-size: 14px;
}

@media (min-width: 768px) {
    footer a {
        margin: 0 10px;
        font-size: 16px;
    }
}

.linkms:hover {
    text-decoration: underline dashed;
}