/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    /*font-family: 'Playfair Display', serif;*/
    font-weight: 600;
    line-height: 1.2;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 900;
    letter-spacing: 3px;
    margin: 0;
}

.logo-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: #666;
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #1a1a1a;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 0.9rem;
    width: 0;
    opacity: 0;
    transition: all 0.3s ease;
    background: white;
    position: absolute;
    right: 0;
    z-index: 10;
}

.search-input.active {
    width: 250px;
    opacity: 1;
}

.search-input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.search-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
    position: relative;
}

.search-btn:hover {
    background: #333;
    transform: scale(1.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.contact-item:hover {
    color: #1a1a1a;
}

.contact-item i {
    color: #666;
    font-size: 0.9rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    margin: 4px 0;
    transition: 0.3s;
}

/* Hero Slider */
.hero-slider {
    height: 62vh;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-image img {
    width: 100%;
/*    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);*/
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #524d54;
    z-index: 2;
}

.slide-text {
    max-width: 800px;
}

.slide-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.slide-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.slide-button {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slide-button:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 3;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    pointer-events: auto;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: scale(1.1);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Company Introduction */
.company-intro {
    padding: 50px 0;
    background: #fafafa;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.intro-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    /* margin-top: 50px; */
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    /*font-family: 'Playfair Display', serif;*/
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 1px;
}

.intro-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    /* height: 500px; */
    object-fit: cover;
    /*transition: transform 0.3s ease;*/
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/*.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}*/

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
}

.play-button i {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-left: 3px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    /*background: #1a1a1a;*/
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: #666;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-icon i {
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Products Showcase */
.products-showcase {
    padding: 120px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
    grid-column: span 2;
}

.product-image {
    position: relative;
    height: 55%;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-img-main {
    position: relative;
    opacity: 1;
    display: block;
}

.product-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    display: block;
}

/* 鼠标悬停时切换图片 */
.product-card:hover .product-img-main {
    opacity: 0;
}

.product-card:hover .product-img-hover {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #1a1a1a;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-btn {
    background: white;
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.product-info {
    padding: 30px;
}

.product-name {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-category {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    /*font-family: 'Playfair Display', serif;*/
}

.products-footer {
    text-align: center;
}

.view-all-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.view-all-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: #fafafa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.team-member {
    text-align: center;
}

.member-image {
    position: relative;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-image:hover .member-overlay {
    opacity: 1;
}

.member-image:hover img {
    transform: scale(1.05);
}

.member-social {
    display: flex;
    gap: 20px;
}

.member-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: white;
    transform: scale(1.1);
}

.member-name {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-role {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.member-description {
    color: #666;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* Inquiry Section */
.inquiry-section {
    padding: 80px 0;
    background: white;
}

.inquiry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.inquiry-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1.2rem;
}

.method-info h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.method-info p {
    color: #666;
    font-size: 0.95rem;
}

.inquiry-form-wrapper {
    background: #fafafa;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: center;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.submit-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #999;
    padding: 50px 0 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-brand {
    flex: 0 0 30%;
    max-width: 30%;
    padding-right: 20px;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-brand p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    flex: 0 0 65%;
    max-width: 65%;
    display: flex;
    justify-content: space-between;
}

.link-group {
    flex: 0 0 30%;
    max-width: 30%;
}

.link-group h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.link-group ul {
    list-style: none;
    padding: 0;
}

.link-group ul li {
    margin-bottom: 12px;
}

.link-group ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.link-group ul li a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 1920px) {
    .nav-container {
        max-width: 90%;
        padding: 0 15px;
    }
    
    .nav-actions {
        gap: 15px;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
    
    .search-input.active {
        width: 200px;
    }
}

@media (max-width: 1440px) {
    .hero-slider{height: 75vh;}
    .container{max-width: 90%;}
    .product-image {height: 42%}
    .inquiry-btn{padding: 10px 30px;}
}

@media (max-width: 1024px) {
    .container {
        max-width: 90%;
    }
    
    .nav-container {
        max-width: 90%;
    }
    
    .slide-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
    
    .slider-controls {
        padding: 0 20px;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .intro-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-card.featured {
        grid-column: span 1;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .inquiry-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .inquiry-form-wrapper {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-brand,
    .footer-links {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-links {
        flex-wrap: wrap;
    }
    
    .link-group {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 95%;
        padding: 0 15px;
    }
    /*轮播*/
    .hero-slider {
        height: 24vh;
    }
    .slider-controls{
        top: 70%;
    }
    .slider-indicators{
        bottom: 10px;
    }

    .nav-container {
        max-width: 95%;
        padding: 0 15px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
    
    .intro-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .intro-form-wrapper {
        padding: 20px;
    }
    
    .inquiry-form-wrapper {
        padding: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/*----------------------------------------
4. About Page Styles
----------------------------------------*/

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    margin-bottom: 50px;
}

.page-header .breadcrumb {
    font-size: 16px;
}

.page-header .breadcrumb a {
    text-decoration: none;
}

.page-header .breadcrumb a:hover {
    text-decoration: underline;
}

.company-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.story-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper {
    position: relative;
    padding-bottom: 100%;
    height: 0;
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-values {
    padding: 80px 0;
    background: #f8f9fa;
}

.our-values .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
}

.value-icon img {
    max-width: 100%;
    max-height: 100%;
}

.value-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.value-description {
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.member-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.member-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.member-image:hover img {
    transform: scale(1.05);
}

.member-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.member-description {
    color: #666;
    line-height: 1.6;
}

.workshop-gallery,
.craftsmanship-process,
.awards-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.workshop-gallery .section-header,
.craftsmanship-process .section-header,
.awards-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Swiper Styles */
.swiper-container {
    width: 100%;
    height: 400px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.swiper-button-next,
.swiper-button-prev {
    background-image: none;
    color: #333;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: white;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 20px;
}

.swiper-button-next::after {
    content: '\f054';
}

.swiper-button-prev::after {
    content: '\f053';
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(102, 126, 234, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #667eea;
    transform: scale(1.2);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: white;
    color: #667eea;
}

.cta-btn.primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/*----------------------------------------
5. Responsive Styles
----------------------------------------*/

}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-brand p {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 12px;
}

.link-group ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.link-group ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1920px) {
    .nav-container {
        max-width: 90%;
        padding: 0 15px;
    }
    
    .nav-actions {
        gap: 15px;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
    
    .search-input.active {
        width: 200px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 90%;
    }
    
    .nav-container {
        max-width: 90%;
    }
    
    .slide-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 2rem;
    }
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    margin-bottom: 0px;
}
    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
    
    .slider-controls {
        padding: 0 20px;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .intro-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-card.featured {
        grid-column: span 1;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .inquiry-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .inquiry-form-wrapper {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-links {
        /* grid-template-columns: 1fr; */
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 95%;
        padding: 0 15px;
    }
    .page-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 80px 0;
        margin-bottom: 0px;
    }
    .nav-container {
        max-width: 95%;
        padding: 0 15px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
    
    .intro-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .intro-form-wrapper {
        padding: 20px;
    }
    
    .inquiry-form-wrapper {
        padding: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Products Page Styles */
.page-header {
    padding: 120px 0px 30px 0px;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #1a1a1a;
}

.breadcrumb span {
    margin: 0 10px;
}

.page-title {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
}

.products-page {
    padding: 30px 0;
    background: white;
}

.products-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
}

/* Sidebar */
.products-sidebar {
    background: #fafafa;
    padding: 40px 30px;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-section {
    margin-bottom: 40px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-title {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 8px;
}

.category-link {
    display: block;
    padding: 12px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-link:hover,
.category-link.active {
    background: #1a1a1a;
    color: white;
}

.price-filter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-input {
    flex: 1;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
}

.price-input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.filter-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover {
    background: #333;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 12px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
    color: #666;
}

.filter-item input[type="checkbox"] {
    display: none;
}

.filter-item .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.filter-item input[type="checkbox"]:checked + .checkmark {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.filter-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.sidebar-search {
    position: relative;
}

.sidebar-search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
}

.sidebar-search-input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.sidebar-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sidebar-search-btn:hover {
    background: #333;
}

/* Main Content */
.products-main {
    min-height: 600px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.products-count {
    color: #666;
    font-weight: 500;
}

.products-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sort-select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    cursor: pointer;
}

.sort-select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn.active,
.view-btn:hover {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: white;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.products-grid.list-view {
    grid-template-columns: 1fr;
}

.products-grid.list-view .product-card {
    display: flex;
    align-items: center;
    gap: 30px;
}

.products-grid.list-view .product-image {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.products-grid.list-view .product-info {
    flex: 1;
}

.inquiry-btn {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-top: 15px;
    width: 100%;
}

.inquiry-btn:hover {
    background: #1a1a1a;
    color: white;
}

.inquiry-btn.added {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.6;
}

.inquiry-btn.added:hover {
    background: #ccc;
    color: #666;
}

/* Floating Inquiry Cart */
.floating-inquiry-cart {
    position: fixed;
    top: 8%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
}

.cart-toggle {
    background: #1a1a1a;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.cart-toggle:hover {
    background: #333;
    transform: scale(1.1);
}

.cart-toggle i {
    font-size: 1.5rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 24px;
}

.cart-panel {
    position: absolute;
    top: -100px;
    right: 70px;
    width: 400px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
    max-height: 80vh;
    overflow: hidden;
}

.cart-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.cart-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
    border-radius: 15px 15px 0 0;
}

.cart-panel-header h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 600;
}

.cart-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close:hover {
    background: #e0e0e0;
    color: #1a1a1a;
}

.cart-panel-content {
    max-height: calc(80vh - 80px);
    overflow-y: auto;
}

.cart-items {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.cart-item-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 0.9rem;
    color: #1a1a1a;
    margin-bottom: 3px;
    font-weight: 600;
    line-height: 1.2;
}

.cart-item-category {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 3px;
}

.cart-item-price {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 700;
    /*font-family: 'Playfair Display', serif;*/
}

.cart-item-remove {
    background: #e74c3c;
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.cart-form {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.cart-form h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.cart-form-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-form-content .form-group {
    display: flex;
    flex-direction: column;
}

.cart-form-content .form-group label {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.cart-form-content .form-group input,
.cart-form-content .form-group textarea {
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.cart-form-content .form-group input:focus,
.cart-form-content .form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-inquiry-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    width: 100%;
}

.submit-inquiry-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

.submit-inquiry-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 10px;
}

.pagination-number {
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-number:hover,
.pagination-number.active {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: white;
}

.pagination-dots {
    display: flex;
    align-items: center;
    color: #666;
    font-weight: bold;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal-body {
    padding: 0 30px 30px;
}

/* Responsive Design for Products Page */
@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }
    
    .products-sidebar {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .products-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-sidebar {
        position: static;
        order: 1;
        background: white;
        border: 1px solid #e0e0e0;
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 10px;
    }
    
    .products-main {
        order: 2;
    }
    
    .products-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .products-controls {
        justify-content: space-between;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .products-grid.list-view {
        grid-template-columns: 1fr;
    }
    
    .products-grid.list-view .product-card {
        flex-direction: column;
        text-align: center;
    }
    
    .products-grid.list-view .product-image {
        width: 100%;
        height: 250px;
    }
    
    /* Mobile Sidebar - Compact Design */
    .sidebar-section {
        margin-bottom: 15px;
    }
    
    .sidebar-title {
        font-size: 0.9rem;
        margin-bottom: 10px;
        color: #1a1a1a;
        font-weight: 600;
    }
    
    .category-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .category-list li {
        margin-bottom: 0;
    }
    
    .category-link {
        padding: 6px 10px;
        font-size: 0.8rem;
        white-space: nowrap;
        border-radius: 15px;
        background: #f8f9fa;
        border: 1px solid #e0e0e0;
        transition: all 0.3s ease;
    }
    
    .category-link:hover,
    .category-link.active {
        background: #1a1a1a;
        color: white;
        border-color: #1a1a1a;
    }
    
    .price-inputs {
        flex-direction: column;
        gap: 8px;
    }
    
    .price-input {
        width: 100%;
        padding: 8px;
        font-size: 0.85rem;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .filter-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .filter-item {
        font-size: 0.8rem;
        padding: 5px 0;
    }
    
    .sidebar-search-input {
        font-size: 0.85rem;
        padding: 8px;
    }
    
    .sidebar-search-btn {
        padding: 8px 12px;
    }
    
    /* Floating Cart Mobile - Better Position */
    .floating-inquiry-cart {
        right: 15px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }
    
    .cart-toggle {
        width: 55px;
        height: 55px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    }
    
    .cart-toggle i {
        font-size: 1.3rem;
    }
    
    .cart-count {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
        top: -8px;
        right: -8px;
    }
    
    .cart-panel {
        right: 70px;
        width: 350px;
        max-height: 75vh;
        top: 0;
    }
    
    .cart-panel-header {
        padding: 18px;
    }
    
    .cart-panel-header h3 {
        font-size: 1.2rem;
    }
    
    .cart-items {
        padding: 18px;
        max-height: 280px;
    }
    
    .cart-item {
        padding: 12px;
        gap: 12px;
    }
    
    .cart-item-image {
        width: 45px;
        height: 45px;
    }
    
    .cart-item-name {
        font-size: 0.9rem;
    }
    
    .cart-item-category {
        font-size: 0.75rem;
    }
    
    .cart-item-price {
        font-size: 0.9rem;
    }
    
    .cart-form {
        padding: 18px;
    }
    
    .cart-form h4 {
        font-size: 1.05rem;
        margin-bottom: 15px;
    }
    
    .cart-form-content {
        gap: 15px;
    }
    
    .cart-form-content .form-group label {
        font-size: 0.85rem;
    }
    
    .cart-form-content .form-group input,
    .cart-form-content .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .submit-inquiry-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 50%);
        gap: 15px;
    }
    
    .products-sidebar {
        padding: 15px;
    }
    
    .sidebar-section {
        margin-bottom: 20px;
    }
    
    .category-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    
    .category-link {
        padding: 10px 15px;
        text-align: center;
    }
    
    .filter-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .products-controls {
        flex-direction: column;
        gap: 15px;
    }
    
    .view-toggle {
        align-self: center;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .pagination-numbers {
        order: 1;
        width: 100%;
        justify-content: center;
    }
    
    .pagination-btn {
        order: 2;
    }
    
    /* Inquiry Cart Small Mobile */
    .inquiry-cart {
        padding: 15px;
        margin: 20px 0;
    }
    
    .inquiry-cart-header h3 {
        font-size: 1.3rem;
    }
    
    .inquiry-item-image {
        width: 70px;
        height: 70px;
    }
    
    .inquiry-item-name {
        font-size: 0.95rem;
    }
    
    .inquiry-item-price {
        font-size: 1rem;
    }
    
    .submit-inquiry-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    /* Mobile Sidebar - Ultra Compact */
    .products-sidebar {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .sidebar-section {
        margin-bottom: 12px;
    }
    
    .sidebar-title {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .category-list {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .category-link {
        padding: 5px 8px;
        font-size: 0.75rem;
        border-radius: 12px;
    }
    
    .price-input {
        padding: 6px;
        font-size: 0.8rem;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .filter-list {
        gap: 6px;
    }
    
    .filter-item {
        font-size: 0.75rem;
        padding: 3px 0;
    }
    
    .sidebar-search-input {
        font-size: 0.8rem;
        padding: 6px;
    }
    
    .sidebar-search-btn {
        padding: 6px 10px;
    }
    
    /* Floating Cart Small Mobile - Better Position */
    .floating-inquiry-cart {
        right: 12px;
        top: 30%;
        bottom: auto;
        transform: translateY(-50%);
    }
    
    .cart-toggle {
        width: 50px;
        height: 50px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .cart-toggle i {
        font-size: 1.2rem;
    }
    
    .cart-count {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        top: -6px;
        right: -6px;
    }
    
    .cart-panel {
        right: 65px;
        width: 300px;
        max-height: 70vh;
        top: 0;
    }
    
    .cart-panel-header {
        padding: 15px;
    }
    
    .cart-panel-header h3 {
        font-size: 1.1rem;
    }
    
    .cart-items {
        padding: 15px;
        max-height: 250px;
    }
    
    .cart-item {
        padding: 10px;
        gap: 10px;
    }
    
    .cart-item-image {
        width: 40px;
        height: 40px;
    }
    
    .cart-item-name {
        font-size: 0.85rem;
    }
    
    .cart-item-category {
        font-size: 0.7rem;
    }
    
    .cart-item-price {
        font-size: 0.85rem;
    }
    
    .cart-form {
        padding: 15px;
    }
    
    .cart-form h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .cart-form-content {
        gap: 12px;
    }
    
    .cart-form-content .form-group label {
        font-size: 0.8rem;
    }
    
    .cart-form-content .form-group input,
    .cart-form-content .form-group textarea {
        padding: 8px;
        font-size: 0.85rem;
    }
    
    .submit-inquiry-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

/* Product Detail Page Styles */
.product-detail {
    padding: 60px 0;
    background: white;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Product Images */
.product-images {
    position: sticky;
    top: 100px;
}

.main-image {
    position: relative;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: 650px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.image-zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-zoom:hover {
    background: white;
    transform: scale(1.1);
}

.thumbnail-images {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumbnail.active {
    border-color: #1a1a1a;
}

.thumbnail:hover {
    transform: scale(1.1);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-header {
    margin-bottom: 30px;
}

.product-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stars {
    color: #ffd700;
    font-size: 1.1rem;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

.product-price {
    margin-bottom: 30px;
}

.current-price {
    font-size: 1.5rem;
    color: #858585;
    font-weight: 700;
    /*font-family: 'Playfair Display', serif;*/
}

.original-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 15px;
}

.discount {
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 15px;
}

.product-description {
    margin-bottom: 40px;
}

.product-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.product-options {
    margin-bottom: 40px;
}

.option-group {
    margin-bottom: 30px;
}

.option-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.option-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.option-btn {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #666;
}

.option-btn:hover,
.option-btn.active {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: white;
}

.size-select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
}

.size-select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.add-to-cart-btn {
    flex: 1;
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.inquiry-btn {
    flex: 1;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 18px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.inquiry-btn:hover {
    background: #1a1a1a;
    color: white;
}

.wishlist-btn {
    width: 60px;
    height: 60px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
}

.wishlist-btn:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fafafa;
    border-radius: 10px;
}

.feature-item i {
    font-size: 1.5rem;
    color: #1a1a1a;
    width: 30px;
}

.feature-item h4 {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Product Tabs */
.product-tabs {
    padding: 80px 0;
    background: #fafafa;
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
}

.tab-btn {
    padding: 15px 30px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 2rem;
    font-weight: bold;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

.tabs-content {
    max-width: 800px;
    margin: 0 auto;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-content h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

.tab-content h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin: 30px 0 15px;
    font-weight: 600;
}

.tab-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.tab-content ul {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.tab-content li {
    margin-bottom: 8px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.spec-label {
    font-weight: 600;
    color: #1a1a1a;
}

.spec-value {
    color: #666;
}

.shipping-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.shipping-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.shipping-item i {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-top: 5px;
}

.shipping-item h4 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.shipping-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.reviews-summary {
    margin-bottom: 40px;
}

.rating-overview {
    display: flex;
    align-items: center;
    gap: 30px;
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
}

.overall-rating .stars {
    font-size: 1.2rem;
    margin: 10px 0;
}

.total-reviews {
    color: #666;
    font-size: 0.9rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-item {
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 600;
}

.review-rating {
    color: #ffd700;
    font-size: 0.9rem;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-text {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Product Navigation */
.product-navigation {
    padding: 60px 0;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.nav-products {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.nav-product {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
    flex: 1;
}

.nav-product:hover {
    color: #1a1a1a;
}

.nav-product-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.nav-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-product-info {
    flex: 1;
}

.nav-label {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.nav-product h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 600;
}

.back-to-products {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
    font-weight: 500;
}

.back-to-products:hover {
    background: #333;
}

.next-product {
    flex-direction: row-reverse;
}

/* Related Products */
.related-products {
    padding: 80px 0;
    background: #fafafa;
}

.related-products-slider {
    position: relative;
    margin-top: 50px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1a1a1a;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.prev-slider-btn {
    left: -25px;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.next-slider-btn {
    right: -25px;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.slider-container {
    overflow: hidden;
    border-radius: 15px;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease;
}

.related-product-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-product-card:hover {
    transform: translateY(-10px);
}

.related-product-card .product-image {
    height: 250px;
}

.related-product-card .product-info {
    padding: 20px;
}

.related-product-card .product-name {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.related-product-card .product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
}


/* FAQ Page Styles */
.faq-section {
    padding: 60px 0;
    background: white;
}

.faq-main {
    min-height: 600px;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-count {
    color: #666;
    font-weight: 500;
}

.faq-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-controls .sort-select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    cursor: pointer;
}

.faq-controls .sort-select:focus {
    outline: none;
    border-color: #1a1a1a;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.faq-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.faq-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.faq-card.featured {
    grid-column: span 2;
}

.faq-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.faq-card.featured .faq-image {
    height: 300px;
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.faq-card:hover .faq-image img {
    transform: scale(1.1);
}

.faq-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #1a1a1a;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
}

.faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-card:hover .faq-overlay {
    opacity: 1;
}

.faq-btn {
    background: white;
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.faq-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.faq-content {
    padding: 30px;
}

.faq-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.faq-category {
    background: #f0f0f0;
    color: #666;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.faq-date {
    color: #666;
}

.faq-views {
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.faq-title {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.faq-card.featured .faq-title {
    font-size: 1.8rem;
}

.faq-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.faq-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.faq-tags .tag {
    padding: 4px 10px;
    background: #f8f9fa;
    color: #666;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.faq-tags .tag:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

/* News Page Styles */
.news-section {
    padding: 60px 0;
    background: white;
}

.news-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
}

/* News Sidebar */
.news-sidebar {
    background: #fafafa;
    padding: 40px 30px;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.news-sidebar .sidebar-section {
    margin-bottom: 40px;
}

.news-sidebar .sidebar-section:last-child {
    margin-bottom: 0;
}

.news-sidebar .sidebar-title {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.news-sidebar .category-list {
    list-style: none;
}

.news-sidebar .category-list li {
    margin-bottom: 8px;
}

.news-sidebar .category-link {
    display: block;
    padding: 12px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.news-sidebar .category-link:hover,
.news-sidebar .category-link.active {
    background: #1a1a1a;
    color: white;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    padding: 6px 12px;
    background: #f0f0f0;
    color: #666;
    border-radius: 15px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.tag-item:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

/* Recent News */
.recent-news {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-news-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.recent-news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.recent-news-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-news-content h4 {
    font-size: 0.9rem;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 1.3;
}

.recent-news-date {
    font-size: 0.8rem;
    color: #666;
}

/* News Main Content */
.news-main {
    min-height: 600px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.news-count {
    color: #666;
    font-weight: 500;
}

.news-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-controls .sort-select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    cursor: pointer;
}

.news-controls .sort-select:focus {
    outline: none;
    border-color: #1a1a1a;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.news-card.featured {
    grid-column: span 2;
}

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-card.featured .news-image {
    height: 300px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #1a1a1a;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover .news-overlay {
    opacity: 1;
}

.news-btn {
    background: white;
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.news-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.news-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.news-category {
    background: #f0f0f0;
    color: #666;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-date {
    color: #666;
}

.news-views {
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-title {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.news-card.featured .news-title {
    font-size: 1.8rem;
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.news-tags .tag {
    padding: 4px 10px;
    background: #f8f9fa;
    color: #666;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.news-tags .tag:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

/* News Detail Page Styles */
.news-detail {
    padding: 60px 0;
    background: white;
}

.news-detail-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.news-article {
    max-width: 800px;
}

.news-article-header {
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.news-article-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.news-article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.news-article-category {
    background: #1a1a1a;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.news-article-date {
    color: #666;
    font-size: 0.95rem;
}

.news-article-views {
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-article-image {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.news-article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.news-article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.news-article-content h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 40px 0 20px;
    font-weight: 600;
}

.news-article-content h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin: 30px 0 15px;
    font-weight: 600;
}

.news-article-content p {
    margin-bottom: 20px;
}

.news-article-content ul,
.news-article-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.news-article-content li {
    margin-bottom: 8px;
}

.news-article-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #1a1a1a;
    padding: 20px 30px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

.news-article-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.news-article-tags h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.news-article-tags .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-article-tags .tag {
    padding: 8px 16px;
    background: #f0f0f0;
    color: #666;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.news-article-tags .tag:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

.news-share {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    text-align: center;
}

.news-share h4 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.share-btn:hover {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: white;
}

.share-btn.facebook:hover {
    border-color: #3b5998;
    background: #3b5998;
    color: white;
}

.share-btn.twitter:hover {
    border-color: #1da1f2;
    background: #1da1f2;
    color: white;
}

.share-btn.wechat:hover {
    border-color: #07c160;
    background: #07c160;
    color: white;
}

.share-btn.weibo:hover {
    border-color: #e6162d;
    background: #e6162d;
    color: white;
}

/* Related News */
.related-news {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.related-news h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.related-news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.related-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.related-news-card .news-image {
    height: 200px;
}

.related-news-card .news-content {
    padding: 20px;
}

.related-news-card .news-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.related-news-card .news-meta {
    margin-bottom: 10px;
}

/* News Sidebar for Detail Page */
.news-detail-sidebar {
    background: #fafafa;
    padding: 40px 30px;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.news-detail-sidebar .sidebar-section {
    margin-bottom: 40px;
}

.news-detail-sidebar .sidebar-section:last-child {
    margin-bottom: 0;
}

.news-detail-sidebar .sidebar-title {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

/* Responsive Design for FAQ Pages */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .faq-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .faq-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .faq-controls {
        justify-content: space-between;
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .faq-card.featured {
        grid-column: span 1;
    }
    
    .faq-content {
        padding: 20px;
    }
    
    .faq-title {
        font-size: 1.1rem;
    }
    
    .faq-card.featured .faq-title {
        font-size: 1.3rem;
    }
    
    .faq-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .faq-content {
        padding: 15px;
    }
    
    .faq-title {
        font-size: 1rem;
    }
    
    .faq-card.featured .faq-title {
        font-size: 1.2rem;
    }
    
    .faq-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .faq-tags {
        gap: 6px;
    }
    
    .faq-tags .tag {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}

/* Responsive Design for News Pages */
@media (max-width: 1024px) {
    .news-layout {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }
    
    .news-sidebar {
        padding: 30px 20px;
    }
    
    .news-detail-layout {
        grid-template-columns: 1fr 250px;
        gap: 40px;
    }
    
    .news-detail-sidebar {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .news-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-sidebar {
        position: static;
        order: 1;
        background: white;
        border: 1px solid #e0e0e0;
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 10px;
    }
    
    .news-main {
        order: 2;
    }
    
    .news-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .news-controls {
        justify-content: space-between;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .news-card.featured {
        grid-column: span 1;
    }
    
    .news-detail-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-detail-sidebar {
        position: static;
        order: 1;
        background: white;
        border: 1px solid #e0e0e0;
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 10px;
    }
    
    .news-article {
        order: 2;
    }
    
    .news-article-title {
        font-size: 2rem;
    }
    
    .news-article-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .news-article-image img {
        height: 300px;
    }
    
    .news-article-content {
        font-size: 1rem;
    }
    
    .news-article-content h2 {
        font-size: 1.5rem;
    }
    
    .news-article-content h3 {
        font-size: 1.2rem;
    }
    
    .share-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .share-btn {
        justify-content: center;
    }
    
    .related-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-sidebar {
        padding: 12px;
    }
    
    .sidebar-section {
        margin-bottom: 15px;
    }
    
    .sidebar-title {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .category-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .category-list li {
        margin-bottom: 0;
    }
    
    .category-link {
        padding: 6px 10px;
        font-size: 0.8rem;
        white-space: nowrap;
        border-radius: 15px;
        background: #f8f9fa;
        border: 1px solid #e0e0e0;
    }
    
    .tag-cloud {
        gap: 6px;
    }
    
    .tag-item {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    
    .recent-news-item {
        padding: 12px;
        gap: 12px;
    }
    
    .recent-news-image {
        width: 50px;
        height: 50px;
    }
    
    .recent-news-content h4 {
        font-size: 0.85rem;
    }
    
    .recent-news-date {
        font-size: 0.75rem;
    }
    
    .news-article-title {
        font-size: 1.8rem;
    }
    
    .news-article-image img {
        height: 250px;
    }
    
    .news-article-content {
        font-size: 0.95rem;
    }
    
    .news-article-content h2 {
        font-size: 1.3rem;
    }
    
    .news-article-content h3 {
        font-size: 1.1rem;
    }
    
    .related-news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-detail-sidebar {
        padding: 12px;
    }
}

/* About Page Styles */
.company-story {
    padding: 50px 0;
    background: #fafafa;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    /*margin-top: 50px;*/
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    text-align: center;
    min-width: 120px;
}

@media (max-width: 480px) {
    .stat-item {
        min-width: 80px;
    }
}

.story-image {
    position: relative;
}

.story-image .image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image .image-wrapper img {
    width: 100%;
    /*height: 500px;*/
    object-fit: cover;
    /*transition: transform 0.3s ease;*/
}

.story-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/*.story-image .image-wrapper:hover .image-overlay {
    opacity: 1;
}

.story-image .image-wrapper:hover img {
    transform: scale(1.05);
}*/

.story-image .play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-image .play-button:hover {
    background: white;
    transform: scale(1.1);
}

.story-image .play-button i {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-left: 3px;
}

/* Our Values */
.our-values {
    padding: 100px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.value-item {
    text-align: center;
    padding: 40px 20px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: #1a1a1a;
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: #666;
    transition: color 0.3s ease;
}

.value-item:hover .value-icon i {
    color: white;
}

.value-title {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Enhanced Team Section */
.team-section {
    padding: 70px 0;
    background: #fafafa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.team-member {
    text-align: center;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: none;
}

.member-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-image:hover .member-overlay {
    opacity: 1;
}

.member-image:hover img {
    transform: scale(1.05);
}

.member-social {
    display: flex;
    gap: 20px;
}

.member-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: white;
    transform: scale(1.1);
}

.member-name {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-role {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.member-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.achievement {
    background: #f0f0f0;
    color: #666;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Workshop Gallery */
.workshop-gallery {
    padding: 50px 0px 0px 0px;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Craftsmanship Process */
.craftsmanship-process {
    padding: 70px 0px 20px 0px;
    background: #fafafa;
}

.process-timeline {
    margin-top: 80px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.step-number {
    width: 100px;
    height: 100px;
    background: #1a1a1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 40px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Awards Section */
.awards-section {
    padding: 50px 0;
    background: white;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.award-item {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.award-item:hover .award-icon {
    background: #ffd700;
    color: #1a1a1a;
    transform: scale(1.1);
}

.award-icon i {
    font-size: 2rem;
}

.award-item h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.award-item p {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn.primary {
    background: white;
    color: #1a1a1a;
}

.cta-btn.primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .story-content {
        gap: 60px;
    }
    
    .story-stats {
        flex-direction: row;
        gap: 15px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-stats {
        flex-direction: row;
        gap: 10px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
        width: 80px;
        height: 80px;
        font-size: 1.2rem;
    }
    
    .step-content {
        padding: 30px 20px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .story-stats {
        flex-direction: row;
        gap: 8px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .value-item {
        padding: 30px 15px;
    }
    
    .team-member {
        padding: 5px;
    }
    
    /* 防止移动端溢出 */
    img {
        max-width: 100%;
        height: auto;
    }
    
    .section-header img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .member-image img {
        height: 250px;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .step-content {
        padding: 20px 15px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .award-item {
        padding: 30px 15px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Image Zoom Modal */
.image-zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.image-zoom-modal.active {
    display: flex;
}

.zoom-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.zoom-modal-content {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1200px;
    max-height: 800px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.zoom-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.zoom-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.zoom-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.zoom-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: grab;
}

.zoom-image-container img:active {
    cursor: grabbing;
}

.zoom-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.zoom-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.zoom-btn:active {
    transform: scale(0.95);
}

/* Responsive Design for Product Detail */
@media (max-width: 1024px) {
    .product-detail-layout {
        gap: 60px;
    }
    
    .main-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-images {
        position: static;
    }
    
    .main-image img {
        height: 350px;
    }
    
    .zoom-modal-content {
        width: 95%;
        height: 95%;
        border-radius: 10px;
    }
    
    .zoom-controls {
        bottom: 15px;
        padding: 8px 12px;
    }
    
    .zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .zoom-modal-close {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
        font-size: 1rem;
    }
    
    .thumbnail-images {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 10px;
    }
    
    .thumbnail {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .add-to-cart-btn,
    .inquiry-btn {
        width: 100%;
        padding: 15px 25px;
    }
    
    .wishlist-btn {
        width: 100%;
        height: 50px;
    }
    
    .product-features {
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px;
        gap: 12px;
    }
    
    .feature-item i {
        font-size: 1.3rem;
    }
    
    .tabs-navigation {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .tab-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-products {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-product {
        width: 100%;
        justify-content: center;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-slider-btn {
        left: -20px;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .next-slider-btn {
        right: -20px;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .slider-track {
        overflow: hidden;
        padding-bottom: 20px;
    }
    
    .related-product-card {
        flex: 0 0 250px;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 1.8rem;
    }
    
    .current-price {
        font-size: 1.8rem;
    }
    
    .main-image img {
        height: 300px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .option-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .option-btn {
        width: 100%;
        text-align: center;
        padding: 10px 15px;
    }
    
    .size-select {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 12px;
    }
    
    .feature-item i {
        font-size: 1.5rem;
    }
    
    .feature-item h4 {
        font-size: 0.9rem;
    }
    
    .feature-item p {
        font-size: 0.8rem;
    }
    
    .tabs-navigation {
        flex-direction: column;
        gap: 5px;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        text-align: center;
    }
    
    .tab-content h3 {
        font-size: 1.5rem;
    }
    
    .tab-content h4 {
        font-size: 1.1rem;
    }
    
    .spec-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .shipping-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .shipping-item i {
        font-size: 1.8rem;
    }
    
    .rating-overview {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .review-item {
        padding: 15px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .nav-product-image {
        width: 60px;
        height: 60px;
    }
    
    .nav-product h4 {
        font-size: 1rem;
    }
    
    .back-to-products {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .related-product-card {
        flex: 0 0 200px;
    }
    
    .related-product-card .product-image {
        height: 200px;
    }
    
    .related-product-card .product-info {
        padding: 15px;
    }
    
    .related-product-card .product-name {
        font-size: 1rem;
    }
    
    .related-product-card .product-price {
        font-size: 1.1rem;
    }
}