/* Root Styles and Custom Properties */
#yhst-widget-f1eb0ec2 {
    --navy-primary: #062B4F;
    --navy-dark: #031B30;
    --orange: #F97316;
    --orange-hover: #EA580C;
    --light-bg: #F5F7FA;
    --white: #FFFFFF;
    --text-dark: #1F2937;
    --text-muted: #64748B;
    --border-light: #D9E0E7;
    --font-family: 'Poppins', sans-serif;
    
    font-family: var(--font-family);
    color: var(--text-dark);
}

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

/* Utilities / Buttons */
#yhst-widget-f1eb0ec2 .yhst-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

#yhst-widget-f1eb0ec2 .yhst-btn-orange {
    background-color: var(--orange);
    color: var(--white);
    border: 2px solid var(--orange);
}

#yhst-widget-f1eb0ec2 .yhst-btn-orange:hover {
    background-color: var(--orange-hover);
    border-color: var(--orange-hover);
}

#yhst-widget-f1eb0ec2 .yhst-btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

#yhst-widget-f1eb0ec2 .yhst-btn-outline:hover {
    background-color: var(--white);
    color: var(--navy-dark);
}

#yhst-widget-f1eb0ec2 .yhst-highlight {
    color: var(--orange);
}

#yhst-widget-f1eb0ec2 .yhst-eyebrow {
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

#yhst-widget-f1eb0ec2 .yhst-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--navy-dark);
    margin: 0 0 15px 0;
    line-height: 1.25;
}

#yhst-widget-f1eb0ec2 .yhst-section-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

#yhst-widget-f1eb0ec2 .yhst-section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

/* 01. HERO SECTION */
#yhst-widget-f1eb0ec2 .yhst-hero-section {
    background-color: var(--navy-dark);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0 60px 0;
    color: var(--white);
}

#yhst-widget-f1eb0ec2 .yhst-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 27, 48, 0.85);
    z-index: 1;
}

#yhst-widget-f1eb0ec2 .yhst-hero-section > * {
    position: relative;
    z-index: 2;
}

#yhst-widget-f1eb0ec2 .yhst-breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#yhst-widget-f1eb0ec2 .yhst-breadcrumb-sep {
    color: var(--orange);
}

#yhst-widget-f1eb0ec2 .yhst-breadcrumb .yhst-current {
    color: var(--white);
    font-weight: 500;
}

#yhst-widget-f1eb0ec2 .yhst-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px 0;
}

#yhst-widget-f1eb0ec2 .yhst-hero-title .yhst-hero-sub {
    display: block;
    font-size: 32px;
    font-weight: 600;
    margin-top: 5px;
}

#yhst-widget-f1eb0ec2 .yhst-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin-bottom: 35px;
}

#yhst-widget-f1eb0ec2 .yhst-hero-ctas {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
}

/* Feature Strip */
#yhst-widget-f1eb0ec2 .yhst-hero-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
}

#yhst-widget-f1eb0ec2 .yhst-feature-card {
    display: flex;
    gap: 12px;
}

#yhst-widget-f1eb0ec2 .yhst-feature-icon {
    font-size: 24px;
    color: var(--orange);
    flex-shrink: 0;
}

#yhst-widget-f1eb0ec2 .yhst-feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--orange);
}

#yhst-widget-f1eb0ec2 .yhst-feature-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--white);
}

#yhst-widget-f1eb0ec2 .yhst-feature-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin: 0;
}


/* 02. MAJOR CITIES & PORTS */
#yhst-widget-f1eb0ec2 .yhst-cities-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

#yhst-widget-f1eb0ec2 .yhst-cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

#yhst-widget-f1eb0ec2 .yhst-cities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

#yhst-widget-f1eb0ec2 .yhst-city-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    padding: 12px 16px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

#yhst-widget-f1eb0ec2 .yhst-city-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

#yhst-widget-f1eb0ec2 .yhst-city-icon {
    color: var(--orange);
    display: flex;
    align-items: center;
}

#yhst-widget-f1eb0ec2 .yhst-city-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--orange);
}

#yhst-widget-f1eb0ec2 .yhst-map-wrapper {
    display: flex;
    justify-content: center;
}

#yhst-widget-f1eb0ec2 .yhst-map-container {
    position: relative;
    max-width: 100%;
}

#yhst-widget-f1eb0ec2 .yhst-map-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

#yhst-widget-f1eb0ec2 .yhst-map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#yhst-widget-f1eb0ec2 .yhst-marker-dot {
    width: 10px;
    height: 10px;
    background-color: var(--orange);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.4);
    animation: pulse 2s infinite;
}

#yhst-widget-f1eb0ec2 .yhst-marker-label {
    background-color: var(--navy-dark);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 4px;
    white-space: nowrap;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5); }
    70% { box-shadow: 0 0 0 6px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}


/* 03. SHIPPING METHODS */
#yhst-widget-f1eb0ec2 .yhst-methods-section {
    background-color: var(--white);
    padding: 80px 0;
}

#yhst-widget-f1eb0ec2 .yhst-methods-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

#yhst-widget-f1eb0ec2 .yhst-method-card {
    background-color: var(--light-bg);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

#yhst-widget-f1eb0ec2 .yhst-method-card:hover {
    background-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(6, 43, 79, 0.08);
    border-color: var(--orange);
}

#yhst-widget-f1eb0ec2 .yhst-method-icon {
    font-size: 32px;
    color: var(--navy-primary);
    margin-bottom: 15px;
}

#yhst-widget-f1eb0ec2 .yhst-method-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--navy-primary);
}

#yhst-widget-f1eb0ec2 .yhst-method-card:hover .yhst-method-icon {
    color: var(--orange);
}
#yhst-widget-f1eb0ec2 .yhst-method-card:hover .yhst-method-icon svg {
    fill: var(--orange);
}

#yhst-widget-f1eb0ec2 .yhst-method-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    margin: 0 0 10px 0;
}

#yhst-widget-f1eb0ec2 .yhst-method-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}


/* 04. FROM CHINA TO YOUR DOOR */
#yhst-widget-f1eb0ec2 .yhst-process-section {
    background-color: var(--navy-primary);
    padding: 80px 0;
    color: var(--white);
}

#yhst-widget-f1eb0ec2 .yhst-process-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
}

#yhst-widget-f1eb0ec2 .yhst-process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    z-index: 1;
}

#yhst-widget-f1eb0ec2 .yhst-process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

#yhst-widget-f1eb0ec2 .yhst-step-badge-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
}

#yhst-widget-f1eb0ec2 .yhst-step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--orange);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--navy-primary);
}

#yhst-widget-f1eb0ec2 .yhst-step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--navy-dark);
    border: 2px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
}

#yhst-widget-f1eb0ec2 .yhst-step-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

#yhst-widget-f1eb0ec2 .yhst-step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 10px 0;
}

#yhst-widget-f1eb0ec2 .yhst-step-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin: 0;
}


/* 05. WHY SHIP WITH US */
#yhst-widget-f1eb0ec2 .yhst-why-section {
    background-color: var(--white);
    padding: 80px 0;
}

#yhst-widget-f1eb0ec2 .yhst-why-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

#yhst-widget-f1eb0ec2 .yhst-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

#yhst-widget-f1eb0ec2 .yhst-benefit-card {
    display: flex;
    gap: 15px;
}

#yhst-widget-f1eb0ec2 .yhst-benefit-icon {
    font-size: 24px;
    color: var(--orange);
    flex-shrink: 0;
}

#yhst-widget-f1eb0ec2 .yhst-benefit-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--orange);
}

#yhst-widget-f1eb0ec2 .yhst-benefit-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-dark);
    margin: 0 0 5px 0;
}

#yhst-widget-f1eb0ec2 .yhst-benefit-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

#yhst-widget-f1eb0ec2 .yhst-why-image-wrapper {
    position: relative;
}

#yhst-widget-f1eb0ec2 .yhst-why-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Visibility classes */
.yhst-hidden-desktop { display: none !important; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    #yhst-widget-f1eb0ec2 .yhst-hidden-desktop { display: block !important; }
    .yhst-hidden-tablet { display: none !important; }

    #yhst-widget-f1eb0ec2 .yhst-hero-features {
        grid-template-columns: repeat(3, 1fr);
    }
    #yhst-widget-f1eb0ec2 .yhst-methods-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    #yhst-widget-f1eb0ec2 .yhst-process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
    #yhst-widget-f1eb0ec2 .yhst-process-timeline::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .yhst-hidden-tablet { display: block !important; }
    .yhst-hidden-mobile { display: none !important; }

    #yhst-widget-f1eb0ec2 .yhst-hero-title {
        font-size: 32px;
    }
    #yhst-widget-f1eb0ec2 .yhst-hero-title .yhst-hero-sub {
        font-size: 24px;
    }
    #yhst-widget-f1eb0ec2 .yhst-hero-ctas {
        flex-direction: column;
    }
    #yhst-widget-f1eb0ec2 .yhst-hero-features {
        grid-template-columns: 1fr;
    }
    #yhst-widget-f1eb0ec2 .yhst-cities-grid {
        grid-template-columns: 1fr;
    }
    #yhst-widget-f1eb0ec2 .yhst-cities-list {
        grid-template-columns: 1fr;
    }
    #yhst-widget-f1eb0ec2 .yhst-methods-grid {
        grid-template-columns: 1fr;
    }
    #yhst-widget-f1eb0ec2 .yhst-process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    #yhst-widget-f1eb0ec2 .yhst-why-grid {
        grid-template-columns: 1fr;
    }
    #yhst-widget-f1eb0ec2 .yhst-benefits-grid {
        grid-template-columns: 1fr;
    }
}
