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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background-color: #111;
    border-bottom: 2px solid #ba30ff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.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: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ba30ff;
    text-decoration: none;
}

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

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

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #ba30ff;
    color: #fff;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ba30ff;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding-top: 80px;
    overflow: hidden;
}

.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 {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ba30ff, #ffb330);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #b0b0b0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ba30ff, #ffb330);
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(186, 48, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(186, 48, 255, 0.4);
}

/* Sections */
.info-section {
    padding: 6rem 0;
    background-color: #0f0f0f;
}

.info-section:nth-child(even) {
    background-color: #1a1a1a;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ba30ff;
}

.info-grid,
.achievement-grid,
.offers-grid,
.benefits-grid,
.reviews-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.info-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.offers-grid,
.benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* Cards */
.info-card,
.offer-card,
.benefit-card,
.review-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover,
.offer-card:hover,
.benefit-card:hover,
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(186, 48, 255, 0.2);
}

.info-card h3,
.offer-card h3,
.benefit-card h3 {
    color: #ffb330;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.achievement-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ba30ff, #ffb330);
    border-radius: 12px;
    color: #fff;
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: scale(1.05);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.offer-badge {
    background-color: #ba30ff;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

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

.review-author {
    margin-top: 1rem;
    color: #ba30ff;
    font-style: italic;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #ba30ff, #ffb330);
    padding: 4rem 0;
    text-align: center;
}

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

.newsletter-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: block;
}

.newsletter-section h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form button {
    background-color: #0a0a0a;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #333;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 3rem 0 1rem;
    border-top: 2px solid #ba30ff;
}

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

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

.footer-section p,
.footer-section li {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

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

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffb330;
}

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

.social-links a {
    display: block;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links svg {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #666;
}

/* Page Content */
.page-content {
    padding-top: 80px;
    min-height: calc(100vh - 80px);
}

.page-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

.page-hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: block;
}

.page-hero h1 {
    font-size: 3rem;
    color: #ba30ff;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page */
.about-content {
    padding: 4rem 0;
}

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

.about-text h2,
.about-text h3 {
    color: #ba30ff;
    margin-bottom: 1rem;
}

.about-text h2 {
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #b0b0b0;
    line-height: 1.7;
}

.values-list {
    list-style: none;
    margin-top: 1.5rem;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #b0b0b0;
}

.values-list svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.team-section,
.stats-section {
    margin-bottom: 4rem;
}

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

.commitment-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: transform 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-5px);
}

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

.commitment-card h3 {
    color: #ffb330;
    margin-bottom: 1rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ba30ff, #ffb330);
    border-radius: 12px;
    color: #fff;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

/* Catalog Page */
.catalog-content {
    padding: 4rem 0;
}

.catalog-categories {
    margin-bottom: 4rem;
}

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

.category-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(186, 48, 255, 0.2);
}

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

.category-card h3 {
    color: #ba30ff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-card p {
    color: #b0b0b0;
}

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

.product-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(186, 48, 255, 0.2);
}

.product-image {
    background-color: #0f0f0f;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image svg {
    width: 100%;
    max-width: 200px;
    height: 200px;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #ba30ff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-rating {
    color: #ffb330;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.product-description {
    color: #b0b0b0;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    color: #ffb330;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Contact Page */
.contact-content {
    padding: 4rem 0;
}

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

.contact-info h2 {
    color: #ba30ff;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-info p {
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    border: 1px solid #333;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.method-info h3 {
    color: #ffb330;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.method-info p {
    color: #e0e0e0;
    margin-bottom: 0.3rem;
}

.method-info small {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.business-hours {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.business-hours h3 {
    color: #ba30ff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
}

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

.hours-item span:first-child {
    color: #e0e0e0;
    font-weight: 500;
}

.hours-item span:last-child {
    color: #ffb330;
    font-weight: 600;
}

.contact-form-section h2 {
    color: #ba30ff;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 8px;
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ba30ff;
    box-shadow: 0 0 10px rgba(186, 48, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.submit-button {
    background: linear-gradient(135deg, #ba30ff, #ffb330);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(186, 48, 255, 0.4);
}

.submit-button svg {
    width: 20px;
    height: 20px;
}

.location-section {
    margin-top: 4rem;
}

.location-section h2 {
    color: #ba30ff;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-details h3 {
    color: #ffb330;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.location-details p {
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.feature-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.feature-item span {
    color: #e0e0e0;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
}

.map-placeholder svg {
    width: 100%;
    height: 250px;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #e0e0e0;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.map-overlay p {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.map-overlay small {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 0;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: block;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #ba30ff;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.detail-item {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-item svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.detail-item h3 {
    color: #ffb330;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.detail-item p {
    color: #b0b0b0;
    line-height: 1.5;
}

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

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-button {
    background: linear-gradient(135deg, #ba30ff, #ffb330);
    color: #fff;
}

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

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(186, 48, 255, 0.3);
}

.primary-button svg,
.secondary-button svg {
    width: 20px;
    height: 20px;
}

.alternative-contact {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.alternative-contact h3 {
    color: #ba30ff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.alternative-contact p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffb330;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ba30ff;
}

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

/* Legal Pages */
.legal-page .page-content {
    background-color: #0f0f0f;
}

.legal-content {
    padding: 4rem 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.legal-text h2 {
    color: #ba30ff;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    font-size: 1.8rem;
}

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

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

.legal-text p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.contact-info {
    background-color: rgba(186, 48, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #ba30ff;
}

.contact-info p {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

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

/* Cookie Management */
.cookie-banner,
.cookie-settings {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-top: 2px solid #ba30ff;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.cookie-text {
    flex-grow: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: #ba30ff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-text p {
    color: #b0b0b0;
    margin-bottom: 0;
    line-height: 1.5;
}

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

.cookie-buttons button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-buttons button:first-child {
    background: linear-gradient(135deg, #ba30ff, #ffb330);
    color: #fff;
}

.cookie-buttons button:nth-child(2) {
    background-color: #333;
    color: #e0e0e0;
}

.cookie-buttons button:last-child {
    background-color: transparent;
    color: #ba30ff;
    border: 1px solid #ba30ff;
}

.cookie-buttons button:hover {
    transform: translateY(-1px);
}

.cookie-settings {
    display: none;
    bottom: auto;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%) scale(0.9);
    background: #1a1a1a;
    border: 2px solid #ba30ff;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.cookie-settings.show {
    display: flex;
    transform: translate(-50%, -50%) scale(1);
}

.cookie-settings-content h3 {
    color: #ba30ff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #2a2a2a;
    border-radius: 8px;
    border: 1px solid #333;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: #ba30ff;
}

.cookie-category span {
    color: #e0e0e0;
    font-weight: 500;
    margin-bottom: 0.3rem;
    display: block;
}

.cookie-category small {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-settings-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cookie-settings-buttons button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-settings-buttons button:first-child {
    background: linear-gradient(135deg, #ba30ff, #ffb330);
    color: #fff;
}

.cookie-settings-buttons button:last-child {
    background-color: #333;
    color: #e0e0e0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #111;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        visibility: hidden;
        opacity: 0;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .contact-grid,
    .location-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .achievement-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .offers-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .legal-text {
        padding: 2rem;
    }
    
    .cookie-settings {
        padding: 1.5rem;
    }
    
    .cookie-settings-buttons {
        flex-direction: column;
    }
    
    .thanks-content h1 {
        font-size: 2.5rem;
    }
    
    .thanks-message {
        font-size: 1.1rem;
    }
    .nav-logo {
    font-size: 1rem;}
    [class*="-grid"] {
    grid-template-columns: 1fr !important;}
}