@charset "UTF-8";
/* Modern Minimalist Design for Chuojuki Service */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    background: #ffffff;
    color: #333333;
    line-height: 1.6;
    font-size: 14px;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* Header - Logo Section */
.main-header {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    background: #ffffff;
}

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

.miele-logo {
    display: inline-block;
    background-color: #8C0014;
    color: #ffffff;
    font-weight: bold;
    font-size: 32px;
    letter-spacing: 2px;
    padding: 15px 40px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
}

/* Navigation Menu */
.main-nav {
    width: 100%;
    background: #42647f;
    border: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
    gap: 10px;
}

.nav-brand {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    padding: 20px 30px;
    margin-right: auto;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.nav-brand:hover {
    color: #ffffff;
    opacity: 0.9;
    text-decoration: none;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.nav-item:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-item.active {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    border-bottom-color: #ffffff;
}

.nav-title {
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: inherit;
}

.nav-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: normal;
    margin-bottom: 5px;
}

.nav-item.active .nav-subtitle,
.nav-item:hover .nav-subtitle {
    color: #ffffff;
}

/* Mobile menu toggle button (hamburger) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    margin: 0 10px 0 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    transition: opacity 0.2s ease;
}
.nav-toggle:hover {
    opacity: 0.9;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle span:nth-child(1) { margin-bottom: 6px; }
.nav-toggle span:nth-child(2) { margin-bottom: 6px; }
.nav-toggle span:nth-child(3) { margin-bottom: 0; }

/* Hamburger → X when menu open */
.main-nav.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.main-nav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}
.main-nav.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    margin-bottom: 0;
}

/* Nav menu wrapper (for mobile collapse) */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Main Content */
.main-content {
    width: 100%;
    padding: 60px 0;
    background: #ffffff;
    min-height: calc(100vh - 200px);
}

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

/* Grid layout chỉ cho index page */
.content-container.index-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Content columns */
.content-column {
    min-width: 0;
}

/* Profile page layout - full width, no grid */
.content-container.profile-layout {
    display: block;
}

.store-info-section,
.map-section,
.company-info-section {
    width: 100%;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
    position: relative;
}

/* Section Headers */
.section-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #8C0014;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #8C0014;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 14px;
    color: #666666;
    font-weight: normal;
}

/* NEWS Column */
.news-column {
    min-width: 0;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.news-item:hover {
    padding-left: 10px;
}

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

.news-date {
    font-size: 12px;
    color: #666666;
    white-space: nowrap;
    min-width: 120px;
    font-weight: normal;
}

.news-icon {
    font-size: 14px;
    margin-right: 5px;
}

.news-text {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
    flex: 1;
}

/* Instagram Column */
.instagram-column {
    min-width: 0;
}

.instagram-profile {
    width: 100%;
}

.instagram-header {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.profile-picture {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.instagram-username {
    font-size: 14px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 8px;
}

.instagram-description {
    font-size: 11px;
    color: #666666;
    line-height: 1.6;
}

/* Instagram Feed Grid */
.instagram-feed {
    width: 100%;
}

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

.instagram-post {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: #f0f0f0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.instagram-post:hover {
    transform: scale(1.05);
}

.instagram-post img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.9);
    width: 20px;
    height: 20px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 1;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #8C0014;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.85);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(140, 0, 20, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.scroll-top.visible:hover {
    background-color: #a0001a;
    transform: scale(1) translateY(-3px);
    box-shadow: 0 6px 16px rgba(140, 0, 20, 0.4);
}

.scroll-top span {
    font-size: 20px;
    font-weight: bold;
}

/* Blog Section */
.blog-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.blog-content {
    padding: 20px 0;
}

.blog-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.8;
    color: #333333;
}

#blog_date {
    font-size: 12px;
    color: #666666;
    font-weight: normal;
}

#blog_title {
    font-size: 16px;
    font-weight: bold;
    color: #8C0014;
    text-decoration: none;
    display: block;
    margin: 10px 0;
}

#blog_title:hover {
    text-decoration: underline;
}

#blog_description {
    font-size: 13px;
    color: #555555;
    line-height: 1.6;
}

.btn-blog {
    display: inline-block;
    padding: 10px 20px;
    background-color: #8C0014;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.btn-blog:hover {
    background-color: #a0001a;
    color: #ffffff;
}

/* Links Section */
.links-section {
    margin-bottom: 40px;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-item {
    display: block;
    padding: 15px 20px;
    background-color: #f8f8f8;
    color: #333333;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.link-item:hover {
    background-color: #8C0014;
    color: #ffffff;
    border-color: #8C0014;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(140, 0, 20, 0.2);
}

/* Contact Section */
.contact-section {
    margin-bottom: 40px;
}

.contact-box {
    background-color: #f8f8f8;
    padding: 30px 20px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.contact-title {
    font-size: 16px;
    font-weight: bold;
    color: #8C0014;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 13px;
    color: #666666;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.btn-contact {
    display: inline-block;
    padding: 12px 30px;
    background-color: #8C0014;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-contact:hover {
    background-color: #a0001a;
    color: #ffffff;
}

/* Miele Logo Link Section */
.miele-link-section {
    margin-top: 30px;
}

.miele-link {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.miele-link:hover {
    border-color: #8C0014;
    box-shadow: 0 4px 8px rgba(140, 0, 20, 0.1);
}

.miele-logo-img {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.miele-link-text {
    font-size: 12px;
    color: #666666;
    margin: 0;
}

.miele-link:hover .miele-link-text {
    color: #8C0014;
}

/* Footer */
.main-footer {
    width: 100%;
    padding: 50px 0 30px;
    background: #42647f !important;
    border-top: none;
    margin-top: 60px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff !important;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
    opacity: 0.9;
    transform: translateX(4px);
}

.copyright {
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-container.index-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-container {
        padding: 0 20px;
    }

    .nav-container {
        flex-wrap: wrap;
        padding: 0 10px;
    }

    .nav-item {
        padding: 15px 15px;
        flex: 1;
        min-width: 120px;
    }

    .miele-logo {
        font-size: 28px;
        padding: 12px 30px;
    }
}

/* Mobile: hamburger menu (show toggle, collapse menu) */
@media (max-width: 768px) {
    a, button {
        -webkit-tap-highlight-color: rgba(66, 100, 127, 0.15);
    }

    .main-nav {
        min-height: 56px;
        padding: 0 env(safe-area-inset-right) 0 env(safe-area-inset-left);
    }

    .nav-toggle {
        display: flex;
        min-width: 48px;
        min-height: 48px;
    }

    .nav-container {
        flex-wrap: nowrap;
        justify-content: space-between;
        min-height: 56px;
        padding: 0 12px 0 16px;
    }

    .nav-brand {
        font-size: 15px;
        padding: 14px 12px 14px 0;
        letter-spacing: 0.5px;
    }

    .nav-menu {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        bottom: auto;
        max-height: 0;
        overflow: hidden;
        background: #42647f;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        transition: max-height 0.35s ease;
        z-index: 1001;
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .main-nav.menu-open .nav-menu {
        max-height: calc(100vh - 56px);
        max-height: calc(100dvh - 56px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu .nav-item {
        width: 100%;
        padding: 18px 24px;
        min-height: 52px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        flex: none;
        min-width: auto;
        border-left: none;
    }

    .nav-menu .nav-item.active {
        border-left: 4px solid #ffffff;
    }
}

@media (max-width: 640px) {
    .main-header {
        padding: 24px 0;
    }

    .miele-logo {
        font-size: 22px;
        padding: 10px 20px;
    }

    .nav-container {
        flex-direction: row;
    }

    .nav-brand {
        font-size: 14px;
    }

    .main-content {
        padding: 32px 0 48px;
    }

    .content-container {
        padding: 0 16px;
        gap: 28px;
    }

    .section-title {
        font-size: 20px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scroll-top {
        width: 48px;
        height: 48px;
        bottom: max(20px, env(safe-area-inset-bottom));
        right: max(16px, env(safe-area-inset-right));
        border-radius: 50%;
    }

    .footer-container {
        padding: 32px 16px 24px;
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 24px;
    }

    .footer-section ul li {
        margin-bottom: 4px;
    }

    .footer-section ul li a {
        display: inline-block;
        padding: 10px 0;
        min-height: 44px;
        line-height: 24px;
        font-size: 14px;
    }

    .copyright {
        font-size: 11px;
        padding-top: 16px;
    }

    .main-footer {
        padding: 40px 0 max(24px, env(safe-area-inset-bottom));
        margin-top: 40px;
    }
}

/* Very small phones */
@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    .main-content {
        padding: 24px 0 40px;
    }

    .content-container {
        padding: 0 12px;
    }

    .nav-brand {
        font-size: 13px;
        padding: 12px 8px 12px 0;
    }

    .section-title {
        font-size: 18px;
    }

    .footer-container {
        padding: 24px 12px 20px;
    }
}

/* Scroll-triggered animations (used by JS) */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Performance optimizations */
* {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

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

/* Profile Page Styles */
.store-info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px auto;
    padding: 50px;
    width: 100%;
    max-width: 1200px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.store-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #42647f, #8C0014, #42647f);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.store-photo {
    width: 100%;
}

.store-photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: block;
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-photo img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.store-details {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.store-details:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.store-title {
    font-size: 28px;
    font-weight: bold;
    color: #8C0014;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #8C0014;
    position: relative;
}

.store-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8C0014, #6A0010);
}

.store-info-box {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 6px;
    border-left: 4px solid #8C0014;
    transition: all 0.3s ease;
}

.info-row:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(140, 0, 20, 0.1);
    transform: translateX(5px);
}

.info-label {
    font-size: 13px;
    font-weight: 600;
    color: #8C0014;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 100px;
}

.info-value {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    font-weight: 500;
}

.info-note {
    font-size: 13px;
    color: #666666;
    font-style: italic;
    padding: 15px;
    background: #fff9e6;
    border-left: 4px solid #ffa500;
    border-radius: 4px;
    margin: 10px 0;
}

.map-section {
    margin-bottom: 60px;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.map-section .section-title {
    font-size: 28px;
    font-weight: bold;
    color: #8C0014;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.map-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8C0014, transparent);
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    min-height: 500px;
    transition: box-shadow 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.map-container::before {
    content: 'Loading map...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: #999;
    z-index: 1;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: relative;
    z-index: 2;
}

.map-address {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.map-address p {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.map-address strong {
    color: #8C0014;
    font-weight: 600;
}

.map-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #8C0014 0%, #6A0010 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(140, 0, 20, 0.2);
}

.map-link:hover {
    background: linear-gradient(135deg, #6A0010 0%, #8C0014 100%);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(140, 0, 20, 0.4);
}

.map-link:active {
    transform: translateY(-1px);
}

.map-link-secondary {
    background: #ffffff;
    color: #8C0014;
    border: 2px solid #8C0014;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-link-secondary:hover {
    background: #f8f8f8;
    color: #6A0010;
    border-color: #6A0010;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.map-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.map-info-icon {
    font-size: 24px;
    color: #8C0014;
    flex-shrink: 0;
}

.map-info-text {
    flex: 1;
}

.map-info-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.map-info-value {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #42647f 0%, #2a4255 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/miele_main.jpg') center/cover no-repeat;
    opacity: 0.1;
}

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

.page-title {
    font-size: 36px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 3px;
}

/* Breadcrumb */
.breadcrumb-section {
    background: #f9f9f9;
    padding: 15px 0;
}

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

.breadcrumb-list {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    color: #999;
}

.breadcrumb-list a {
    color: #42647f;
    text-decoration: none;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

.company-info-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.company-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Info Cards */
.info-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.info-card-header {
    background: linear-gradient(135deg, #42647f 0%, #2a4255 100%);
    padding: 30px 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.info-card-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse-bg 8s ease-in-out infinite;
}

.info-card-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px 0;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.info-card-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    opacity: 0.9;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.info-card-body {
    padding: 40px;
}

.profile_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 0;
}

.profile_table tr {
    transition: background-color 0.3s ease;
}

.profile_table tr:hover {
    background-color: #f8f9fa;
}

.profile_table td {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
    font-size: 14px;
    line-height: 1.8;
}

.profile_table td:first-child {
    font-weight: 600;
    width: 180px;
    color: #42647f;
    background: #f8f9fa;
    border-right: 2px solid #e0e0e0;
}

.profile_table td:last-child {
    color: #555;
}

/* Responsive for Profile Page */
@media (max-width: 968px) {
    .page-header {
        padding: 60px 0;
    }

    .page-title {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .page-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

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

    .store-info-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .store-photo {
        order: 1;
    }

    .store-details {
        order: 2;
        padding: 25px;
    }

    .company-info-container {
        padding: 0 20px;
        gap: 30px;
    }

    .info-card-header {
        padding: 25px 30px;
    }

    .info-card-title {
        font-size: 20px;
    }

    .info-card-body {
        padding: 30px;
    }

    .profile_table td:first-child {
        width: 140px;
    }

    .map-section .section-title {
        font-size: 24px;
    }

    .map-container {
        border-radius: 12px;
        min-height: 400px;
    }

    .map-container iframe {
        height: 400px;
    }

    .map-address {
        padding: 20px;
    }

    .map-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 640px) {
    .page-header {
        padding: 48px 16px;
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    .page-title {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .page-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .breadcrumb-section {
        padding: 12px 0;
    }

    .breadcrumb-container {
        padding: 0 16px;
    }

    .breadcrumb-list {
        font-size: 12px;
        flex-wrap: wrap;
    }

    .store-info-section {
        padding: 20px 15px;
    }

    .store-details {
        padding: 20px;
    }

    .store-title {
        font-size: 24px;
    }

    .info-row {
        padding: 12px;
    }

    .info-label {
        font-size: 12px;
    }

    .info-value {
        font-size: 14px;
    }

    .company-info-container {
        padding: 0 15px;
        gap: 25px;
    }

    .info-card-header {
        padding: 20px;
    }

    .info-card-title {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .info-card-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .info-card-body {
        padding: 20px;
    }

    .profile_table {
        font-size: 13px;
    }

    .profile_table td {
        padding: 12px 15px;
        display: block;
        width: 100%;
        border-bottom: none;
        border-right: none;
    }

    .profile_table td:first-child {
        width: 100%;
        background: #f8f9fa;
        border-bottom: 1px solid #e0e0e0;
        border-right: none;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .profile_table tr {
        border-bottom: 2px solid #f0f0f0;
        margin-bottom: 10px;
        display: block;
    }

    .map-section .section-title {
        font-size: 20px;
    }

    .map-container {
        border-radius: 8px;
        min-height: 300px;
    }

    .map-container iframe {
        height: 300px;
    }

    .map-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .map-link {
        justify-content: center;
    }
}
