/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Arial', sans-serif;
}

/* 导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar:hover {
    background: rgba(0, 0, 0, 0.7);
}

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

.logo a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links .nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 27px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
}

.nav-links .nav-link.active {
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
}

.language-selector {
    margin-left: 20px;
}

.language-selector select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 21px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.language-selector select:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.language-selector select option {
    background: #333;
    color: #fff;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* 全屏轮播Banner */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 10;
    animation: zoomIn 8s ease-in-out infinite;
}

@keyframes zoomIn {
    0% {
        background-size: 100% 100%;
    }
    100% {
        background-size: 115% 115%;
    }
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 30px;
    animation: fadeInUp 1s ease-out;
}

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

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

.page-content-animate {
    animation: pageFadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.page-content-animate.delay-1 {
    animation-delay: 0.1s;
}

.page-content-animate.delay-2 {
    animation-delay: 0.2s;
}

.page-content-animate.delay-3 {
    animation-delay: 0.3s;
}

.page-content-animate.delay-4 {
    animation-delay: 0.4s;
}

.page-content-animate.delay-5 {
    animation-delay: 0.5s;
}

.slide-content h1 {
    font-size: 84px;
    font-weight: bold;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 30px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 15px 45px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 24px;
    min-width: 150px;
    text-align: center;
}

.btn-primary:hover {
    background: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 45px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    font-size: 24px;
    min-width: 150px;
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffd700;
    color: #ffd700;
}

/* 轮播指示器 */
.slider-indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.indicator:hover,
.indicator.active {
    width: 30px;
    border-radius: 6px;
    background: #fff;
}

/* 左右切换按钮 */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 45px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* 产品展示橱窗区 */
.products-showcase {
    padding: 80px 30px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.products-showcase.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 关于我们页面产品橱窗 */
.products-showcase.about-products {
    padding-top: 40px;
    padding-bottom: 60px;
    background: #f8f9fa;
    margin-top: 20px;
    border-top: 1px solid #eee;
    opacity: 1;
    transform: translateY(0);
}

.products-showcase .container {
    max-width: 1200px;
    margin: 0 auto;
}

.products-showcase .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-showcase .section-header h2 {
    font-size: 63px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.products-showcase .section-header p {
    font-size: 24px;
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: #e8f4f8;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.product-card:nth-child(1) { transition-delay: 0.1s; }
.product-card:nth-child(2) { transition-delay: 0.2s; }
.product-card:nth-child(3) { transition-delay: 0.3s; }
.product-card:nth-child(4) { transition-delay: 0.4s; }

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(74, 144, 217, 0.2);
}

.product-info {
    padding: 20px 15px;
}

.product-info h3 {
    font-size: 23px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.product-image-wrapper {
    padding: 10px;
    overflow: hidden;
    position: relative;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.product-card:hover .product-image-wrapper::before {
    border-color: #4a90d9;
}

.product-image-wrapper img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.08);
}

.product-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px 20px;
    text-decoration: none;
    color: #333;
    font-size: 21px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-card:hover .product-link {
    color: #4a90d9;
}

.product-link .arrow {
    width: 32px;
    height: 32px;
    background: #4a90d9;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 24px;
}

.product-card:hover .product-link .arrow {
    transform: translateX(5px);
}

/* 页面内容区域 */
.content {
    padding: 80px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* 页面区域样式 */
.page-section {
    padding: 60px 30px;
}

/* 联系我们页面样式 */
.contact-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 20px;
}

.contact-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
}

.contact-item {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item h3 {
    font-size: 27px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.contact-item h3 i {
    width: 40px;
    height: 40px;
    background: #4a90d9;
    color: #fff;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 24px;
}

.contact-item p {
    font-size: 23px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 23px;
    transition: all 0.3s ease;
    outline: none;
    background: #fafafa;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: #4a90d9;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.1);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.contact-form .btn-primary {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    font-size: 24px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: #4a90d9;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: #3a80c9;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(74, 144, 217, 0.3);
}

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

.page-section .section-header h1 {
    font-size: 63px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-section .section-header .section-subtitle {
    font-size: 27px;
    color: #666;
    font-weight: 300;
}

.page-section .section-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
    font-size: 24px;
}

.page-section .section-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.page-section .section-content .btn-primary {
    margin-top: 30px;
}

/* 产品页面Hero区域 */
.products-hero {
    position: relative;
    height: 370px;
    background: url('../images/products-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
}

.about-hero {
    position: relative;
    height: 370px;
    background: url('../images/hero-about.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
}

.contact-hero {
    position: relative;
    height: 370px;
    background: url('../images/contact.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
}

.products-hero .hero-overlay,
.about-hero .hero-overlay,
.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-hero .hero-overlay h1,
.about-hero .hero-overlay h1,
.contact-hero .hero-overlay h1 {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* 面包屑导航 */
.breadcrumb {
    background: #f5f5f5;
    padding: 15px 30px;
    border-bottom: 1px solid #eee;
}

.breadcrumb .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-link {
    color: #4a90d9;
    text-decoration: none;
    font-size: 21px;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #999;
    font-size: 21px;
}

.breadcrumb-current {
    color: #666;
    font-size: 21px;
}

/* 产品列表样式 */
.products-section {
    padding: 60px 30px;
}

.products-section .products-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.products-section .product-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 22px 28px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: 60px;
}

.products-section .product-item:hover {
    border-color: #4a90d9;
    background: #f8fcff;
    -ms-transform: translateX(5px);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(74, 144, 217, 0.15);
}

.products-section .product-item span {
    color: #333333;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
}

.products-section .product-item:hover span {
    color: #4a90d9;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .page-section .section-header h1 {
        font-size: 48px;
    }

    .products-hero,
    .about-hero,
    .contact-hero {
        height: 320px;
    }

    .products-hero .hero-overlay h1,
    .about-hero .hero-overlay h1,
    .contact-hero .hero-overlay h1 {
        font-size: 54px;
    }
    
    .products-section .products-list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .page-section .section-header h1 {
        font-size: 24px;
    }

    .page-section .section-header .section-subtitle {
        font-size: 24px;
    }

    .page-section .section-content {
        font-size: 21px;
    }

    .products-hero,
    .about-hero,
    .contact-hero {
        height: 270px;
    }

    .products-hero .hero-overlay h1,
    .about-hero .hero-overlay h1,
    .contact-hero .hero-overlay h1 {
        font-size: 42px;
    }

    .breadcrumb {
        padding: 12px 20px;
    }

    .breadcrumb-link,
    .breadcrumb-separator,
    .breadcrumb-current {
        font-size: 18px;
    }
}

/* 产品详情页面样式 */
.product-detail {
    max-width: 1200px;
    margin: 0 auto;
}

.product-detail .product-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    gap: 30px;
    margin-bottom: 40px;
}

.product-detail .product-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-detail .product-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.product-detail .product-info h2 {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.product-detail .product-info p {
    font-size: 24px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.product-detail .product-features {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.product-detail .product-features h3 {
    font-size: 27px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.product-detail .product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-detail .product-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 23px;
}

.product-detail .product-features li:last-child {
    border-bottom: none;
}

.product-detail .product-features li i {
    color: #4a90d9;
    font-size: 24px;
}

.product-detail .product-specs {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
}

.product-detail .product-specs h3 {
    font-size: 30px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.product-detail .product-specs table {
    width: 100%;
    border-collapse: collapse;
}

.product-detail .product-specs th,
.product-detail .product-specs td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.product-detail .product-specs th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    width: 40%;
}

.product-detail .product-specs td {
    color: #555;
}

.product-detail .product-specs tr:last-child th,
.product-detail .product-specs tr:last-child td {
    border-bottom: none;
}

.product-detail .product-applications {
    background: #4a90d9;
    color: #fff;
    padding: 35px;
    border-radius: 12px;
}

.product-detail .product-applications h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-detail .product-applications p {
    font-size: 24px;
    line-height: 1.8;
    opacity: 0.95;
}

/* 产品详情响应式设计 */
@media (max-width: 992px) {
    .product-detail .product-content {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    
    .product-detail .product-image img {
        height: 280px;
    }

    .product-detail .product-info h2 {
        font-size: 39px;
    }
}

@media (max-width: 576px) {
    .product-detail .product-image img {
        height: 220px;
    }

    .product-detail .product-info h2 {
        font-size: 33px;
    }
    
    .product-detail .product-specs,
    .product-detail .product-applications {
        padding: 20px;
    }
    
    .product-detail .product-specs th,
    .product-detail .product-specs td {
        padding: 10px 12px;
        font-size: 21px;
    }
}

/* 企业资质展示区块样式 */
.company-credentials {
    padding: 60px 30px;
    background: #f8f9fa;
    margin: 20px 0;
}

.company-credentials .container {
    max-width: 1200px;
    margin: 0 auto;
}

.company-credentials .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.company-credentials .section-header h2 {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.credential-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(74, 144, 217, 0.15);
}

.credential-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a90d9, #3a80c9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.credential-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.credential-item p {
    font-size: 21px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 经营理念区块样式 */
.company-philosophy {
    padding: 60px 30px;
    background: linear-gradient(135deg, #4a90d9, #3a80c9);
    margin: 20px 0;
}

.company-philosophy .container {
    max-width: 900px;
    margin: 0 auto;
}

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

.philosophy-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.philosophy-content .philosophy-text {
    font-size: 27px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin: 0;
}

/* 页脚样式 */
.footer {
    background: #333;
    color: #fff;
    padding: 40px 30px;
    text-align: center;
}

.footer-content p {
    font-size: 21px;
    opacity: 0.7;
}

/* 响应式设计 */
/* 产品展示橱窗区响应式设计 */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .products-showcase .section-header h2 {
        font-size: 48px;
    }

    .products-showcase .section-header p {
        font-size: 21px;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        width: 250px;
        height: calc(100vh - 70px);
        padding: 30px;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .slide-content h1 {
        font-size: 54px;
    }

    .slide-content p {
        font-size: 24px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 21px;
    }

    .slider-prev,
    .slider-next {
        width: 50px;
        height: 50px;
        font-size: 36px;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .products-showcase {
        padding: 60px 20px;
    }

    .products-showcase .section-header h2 {
        font-size: 36px;
    }

    .product-image-wrapper img {
        height: 150px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .slide-content h1 {
        font-size: 42px;
    }

    .slide-content p {
        font-size: 21px;
        margin-bottom: 30px;
    }

    .slider-indicators {
        bottom: 30px;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }
}