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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

a {
    color: #00d6f7;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #33e0ff;
}

ul {
    list-style: none;
}

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

/* Header */
.header {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #333;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #00d6f7;
    font-size: 1.8rem;
    margin: 0;
}

.logo a {
    color: inherit;
}

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

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

.nav a:hover,
.nav a.active {
    background-color: #00d6f7;
    color: #1a1a1a;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #00d6f7;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 1rem;
    border-top: 1px solid #333;
}

.mobile-nav.active {
    display: flex;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 1rem;
    z-index: 2000;
    border-top: 2px solid #00d6f7;
}

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

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

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-btn.accept-all {
    background-color: #00d6f7;
    color: #1a1a1a;
}

.cookie-btn.necessary {
    background-color: transparent;
    color: #00d6f7;
    border: 1px solid #00d6f7;
}

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

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.cookie-modal-content {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
}

.cookie-option {
    margin: 1rem 0;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    overflow: hidden;
    padding: 30px 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

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

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d6f7, #33e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #00d6f7, #33e0ff);
    color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 214, 247, 0.3);
    color: #1a1a1a;
}

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

.cta-button.secondary:hover {
    background: #00d6f7;
    color: #1a1a1a;
}

/* Info Sections */
.info-section {
    padding: 5rem 0;
    border-bottom: 1px solid #333;
}

.info-section.alt {
    background-color: #151515;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.section-content.reverse {
    flex-direction: row-reverse;
}

.section-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.section-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-text {
    flex: 1;
}

.section-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #00d6f7;
}

.learn-more {
    display: inline-block;
    margin-top: 1rem;
    color: #00d6f7;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.learn-more:hover {
    border-bottom-color: #00d6f7;
}

/* Advantages List */
.advantages-list {
    list-style: none;
}

.advantages-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #b0b0b0;
}

.advantages-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d6f7;
    font-weight: bold;
}

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

.offer-item {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #00d6f7;
}

.offer-item h4 {
    color: #00d6f7;
    margin-bottom: 0.5rem;
}

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

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #00d6f7;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

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

.review-item {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    border-top: 3px solid #00d6f7;
}

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

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

.review-item cite {
    color: #00d6f7;
    font-weight: 500;
}

/* Payment & Delivery Section */
.payment-delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    width: 100%;
}

.payment-info,
.delivery-info {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
}

.payment-info ul,
.delivery-info ul {
    margin-top: 1rem;
}

.payment-info li,
.delivery-info li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.payment-info li:before,
.delivery-info li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00d6f7;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 4rem 0;
}

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

.newsletter-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00d6f7;
}

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

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background-color: #333;
    border: 2px solid #555;
    border-radius: 5px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00d6f7;
}

.form-group input::placeholder {
    color: #888;
}

.subscribe-btn {
    background: linear-gradient(45deg, #00d6f7, #33e0ff);
    color: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 214, 247, 0.3);
}

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

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

.footer-section h4 {
    color: #00d6f7;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-section ul li a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d6f7;
}

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

.social-links a {
    display: inline-block;
    padding: 0.5rem;
    background-color: #333;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #00d6f7;
}

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

/* About Page Styles */
.about-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.about-hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-hero-text h2 {
    font-size: 3rem;
    background: linear-gradient(45deg, #00d6f7, #33e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
}

.about-hero-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
}

.company-story {
    padding: 4rem 0;
}

.story-content h3 {
    font-size: 2.5rem;
    color: #00d6f7;
    margin-bottom: 2rem;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-values {
    padding: 4rem 0;
    background-color: #151515;
}

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

.mission-item {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    border-top: 3px solid #00d6f7;
}

.mission-item h3 {
    color: #00d6f7;
    margin-bottom: 1rem;
}

.team-section {
    padding: 4rem 0;
}

.team-section h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #00d6f7;
    margin-bottom: 3rem;
}

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

.expertise-item {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.expertise-item h4 {
    color: #00d6f7;
    margin-bottom: 1rem;
}

.why-choose {
    padding: 4rem 0;
    background-color: #151515;
}

.why-choose h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #00d6f7;
    margin-bottom: 3rem;
}

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

.benefit-item {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    padding-left: 4rem;
}

.benefit-number {
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    background: linear-gradient(45deg, #00d6f7, #33e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: bold;
}

.benefit-item h4 {
    color: #00d6f7;
    margin-bottom: 1rem;
}

.contact-cta {
    padding: 4rem 0;
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    color: #00d6f7;
    margin-bottom: 1rem;
}

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

/* Catalog Page Styles */
.catalog-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
}

.catalog-hero-content h2 {
    font-size: 3rem;
    background: linear-gradient(45deg, #00d6f7, #33e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.category-filter {
    padding: 2rem 0;
    background-color: #151515;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    background: transparent;
    color: #b0b0b0;
    border: 2px solid #555;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.filter-tab.active,
.filter-tab:hover {
    background-color: #00d6f7;
    color: #1a1a1a;
    border-color: #00d6f7;
}

.products-grid {
    padding: 4rem 0;
}

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

.product-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.product-image {
    height: 200px;
    overflow: hidden;
    background-color: #333;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #00d6f7;
    margin-bottom: 1rem;
}

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

.product-features {
    margin: 1rem 0;
}

.product-features ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.product-features ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00d6f7;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00d6f7;
}

.original-price {
    font-size: 1.2rem;
    color: #888;
    text-decoration: line-through;
}

.add-to-cart {
    width: 100%;
    background: linear-gradient(45deg, #00d6f7, #33e0ff);
    color: #1a1a1a;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 214, 247, 0.3);
}

.custom-solutions {
    padding: 4rem 0;
    background-color: #151515;
    text-align: center;
}

.custom-content h3 {
    font-size: 2rem;
    color: #00d6f7;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.contact-hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.contact-hero-text h2 {
    font-size: 3rem;
    background: linear-gradient(45deg, #00d6f7, #33e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
}

.contact-info {
    padding: 4rem 0;
}

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

.contact-item {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: #00d6f7;
    margin-bottom: 1rem;
}

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

.contact-form-section {
    padding: 4rem 0;
    background-color: #151515;
}

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

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h3 {
    font-size: 2rem;
    color: #00d6f7;
    margin-bottom: 1rem;
}

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

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background-color: #333;
    border: 2px solid #555;
    border-radius: 5px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00d6f7;
}

.contact-form textarea {
    resize: vertical;
}

.checkbox-label {
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label.required {
    color: #e0e0e0;
}

.submit-btn {
    background: linear-gradient(45deg, #00d6f7, #33e0ff);
    color: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 214, 247, 0.3);
}

.business-hours {
    padding: 4rem 0;
}

.hours-content h3 {
    text-align: center;
    font-size: 2rem;
    color: #00d6f7;
    margin-bottom: 2rem;
}

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

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background-color: #2a2a2a;
    border-radius: 5px;
}

.day {
    font-weight: 600;
    color: #e0e0e0;
}

.time {
    color: #00d6f7;
}

.emergency-contact {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #00d6f7;
    margin-top: 2rem;
}

.contact-faq {
    padding: 4rem 0;
    background-color: #151515;
}

.contact-faq h3 {
    text-align: center;
    font-size: 2rem;
    color: #00d6f7;
    margin-bottom: 3rem;
}

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

.faq-item {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h4 {
    color: #00d6f7;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 2.5rem;
    color: #00d6f7;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #888;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #00d6f7;
}

.legal-section h3 {
    color: #00d6f7;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section h4 {
    color: #33e0ff;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

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

.legal-section li {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.contact-list {
    list-style: none !important;
    margin-left: 0 !important;
}

.contact-list li {
    margin-bottom: 0.5rem;
}

.cookie-settings-section {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.cookie-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Thank You Page */
.thank-you-page {
    padding: 4rem 0;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-content h2 {
    font-size: 3rem;
    color: #00d6f7;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.submission-details {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.submission-details h3 {
    color: #00d6f7;
    margin-bottom: 1rem;
    text-align: center;
}

.detail-item {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
}

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

.next-steps {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #00d6f7;
}

.next-steps h3 {
    color: #00d6f7;
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: none;
    text-align: left;
}

.next-steps li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #b0b0b0;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00d6f7;
    font-weight: bold;
}

.thank-you-actions {
    margin: 3rem 0;
}

.contact-info {
    background-color: #333;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-info a {
    color: #00d6f7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .section-content,
    .section-content.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .section-icon {
        width: 80px;
        height: 80px;
    }
    
    .about-hero-content,
    .contact-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-hero-text h2,
    .contact-hero-text h2 {
        font-size: 2rem;
    }
    
    .newsletter-form {
        max-width: 400px;
        margin: 2rem auto 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .products-container {
        grid-template-columns: 1fr;
    }
    
    .payment-delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .about-hero-text h2,
    .contact-hero-text h2,
    .catalog-hero-content h2 {
        font-size: 1.8rem;
    }
    
    .section-text h3 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
}

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

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

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 1rem !important; }
.mb-2 { margin-bottom: 2rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 1rem !important; }
.mt-2 { margin-top: 2rem !important; }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #00d6f7;
    outline-offset: 2px;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #00d6f7;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
