@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── GLOBAL FONT ── */
* { font-family: 'Inter', sans-serif; }

.pt-shell { width: 100%; max-width: 1400px; margin: 0 auto; font-family: 'Inter', sans-serif; box-sizing: border-box; }

/* HEADER AREA */
.pt-header-area { margin-bottom: 25px; }
.pt-main-title { font-size: 2.5rem; margin: 0 0 10px 0; font-weight: 700; color: #1a1a1a; }
.pt-main-desc { font-size: 1.1rem; color: #666; max-width: 800px; margin: 0; }

/* GRID SYSTEM */
.pt-master-grid { 
    display: grid !important; 
    grid-template-columns: 280px 1fr !important; 
    gap: 5px !important; 
    align-items: start !important;
}

/* SIDEBAR */
.pt-sidebar { 
    background: #111; 
    padding: 30px; 
    border-radius: 10px; 
    color: #fff; 
    z-index: 10;
}

.pt-sidebar-header { display: none; justify-content: space-between; align-items: center; border-bottom: 1px solid #222; padding-bottom: 15px; margin-bottom: 15px; }
#pt-close-sidebar { cursor: pointer; font-size: 20px; color: #999; }

.pt-title-16 { color: #FFBC00 !important; font-size: 16px !important; font-weight: 700; display: block; margin-bottom: 15px; }

/* SCROLL BOX */
.pt-scroll-box {
    max-height: 220px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #FFBC00 #222;
    padding-right: 4px;
}
.pt-scroll-box::-webkit-scrollbar { width: 4px; }
.pt-scroll-box::-webkit-scrollbar-track { background: #222; border-radius: 5px; }
.pt-scroll-box::-webkit-scrollbar-thumb { background: #FFBC00; border-radius: 5px; }

.pt-row-14, .pt-country-row { display: flex; align-items: center; padding: 12px 0; border-bottom: 1px solid #222; font-size: 14px !important; color: #fff; cursor: pointer; }
.pt-row-14 span { margin-left: 12px; }
.pt-country-row { justify-content: space-between; }

/* STATUS CARD */
.pt-status-card { background: #fff !important; color: #000 !important; padding: 25px; border-radius: 10px; margin: 25px 0; }
.pt-sb { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; color: #000; font-size: 16px; font-weight: 700; }
.pt-badge { background: #FFBC00; color: #000; padding: 3px 8px; border-radius: 10px; font-size: 11px; font-weight: 900; }
.status-item-14 { color: #333 !important; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px !important; font-weight: 500; }

/* MAIN CONTENT */
.pt-main-content { min-width: 0; position: relative; }
.pt-map-frame { 
    height: 600px; border-radius: 10px; border: 1px solid #ddd; margin-bottom: 5px; 
    position: relative; overflow: hidden; background: #f9f9f9; z-index: 1;
}
#pt-map-canvas { height: 100% !important; width: 100% !important; z-index: 1; }

/* PRODUCT GRID */
.pt-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; align-items: stretch; }
.pt-mini-card { 
    background: linear-gradient(135deg, #fff 60%, #f5f5f5 100%);
    border: 1px solid #e8e8e8; 
    padding: 14px 16px; 
    border-radius: 10px; 
    text-align: center;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pt-mini-card:hover { 
    box-shadow: 0 4px 16px rgba(0,0,0,0.08); 
    transform: translateY(-2px);
}
.pt-mini-name { color: #111 !important; font-weight: 700; font-size: 13px; margin: 0; line-height: 1.3; }

#pt-search { width: 100%; padding: 12px; background: #000; border: 1px solid #333; color: #fff; border-radius: 10px; font-size: 14px; margin-bottom: 10px; font-family: 'Inter', sans-serif; }

/* MODAL & GOLD BTN */
#pt-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 99999; display: flex; align-items: center; justify-content: center; }
.pt-modal-content { background: #111; padding: 40px; border-radius: 10px; color: #fff; text-align: center; position: relative; max-width: 400px; }
#pt-close { position: absolute; top: 15px; right: 15px; cursor: pointer; }
.pt-gold-btn { background: #FFBC00; color: #000 !important; padding: 12px 25px; border-radius: 10px; font-weight: 800; display: inline-block; margin-top: 15px; text-decoration: none !important; cursor: pointer; border: none; font-family: 'Inter', sans-serif; }

/* MOBILE RESPONSIVE */
.pt-mobile-filter-bar { display: none; margin-bottom: 15px; }

/* PRELOADER */
#pt-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.5s ease;
}
.pt-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #FFBC00;
    border-radius: 50%;
    animation: pt-spin 1s linear infinite;
}
@keyframes pt-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#pt-app { opacity: 0; transition: opacity 0.8s ease; }
#pt-app.loaded { opacity: 1; }

@media (max-width: 1024px) {
    .pt-master-grid { grid-template-columns: 1fr !important; }
    .pt-mobile-filter-bar { display: block; }
    .pt-sidebar-header { display: flex; }
    .pt-sidebar { 
        position: fixed; top: 0; left: -320px; width: 300px; height: 100%; 
        background: #111; z-index: 99999; padding: 20px; box-shadow: 2px 0 10px rgba(0,0,0,0.5);
        transition: left 0.3s ease; overflow-y: auto;
    }
    .pt-sidebar.active { left: 0; }
}

/* ── GIO INTRO SECTION ────────────────────────────────── */
.gio-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    background: #fff;
    padding: 6px 0 0 0;
    border-bottom: 1px solid #eee;
}
.gio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

/* LEFT */
.gio-left {
    background: transparent;
    border: none;
    border-right: 1px solid #eee;
    border-radius: 0;
    padding: 0 10px 16px 0;
    display: flex;
    flex-direction: column;
}
.gio-left-tag { display: none; }
.gio-left h2 {
    color: #111;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 18px 0;
}
.gio-left p {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 14px 0;
}
.gio-left p:last-child { margin-bottom: 0; }

/* RIGHT */
.gio-right {
    background: transparent;
    padding: 0 10px 0 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.gio-right-top h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #111 !important;
    background-clip: unset !important;
    margin: 0 0 16px 0;
    line-height: 1.3;
}
.gio-right-top p {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 10px 0;
}
.gio-right-top p:last-child { margin-bottom: 0; }
.gio-right-bottom { margin-top: 0; }
.gio-right-bottom h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #111;
    background-clip: unset;
    margin: 0 0 6px 0;
}
.gio-who-label {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* Benefits list — fixed alignment */
.gio-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gio-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}
.gio-benefits li svg {
    flex-shrink: 0;
    margin-top: 3px;
    width: 18px;
    height: 18px;
}
.gio-benefits li > span {
    display: block;
    flex: 1;
}
.gio-benefits li b {
    color: #111;
    font-weight: 700;
    display: inline;
}

/* Header area */
.gio-header-area { margin-bottom: 28px; }
.gio-main-title {
    font-size: 2.6rem !important;
    font-weight: 900 !important;
    color: #111 !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.1 !important;
    -webkit-text-fill-color: #111 !important;
    letter-spacing: -0.5px;
}
.gio-main-desc {
    font-size: 1.05rem !important;
    color: #666 !important;
    margin: 0 !important;
    -webkit-text-fill-color: #666 !important;
    line-height: 1.6 !important;
}

/* Gap between GIO section and map shell */
.pt-shell { margin-top: 0 !important; }

@media (max-width: 768px) {
    .gio-section { padding: 24px 0 28px 0; margin-bottom: 24px; }
    .gio-grid { grid-template-columns: 1fr; gap: 28px; }
    .gio-left { border-right: none; border-bottom: 1px solid #eee; padding: 0 0 28px 0; }
    .gio-right { padding: 0; }
    .gio-main-title { font-size: 2rem !important; }
}
/* ── END GIO INTRO SECTION ───────────────────────────── */

/* ── MAP COUNTRY LABELS ── */
.pt-country-label {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #666 !important;
    font-size: 10px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
    pointer-events: none !important;
    padding: 0 !important;
}
.pt-country-label::before { display: none !important; }