/* --- COCOYOKO PALETTE --- */
:root {
    --baby-pink: #FFB7B2; 
    --baby-blue: #A2E1DB;
    --text-main: #1c1c1c;
    --text-light: #666666;
    --bg-white: #ffffff;
    --border-color: #e2e2e2;
}

/* --- GLOBAL RESET --- */
body { margin: 0; padding: 0; font-family: 'DM Sans', sans-serif; background-color: var(--bg-white); color: var(--text-main); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }

/* --- HEADER & ANNOUNCEMENT --- */
.announcement-bar { background-color: var(--text-main); color: white; text-align: center; padding: 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
header { background: white; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border-color); padding: 0 40px; }
.header-main { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.logo { font-size: 28px; font-weight: 800; letter-spacing: -1px; background: linear-gradient(90deg, #89CFF0 0%, #FFB7B2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.header-icons i { font-size: 18px; margin-left: 20px; cursor: pointer; color: var(--text-main); }

/* --- NAVIGATION --- */
.nav-bar { display: flex; justify-content: center; border-top: 1px solid #f5f5f5; }
.nav-item { padding: 15px 18px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer; position: static; }
.nav-item:hover { color: var(--baby-pink); border-bottom: 2px solid var(--baby-blue); }

/* --- MEGA MENU (Fixed Layout) --- */
.mega-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: white; padding: 40px 60px; border-bottom: 3px solid var(--baby-pink); box-shadow: 0 15px 30px rgba(0,0,0,0.05); z-index: 999; box-sizing: border-box; justify-content: center; gap: 60px; }
.nav-item:hover .mega-menu { display: flex; }
.menu-column { display: flex; flex-direction: column; width: 180px; align-items: flex-start; }
.menu-column h3 { font-size: 13px; color: var(--baby-pink); text-transform: uppercase; margin: 0 0 15px 0; border-bottom: 1px solid #eee; padding-bottom: 5px; width: 100%; text-align: left; font-weight: 800; }
.menu-column a { display: block; font-size: 12px; color: #555; padding: 4px 0; text-align: left; width: 100%; text-transform: capitalize; }
.menu-column a:hover { color: var(--text-main); font-weight: 600; padding-left: 5px; }

/* --- HERO SECTION --- */
.hero { height: 550px; background-size: cover; background-position: center; display: flex; align-items: center; padding-left: 10%; }
.hero-text-box { background: rgba(255,255,255,0.9); padding: 40px; max-width: 400px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-left: 5px solid var(--baby-pink); }
.hero h1 { font-size: 42px; margin: 0 0 15px 0; line-height: 1.1; font-weight: 700; }
.btn-primary { background: var(--text-main); color: white; padding: 12px 30px; font-weight: 700; text-transform: uppercase; font-size: 12px; border: none; cursor: pointer; margin-top: 20px; }
.btn-primary:hover { background: var(--baby-blue); color: var(--text-main); }

/* --- SECTIONS COMMON --- */
.section-title { text-align: center; font-size: 24px; font-weight: 700; margin: 60px 0 30px 0; letter-spacing: -0.5px; text-transform: uppercase; }

/* --- FEATURED IN (Logos) --- */
.featured-in { background: #f9f9f9; padding: 30px 0; text-align: center; margin-top: 0; }
.featured-logos { display: flex; justify-content: center; gap: 50px; opacity: 0.5; filter: grayscale(100%); align-items: center; }
.featured-logos img { height: 30px; }

/* --- CIRCLE CATEGORIES --- */
.circle-cat-container { display: flex; justify-content: center; gap: 30px; padding: 20px; flex-wrap: wrap; }
.circle-cat { text-align: center; width: 100px; cursor: pointer; }
.circle-img { width: 90px; height: 90px; border-radius: 50%; background: #f5f5f5; overflow: hidden; margin: 0 auto 10px auto; transition: 0.3s; border: 2px solid transparent; }
.circle-cat:hover .circle-img { border-color: var(--baby-pink); transform: scale(1.05); }
.circle-title { font-size: 13px; font-weight: 600; }

/* --- PRODUCT CARDS --- */
.product-grid { display: flex; justify-content: center; gap: 20px; padding: 0 40px; flex-wrap: wrap; }
.product-card { width: 240px; background: white; padding: 10px; position: relative; transition: 0.3s; border: 1px solid transparent; }
.product-card:hover { border-color: #eee; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.sale-badge { position: absolute; top: 10px; left: 10px; background: var(--baby-pink); color: var(--text-main); font-size: 10px; padding: 4px 8px; font-weight: 700; z-index: 10; }
.prod-img { height: 240px; background: #f9f9f9; margin-bottom: 15px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.prod-img img { max-height: 90%; mix-blend-mode: multiply; }
.prod-title { font-size: 14px; font-weight: 600; margin-bottom: 5px; height: 36px; overflow: hidden; }
.prod-price { font-size: 14px; color: var(--text-main); font-weight: 700; }
.prod-old-price { text-decoration: line-through; color: #999; font-weight: 400; font-size: 12px; margin-left: 5px; }

/* --- WATCH & BUY (Stories/Reels Style) --- */
.watch-buy-container { display: flex; gap: 20px; overflow-x: auto; padding: 20px 40px; justify-content: center; }
.wb-card { min-width: 180px; height: 320px; position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; }
.wb-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
.wb-card:hover img { transform: scale(1.1); }
.play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: white; font-size: 30px; opacity: 0.8; }
.wb-text { position: absolute; bottom: 0; left: 0; width: 100%; padding: 15px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: white; font-size: 12px; font-weight: 600; }

/* --- MAGAZINE (Blog) --- */
.magazine-grid { display: flex; justify-content: center; gap: 30px; padding: 0 40px; flex-wrap: wrap; }
.mag-card { width: 300px; cursor: pointer; }
.mag-img { height: 200px; width: 100%; object-fit: cover; border-radius: 5px; }
.mag-date { font-size: 10px; color: #999; text-transform: uppercase; margin-top: 10px; letter-spacing: 1px; }
.mag-title { font-size: 16px; font-weight: 700; margin: 5px 0 10px 0; line-height: 1.4; }
.mag-link { font-size: 12px; font-weight: 700; border-bottom: 1px solid var(--text-main); }

/* --- FOOTER --- */
footer { background: #f9f9f9; padding: 60px 40px; margin-top: 80px; display: flex; justify-content: space-between; font-size: 13px; color: var(--text-light); }
.footer-col h4 { color: var(--text-main); text-transform: uppercase; margin-bottom: 20px; }
.footer-col p { margin-bottom: 10px; cursor: pointer; }
.footer-col p:hover { color: var(--baby-pink); }