@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Noto+Sans+TC:wght@300;400;500;700&display=swap');

:root {
    /* Brand theme — default: green. Override via [data-theme="..."] below. */
    --primary-color: #00B490;
    --primary-hover: #00A382;
    --primary-rgb: 0, 180, 144;
    --primary-rgb-dark: 0, 100, 80;
    --on-primary: #FFFFFF;
    --secondary-color: #29252C;
    --text-color: #29252C;
    --text-muted: #666666;
    --border-color: #D9D9D9;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --container-width: 1440px;
    --font-main: 'Poppins', 'Noto Sans TC', sans-serif;
    --transition: all 0.3s ease;
}

/* Brand theme variants — switch via Config::BRAND_THEME */
[data-theme="yellow"] {
    --primary-color: #FFCC00;
    --primary-hover: #E6B800;
    --primary-rgb: 255, 204, 0;
    --primary-rgb-dark: 184, 134, 11;
    --on-primary: #29252C;
}
/* Yellow theme — header text uses softer dark gray (white不夠對比) */
[data-theme="yellow"] header {
    color: #404040;
}
[data-theme="yellow"] .header-nav a,
[data-theme="yellow"] .nav-more-btn {
    color: rgba(64, 64, 64, 0.85);
}
[data-theme="yellow"] .header-nav a:hover,
[data-theme="yellow"] .nav-more-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #29252C;
}
[data-theme="yellow"] .lang-switch,
[data-theme="yellow"] .country-switch {
    color: #404040;
    border-color: rgba(64, 64, 64, 0.5);
}
[data-theme="yellow"] .lang-switch:hover {
    color: #29252C;
    border-color: #29252C;
    background-color: rgba(0, 0, 0, 0.08);
}
[data-theme="blue"] {
    --primary-color: #1E40AF;
    --primary-hover: #1E3A8A;
    --primary-rgb: 30, 64, 175;
    --primary-rgb-dark: 23, 37, 84;
    --on-primary: #FFFFFF;
}
[data-theme="orange"] {
    --primary-color: #F97316;
    --primary-hover: #EA580C;
    --primary-rgb: 249, 115, 22;
    --primary-rgb-dark: 154, 52, 18;
    --on-primary: #FFFFFF;
}
[data-theme="pink"] {
    --primary-color: #EC4899;
    --primary-hover: #DB2777;
    --primary-rgb: 236, 72, 153;
    --primary-rgb-dark: 131, 24, 67;
    --on-primary: #FFFFFF;
}
[data-theme="purple"] {
    --primary-color: #7C3AED;
    --primary-hover: #6D28D9;
    --primary-rgb: 124, 58, 237;
    --primary-rgb-dark: 76, 29, 149;
    --on-primary: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 1440px) {
    .container {
        padding: 0 20px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
    transition: var(--transition);
}

/* Header */
header {
    background-color: var(--primary-color);
    color: var(--on-primary);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
}

nav ul {
    display: flex;
    gap: 35px;
}

nav ul li a {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.nav-hot-link {
    position: relative;
}

.nav-badge-hot {
    position: absolute;
    top: -2px;
    right: -10px;
    background: #ff4757;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 3px;
    line-height: 1.3;
    white-space: nowrap;
}

.nav-more-dropdown {
    position: relative;
    display: inline-block;
}

.nav-more-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background 0.2s, color 0.2s;
}

.nav-more-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.nav-more-menu {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 10px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    display: none;
    z-index: 1000;
    min-width: 160px;
}

.nav-more-menu.show {
    display: block;
}

.nav-more-menu a {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.nav-more-menu a:hover {
    background-color: #f8f8f8;
    color: var(--primary-color);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}

.header-icons a {
    font-size: 18px;
}


/* Product Section */
.product-section {
    padding: 40px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-gallery img {
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-info h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Product Summary Box */
.summary-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #EDEDED;
    border-radius: 12px;
    padding: 16px 0;
    margin: 25px 0 15px;
    background-color: white;
}

.summary-col {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.summary-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #F2F2F2;
}

.sum-label {
    font-size: 11px;
    color: #999;
}

.sum-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.3px;
}

.sum-value .highlight {
    color: var(--primary-color);
}

.badge-5g {
    background-color: var(--primary-color);
    color: var(--on-primary);
    padding: 1px 5px;
    border-radius: 4px;
    font-size: 13px;
    margin-right: 4px;
}

.speed-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #E6F7F4;
    color: var(--primary-color);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    width: fit-content;
    margin: 4px auto 0;
}

.breadcrumb {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.reviews-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #FFB800;
}

.count {
    font-size: 14px;
    color: var(--text-muted);
}

.price-container {
    margin-bottom: 0;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.option-group {
    margin-bottom: 25px;
}

.option-label {
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    font-size: 14px;
}

.info-tooltip {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    cursor: pointer;
}

.info-icon {
    width: 16px;
    height: 16px;
    color: #999;
    transition: color 0.2s;
}

.info-tooltip:hover .info-icon {
    color: #666;
}

.info-tooltip-text {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: nowrap;
    z-index: 10;
    transition: opacity 0.2s;
    pointer-events: none;
}

.info-tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
}

.info-tooltip:hover .info-tooltip-text {
    visibility: visible;
    opacity: 1;
}

.option-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-item {
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.option-item.active {
    background-color: var(--primary-color);
    color: var(--on-primary);
    border-color: var(--primary-color);
}

.option-item:hover:not(.active):not(.disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.option-item.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    width: fit-content;
}

.quantity-price-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.quantity-selector button {
    padding: 10px 15px;
    font-size: 18px;
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 16px;
    padding: 10px 0;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--on-primary);
    padding: 16px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 16px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.country-dropdown {
    position: relative;
    display: none;
}

.country-switch {
    background: none;
    border: none;
    padding: 0;
    font-size: 18px;
    cursor: pointer;
    color: var(--on-primary);
    transition: var(--transition);
}

.country-switch:hover {
    opacity: 0.8;
}

.country-menu {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 10px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    display: none;
    z-index: 1000;
    min-width: 130px;
}

.country-menu.show {
    display: block;
}

.country-menu a {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.country-menu a:hover {
    background-color: #f8f8f8;
    color: var(--primary-color);
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-switch {
    background: none;
    border: 1px solid color-mix(in srgb, var(--on-primary) 50%, transparent);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    cursor: pointer;
    color: var(--on-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.lang-switch:hover {
    border-color: var(--on-primary);
    background-color: color-mix(in srgb, var(--on-primary) 10%, transparent);
    color: var(--on-primary);
}

.lang-menu {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 10px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    display: none;
    z-index: 1000;
    min-width: 120px;
}

.lang-menu.show {
    display: block;
}

.lang-menu a {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.lang-menu a:hover {
    background-color: #f8f8f8;
    color: var(--primary-color);
}

.btn-paypal {
    background-color: #FFB800;
    color: #29252C;
    padding: 14px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-paypal img {
    height: 24px;
}

/* Technical Specifications */
.tech-specs {
    padding-top: 20px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.tech-specs h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.network-selection-label {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    margin-bottom: 12px;
    display: block;
}

.network-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.network-card {
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.network-card.blue {
    background-color: #F2F9FD;
}

.network-card.green {
    background-color: #F4FAF8;
}

.card-label {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
}

.network-card.blue .card-label {
    color: #2F80ED;
}

.network-card.green .card-label {
    color: var(--primary-color);
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 8px;
    border-radius: 6px;
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 12px;
}

.network-card.blue .card-badge {
    background-color: #0076BE;
}

.network-card.green .card-badge {
    background-color: var(--primary-color);
    color: var(--on-primary);
}

.card-footer-text {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
}

.card-footer-text strong {
    color: #555;
}

.specs-table {
    border-top: 1px solid #f5f5f5;
}

.specs-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    align-items: start;
}

.specs-label {
    font-size: 13px;
    font-weight: 700;
    color: #888;
}

.specs-value-main {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
    margin-bottom: 4px;
}

.specs-value-sub {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.specs-value-teal {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
}

.policy-card {
    background-color: #E6F7F4;
    border-left: 4px solid var(--primary-color);
    padding: 15px 18px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.policy-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 13px;
    display: block;
    margin-bottom: 4px;
}

.policy-text {
    font-size: 12px;
    color: #444;
    margin: 0;
}

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

    .specs-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Main Content Sections */
section {
    padding: 0;
}

/* Static Pages (Privacy Policy, etc.) */
.static-page {
    padding: 60px 0 100px;
    background-color: var(--bg-white);
}

.static-page .container {
    max-width: 900px;
    /* Narrower for better readability of long text */
}

.static-header {
    text-align: center;
    margin-bottom: 60px;
}

.static-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.privacy-content {
    color: var(--text-color);
    line-height: 1.8;
}

.privacy-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--secondary-color);
}

.privacy-content p {
    margin-bottom: 20px;
    font-size: 15px;
}

.privacy-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
    list-style: disc;
}

.privacy-content li {
    margin-bottom: 12px;
    font-size: 15px;
}

.privacy-content b,
.privacy-content strong {
    font-weight: 700;
    color: var(--secondary-color);
}


/* FAQ Styles */
.faq-container {
    max-width: 900px;
    margin: 40px auto 100px;
}

.faq-category-header {
    background-color: #f8f9fa;
    padding: 15px 25px;
    border-radius: 8px;
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--secondary-color);
    border-left: 5px solid var(--primary-color);
}

.faq-category-header i {
    font-size: 20px;
    color: var(--primary-color);
}

.faq-category-header h2 {
    margin: 0 !important;
    font-size: 20px;
    font-weight: 700;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--secondary-color);
    user-select: none;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-question i {
    color: #999;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #555;
    line-height: 1.8;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
    word-break: break-all;
}

.faq-item.active .faq-answer {
    max-height: 1200px;
    opacity: 1;
    visibility: visible;
    padding-bottom: 25px;
}

.faq-answer br {
    display: block;
    content: "";
    margin-top: 10px;
}

/* HowTo Page */
.howto-section {
    margin-bottom: 40px;
}
.howto-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}
.howto-section-header i {
    font-size: 1.4rem;
    color: var(--primary-color);
}
.howto-section-header h2 {
    font-size: 1.3rem;
    margin: 0;
}
.howto-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.howto-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: #f8fffe;
    border-radius: 10px;
    border: 1px solid #e0f5f0;
}
.howto-check-item i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}
.howto-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.howto-step {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}
.howto-step:last-child {
    border-bottom: none;
}
.howto-step-number {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: var(--on-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}
.howto-step-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}
.howto-step-content p {
    margin: 0;
    color: var(--text-muted, #666);
    line-height: 1.7;
}
.howto-step-img {
    display: block;
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 14px 0 0;
    border-radius: 12px;
    border: 1px solid var(--border-color, #e5e7eb);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.howto-tips {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.howto-tip-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: #fff9e6;
    border-radius: 10px;
    border: 1px solid #f0e6c0;
}
.howto-tip-item i {
    color: #e6a800;
    margin-top: 3px;
    flex-shrink: 0;
}
.howto-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 20px;
}
.howto-cta h3 {
    margin-bottom: 10px;
}
.howto-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.howto-cta-buttons .btn-primary,
.howto-cta-buttons .btn-outline {
    display: inline-block;
    padding: 12px 36px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.howto-cta-buttons .btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}
.howto-cta-buttons .btn-outline:hover {
    background: var(--primary-color);
    color: var(--on-primary);
}

/* Guarantee Section */
.guarantee-section {
    background-color: #E6F7F4;
    border-radius: 0;
}

.guarantee-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guarantee-badge {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 10px 20px rgba(0, 180, 144, 0.2);
}

.guarantee-badge .small {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.guarantee-badge .large {
    font-size: 28px;
    font-weight: 700;
    margin: 5px 0;
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

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

.feature-card i {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
}


/* Footer Improvements */
footer {
    background-color: var(--secondary-color);
    color: #e0e0e0;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr;
    gap: 50px;
}

.footer-products-list {
    columns: 2;
    column-gap: 20px;
}

.footer-products-list li {
    break-inside: avoid;
}

.footer-brand {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-desc {
    color: #aaa;
    max-width: 300px;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #3d3d3d;
    font-size: 14px;
    color: #888;
}

footer h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 18px;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a:hover {
    color: var(--primary-color);
}

.social-links a {
    font-size: 20px;
    color: white;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Responsive Fixes */
@media (max-width: 1200px) {}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-gallery {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    header .container {
        gap: 15px;
    }

    .logo {
        font-size: 22px;
    }

    .header-nav {
        display: none;
    }

    .country-dropdown {
        display: inline-block;
    }

    .header-icons {
        gap: 15px;
    }

    .summary-box {
        grid-template-columns: 1fr;
        padding: 12px 16px;
        gap: 0;
    }

    .summary-col {
        padding: 12px 0;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .speed-badge {
        align-self: flex-start;
        margin: 4px auto 0 0;
    }

    .summary-col:not(:last-child)::after {
        right: 0;
        top: auto;
        bottom: 0;
        left: 0;
        height: 1px;
        width: 100%;
    }

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

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

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

    .header-icons {
        gap: 10px;
    }

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

    .guarantee-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* Cart Badge */
.cart-icon-link {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #FF4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}


/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Checkout Page */
.checkout-page {
    background-color: var(--bg-light);
    padding: 20px 0 80px;
    min-height: 70vh;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.checkout-forms {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.checkout-section {
    margin-bottom: 5px;
}

.checkout-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

/* Express Checkout */
.express-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.express-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.express-btn:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 180, 144, 0.1);
}

.express-btn img {
    height: 24px;
    display: block;
    margin: 0 auto;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border-color);
}

.divider span {
    background: white;
    padding: 0 15px;
    position: relative;
    color: var(--text-muted);
    font-size: 14px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 180, 144, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-color);
    cursor: pointer;
}

/* Checkout Button */
.btn-checkout {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 30px;
}

.btn-checkout:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 180, 144, 0.3);
}

.btn-checkout.is-loading {
    background-color: #8ec5b5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-checkout .spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Order Summary */
.order-summary {
    position: relative;
}

.summary-sticky {
    position: sticky;
    top: 100px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.order-summary h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.cart-summary-item {
    display: grid;
    grid-template-columns: 60px 1fr auto auto;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.item-remove:hover {
    color: #FF4444;
}

.item-image {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.item-qty {
    position: absolute;
    top: -3px;
    right: -3px;
    z-index: 1;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.item-details h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.item-details p {
    font-size: 13px;
    color: var(--text-muted);
}

.item-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-color);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    margin-top: 15px;
    border-top: 2px solid #eee;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Trustpilot Widget */
.trustpilot-widget {
    margin-top: 30px;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 10px;
    text-align: center;
}

.trustpilot-header {
    margin-bottom: 15px;
}

.trustpilot-header strong {
    font-size: 16px;
    color: var(--secondary-color);
}

.excellent {
    font-size: 24px;
    font-weight: 700;
    color: #00B67A;
}

.trustpilot-stars {
    margin: 15px 0;
}

.stars-rating {
    color: #00B67A;
    font-size: 20px;
    margin-bottom: 8px;
}

.review-count {
    font-size: 13px;
    color: var(--text-muted);
    margin: 10px 0 20px;
}

.review-sample {
    text-align: left;
    padding: 15px;
    background: white;
    border-radius: 8px;
    margin-top: 15px;
}

.review-sample p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 10px;
}

.review-sample small {
    font-size: 12px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 968px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .summary-sticky {
        position: relative;
        top: 0;
    }
}

/* Discount Code Section */
.discount-section {
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.discount-input-group {
    display: flex;
    gap: 10px;
}

.discount-input-group input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    transition: var(--transition);
}

.discount-input-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.discount-input-group button {
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.discount-input-group button:hover {
    background-color: #403b44;
}

#discount-message {
    margin-top: 8px;
    font-size: 12px;
    min-height: 18px;
}

.discount-success {
    color: var(--primary-color);
}

.discount-error {
    color: #FF4444;
}


/* Payment Methods */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.payment-method-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    min-height: 85px;
}

.payment-method-item:hover {
    border-color: var(--primary-color);
    background-color: rgba(0, 180, 144, 0.02);
}

.payment-method-item.active {
    border-color: var(--primary-color);
    background-color: rgba(0, 180, 144, 0.05);
    box-shadow: 0 0 0 1px var(--primary-color);
}

.payment-method-item i {
    font-size: 22px;
    color: #555;
    transition: var(--transition);
}

.payment-method-item img {
    height: 20px;
    max-width: 80%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.payment-method-item.active img {
    filter: grayscale(0%);
    opacity: 1;
}

.payment-method-item span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.payment-method-item.active i {
    color: var(--primary-color);
}

.payment-method-item.active span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Page Specific Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-top: 50px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
}

.contact-info-item i {
    font-size: 20px;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
    margin-top: 5px;
}

.contact-info-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.contact-info-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-info-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: #FFFFFF;
    border: 1px solid #EDEDED;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 180, 144, 0.1);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.btn-send {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
}

.btn-send:hover {
    background-color: var(--primary-hover);
}

.contact-success-overlay {
    background-color: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    z-index: 10;
}

.contact-success-overlay i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }
}

/* ===== Package Search ===== */
.pkg-search-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 100%);
    min-height: calc(100vh - 200px);
}

.pkg-search-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 24px;
}

.pkg-search-title i {
    color: var(--primary-color);
    margin-right: 8px;
}

.pkg-search-panel {
    background: #fff;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 28px;
}

.pkg-search-filters {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px 20px;
    margin-bottom: 20px;
}

.pkg-filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pkg-filter-label {
    font-size: 13px;
    font-weight: 500;
    color: #666;
}

.pkg-filter-input {
    height: 40px;
    padding: 0 12px;
    border: 1.5px solid #d9d9d9;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-color);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

.pkg-filter-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 180, 144, 0.1);
}

.pkg-filter-input::placeholder {
    color: #bbb;
}

.pkg-filter-data-row {
    display: flex;
    gap: 8px;
}

.pkg-filter-data-input {
    flex: 1;
}

.pkg-filter-data-unit {
    width: 80px;
    flex-shrink: 0;
}

.pkg-search-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pkg-btn {
    height: 40px;
    padding: 0 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    border: none;
}

.pkg-btn-primary {
    background: #5b6abf;
    color: #fff;
}

.pkg-btn-primary:hover {
    background: #4a59b0;
}

.pkg-btn-primary:disabled {
    background: #a0a8d4;
    cursor: not-allowed;
}

.pkg-btn-secondary {
    background: #fff;
    color: #5b6abf;
    border: 1.5px solid #5b6abf;
}

.pkg-btn-secondary:hover {
    background: #f0f2ff;
}

.pkg-toggle-link {
    margin-left: 8px;
    font-size: 14px;
    color: #5b6abf;
    cursor: pointer;
    font-weight: 500;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pkg-toggle-link:hover {
    color: #4a59b0;
}

/* Results */
.pkg-results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.pkg-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.pkg-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 14px;
}

.pkg-table thead {
    background: #f5f6fa;
}

.pkg-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    color: #555;
    font-size: 13px;
    white-space: nowrap;
    border-bottom: 2px solid #e8eaf0;
}

.pkg-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f1f5;
    color: var(--text-color);
}

.pkg-table tbody tr:hover {
    background: #f8f9fc;
}

.pkg-table tbody tr:last-child td {
    border-bottom: none;
}

.pkg-region-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pkg-name-cell {
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pkg-price-cell {
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.pkg-action-cell {
    text-align: center;
}

.pkg-cart-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: var(--primary-color);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.pkg-cart-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
}

.pkg-cart-btn-added {
    background: #52c41a !important;
    transform: scale(1.15);
}

.pkg-empty-row td {
    text-align: center;
    padding: 48px 16px;
    color: #999;
    font-size: 15px;
}

/* Pagination */
.pkg-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
}

.pkg-page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1.5px solid #d9d9d9;
    border-radius: 8px;
    background: #fff;
    color: var(--text-color);
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.pkg-page-btn:hover {
    border-color: #5b6abf;
    color: #5b6abf;
}

.pkg-page-btn.active {
    background: #5b6abf;
    border-color: #5b6abf;
    color: #fff;
}

.pkg-page-dots {
    color: #999;
    font-size: 14px;
    padding: 0 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .pkg-search-section {
        padding: 30px 0 50px;
    }

    .pkg-search-panel {
        padding: 20px;
    }

    .pkg-search-filters {
        grid-template-columns: 1fr 1fr;
    }

    .pkg-search-actions {
        flex-wrap: wrap;
    }

    .pkg-table th,
    .pkg-table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .pkg-name-cell {
        max-width: 160px;
    }
}

@media (max-width: 480px) {
    .pkg-search-filters {
        grid-template-columns: 1fr;
    }
}

/* ===== Homepage Hero Banner ===== */
.hero-banner {
    position: relative;
    height: 520px;
    background: url('/assets/images/jp.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.7) 0%, rgba(var(--primary-rgb-dark), 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-badge i {
    color: #ffd700;
    font-size: 12px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.92;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background: #fff;
    color: var(--primary-color);
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0,0,0,0.2);
    background: #f0faf7;
}

/* ===== Features ===== */
.home-features {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

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

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8f8f4, #d0f0ea);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-color);
}

.feature-text p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ===== Destinations ===== */
.home-destinations {
    padding: 60px 0 80px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.dest-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    color: inherit;
}

.dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.dest-img-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.dest-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.dest-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.dest-badge-hot {
    background: #ff4757;
    color: #fff;
}

.dest-badge-hot i {
    font-size: 10px;
    margin-right: 2px;
}

.dest-info {
    padding: 16px 18px;
}

.dest-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

/* ===== Homepage Responsive ===== */
@media (max-width: 1024px) {
    .hero-banner {
        height: 420px;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .dest-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 380px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-cta {
        padding: 12px 32px;
        font-size: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-features {
        margin-top: -30px;
    }

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

    .home-destinations {
        padding: 40px 0 60px;
    }

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

@media (max-width: 480px) {
    .hero-banner {
        height: 320px;
    }

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

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

    .dest-info {
        padding: 12px 14px;
    }

    .dest-info h3 {
        font-size: 14px;
    }
}