.lody-page {
    background-color: #000;
    color: #fff;
}

.lody-hero {
    background-color: #000;
    padding: 100px 0 50px;
    position: relative;
    margin-top: 8%; 
}

.lody-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(220, 190, 160, 0), rgba(220, 190, 160, 0.5), rgba(220, 190, 160, 0));
}

.lody-hero .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-content {
    text-align: center;
}

.hero-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.hero-icon svg {
    color: #dcbea0;
    width: 60px;
    height: 60px;
}

.page-title {
    font-size: 4.5rem;
    font-weight: 200;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.page-title span {
    color: #dcbea0;
    font-weight: 500;
}

.accent-line {
    display: block;
    width: 80px;
    height: 3px;
    background-color: rgb(220, 190, 160);
    margin: 0 auto 20px;
}

.lody-content-section {
    background-color: #000;
    color: #fff;
    padding: 30px 0 100px;
    position: relative;
    overflow: hidden;
}

.lody-content-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.lody-content {
    opacity: 1;
    transform: none;
}

.lody-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.section-title span {
    color: #dcbea0;
    font-weight: 500;
}

.intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.lody-price {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.price-box {
    background-color: rgba(30, 30, 30, 0.7);
    border: 2px solid rgba(220, 190, 160, 0.3);
    border-radius: 8px;
    padding: 30px 50px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.price-label {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 500;
    color: #dcbea0;
}

.lody-flavors {
    margin-bottom: 60px;
}

.lody-flavors .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.flavor-item {
    background-color: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(220, 190, 160, 0.2);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.flavor-item:hover {
    border-color: rgba(220, 190, 160, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 190, 160, 0.1);
}

.flavor-icon {
    color: #dcbea0;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.flavor-name {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

.lody-contact {
    text-align: center;
    margin-top: 60px;
}

.contact-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background-color: transparent;
    border: 2px solid rgb(220, 190, 160);
    color: rgb(220, 190, 160);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.contact-button span {
    margin-right: 10px;
    position: relative;
    z-index: 2;
}

.contact-button svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.contact-button:hover {
    color: #000;
}

.contact-button:hover svg {
    transform: translateX(5px);
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgb(220, 190, 160);
    transition: width 0.3s ease;
    z-index: 1;
}

.contact-button:hover::before {
    width: 100%;
}

@media (max-width: 991px) {
    .page-title {
        font-size: 3.5rem;
    }
    
    .lody-hero {
        padding: 80px 0 40px;
        margin-top: 10%; 
    }
    
    .hero-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .flavors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .lody-hero {
        padding: 70px 0 30px;
        margin-top: 15%; 
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .price-box {
        padding: 25px 40px;
    }
    
    .price-value {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .flavors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2.8rem;
    }
    
    .lody-hero {
        padding: 60px 0 30px;
        margin-top: 20%;
    }
    
    .hero-icon {
        margin-bottom: 20px;
    }
    
    .hero-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .flavors-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .flavor-item {
        padding: 25px;
    }
    
    .flavor-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .price-box {
        padding: 20px 30px;
    }
    
    .price-value {
        font-size: 1.8rem;
    }
}

