:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-light: #ecf0f1;
    --text-dark: #34495e;
    --background-light: #ffffff;
    --background-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition-speed: 0.3s;
    font-size: 16px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    max-width: 75ch;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.site-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition-speed) ease;
}

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

.logo-image {
    height: 40px;
    width: auto;
}

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

.nav-list a {
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width var(--transition-speed) ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: transform 0.4s ease, opacity 0.4s ease, background-color 0.4s ease;
}

.burger-menu.active .burger-line {
    background-color: var(--text-light);
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

main {
    padding-top: 70px;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    background: url('images/16.webp') no-repeat center center/cover;
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.6);
}

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

.hero-content h1 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 4rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button, .cta-button-large, .secondary-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform var(--transition-speed) ease, background-color var(--transition-speed) ease;
}

.cta-button, .cta-button-large {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.cta-button:hover, .cta-button-large:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

section {
    padding: 5rem 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.featured-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h2 {
    margin-bottom: 0.5rem;
}

.card-content a {
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.philosophy-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-image-container {
    flex: 1 1 45%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.philosophy-text-container {
    flex: 1 1 55%;
}

.interactive-showcase-section {
    background: var(--background-gradient);
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-link {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: none;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    color: var(--primary-color);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.tab-link.active, .tab-link:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.showcase-content-area {
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-content {
    display: none;
}

.showcase-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1rem;
}

.showcase-content img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.showcase-content .content-text {
    z-index: 2;
}

.performance-metrics-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.metrics-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
}

.metric-label {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.technology-feature-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-text-content {
    flex: 1 1 50%;
}

.tech-image-grid {
    flex: 1 1 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
}

.tech-image-grid img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.tech-image-grid img:nth-child(2) {
    margin-top: 3rem;
}

.secondary-button {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.secondary-button:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.image-gallery-section {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
    grid-template-areas:
        "img1 img1 img2 img3"
        "img1 img1 img4 img4";
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:nth-child(1) { grid-area: img1; }
.gallery-item:nth-child(2) { grid-area: img2; }
.gallery-item:nth-child(3) { grid-area: img3; }
.gallery-item:nth-child(4) { grid-area: img4; }

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

.accordion-item {
    border-bottom: 1px solid #ddd;
}

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

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-speed) ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content p {
    padding: 0 1rem 1.5rem;
}

.testimonials-section {
    background: var(--background-gradient);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
}

.testimonial-slide blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-slide cite {
    font-weight: 600;
    color: var(--primary-color);
}

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

.prev-btn, .next-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--secondary-color);
}

.call-to-action-section {
    background-color: var(--primary-color);
    text-align: center;
    color: var(--text-light);
}

.cta-content h2 {
    color: var(--text-light);
}

.cta-content p {
    margin-left: auto;
    margin-right: auto;
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-branding {
    flex: 1 1 300px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-links {
    flex: 2 1 500px;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.link-column h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.link-column ul li {
    margin-bottom: 0.5rem;
}

.link-column a {
    color: var(--text-light);
    opacity: 0.8;
}

.link-column a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom-bar {
    background-color: #212f3d;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.footer-bottom-bar p {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero-content h1 { font-size: 3rem; }

    .featured-categories {
        grid-template-columns: 1fr;
    }

    .philosophy-section, .technology-feature-section {
        flex-direction: column;
        gap: 2rem;
    }
    .technology-feature-section {
        flex-direction: column-reverse;
    }

    .showcase-content.active {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "img1 img1"
            "img2 img3"
            "img4 img4";
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease-in-out;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-list li {
        margin: 1.5rem 0;
    }

    .nav-list a {
        color: var(--text-light);
        font-size: 1.5rem;
    }

    .burger-menu {
        display: block;
    }

    .metrics-container {
        flex-direction: column;
        gap: 2rem;
    }

    .tech-image-grid {
        grid-template-columns: 1fr;
    }

    .tech-image-grid img:nth-child(2) {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }
    
    section {
        padding: 3rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "img1"
            "img2"
            "img3"
            "img4";
    }

    .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 1.5rem; 
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

    .footer-links {
        text-align: left;
    }
}















.about-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background: url('images/17.webp') no-repeat center center/cover;
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    position: relative;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.5);
}

.story-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-image-container {
    flex: 1 1 40%;
}

.story-image-container img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.story-text-container {
    flex: 1 1 60%;
}

.values-section {
    background: var(--background-gradient);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    width: 50px;
    height: 50px;
    stroke: var(--secondary-color);
    stroke-width: 1.5;
    margin-bottom: 1rem;
}

.team-section {
    max-width: 1200px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.team-member img {
    width: 100%;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter var(--transition-speed) ease;
    margin-bottom: 1rem;
}

.team-member:hover img {
    filter: grayscale(0%);
}

.team-member-info h4 {
    margin-bottom: 0.25rem;
}

.team-member-info p {
    font-size: 0.9rem;
    color: var(--text-dark);
}

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

.process-timeline {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.process-step {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: none;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    color: var(--secondary-color);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.process-step.active, .process-step:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.process-content-area {
    margin-top: 2.5rem;
    background-color: #fdfdfd;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 2rem;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.process-content {
    display: none;
    text-align: left;
    width: 100%;
}

.process-content.active {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.process-content img {
    /*flex: 0 0 40%;*/
    max-width: 40%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.process-content p {
    flex: 1 1 55%;
    margin: 0;
}

.pledge-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4rem;
    border-radius: var(--border-radius);
}

.pledge-section h2 {
    color: var(--text-light);
}

.pledge-text-container {
    flex: 1 1 60%;
}

.pledge-image-container {
    flex: 1 1 40%;
}

.pledge-image-container img {
    border-radius: var(--border-radius);
}

.workshop-gallery-section {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-container {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 200px);
}

.gallery-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.gallery-img-1 { grid-column: 1 / 2; grid-row: 1 / 3; }
.gallery-img-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.gallery-img-3 { grid-column: 3 / 4; grid-row: 1 / 3; }
.gallery-img-4 { grid-column: 1 / 3; grid-row: 3 / 4; }
.gallery-img-5 { grid-column: 3 / 4; grid-row: 3 / 4; }

.about-cta-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

.about-cta-section h2 {
    color: var(--text-light);
}

@media (max-width: 992px) {
    .story-section, .pledge-section {
        flex-direction: column;
        text-align: center;
    }
    .pledge-section {
        flex-direction: column-reverse;
    }
    .values-grid, .team-grid {
        grid-template-columns: 1fr 1fr;
    }
    .process-content-area {
        padding: 1.5rem;
        min-height: auto;
    }
    .process-content.active {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .process-content img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .gallery-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 200px);
    }
    .gallery-img-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
    .gallery-img-2 { grid-column: 1 / 2; grid-row: 2 / 3; }
    .gallery-img-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
    .gallery-img-4 { grid-column: 1 / 3; grid-row: 3 / 4; }
    .gallery-img-5 { grid-column: 1 / 3; grid-row: 4 / 5; }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .gallery-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }
    .gallery-img-1, .gallery-img-2, .gallery-img-3, .gallery-img-4, .gallery-img-5 {
        grid-column: auto;
        grid-row: auto;
    }
}














.product-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background: url('images/50.webp') no-repeat center center/cover;
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    position: relative;
}

.product-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.3));
}

.catalog-section {
    max-width: 1400px;
    margin: 0 auto;
}

.catalog-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.filter-sidebar {
    position: relative;
}

.mobile-filter-toggle {
    display: none;
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    margin-bottom: 1rem;
}

.filter-wrapper {
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1.5rem;
}

.filter-group:last-of-type {
    border-bottom: none;
}

.filter-group h4 {
    margin-bottom: 1rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-options.category-filters .filter-btn {
    width: 100%;
    padding: 0.5rem;
    background: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-speed) ease;
}

.filter-options.category-filters .filter-btn.active,
.filter-options.category-filters .filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.filter-options.skill-filters label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.price-filters input[type="range"] {
    width: 100%;
    cursor: pointer;
}

#price-value {
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 0.5rem;
    display: block;
}

.reset-filters {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.reset-filters:hover {
    background-color: #c0392b;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-info {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.product-category {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: auto;
}

#no-results-message {
    text-align: center;
    font-size: 1.2rem;
    padding: 3rem;
}

.hidden {
    display: none;
}

.spotlight-section {
    background: var(--background-gradient);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--border-radius);
}

.spotlight-image img {
    border-radius: var(--border-radius);
}

.tech-showcase-section {
    max-width: 1200px;
    margin: 0 auto;
}

.tech-showcase-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.tech-image {
    flex: 1 1 50%;
}

.tech-points {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-point h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.bundles-section {
    background: var(--primary-color);
}

.bundles-section .section-title {
    color: var(--text-light);
}

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

.bundle-card {
    background: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
}

.bundle-card img {
    width: 40%;
    object-fit: cover;
}

.bundle-content {
    padding: 1.5rem;
}

.bundle-content a {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
}

.comparison-section {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
    background-color: #f8f9fa;
}

.guides-snippet-section {
    background-color: #f8f9fa;
}

.guides-snippet-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.guide-block {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.guide-text {
    padding: 1.5rem;
}

.guide-text a {
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.products-cta-section {
    background-color: var(--primary-color);
}

.products-cta-section .cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

.products-cta-section h2 {
    color: var(--text-light);
}
.guide-block img {
    width: 100%;
    height: 250px; 
    object-fit: cover; 
}
@media(max-width: 992px) {
    .catalog-container {
        grid-template-columns: 1fr;
    }
    .filter-sidebar {
        border-bottom: 2px solid #e0e0e0;
        padding-bottom: 1rem;
    }
    .mobile-filter-toggle {
        display: block;
    }
    .filter-wrapper {
        position: static;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
    }
    .filter-wrapper.open {
        max-height: 1000px;
    }
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
    .spotlight-section {
        grid-template-columns: 1fr;
    }
    .tech-showcase-content {
        flex-direction: column-reverse;
    }
    .bundles-grid, .guides-snippet-container {
        grid-template-columns: 1fr;
    }
    .bundle-card {
        flex-direction: column;
    }
    .bundle-card img {
        width: 100%;
        height: 250px;
    }
}

@media(max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}














.guides-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background: url('images/51.webp') no-repeat center center/cover;
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    position: relative;
}

.guides-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.6);
}

.guide-filters-section {
    padding: 2rem 1.5rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.guide-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.guide-filter-btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.guide-filter-btn.active, .guide-filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.guides-grid-section {
    max-width: 1200px;
    margin: 0 auto;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.guide-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.guide-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.guide-card-content {
    padding: 1.5rem;
}

.guide-card-tag {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.guide-card-content h3 {
    margin-bottom: 0.5rem;
}

.guide-card-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.guide-card-content a {
    font-weight: 600;
}

.featured-guide-section {
    background-color: var(--background-gradient);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    padding: 3rem;
}

.featured-guide-image img {
    border-radius: var(--border-radius);
}

.quick-tips-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.quick-tips-section .section-title {
    color: var(--text-light);
}

.tips-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.tip-slide {
    display: none;
}

.tip-slide.active {
    display: block;
}

.tip-slide h3 {
    color: var(--secondary-color);
}

.tips-slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.tips-prev-btn, .tips-next-btn {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.tips-prev-btn:hover, .tips-next-btn:hover {
    background-color: #2980b9;
}

.myths-section {
    max-width: 1200px;
    margin: 0 auto;
}

.myths-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.myth-fact-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.myth-block, .fact-block {
    padding: 1.5rem;
}

.myth-block {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.myth-block h3, .fact-block h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.myth-icon, .fact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: bold;
    color: #fff;
    flex-shrink: 0;
}

.myth-icon {
    background-color: var(--accent-color);
}

.fact-icon {
    background-color: var(--secondary-color);
}

.glossary-section {
    max-width: 800px;
    margin: 0 auto;
}

.glossary-item {
    border-bottom: 1px solid #ddd;
}

.glossary-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.glossary-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-speed) ease;
}

.glossary-header.active .glossary-icon {
    transform: rotate(45deg);
}

.glossary-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.glossary-content p {
    padding: 0 1rem 1.5rem;
}

.guides-cta-section {
    background-color: var(--primary-color);
}

.guides-cta-section .cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

.guides-cta-section h2 {
    color: var(--text-light);
}

@media(max-width: 992px) {
    .guides-grid {
        grid-template-columns: 1fr 1fr;
    }
    .featured-guide-section {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    .myths-container {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 480px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
}
.tip-slide p {
    margin-left: auto;
    margin-right: auto;
}














.support-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background: url('images/63.webp') no-repeat center center/cover;
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    position: relative;
}

.support-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.5);
}

.policies-section {
    background-color: #f8f9fa;
}

.policies-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.policy-card {
    background-color: #fff;
    padding: 2rem;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.policy-icon {
    width: 40px;
    height: 40px;
    stroke: var(--secondary-color);
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 1rem;
}

.expert-advice-section {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
    background-color: #fff;
}

.expert-advice-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.commitment-section {
    padding: 5rem 1.5rem;
    background: url('images/64.webp') no-repeat center center/cover;
    position: relative;
    color: var(--text-light);
    text-align: center;
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.7);
}

.commitment-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.commitment-container h2 {
    color: var(--text-light);
}

.commitment-more {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, margin-top 0.5s ease-out;
}

.commitment-more.open {
    opacity: 1;
    margin-top: 1rem;
}

#toggle-commitment {
    margin-top: 1.5rem;
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    cursor: pointer;
}

#toggle-commitment:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.contact-methods-section {
    background-color: var(--background-gradient);
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-link {
    display: block;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
}

.response-time, .hours-info {
    display: block;
}

.response-time {
    font-size: 0.9rem;
    color: #777;
}

.hours-info {
    font-weight: 600;
    font-size: 1.1rem;
}
.hours-info:first-of-type {
    margin-top: 1.5rem;
}

.support-cta-section {
    padding: 4rem 1.5rem;
    text-align: center;
    background-color: var(--primary-color);
}

.support-cta-section .cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
}

.support-cta-section .cta-content h2 {
    color: var(--text-light);
}

.support-cta-section .cta-button-large {
    background-color: var(--secondary-color);
    color: #fff;
}
.support-cta-section .cta-button-large:hover {
    background-color: #2980b9;
}

@media(max-width: 992px) {
    .policies-grid, .contact-grid, .expert-advice-section {
        grid-template-columns: 1fr;
    }
    .expert-advice-section {
        text-align: center;
    }
    .expert-advice-image {
        order: -1;
    }
}
.support-metrics-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 5rem 1.5rem;
}

.support-metrics-section .metrics-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.support-metrics-section .metric-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
}

.support-metrics-section .metric-label {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

@media(max-width: 768px) {
    .support-metrics-section .metrics-container {
        flex-direction: column;
        gap: 2.5rem;
    }
}
.commitment-container p {
    margin-left: auto;
    margin-right: auto;
}









.policy-hero-section {
    padding: 4rem 1.5rem;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.policy-hero-section h1 {
    color: var(--text-light);
}

.policy-hero-section p {
    color: var(--text-light);
    opacity: 0.8;
    max-width: none;
}

.policy-content-section {
    padding: 4rem 1.5rem;
}

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

.policy-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.policy-content p, .policy-content ul {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.policy-content ul {
    list-style: disc;
    padding-left: 2rem;
}
.thank-you-body {
    background-color: var(--background-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1.5rem;
}

.thank-you-main {
    width: 100%;
    padding-top: 0;
}

.thank-you-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.thank-you-icon {
    width: 60px;
    height: 60px;
    stroke: var(--secondary-color);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-bottom: 1.5rem;
}

.thank-you-container h1 {
    margin-bottom: 1rem;
}

.thank-you-container p {
    margin-bottom: 2rem;
    max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
}













.gallery-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background: url('images/81.webp') no-repeat center center/cover;
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    position: relative;
}

.gallery-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.4);
}

.gallery-filters-section {
    padding: 2rem 1.5rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.gallery-filter-btn.active, .gallery-filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.masonry-gallery-section {
    padding: 4rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.masonry-grid {
    columns: 3 250px;
    column-gap: 1rem;
}

.masonry-item {
    margin-bottom: 1rem;
    break-inside: avoid;
    display: block;
}

.masonry-item img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.text-feature-section {
    padding: 5rem 1.5rem;
}

.text-feature-container {
    max-width: 1000px;
    margin: 0 auto;
}

.text-feature-one .text-feature-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.text-feature-section.text-feature-two {
    position: relative;
    background: url('images/82.webp') no-repeat center center/cover;
    color: var(--text-light);
}

.text-feature-two::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.7);
    z-index: 1;
}

.text-feature-two .text-feature-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.text-feature-two h2 {
    color: var(--text-light);
}

.text-feature-two p {
    max-width: 70ch;
    margin: 0 auto;
}

.text-feature-three .text-feature-title {
    text-align: right;
}

.gear-spotlight-section {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
}

.gear-spotlight-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.gear-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1.5rem;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    align-items: center;
}

.gear-card img {
    width: 100%;
    border-radius: var(--border-radius);
}

.gear-info a {
    margin-top: 1rem;
}

.gallery-cta-section {
    background-color: var(--primary-color);
    padding: 5rem 1.5rem;
    text-align: center;
}

.gallery-cta-section .cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
}

.gallery-cta-section .cta-content h2 {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .masonry-grid {
        columns: 2;
    }
    .gear-spotlight-container {
        grid-template-columns: 1fr;
    }
    .gear-card {
        grid-template-columns: 100px 1fr;
    }
    .text-feature-one .text-feature-container,
    .text-feature-three .text-feature-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .text-feature-three .text-feature-title {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        columns: 1;
    }
}
.perspective-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.perspective-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.section-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    z-index: 1;
    line-height: 1;
}

.perspective-title h2 {
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--text-light);
    text-align: right;
}

@media(max-width: 768px) {
    .perspective-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .perspective-title h2 {
        text-align: center;
        font-size: 3rem;
    }
    .section-watermark {
        font-size: 12rem;
    }
}
.philosophy-section-new {
    background-color: #f8f9fa;
    padding: 5rem 1.5rem;
    overflow: hidden;
}

.philosophy-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 4rem;
}

.philosophy-vertical-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    justify-self: center;
}

@media(max-width: 768px) {
    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .philosophy-vertical-title {
        writing-mode: horizontal-tb;
        transform: none;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }
}