/* =========================================================
   GLOBAL RESET & TYPOGRAPHY
   ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #111111;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.left-nav {
    display: flex;
    gap: 20px;
    flex: 1;
}

.left-nav a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
}

.logo {
    flex: 1;
    text-align: center;
}

.logo h2 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

/* =========================================================
   RIGHT-SIDE ICONS & OVAL SEARCH BAR (Fixed - No Focus Box)
   ========================================================= */
.right-icons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center; 
    gap: 20px;
}

/* Search Container - Oval Grey Shape */
.search-container {
    display: flex;
    align-items: center;
    background-color: #f2f2f2; 
    padding: 6px 15px;
    border-radius: 25px; 
    transition: 0.3s;
    border: none !important;
}

/* Input area - Tangtangon ang box/outline inig type */
.search-container input {
    border: none !important;
    background: transparent !important;
    outline: none !important; /* KINI ANG MU-PAWALA SA BOX */
    box-shadow: none !important;
    font-size: 13px;
    padding-left: 8px;
    width: 120px;
    color: #000;
}

/* Standardizing all icons */
.right-icons a, 
.right-icons i,
.search-container i {
    font-size: 18px;
    color: #000 !important;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.2s;
}

.right-icons a:hover {
    opacity: 0.6;
}

/* Cart Badge Styling */
.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #000;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}