* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f7f4EB;
    color: #100E10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 80px 20px;
    text-align: center;
}

.hero-box {
    max-width: 700px;
}

.hero-box h1 {
    font-size: 42px;
    font-weight: 700;
    color: #321110;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #100E10;
    margin-bottom: 36px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn {
    background: #955643;
    color: #f7f4EB;
    border: none;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background: #321110;
    transform: translateY(-2px);
}

.secondary-btn {
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #321110;
    border: 2px solid #955643;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: #955643;
    color: #f7f4EB;
}

.catalog-section {
    padding: 120px 40px;
    background: #f7f4EB;
}

.catalog-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.catalog-left h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #321110;
    letter-spacing: 1px;
}

.catalog-left p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #100E10;
    opacity: 0.9;
}

.brand-phrase {
    margin-top: 40px;
    font-weight: 600;
    color: #955643;
    letter-spacing: 1px;
}

.catalog-right {
    display: flex;
    justify-content: center;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 450px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.carousel-slide img {
    max-height: 650px;
    width: auto;
    max-width: 100%;
    border-radius: 12px;
    object-fit: contain;
    background: #e0D6CC;
    padding: 12px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(16, 14, 16, 0.6);
    color: #f7f4EB;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: #321110;
}

.prev {
    left: -60px;
}

.next {
    right: -60px;
}

.exclusive-signature {
    margin-top: 30px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #321110;
    position: relative;
    display: inline-block;
}

.exclusive-signature::after {
    content: "";
    display: block;
    width: 60%;
    height: 2px;
    background: #955643;
    margin-top: 8px;
}


@media (max-width: 900px) {
    .catalog-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .catalog-right {
        margin-top: 40px;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
    }

    .hero-box h1 {
        font-size: 32px;
    }

    .carousel-slide img {
        max-height: 450px;
    }
}
