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

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: #2a252b;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(42, 37, 43, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2a252b;
    font-weight: 600;
    font-size: 1.25rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2a252b;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #e88aff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e88aff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2a252b;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(232, 138, 255, 0.1) 0%, rgba(42, 37, 43, 0.05) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e88aff 0%, #2a252b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #2a252b;
    opacity: 0.8;
}

.hero-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #e88aff;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(232, 138, 255, 0.3);
}

.hero-btn:hover {
    background: #d574eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 138, 255, 0.4);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background: rgba(232, 138, 255, 0.02);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2a252b;
    margin-bottom: 1rem;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #2a252b;
    opacity: 0.8;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(42, 37, 43, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(42, 37, 43, 0.15);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: block;
}

.advantage-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2a252b;
}

.advantage-item p {
    color: #2a252b;
    opacity: 0.7;
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-item {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, #e88aff 0%, #d574eb 100%);
    color: white;
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
}

.offer-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.offer-item:hover::before {
    transform: rotate(45deg) scale(1.2);
}

.offer-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.offer-item p {
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e88aff;
    margin-bottom: 0.5rem;
}

.achievement-text {
    font-size: 1.1rem;
    color: #2a252b;
    opacity: 0.8;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-item {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(42, 37, 43, 0.1);
    position: relative;
}

.review-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #e88aff;
    opacity: 0.3;
    font-family: serif;
}

.review-stars {
    color: #e88aff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-item p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #2a252b;
}

.review-author {
    font-weight: 600;
    color: #e88aff;
}

/* Payment and Delivery */
.payment-delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.payment-methods,
.delivery-methods {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(42, 37, 43, 0.1);
}

.payment-methods h3,
.delivery-methods h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2a252b;
}

.payment-methods ul,
.delivery-methods ul {
    list-style: none;
}

.payment-methods li,
.delivery-methods li {
    padding: 0.5rem 0;
    color: #2a252b;
    opacity: 0.8;
    position: relative;
    padding-left: 1.5rem;
}

.payment-methods li::before,
.delivery-methods li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e88aff;
    font-weight: bold;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #e88aff 0%, #d574eb 100%) !important;
    color: white;
}

.newsletter .section-header h2,
.newsletter .section-icon {
    color: white;
}

.newsletter .section-icon path {
    fill: white;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.newsletter-form input {
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Lora', serif;
    background: rgba(255, 255, 255, 0.9);
    color: #2a252b;
}

.newsletter-form input::placeholder {
    color: #2a252b;
    opacity: 0.6;
}

.newsletter-btn {
    padding: 15px 30px;
    background: #2a252b;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lora', serif;
}

.newsletter-btn:hover {
    background: #1a1518;
    transform: translateY(-2px);
}

/* Catalog Preview */
.catalog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.preview-category {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(42, 37, 43, 0.1);
    transition: transform 0.3s ease;
}

.preview-category:hover {
    transform: translateY(-5px);
}

.preview-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2a252b;
}

.preview-category p {
    margin-bottom: 1.5rem;
    color: #2a252b;
    opacity: 0.8;
}

.preview-link {
    color: #e88aff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.preview-link:hover {
    color: #d574eb;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #e88aff;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a, .footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover, .footer-section a:hover {
    opacity: 1;
    color: #e88aff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(232, 138, 255, 0.1);
    border-radius: 50%;
    color: #e88aff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: white;
    transform: translateY(-2px);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 138, 255, 0.2);
    opacity: 0.6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 37, 43, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Lora', serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn-accept-all {
    background: #e88aff;
    color: white;
}

.cookie-btn-accept-all:hover {
    background: #d574eb;
}

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

.cookie-btn-necessary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-custom {
    background: transparent;
    color: #e88aff;
    border: 1px solid #e88aff;
}

.cookie-btn-custom:hover {
    background: #e88aff;
    color: white;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal h3 {
    margin-bottom: 1.5rem;
    color: #2a252b;
}

.cookie-categories {
    margin-bottom: 2rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid rgba(232, 138, 255, 0.2);
    border-radius: 10px;
}

.cookie-category-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.cookie-category-label input {
    margin-right: 0.5rem;
}

.cookie-category p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-btn-save {
    background: #e88aff;
    color: white;
}

.cookie-btn-cancel {
    background: #f5f5f5;
    color: #2a252b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        padding: 0 30px;
        gap: 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -8px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .advantages-grid,
    .offers-grid,
    .achievements-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .newsletter-form {
        gap: 1rem;
    }
}

/* Article Page Styles */
.article-main {
    padding-top: 70px;
}

.article-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(232, 138, 255, 0.1) 0%, rgba(42, 37, 43, 0.05) 100%);
}

.article-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.article-hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.article-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2a252b;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2a252b;
    opacity: 0.8;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    color: #2a252b;
    opacity: 0.7;
}

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

.article-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-section {
    margin-bottom: 3rem;
}
.article-section .section-title {
flex-direction: column;}

.section-icon-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.article-intro {
    font-size: 1.2rem;
    font-style: italic;
    color: #e88aff;
    margin-bottom: 2rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2a252b;
}

.recommendations-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.book-recommendation {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(42, 37, 43, 0.1);
}

.book-cover-svg {
    width: 120px;
    height: 160px;
    border-radius: 8px;
}

.book-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a252b;
}

.book-author {
    color: #e88aff;
    font-weight: 500;
    margin-bottom: 1rem;
}

.book-rating {
    color: #e88aff;
    margin-bottom: 1rem;
}

.book-description {
    margin-bottom: 1rem;
    color: #2a252b;
    opacity: 0.8;
}

.critic-note {
    font-style: italic;
    color: #2a252b;
    opacity: 0.7;
    border-left: 3px solid #e88aff;
    padding-left: 1rem;
}

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

.tip-item {
    padding: 2rem;
    background: rgba(232, 138, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(232, 138, 255, 0.2);
}

.tip-item h3 {
    color: #e88aff;
    margin-bottom: 1rem;
}

.conclusion {
    background: rgba(232, 138, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.conclusion-content h2 {
    color: #2a252b;
    margin-bottom: 1.5rem;
}

.cta-section {
    margin-top: 2rem;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: #e88aff;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #d574eb;
    transform: translateY(-2px);
}

.cta-button-secondary {
    background: transparent;
    color: #e88aff;
    border: 2px solid #e88aff;
}

.cta-button-secondary:hover {
    background: #e88aff;
    color: white;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(42, 37, 43, 0.1);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: #2a252b;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.popular-articles {
    list-style: none;
}

.popular-articles li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(232, 138, 255, 0.2);
}

.popular-articles li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-articles a {
    text-decoration: none;
    color: #2a252b;
    transition: color 0.3s ease;
}

.popular-articles a:hover {
    color: #e88aff;
}

.category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-link {
    padding: 0.5rem 1rem;
    background: rgba(232, 138, 255, 0.1);
    color: #e88aff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: #e88aff;
    color: white;
}

.newsletter-widget {
    background: linear-gradient(135deg, #e88aff 0%, #d574eb 100%);
    color: white;
}

.newsletter-widget h3 {
    color: white;
}

.newsletter-link {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.newsletter-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Catalog Page Styles */
.catalog-main {
    padding-top: 70px;
}

.catalog-hero {
    background: linear-gradient(135deg, rgba(232, 138, 255, 0.1) 0%, rgba(42, 37, 43, 0.05) 100%);
    padding: 80px 0;
    text-align: center;
}

.catalog-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2a252b;
}

.catalog-subtitle {
    font-size: 1.25rem;
    color: #2a252b;
    opacity: 0.8;
}

.genre-nav {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(42, 37, 43, 0.1);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.genre-nav-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.genre-nav-item {
    padding: 10px 20px;
    text-decoration: none;
    color: #2a252b;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.genre-nav-item:hover,
.genre-nav-item.active {
    background: #e88aff;
    color: white;
}

.catalog-section {
    padding: 80px 0;
}

.catalog-section:nth-child(even) {
    background: rgba(232, 138, 255, 0.02);
}

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

.book-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(42, 37, 43, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.book-cover {
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.book-info {
    padding: 0 1.5rem 1.5rem;
}

.book-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a252b;
}

.book-author {
    color: #e88aff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.book-rating {
    color: #e88aff;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.book-description {
    color: #2a252b;
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.book-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e88aff;
}

.catalog-cta {
    background: linear-gradient(135deg, #e88aff 0%, #d574eb 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-main {
    padding-top: 70px;
}

.contact-hero {
    background: linear-gradient(135deg, rgba(232, 138, 255, 0.1) 0%, rgba(42, 37, 43, 0.05) 100%);
    padding: 80px 0;
    text-align: center;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2a252b;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #2a252b;
    opacity: 0.8;
}

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

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

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(42, 37, 43, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a252b;
}

.contact-details a {
    color: #e88aff;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.opening-hours {
    background: rgba(232, 138, 255, 0.02);
    padding: 80px 0;
}

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

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(42, 37, 43, 0.1);
}

.hours-item.special {
    background: rgba(232, 138, 255, 0.1);
    color: #e88aff;
}

.day {
    font-weight: 500;
}

.time {
    font-weight: 600;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(42, 37, 43, 0.1);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-family: 'Lora', serif;
    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: #e88aff;
}

.checkbox-group {
    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;
}

.checkmark {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #e88aff;
    border-radius: 3px;
    flex-shrink: 0;
    position: relative;
    margin-top: 2px;
}

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

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #e88aff;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.contact-submit-btn {
    width: 100%;
    padding: 15px;
    background: #e88aff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lora', serif;
}

.contact-submit-btn:hover {
    background: #d574eb;
    transform: translateY(-2px);
}

.map-section {
    background: rgba(232, 138, 255, 0.02);
    padding: 80px 0;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.map-placeholder {
    background: #f5f5f5;
    border-radius: 15px;
    overflow: hidden;
}

.map-info h3 {
    color: #2a252b;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.transport-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.transport-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(42, 37, 43, 0.1);
}

.transport-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.transport-item h4 {
    color: #2a252b;
    margin-bottom: 0.5rem;
}

.transport-item p {
    color: #2a252b;
    opacity: 0.8;
    font-size: 0.9rem;
}

.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(42, 37, 43, 0.1);
}

.faq-item h3 {
    color: #e88aff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: #2a252b;
    opacity: 0.8;
    line-height: 1.6;
}

/* Thanks Page Styles */
.thanks-main {
    padding-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

.thanks-section {
    padding: 80px 0;
    width: 100%;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    width: 100px;
    margin: 0 auto;
}

.thanks-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2a252b;
}

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #2a252b;
    opacity: 0.8;
}

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

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(232, 138, 255, 0.05);
    border-radius: 15px;
}

.detail-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.detail-item h3 {
    color: #2a252b;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.detail-item p {
    color: #2a252b;
    opacity: 0.8;
    font-size: 0.9rem;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.thanks-btn {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-btn.primary {
    background: #e88aff;
    color: white;
}

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

.thanks-btn.secondary {
    background: transparent;
    color: #e88aff;
    border: 2px solid #e88aff;
}

.thanks-btn.secondary:hover {
    background: #e88aff;
    color: white;
}

.thanks-additional {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(42, 37, 43, 0.1);
    text-align: left;
}

.thanks-additional h3 {
    color: #2a252b;
    margin-bottom: 1rem;
    text-align: center;
}

.additional-list {
    list-style: none;
    padding: 0;
}

.additional-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(232, 138, 255, 0.2);
    position: relative;
    padding-left: 1.5rem;
}

.additional-list li:last-child {
    border-bottom: none;
}

.additional-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e88aff;
    font-weight: bold;
}

.additional-list a {
    color: #e88aff;
    text-decoration: none;
}

.additional-list a:hover {
    text-decoration: underline;
}

/* Legal Pages Styles */
.legal-main {
    padding-top: 70px;
}

.legal-hero {
    background: linear-gradient(135deg, rgba(232, 138, 255, 0.1) 0%, rgba(42, 37, 43, 0.05) 100%);
    padding: 80px 0;
    text-align: center;
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2a252b;
}

.legal-subtitle {
    font-size: 1.25rem;
    color: #2a252b;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.legal-date {
    color: #e88aff;
    font-weight: 500;
}

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

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(42, 37, 43, 0.1);
}

.legal-text h2 {
    color: #2a252b;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e88aff;
}

.legal-text h2:first-of-type {
    margin-top: 0;
}

.legal-text h3 {
    color: #e88aff;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.legal-text h4 {
    color: #2a252b;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #2a252b;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #2a252b;
}

.legal-text a {
    color: #e88aff;
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

.contact-info {
    background: rgba(232, 138, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.last-updated {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 138, 255, 0.2);
    font-style: italic;
    color: #e88aff;
}

.cookie-table {
    overflow-x: auto;
    margin: 1rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(232, 138, 255, 0.2);
}

.cookie-table th {
    background: rgba(232, 138, 255, 0.1);
    color: #2a252b;
    font-weight: 600;
}

.cookie-settings-section {
    background: rgba(232, 138, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.cookie-settings-btn {
    padding: 12px 24px;
    background: #e88aff;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lora', serif;
    margin-top: 1rem;
}

.cookie-settings-btn:hover {
    background: #d574eb;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .article-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-sidebar {
        position: static;
        order: 2;
    }

    .book-recommendation {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

    .map-container {
        grid-template-columns: 1fr;
    }

    .thanks-details {
        grid-template-columns: 1fr;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .genre-nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .article-title,
    .catalog-title,
    .contact-title,
    .thanks-title,
    .legal-title {
        font-size: 2.5rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .advantage-item,
    .offer-item,
    .review-item,
    .preview-category {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .article-title,
    .catalog-title,
    .contact-title,
    .thanks-title,
    .legal-title {
        font-size: 2rem;
    }

    .legal-text {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .section-title {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr !important;
    }
    .article-body {
    padding: 0;}
    .conclusion {
    padding: 3rem 1rem;}
    .book-recommendation, .sidebar-widget {
    padding: 2rem 1rem;}
    body {
    word-break: break-word;}
}