*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #ffffff;
}

/* ═══════════════════════════════════════════
   MAIN HEADER
═══════════════════════════════════════════ */
.main-header {
    background: linear-gradient(90deg, #802D00 0%, #802D00 3%, #ED9D00 30%, #E38400 59%, #802D00 90%, #802D00 100%);
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
    overflow: visible;
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow: visible;
}

/* ═══════════════════════════════════════════
   NAV LINKS
═══════════════════════════════════════════ */
.main-nav {
    display: flex;
    align-items: center;
    height: 60px;
  
}

.main-nav a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 24px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 100;
    transition: .8s;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4.9999999px;
    width: 100%;
    height: 8px;
    background: #ffffff;
    border-radius: 8px 6px 0 0;
}

.main-nav a.active {
    font-weight: 650;
}

/* ═══════════════════════════════════════════
   LOGO & UTILITIES
═══════════════════════════════════════════ */
.logo { height: 65px; margin-right: 150px; }

.header-utilities {
    display: flex;
    align-items: center;
    gap: 30px;
    overflow: visible;
}

.mobil-wrapper {
    width: auto;
    display: flex;
    align-items: center;
    margin-right: -20px;
}

.mobil-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-icon-img { height: 80px; cursor: pointer; }

.lang-selector {
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    padding: 2px 6px;
    margin-top: -20px;
}

/* ═══════════════════════════════════════════
   AUTHORISED MOBIL DISTRIBUTOR TEXT
═══════════════════════════════════════════ */
.mobil-distributor-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 58px;
    margin: 0 15px;
    transform: translateY(5px);
    margin-left: -430px;
}

.mobil-distributor-text h1 {
    margin: 0;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 580;
    line-height: 1.05;
    letter-spacing: 0.5px;
    text-align: left;
}

.mobil-distributor-text .tm {
    font-size: 1em;
    margin-top: -32px;
    margin-left: 2.1px;
}

.distributor-line {
    color: #ffffff;
    font-weight: 700;
}

/* ═══════════════════════════════════════════
   DOUBLE-O (3-layer Mobil logo O)
═══════════════════════════════════════════ */
.double-o {
    display: inline-block;
    position: relative;
    width: 0.62em;
    height: 0.62em;
    vertical-align: middle;
    margin-bottom: 0.05em;
}

.double-o .outer {
    position: absolute;
    inset: 0;
    border: 0.12em solid #ffffff;
    border-radius: 50%;
    box-sizing: border-box;
}

.double-o .middle {
    position: absolute;
    width: 58%;
    height: 58%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 50%;
    box-sizing: border-box;
}

.double-o .inner {
    position: absolute;
    width: 34%;
    height: 34%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;   /* matches header gradient centre */
    border-radius: 50%;
    box-sizing: border-box;
}

/* ═══════════════════════════════════════════
   CUSTOMER PORTAL BUTTON
═══════════════════════════════════════════ */
.portal-btn-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    overflow: visible;
}

.portal-btn-wrap .utility-img-link {
    display: flex;
    align-items: center;
    justify-content: center;
 
    border-radius: 14px;
    padding: 6px;
  
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s, background 0.25s;
}

.portal-btn-wrap:hover .utility-img-link {
  
    border-color: #c8943a;
    box-shadow: 0 0 0 2px #c8943a, 0 0 20px 6px rgba(200, 148, 20, 0.55);
    transform: scale(1.02) translateY(0px);
}

.portal-btn-wrap .portal-label {
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-top: 4px;
    white-space: nowrap;
    line-height: 1;
}

/* ── Hover dropdown popup ── */
.portal-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    background: #ffffff;
    border-radius: 14px;
    padding: 24px 20px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    text-align: center;
    z-index: 9999;
}

.portal-dropdown::before {
    content: '';
    position: absolute;
    top: -9px;
    right: 28px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid #ffffff;
}

.portal-btn-wrap:hover .portal-dropdown { display: block; }

.portal-dropdown .drop-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    display: block;
}

.portal-dropdown .drop-title {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: Arial, Helvetica, sans-serif;
}

.portal-dropdown .drop-desc {
    color: #000000;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 16px;
    font-family: Arial, Helvetica, sans-serif;
}

.portal-dropdown .drop-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e88f00;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    transition: background 0.2s;
}

.portal-dropdown .drop-btn:hover { background: #a87230; }

/* ═══════════════════════════════════════════
   SUB-BAR
═══════════════════════════════════════════ */
.sub-bar {
    display: flex;
    align-items: center;
    padding: 15px 80px;
    background: #ffffff;
    box-shadow: 0 0px 12px rgba(0,0,0,0.08);
    position: relative;
    height: 65px;
}

/* ═══════════════════════════════════════════
   SEARCH BAR
═══════════════════════════════════════════ */
.search-wrapper {
    position: absolute;
    left: 60%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.search-bar {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 30px;
    padding: 8px 25px;
    width: 480px;
    height: 48px;
    box-shadow: 0 0px 12px rgba(0,0,0,0.08);
}

.search-svg { margin-right: 12px; }

.search-bar input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    background: transparent;
}

/* ═══════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════ */
.breadcrumb {
    font-size: 16px;
    color: #555;
    display: flex;
    gap: 8px;
    align-items: center;
}

.breadcrumb a {
    text-decoration: none;
    color: #555;
    transition: color 0.8s ease;
}

.breadcrumb a:hover {
    color: #802D00;
    text-decoration: underline;
}

.breadcrumb span { color: #333; }
