/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(41, 35, 23, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.2rem;
    color: #292317;
}

.nav__logo-icon {
    width: 32px;
    height: 32px;
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-weight: 500;
    transition: color 0.3s ease;
    color: #333;
}

.nav__link:hover,
.nav__link--active {
    color: #ffdd94;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav__toggle-line {
    width: 25px;
    height: 3px;
    background: #292317;
    transition: 0.3s;
}

/* Main Content */
.main {
    margin-top: 60px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #292317 0%, #ffdd94 100%);
    color: white;
    padding: 80px 0;
    overflow: hidden;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero__button {
    display: inline-block;
    background: #ffdd94;
    color: #292317;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 221, 148, 0.3);
}

.hero__svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Section Titles */
.section__title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #292317;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.about__svg {
    width: 100%;
    height: auto;
    max-width: 300px;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
}

.advantages__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.advantage__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
}

.advantage__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #292317;
}

.advantage__description {
    color: #666;
    line-height: 1.6;
}

/* Offers Section */
.offers {
    padding: 80px 0;
    background: #292317;
    color: white;
}

.offers__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.offers h2 {
    color: #fff;
}

.offers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.offer {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 221, 148, 0.2);
}

.offer__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.offer__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffdd94;
}

.offer__description {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.offer__code {
    display: inline-block;
    background: #ffdd94;
    color: #292317;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Achievements Section */
.achievements {
    padding: 80px 0;
    background: #f8f9fa;
}

.achievements__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.achievements__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement {
    text-align: center;
    padding: 2rem;
}

.achievement__number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffdd94;
    margin-bottom: 0.5rem;
}
option {
color: #1a1512;}

.achievement__label {
    font-size: 1.1rem;
    color: #292317;
    font-weight: 500;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
}

.reviews__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.review__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.star {
    width: 20px;
    height: 20px;
}

.review__text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.review__author {
    font-weight: 600;
    color: #292317;
}

/* Payment and Delivery Section */
.payment-delivery {
    padding: 80px 0;
    background: #f8f9fa;
}

.payment-delivery__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.payment-delivery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.payment-delivery__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #292317;
}

.payment-methods,
.delivery-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-method,
.delivery-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.payment-method__icon,
.delivery-method__icon {
    width: 30px;
    height: 30px;
}

.delivery-price {
    font-weight: 600;
    color: #ffdd94;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: #292317;
    color: white;
}

.newsletter__container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.newsletter__title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.newsletter__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter__form label {
color: #ffdd94 !important;}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-weight: 500;
    color: #ffdd94;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffdd94;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter__button {
    background: #ffdd94;
    color: #292317;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.newsletter__button:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #292317;
    color: white;
    padding: 60px 0 20px;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffdd94;
}

.footer__description {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 221, 148, 0.1);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.footer__social-link:hover {
    background: rgba(255, 221, 148, 0.2);
}

.footer__social-link svg {
    width: 20px;
    height: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__link {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer__link:hover {
    opacity: 1;
    color: #ffdd94;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer__contact-icon {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 221, 148, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer__copyright {
    opacity: 0.7;
}

/* Article Pages */
.article-header {
    padding: 80px 0;
    background: linear-gradient(135deg, #292317 0%, #ffdd94 100%);
    color: white;
}

.article-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.article-header__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.article-header__subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.article-header__meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.article-header__svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.article-content {
    padding: 80px 0;
}

.article-content__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-content__intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
    text-align: center;
}

.recommendations {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.recommendation {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.recommendation__header {
    background: #f8f9fa;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.recommendation__icon {
    width: 60px;
    height: 60px;
}

.recommendation__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #292317;
}

.recommendation__content {
    padding: 2rem;
}

.book-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.book-item:last-child {
    border-bottom: none;
}

.book-item__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #292317;
}

.book-item__author {
    font-size: 0.9rem;
    color: #ffdd94;
    margin-bottom: 1rem;
    font-weight: 500;
}

.book-item__description {
    margin-bottom: 1rem;
    color: #555;
}

.book-item__rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-score {
    font-weight: 600;
    color: #292317;
}

.expert-tips {
    margin-top: 4rem;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.expert-tips__title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #292317;
}

.expert-tips__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.expert-tip {
    text-align: center;
}

.expert-tip__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.expert-tip__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #292317;
}

.expert-tip__description {
    color: #666;
}

.article-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: #292317;
    color: white;
    border-radius: 12px;
}

.article-cta__title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-cta__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.article-cta__button {
    display: inline-block;
    background: #ffdd94;
    color: #292317;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.article-cta__button:hover {
    transform: translateY(-2px);
}

/* Catalog Pages */
.catalog-header {
    padding: 120px 0 60px;
    background: #f8f9fa;
    text-align: center;
}

.catalog-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.catalog-header__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #292317;
}

.catalog-header__subtitle {
    font-size: 1.2rem;
    color: #666;
}

.catalog-filters {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #eee;
}

.catalog-filters__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.catalog-filters__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #292317;
}

.filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-button {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    background: white;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-button:hover,
.filter-button--active {
    border-color: #ffdd94;
    background: #ffdd94;
    color: #292317;
}

.book-catalog {
    padding: 60px 0;
}

.book-catalog__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.book-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.book-card__image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.book-card__image svg {
    width: 120px;
    height: 180px;
}

.book-card__content {
    padding: 1.5rem;
}

.book-card__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #292317;
}

.book-card__author {
    font-size: 0.9rem;
    color: #ffdd94;
    margin-bottom: 1rem;
    font-weight: 500;
}

.book-card__description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.book-card__rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.book-card__price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #292317;
}

.catalog-stats {
    background: #292317;
    color: white;
    padding: 60px 0;
    border-radius: 12px;
}

.catalog-stats__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat {
    text-align: center;
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffdd94;
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Contact Pages */
.contact-header {
    padding: 120px 0 60px;
    background: #f8f9fa;
    text-align: center;
}

.contact-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-header__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #292317;
}

.contact-header__subtitle {
    font-size: 1.2rem;
    color: #666;
}

.contact-info {
    padding: 60px 0;
}

.contact-info__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-item__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
}

.contact-item__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #292317;
}

.contact-item__text {
    margin-bottom: 1rem;
    color: #555;
}

.contact-item__text a {
    color: #ffdd94;
    font-weight: 500;
}

.contact-item__hours {
    font-size: 0.9rem;
    color: #888;
}

.contact-form-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-form-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form__title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #292317;
}

.contact-form__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.contact-form__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature__icon {
    width: 20px;
    height: 20px;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #292317;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffdd94;
}

.form-group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #ffdd94;
    border-color: #ffdd94;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: #292317;
    font-weight: bold;
    font-size: 12px;
}

.contact-form__submit {
    width: 100%;
    background: #292317;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.contact-form__submit:hover {
    background: #1a1512;
}

.faq {
    padding: 60px 0;
}

.faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq__title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #292317;
}

.faq__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-item__question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #292317;
}

.faq-item__answer {
    color: #555;
    line-height: 1.6;
}

/* Thank You Page */
.thank-you {
    padding: 80px 0;
    background: #f8f9fa;
}

.thank-you__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.thank-you__content {
    text-align: center;
}

.thank-you__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thank-you__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #292317;
}

.thank-you__message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
}

.thank-you__details {
    margin-bottom: 3rem;
    text-align: left;
}

.thank-you__details h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #292317;
    text-align: center;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step__number {
    width: 30px;
    height: 30px;
    background: #ffdd94;
    color: #292317;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step__content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #292317;
}

.step__content p {
    color: #666;
    font-size: 0.9rem;
}

.thank-you__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.thank-you__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.thank-you__button--primary {
    background: #292317;
    color: white;
}

.thank-you__button--secondary {
    background: #ffdd94;
    color: #292317;
}

.thank-you__button:hover {
    transform: translateY(-2px);
}

.thank-you__contact {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.thank-you__contact h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #292317;
}

.thank-you__contact a {
    color: #ffdd94;
    font-weight: 500;
}

.thank-you__sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.recommendations {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.recommendations h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #292317;
}

.recommendation-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.recommendation-item:last-child {
    border-bottom: none;
}

.recommendation-item__icon {
    width: 40px;
    height: 40px;
}

.recommendation-item__content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.recommendation-item__content h4 a {
    color: #292317;
}

.recommendation-item__content h4 a:hover {
    color: #ffdd94;
}

.recommendation-item__content p {
    font-size: 0.9rem;
    color: #666;
}

.newsletter-signup {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.newsletter-signup h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #292317;
}

.newsletter-signup p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ffdd94;
}

.newsletter-form__button {
    background: #292317;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.newsletter-form__button:hover {
    background: #1a1512;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 60px;
}

.legal-page__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-page__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #292317;
}

.legal-page__content {
    line-height: 1.8;
    color: #555;
}

.legal-page__content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #292317;
}

.legal-page__content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #292317;
}

.legal-page__content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-page__content li {
    list-style: disc;
    margin-bottom: 0.5rem;
}

.legal-page__content a {
    color: #ffdd94;
    font-weight: 500;
}

.legal-page__last-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    font-style: italic;
    color: #888;
}

.link-button {
    background: none;
    color: #ffdd94;
    text-decoration: underline;
    font-weight: 500;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #292317;
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner__text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffdd94;
}

.cookie-banner__text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.cookie-banner__text a {
    color: #ffdd94;
    text-decoration: underline;
}

.cookie-banner__buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-banner__button {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.cookie-banner__button--accept-all {
    background: #ffdd94;
    color: #292317;
}

.cookie-banner__button--necessary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner__button--customize {
    background: transparent;
    color: #ffdd94;
    border: 1px solid #ffdd94;
}

.cookie-banner__button:hover {
    opacity: 0.8;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal__content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.cookie-modal__header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #292317;
}

.cookie-modal__close {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
}

.cookie-modal__close svg {
    width: 20px;
    height: 20px;
}

.cookie-modal__body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-category__header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #292317;
}

.cookie-category p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle__slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.toggle__slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle input:checked + .toggle__slider {
    background-color: #ffdd94;
}

.toggle input:checked + .toggle__slider:before {
    transform: translateX(26px);
}

.toggle input:disabled + .toggle__slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal__footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.cookie-modal__button {
    width: 100%;
    background: #292317;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cookie-modal__button:hover {
    background: #1a1512;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding-top: 20px;
    }

    .nav__menu.show {
        left: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav__link {
        font-size: 1.2rem;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__toggle.active .nav__toggle-line:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .nav__toggle.active .nav__toggle-line:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active .nav__toggle-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero__container,
    .about__content,
    .article-header__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__title,
    .article-header__title {
        font-size: 2.5rem;
    }

    .section__title {
        font-size: 2rem;
    }

    .payment-delivery__grid,
    .contact-form-content,
    .thank-you__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cookie-banner__content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-banner__buttons {
        width: 100%;
        justify-content: center;
    }

    .thank-you__actions {
        flex-direction: column;
        align-items: center;
    }

    .advantages__grid,
    .offers__grid,
    .achievements__grid,
    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .filters {
        justify-content: center;
    }

    .expert-tips__grid,
    .faq__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero__title,
    .article-header__title {
        font-size: 2rem;
    }

    .catalog-header__title,
    .contact-header__title,
    .thank-you__title {
        font-size: 2rem;
    }

    .section__title {
        font-size: 1.8rem;
    }

    .nav__container {
        padding: 1rem;
    }

    .container,
    .hero__container,
    .about__container {
        padding: 0 1rem;
    }
    .recommendations {
        background-color: transparent;
        box-shadow: none;
        padding: 0;
    }
    .recommendation__header, .article-cta {
    padding: 2rem 1rem;}
}

/* Utility Classes */
.hidden {
    display: none !important;
}