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

body {
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #fff;
    color: #000;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 80;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.promo-banner {
    background-color: #fbe3e5;
    border-bottom: 1px solid #f3d2d5;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.promo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    gap: 15px;
}

.promo-direct-btn {
    padding: 0.5rem;
    letter-spacing: .04em;
    white-space: nowrap;
    border-radius: 3px;
    font-size: 0.65rem;
    margin: 0.42rem 0 0.334rem 1rem;
    color: #4e3844;
    border: 1px solid #4E3844;
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.promo-direct-btn:hover {
    background-color: #4e3844;
    color: #fff;
}

.promo-direct-btn:active {
    transform: scale(0.95);
}

.header-top-row {
    background-color: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;   
    height: 48px;
}

.row-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.brand-tabs { display: flex; height: 100%; }
.tab-box { display: flex; align-items: center; height: 100%; border-right: 1px solid #e5e5e5; }
.tab-link { text-decoration: none; color: #000; padding: 0 24px; display: flex; flex-direction: column; justify-content: center; height: 100%; }

.vs-font { font-family: 'Cinzel', serif; font-size: 10px; font-weight: 600; letter-spacing: 1px; line-height: 1.2; text-align: center; }
.sub-vs { font-size: 8px; letter-spacing: 2px; text-align: center; }
.pink-font { font-family: 'Arial Black', sans-serif; font-size: 16px; font-weight: 900; letter-spacing: -0.5px; }

.active-tab {
    border-bottom: 3px solid #e6a4b4;
    background-color: #f5f5f5;
}

.utility-icons { 
    display: flex; 
    gap: 26px; 
    height: 100%;
    align-items: center;
}

.utility-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.icon-link { 
    color: #221D1D; 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
}

.icon-link i {
    font-size: 22px;
    color: #221D1D;
    display: inline-block;
    transition: color 0.22s ease;
}

.icon-link:hover i {
    color: #e6007e;
}

.badge { 
    background: #e5e5e5; 
    font-family: 'Public Sans', sans-serif;
    font-size: 10px; 
    font-weight: 600; 
    padding: 1px 5px; 
    border-radius: 3px; 
    margin-left: 6px; 
    color: #000;
}

.bell-trigger:hover i {
    animation: vsBellSwing 0.6s ease-in-out;
    transform-origin: top center;
}

@keyframes vsBellSwing {
    0% { transform: rotate(0); }
    15% { transform: rotate(12deg); }
    30% { transform: rotate(-10deg); }
    45% { transform: rotate(8deg); }
    60% { transform: rotate(-6deg); }
    75% { transform: rotate(3deg); }
    100% { transform: rotate(0); }
}

.header-middle-row { padding: 25px 0 60px 0; background: #fff; }
.middle-wrapper { display: flex; justify-content: space-between; align-items: center; position: relative; }

.logo-space { 
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
    top: -5px; 
}
.cocco-main-logo {
    object-fit: contain;
    display: block;
}

.search-container { margin-left: auto; position: relative; z-index: 99; }
.search-bar { display: flex; align-items: center; background: #f5f5f5; padding: 0 16px; border-radius: 4px; width: 270px; height: 40px; }

.search-bar i { font-size: 18px; color: #444; display: flex; align-items: center; }
.search-bar input { border: none; background: transparent; outline: none; width: 100%; padding-left: 12px; font-family: 'Public Sans', sans-serif; font-size: 13px; font-weight: 500; }

.search-mega-panel {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    width: 500px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: none;
}

.search-container:focus-within .search-mega-panel { display: block; }
.search-container:focus-within ~ .header-overlay,
.main-header:hover ~ .header-overlay { opacity: 1; visibility: visible; }

.search-grid { display: flex; gap: 20px; }
.search-col { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.search-col h4 { font-size: 11px; color: #888; margin-bottom: 5px; font-weight: 700; }
.search-col a { text-decoration: none; color: #000; font-size: 13px; }
.search-col a:hover { color: #e6007e; }

.header-nav { border-bottom: 1px solid #e5e5e5; position: relative; background: #fff; z-index: 90; }
.nav-links { list-style: none; display: flex; justify-content: center; gap: 30px; }

.nav-links > li > a { 
    text-decoration: none; 
    color: #000; 
    font-family: 'Public Sans', sans-serif; 
    font-size: 12px; 
    font-weight: 400; 
    letter-spacing: 1.2px; 
    padding: 10px 0 16px 0; 
    display: block; 
    position: relative; 
}
.nav-links > li > a.sale-link { color: #e6007e; }

.VS-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e6a4b4;
    transform: scaleX(0);
    transition: transform 0.22s ease;
}

.nav-links > li:hover > a.VS-line::after,
.utility-icons > a.utility-icon:hover::after {
    transform: scaleX(1);
}

.has-mega { position: static; }
.mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100vw;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    padding: 35px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.has-mega:hover .mega-menu { opacity: 1; visibility: visible; }
.has-mega:hover ~ .header-overlay { opacity: 1; visibility: visible; }

.mega-grid { display: grid; gap: 40px; }
.mega-grid.col-2 { grid-template-columns: repeat(2, 1fr); }
.mega-grid.col-3 { grid-template-columns: repeat(3, 1fr); }
.mega-grid.col-4 { grid-template-columns: repeat(4, 1fr); }

.mega-column { display: flex; flex-direction: column; gap: 10px; }

.mega-column h5 { 
    font-family: 'Public Sans', sans-serif; 
    font-size: 11px; 
    font-weight: 700; 
    color: #000; 
    border-bottom: 1px solid #f0f0f0; 
    padding-bottom: 6px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.mega-column a { 
    text-decoration: none; 
    color: #555; 
    font-family: 'Public Sans', sans-serif;
    font-size: 12px; 
    font-weight: 400; 
    line-height: 1.4; 
}
.mega-column a:hover { padding-left: 4px; transition: all 0.15s; }

.sub-heading { 
    font-family: 'Public Sans', sans-serif; 
    font-size: 11px; 
    font-weight: 700; 
    color: #000; 
    margin-top: 25px; 
    border-bottom: 1px solid #f0f0f0; 
    padding-bottom: 6px; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}
.sub-heading-inside { 
    font-family: 'Public Sans', sans-serif; 
    font-size: 11px; 
    font-weight: 700; 
    color: #000; 
    margin-top: 30px; 
    border-bottom: 1px solid #f0f0f0; 
    padding-bottom: 6px; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

@media (max-width: 1100px) {
  .main-header {
    padding: 12px 24px;
    gap: 20px;
  }
}