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

:root {
    --primary-color: #0038FF;
    --secondary-color: #FF1493;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    margin-right: 30px;
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

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

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-left: 20px;
    flex-shrink: 0;
}

.language-dropdown {
    position: relative;
}

.language-btn {
    background: none;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.language-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.language-btn i:last-child {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.language-dropdown.show .language-btn i:last-child {
    transform: rotate(180deg);
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.language-option .flag {
    font-size: 16px;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

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

.hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    width: 90%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    animation: fadeInUp 1.4s ease;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { top: 5px; opacity: 1; }
    50% { top: 15px; opacity: 0.5; }
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
}

/* Brand Intro */
.brand-intro {
    padding: 100px 0;
    background: var(--white);
}

/* Brand Story Module */
.brand-story-module {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.brand-story-background {
    position: relative;
    width: 100%;
    height: 100%;
}

.story-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.8), rgba(255, 20, 147, 0.6));
}

.story-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 0 5%;
    padding-left: 8%;
    z-index: 10;
}

.story-text {
    max-width: 600px;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.story-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.story-divider-line {
    width: 80px;
    height: 4px;
    background: var(--white);
    margin-bottom: 30px;
}

.story-intro {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
    opacity: 0.95;
}

.story-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--white);
    opacity: 0.9;
}

.story-signature {
    font-size: 1.2rem;
    font-weight: 500;
    font-style: italic;
    margin-top: 30px;
    color: var(--white);
    opacity: 0.95;
}

.brand-description {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Featured Products */
.featured-products {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,56,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-details {
    padding: 12px 30px;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.view-details:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Brand Story */
.brand-story {
    padding: 0 0 100px 0;
    background: var(--white);
}

.story-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.story-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.story-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
}

.story-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.story-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
}

.story-slogan {
    text-align: center;
    padding: 80px 0 60px;
}

.story-slogan h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.slogan-en {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.story-chapter {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.chapter-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.chapter-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.chapter-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: justify;
}

.chapter-conclusion {
    font-style: italic;
    color: var(--primary-color) !important;
    font-weight: 500;
}

/* Product Series */
.product-series {
    padding: 100px 0;
    background: var(--bg-light);
}

.series-grid {
    margin-top: 60px;
}

.series-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.series-item.reverse {
    direction: rtl;
}

.series-item.reverse > * {
    direction: ltr;
}

.series-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.series-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.series-item:hover .series-image {
    transform: scale(1.05);
}

.series-content {
    padding: 20px;
}

.series-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.series-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Product Gallery */
.product-gallery {
    padding: 80px 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Brand Philosophy */
.brand-philosophy {
    padding: 100px 0;
    background: var(--white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.philosophy-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.philosophy-card:hover {
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.philosophy-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    color: var(--primary-color);
}

.philosophy-icon i {
    font-size: 60px !important;
}

.philosophy-icon svg,
.philosophy-icon i {
    width: 100%;
    height: 100%;
}

.philosophy-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.philosophy-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Shopping Guide */
.shopping-guide {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.size-guide h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.size-guide p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.size-table {
    overflow-x: auto;
    margin-bottom: 40px;
}

.size-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.size-table th,
.size-table td {
    padding: 15px;
    text-align: center;
}

.size-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.size-table tr:nth-child(even) {
    background: var(--bg-light);
}

.size-tips {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.size-tips h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.size-tips ul {
    list-style: none;
}

.size-tips li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.size-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
}

.contact-icon svg,
.contact-icon i {
    width: 100%;
    height: 100%;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-light);
}

.contact-text {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.contact-text p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}


/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
    /* filter: brightness(0) invert(1); */
}

.footer-slogan {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 20px;
    }
    
    .language-switcher {
        margin-left: 15px;
    }
}

@media (max-width: 1100px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .language-switcher {
        margin-left: 10px;
    }
    
    .language-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 1000px) {
    .nav-menu {
        gap: 12px;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .language-switcher {
        margin-left: 8px;
    }
    
    .language-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .language-btn span {
        display: none;
    }
    
    .language-btn i:first-child {
        margin-right: 0;
    }
}

@media (max-width: 1050px) {
    .nav-menu {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .language-switcher {
        margin-left: 5px;
    }
    
    .language-btn {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .language-btn span {
        display: none;
    }
    
    .language-btn i:first-child {
        margin-right: 0;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Language Switcher Mobile */
    .language-switcher {
        order: -1;
        margin-bottom: 20px;
        margin-left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .language-btn {
        width: auto;
        padding: 10px 20px;
        font-size: 14px;
    }

    .language-btn span {
        display: inline !important;
    }

    .language-options {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        margin-top: 10px;
        width: 100%;
        display: none;
    }

    .language-options.show {
        display: block;
    }

    .language-option {
        justify-content: center;
        padding: 12px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        margin-bottom: 8px;
        background: var(--white);
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    /* Brand Story Module Responsive */
    .brand-story-module {
        height: 70vh;
        min-height: 500px;
    }

    .story-section-title {
        font-size: 2.2rem;
    }

    .story-intro {
        font-size: 1.2rem;
    }

    .story-description {
        font-size: 1rem;
    }

    .story-signature {
        font-size: 1.1rem;
    }

    .series-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .series-item.reverse {
        direction: ltr;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 30px 15px;
    }

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

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 70vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .brand-description {
        font-size: 1.1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Brand Story Module Mobile */
    .brand-story-module {
        height: 60vh;
        min-height: 450px;
    }

    .story-content {
        padding: 0 20px;
        padding-left: 30px;
    }

    .story-text {
        max-width: 100%;
    }

    .story-section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .story-divider-line {
        width: 60px;
        margin-bottom: 20px;
    }

    .story-intro {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .story-description {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .story-signature {
        font-size: 1rem;
        margin-top: 20px;
    }

    .story-title {
        font-size: 2rem;
    }

    .story-subtitle {
        font-size: 1.2rem;
    }

    .chapter-number {
        font-size: 2rem;
    }

    .chapter-title {
        font-size: 1.5rem;
    }

    .chapter-content p {
        font-size: 1rem;
    }

    .series-name {
        font-size: 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 10px;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-delay {
    animation: fadeIn 1.2s ease;
}

.fade-in-delay-2 {
    animation: fadeIn 1.4s ease;
}

/* Smooth Scroll */
.scroll-smooth {
    scroll-behavior: smooth;
}

/* Page Header */
.page-header {
    position: relative;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(100, 100, 100, 0.6);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Page Content */
.page-content {
    padding: 80px 0;
}

/* Quick Links Section */
.quick-links {
    padding: 80px 0;
    background: var(--white);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.quick-link-card {
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.quick-link-card:hover {
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.quick-link-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.quick-link-icon svg,
.philosophy-icon svg,
.feature-icon svg,
.contact-icon svg,
.contact-icon i {
    width: 100%;
    height: 100%;
}

.quick-link-icon i,
.philosophy-icon i,
.feature-icon i,
.contact-icon i,
.faq-quick-icon i,
.why-icon i,
.message-icon i {
    font-size: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.quick-link-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.quick-link-card p {
    color: var(--text-light);
}

/* Story Page Specific */
.story-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 60px auto;
}

.story-cta {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-light);
    border-radius: 20px;
    margin-top: 80px;
}

.story-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.story-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Products Page Specific */
.series-features {
    list-style: none;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.series-features li {
    padding: 8px 15px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-gallery-full {
    padding: 80px 0;
    background: var(--white);
}

.gallery-grid-extended {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
}

.gallery-grid-extended .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    padding-top: 100%;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-grid-extended .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.product-features {
    padding: 80px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--secondary-color);
}

.feature-icon svg,
.feature-icon i {
    width: 100%;
    height: 100%;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Philosophy Page Specific */
.philosophy-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.philosophy-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.philosophy-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.philosophy-grid-extended {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.philosophy-card-large {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.philosophy-card-large:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.philosophy-details {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--bg-light);
}

.philosophy-details h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.philosophy-details ul {
    list-style: none;
}

.philosophy-details li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.philosophy-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.values-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.brand-promise {
    padding: 80px 0;
    background: var(--white);
}

.promise-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.promise-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.promise-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.promise-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.promise-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Guide Page Specific */
.guide-section {
    max-width: 1000px;
    margin: 0 auto;
}

.guide-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.guide-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.guide-section h3 {
    font-size: 1.8rem;
    margin: 60px 0 25px;
    color: var(--text-dark);
}

.size-table-wrapper {
    margin-bottom: 60px;
}

.measurement-guide {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 60px;
}

.measurement-steps {
    margin-top: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.tip-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tip-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.care-guide {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}

.care-content {
    margin-top: 30px;
}

.care-section {
    margin-bottom: 30px;
}

.care-section h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.care-section li {
    padding: 10px 0;
    color: var(--text-light);
    line-height: 1.8;
}

.care-section strong {
    color: var(--text-dark);
}

.faq-section {
    margin-top: 60px;
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Page Specific */
.contact-intro {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.contact-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.contact-item-card {
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-item-card:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.contact-item-card .contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-card .contact-icon i {
    font-size: 2.5rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-card .contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-item-card .contact-details p {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
}

.contact-item-card .contact-note {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
}

.contact-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-content-page {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info-section h3,
.contact-info-section-full h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-item-large {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 30px;
}

.contact-item-large .contact-icon {
    width: 50px;
    height: 50px;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.contact-note {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-hours {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.contact-hours h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-hours p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-hours .note {
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 10px;
}

.contact-message {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.message-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-message h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-message p {
    line-height: 1.8;
    opacity: 0.95;
}

.contact-content-centered {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.contact-info-section-full {
    max-width: 1200px;
    width: 100%;
}


.faq-quick {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-quick h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.faq-quick-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-quick-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.faq-quick-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.faq-quick-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.why-contact {
    padding: 80px 0;
    background: var(--white);
}

.why-contact h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

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

.why-item {
    text-align: center;
    padding: 30px;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.why-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.why-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.social-proof {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

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

.proof-content h3 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.proof-text {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Active Nav Link */
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive Updates */
@media (max-width: 968px) {
    .page-title {
        font-size: 2.5rem;
    }

    .contact-content-page {
        grid-template-columns: 1fr;
    }

    .contact-grid-four {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-grid-extended {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .proof-stats {
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid-extended {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .philosophy-grid-extended {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .values-grid,
    .promise-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid-four,
    .faq-quick-grid,
    .why-contact-grid {
        grid-template-columns: 1fr;
    }

    .proof-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .philosophy-grid-extended {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .philosophy-icon {
        width: 140px;
        height: 140px;
    }
    
    .philosophy-icon i {
        font-size: 45px !important;
    }
    
    /* Brand Story Module for very small screens */
    .brand-story-module {
        height: 50vh;
        min-height: 400px;
    }
    
    .story-content {
        padding: 0 15px;
        padding-left: 20px;
    }
    
    .story-section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .story-intro {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .story-description {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    
    .story-signature {
        font-size: 0.9rem;
        margin-top: 15px;
    }
}

