/* 派克峰物流官网 - CSS样式 (简洁版) */
/* 基于苹果设计哲学：简约不简单 */

/* === 基础重置与字体系统 === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 色彩系统 */
    --primary-blue: #007AFF;
    --accent-orange: #FF9500;
    --pure-white: #FFFFFF;
    --light-gray: #F5F7F9;
    --medium-gray: #8E8E93;
    --dark-gray: #1D1D1F;
    --border-light: #F0F0F0;
    --border-medium: #CECED2;
    --hover-bg: #E5E5E7;
    
    /* 字体系统 */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* 字阶系统 - 按照排版规范 */
    --h2-cn-size: 24px;        /* H2中文 - 区域标题 */
    --h2-en-size: 20px;        /* H2英文 - 区域标题 */
    --h3-cn-size: 18px;        /* H3中文 - 服务主名称 */
    --h3-en-size: 16px;        /* H3英文 - 服务主名称 */
    --body-cn-size: 14px;      /* Body中文 - 服务描述 */
    --body-en-size: 13px;      /* Body英文 - 服务描述 */
    --caption-cn-size: 12px;   /* Caption中文 - 辅助信息 */
    --caption-en-size: 11px;   /* Caption英文 - 辅助信息 */
    --info-size: 16px;         /* 信息展示 */
    --info-sub-size: 12px;     /* 信息展示辅助 */
    
    /* 字重系统 */
    --semibold: 600;
    --medium: 500;
    --regular: 400;
    
    /* 文字颜色 */
    --text-primary: #1D1D1F;   /* 主文字黑 */
    --text-secondary: #8E8E93; /* 中性灰 */
    
    /* 行高系统 */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    
    /* 间距系统 (8px倍数) */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    
    /* 容器 */
    --container-max-width: 1200px;
    
    /* 圆角 */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 12px;
    
    /* 阴影 */
    --shadow-subtle: 0px 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0px 4px 20px rgba(0, 0, 0, 0.12);
}

/* === 基础样式 === */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--body-size);
    font-weight: var(--regular);
    line-height: 1.5;
    color: var(--dark-gray);
    background-color: var(--pure-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 容器 */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* === 导航栏 === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--pure-white);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-logo h2 {
    font-size: 22px;
    font-weight: var(--semibold);
    color: var(--dark-gray);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-size: var(--body-size);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

.nav-menu a:hover {
    color: var(--primary-blue);
    background-color: rgba(0, 122, 255, 0.05);
}

.nav-menu a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

/* 移动端菜单按钮 (默认隐藏) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark-gray);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* 语言切换器样式 */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
}

.lang-item {
    cursor: pointer;
    color: var(--medium-gray);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.lang-item:hover {
    color: var(--primary-blue);
}

.lang-item.active {
    color: var(--primary-blue);
}

.lang-divider {
    color: var(--medium-gray);
    opacity: 0.5;
    font-size: 14px;
}

/* === 主内容区域 === */
.main-content {
    margin-top: 64px;
}

/* === 主视觉与标题区 === */
.hero-section {
    position: relative;
    padding: var(--spacing-xxl) 0;
    min-height: 33vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 122, 255, 0.12) 0%,
        rgba(255, 149, 0, 0.08) 50%,
        rgba(0, 122, 255, 0.15) 100%
    );
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 122, 255, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 149, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 122, 255, 0.10) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: var(--line-height-tight);
}

.hero-subtitle-en {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: var(--regular);
    font-style: normal;
    line-height: var(--line-height-tight);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-weight: var(--regular);
    line-height: var(--line-height-normal);
}

/* Search Box */
.search-container {
    margin-top: 40px;
    padding: 0 16px;
    position: relative;
    z-index: 10;
}

.tracking-form {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 560px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tracking-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.tracking-input {
    flex: 1;
    height: 48px;
    padding: 0 24px;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    outline: none;
    background: transparent;
    color: var(--text-primary);
    -webkit-appearance: none;
}

.tracking-input::placeholder {
    color: var(--text-secondary);
}

.tracking-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.tracking-btn:hover {
    background-color: #0062cc;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.tracking-btn:active {
    transform: scale(0.95);
}

/* === 核心服务展示区 === */
.services-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--pure-white);
}

.service-region {
    margin-bottom: var(--spacing-xxl);
}

.service-region:last-of-type {
    margin-bottom: var(--spacing-lg);
}

.region-title {
    font-size: var(--h2-cn-size);
    font-weight: var(--semibold);
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: var(--line-height-tight);
}

.region-title-en {
    font-size: var(--h2-en-size);
    font-weight: var(--regular);
    color: var(--text-secondary);
    font-style: normal;
    line-height: var(--line-height-tight);
}

.service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

/* === 服务按钮样式 === */
.service-btn {
    background-color: var(--light-gray);
    color: var(--text-primary);
    font-size: var(--h3-cn-size);
    font-weight: var(--medium);
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    min-width: 140px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 80px;
    line-height: var(--line-height-tight);
}

/* 专业术语样式 - Body层级 */
.service-term {
    font-size: var(--body-en-size);
    font-weight: var(--regular);
    color: var(--text-secondary);
    margin-top: 2px;
    line-height: var(--line-height-tight);
    font-style: normal;
}

/* 悬停状态 */
.service-btn:hover {
    background-color: var(--hover-bg);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-subtle);
    transform: translateY(-2px);
}

/* 点击/激活状态 */
.service-btn:active,
.service-btn.active {
    background-color: var(--primary-blue);
    color: var(--pure-white);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-hover);
}

/* === 动态信息展示区 === */
.info-display {
    margin-top: var(--spacing-lg);
    min-height: 300px;
    background-color: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.5s ease;
}

.default-info h3 {
    font-size: var(--title-size);
    font-weight: var(--semibold);
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.info-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    padding: var(--spacing-sm);
}

.info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 18px;
    font-weight: var(--semibold);
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.info-text p {
    font-size: var(--caption-size);
    color: var(--medium-gray);
    line-height: 1.4;
}

/* === 价格维护提示样式 === */
.maintenance-notice {
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.maintenance-notice h3 {
    font-size: var(--title-size);
    font-weight: var(--semibold);
    color: var(--accent-orange);
    margin-bottom: var(--spacing-sm);
}

.maintenance-notice p {
    font-size: var(--body-size);
    color: var(--medium-gray);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    font-size: var(--body-cn-size);
    color: var(--text-primary);
    font-weight: var(--medium);
    margin-bottom: 12px !important;
    line-height: var(--line-height-tight);
}

.weight-info {
    font-size: var(--info-size);
    color: var(--primary-blue);
    font-weight: var(--regular);
    background: rgba(0, 122, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 16px !important;
    line-height: var(--line-height-tight);
}

/* 辅助单位样式 - Caption层级 */
.weight-unit-sub {
    font-size: var(--caption-en-size);
    color: var(--text-secondary);
    font-weight: var(--regular);
    line-height: var(--line-height-tight);
}

.maintenance-notice .notice-icon {
    font-size: 64px;
    margin-bottom: var(--spacing-sm);
    display: block;
}

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

/* === 页脚 === */
.footer {
    background-color: var(--dark-gray);
    color: var(--pure-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: var(--spacing-xxl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-sm);
    font-weight: var(--semibold);
}

.footer-section h3 {
    color: var(--accent-orange);
}

.footer-section p {
    color: #A1A1AA;
    font-size: var(--caption-size);
    margin-bottom: 4px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: var(--spacing-sm);
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: var(--caption-size);
}

/* === 响应式设计 === */
@media (max-width: 768px) {
    /* 移动端导航栏 */
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background-color: var(--pure-white);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-bottom: 1px solid var(--border-light);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px;
        font-size: 16px;
    }
    
    .language-switcher {
        margin-left: 0;
        justify-content: center;
        margin-top: 10px;
    }
    
    /* 汉堡按钮动画 */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 36px;
    }
    
    .service-buttons {
        flex-direction: column;
    }
    
    .service-btn {
        width: 100%;
        flex: none;
    }
    
    .info-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .region-title {
        font-size: 24px;
    }
    
    .info-display {
        padding: var(--spacing-md);
    }
}

/* === 交互细节 === */
.service-btn {
    position: relative;
    overflow: hidden;
}

/* 波纹效果 */
.service-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-btn:active::after {
    width: 300px;
    height: 300px;
}

/* 焦点状态（无障碍） */
button:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* 选择状态 */
::selection {
    background-color: var(--primary-blue);
    color: var(--pure-white);
}

/* 滚动动画 */
@media (prefers-reduced-motion: no-preference) {
    .service-region,
    .info-display {
        animation: slideUp 0.6s ease-out;
    }
}

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

/* === 响应式文字排版规范 === */
@media (max-width: 768px) {
    :root {
        /* 移动端字号按 0.9 倍缩放 */
        --h2-cn-size: 21.6px;     /* 24px * 0.9 */
        --h2-en-size: 18px;       /* 20px * 0.9 */
        --h3-cn-size: 16.2px;     /* 18px * 0.9 */
        --h3-en-size: 14.4px;     /* 16px * 0.9 */
        --body-cn-size: 12.6px;   /* 14px * 0.9 */
        --body-en-size: 11.7px;   /* 13px * 0.9 */
        --caption-cn-size: 10.8px; /* 12px * 0.9 */
        --caption-en-size: 9.9px;  /* 11px * 0.9 */
        --info-size: 14.4px;      /* 16px * 0.9 */
        --info-sub-size: 10.8px;  /* 12px * 0.9 */
    }
    
    /* 移动端服务按钮调整 */
    .service-btn {
        min-height: 70px;
        padding: 12px 16px;
    }
    
    /* 移动端区域标题调整 */
    .region-title {
        margin-bottom: 20px;
    }
    
    /* 移动端主标题调整 */
    .hero-title {
        font-size: 2.8rem; /* 适当缩小主标题 */
    }
    
    .hero-subtitle-en {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* === 欧洲物流详情样式 === */
.europe-logistics-details {
    padding: 20px;
    background: #f5f5f7;
    border-radius: 12px;
}

.europe-transport-tabs {
    display: flex;
    justify-content: center;
    margin: 0 auto 32px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    border-radius: 18px;
    padding: 4px;
    max-width: 372px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.europe-tab-btn {
    flex: 1;
    padding: 12px 18px;
    background: transparent;
    border: none;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    color: #1d1d1f;
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.europe-tab-btn.active {
    background: #007AFF;
    color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.europe-tab-btn:hover:not(.active) {
    background: rgba(0, 0, 0, 0.04);
}

.europe-content-panel {
    display: none;
    animation: fadeIn 0.3s ease-out;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.europe-content-panel.active {
    display: block;
}

.europe-uk-section {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    margin-top: 20px;
}

.europe-service-info {
    color: white;
    padding: 32px 32px 28px;
    text-align: center;
    border-radius: 18px 18px 0 0;
}

.europe-service-info .service-title {
    font-size: 24px;
    line-height: 1.167;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.009em;
}

.europe-service-info .service-timeline {
    font-size: 17px;
    line-height: 1.235;
    margin-bottom: 6px;
    opacity: 0.92;
    font-weight: 400;
}

.europe-service-info .service-route {
    font-size: 14px;
    line-height: 1.429;
    opacity: 0.84;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.europe-price-table-container {
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.europe-price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: white;
    table-layout: auto;
}

.europe-price-table th {
    background: #f5f5f7;
    color: #1d1d1f;
    padding: 16px 12px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    border-bottom: 1px solid #d2d2d7;
    white-space: nowrap;
}

.europe-price-table th:first-child {
    text-align: left;
    min-width: 280px;
    width: auto;
    max-width: 400px;
    text-transform: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
}

.europe-price-table td {
    padding: 16px 12px;
    text-align: center;
    border-bottom: 1px solid #f5f5f7;
    transition: background-color 0.2s ease;
    font-size: 14px;
    line-height: 1.429;
}

.europe-price-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #1d1d1f !important;
    background: white;
    position: sticky;
    left: 0;
    z-index: 2;
    border-right: 1px solid #f5f5f7;
    min-width: 280px;
    width: auto;
    max-width: 400px;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
    padding-right: 16px;
}

.europe-price-table tbody tr:hover td {
    background: rgba(0, 122, 255, 0.03);
}

.europe-price-table .price-value {
    font-weight: 600;
    color: #007AFF;
    font-size: 15px;
    font-variant-numeric: tabular-nums;
}

.europe-price-table .price-note {
    font-size: 11px;
    color: #86868b;
    font-weight: 400;
    line-height: 1.364;
}

.europe-price-table .fba-route {
    color: #007AFF;
    font-weight: 600;
}

.europe-price-table th:not(:first-child),
.europe-price-table td:not(:first-child) {
    border-left: 1px solid #e5e5ea;
}

/* 英国表格特殊样式 */
.europe-uk-table th:first-child,
.europe-uk-table td:first-child {
    min-width: 140px;
    max-width: 180px;
}

.europe-uk-table th:nth-child(2),
.europe-uk-table td:nth-child(2) {
    min-width: 120px;
    max-width: 160px;
}

/* 滚动条样式 */
.europe-price-table-container::-webkit-scrollbar {
    height: 6px;
}

.europe-price-table-container::-webkit-scrollbar-track {
    background: #f5f5f7;
    border-radius: 3px;
}

.europe-price-table-container::-webkit-scrollbar-thumb {
    background: #c7c7cc;
    border-radius: 3px;
}

.europe-price-table-container::-webkit-scrollbar-thumb:hover {
    background: #aeaeb2;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .europe-transport-tabs {
        flex-direction: column;
        border-radius: 16px;
        padding: 6px;
        gap: 2px;
        max-width: 100%;
    }
    
    .europe-tab-btn {
        border-radius: 12px;
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .europe-service-info {
        padding: 24px 20px 20px;
    }
    
    .europe-service-info .service-title {
        font-size: 21px;
    }
    
    .europe-service-info .service-timeline {
        font-size: 15px;
    }
    
    .europe-service-info .service-route {
        font-size: 13px;
    }
    
    .europe-price-table th,
    .europe-price-table td {
        padding: 12px 8px;
        font-size: 13px;
    }
    
    .europe-price-table th:first-child,
    .europe-price-table td:first-child {
        min-width: 200px;
        max-width: 280px;
        font-size: 12px;
    }
    
    .europe-uk-table th:first-child,
    .europe-uk-table td:first-child {
        min-width: 100px;
        font-size: 11px;
    }
    
    .europe-uk-table th:nth-child(2),
    .europe-uk-table td:nth-child(2) {
        min-width: 80px;
        font-size: 11px;
    }
}
