/*=== COWAY ROZIE — EXACT CLONE CSS ===*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
  font-size: 16px; line-height: 1.65; color: #334155;
  -webkit-font-smoothing: antialiased;
}

/*=== NAV ===*/
.site-header { background: #fff; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid #e5e7eb; }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; height: 64px; }
.nav-logo img { height: 36px; }
.nav-links { display: flex; list-style: none; gap: 4px; }
.nav-links a { display: block; padding: 8px 12px; color: #1e293b; text-decoration: none; font-size: 14px; font-weight: 500; border-radius: 6px; }
.nav-links a:hover { color: #046BD2; background: #f0f5fa; }
.hamburger { display: none; background: none; border: none; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: #334155; margin: 4px 0; }

/*=== ANNOUNCEMENT BAR ===*/
.ann-bar { background: #FFEC00; text-align: center; padding: 10px 16px; font-size: 14px; font-weight: 600; color: #1e293b; }

/*=== SECTION COLOR BLOCKS ===*/
.section { padding: 50px 20px; text-align: center; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title { font-size: 26px; font-weight: 700; color: #111; margin-bottom: 8px; }
.section-desc { font-size: 15px; color: #64748B; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Hero - Deep Blue */
.hero { background: #1F4DB5; padding: 60px 20px; text-align: center; color: #fff; }
.hero img { max-width: 280px; margin: 0 auto 20px; display: block; border-radius: 12px; }
.hero h1 { font-size: 28px; font-weight: 800; margin-bottom: 8px; line-height: 1.2; }
.hero h2 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.hero p { font-size: 15px; opacity: 0.9; margin-bottom: 20px; }

/* Rozie Section - Gradient */
.rozie-section { background: linear-gradient(135deg, #1F4DB5 0%, #259BE9 100%); color: #fff; padding: 50px 20px; text-align: center; }
.rozie-section img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; border: 3px solid rgba(255,255,255,0.3); }
.rozie-section h2 { font-size: 24px; margin-bottom: 4px; }
.rozie-section h3 { font-size: 16px; font-weight: 600; margin-bottom: 12px; color: #FFEC00; }
.rozie-section p { font-size: 14px; opacity: 0.9; max-width: 500px; margin: 0 auto 20px; }

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  text-align: center;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  padding-bottom: 16px;
}
.product-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.product-card img {
  width: 100%; height: 180px; object-fit: contain;
  background: #f8fafc; padding: 12px;
}
.product-card h3 { font-size: 15px; font-weight: 600; color: #111; margin: 8px 12px 4px; }
.product-card .price { font-size: 16px; font-weight: 700; color: #ED2863; margin-bottom: 4px; }
.product-card .price s { color: #94a3b8; font-size: 12px; font-weight: 400; margin-left: 4px; }
.product-card .price-sub { font-size: 11px; color: #94a3b8; margin-bottom: 12px; }

/* Buttons */
.btn {
  display: inline-block; padding: 10px 22px; border-radius: 6px;
  font-size: 14px; font-weight: 600; text-decoration: none; border: none;
  cursor: pointer; transition: all 0.15s;
}
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #128C7E; }
.btn-outline { background: transparent; color: #046BD2; border: 2px solid #046BD2; }
.btn-outline:hover { background: #046BD2; color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-hero { background: #25D366; color: #fff; padding: 14px 36px; font-size: 16px; border-radius: 8px; font-weight: 700; }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.benefit-card { background: #fff; border-radius: 12px; padding: 24px 16px; text-align: center; box-shadow: 0 1px 6px rgba(0,0,0,0.06); }
.benefit-card .icon { font-size: 32px; margin-bottom: 8px; }
.benefit-card h3 { font-size: 15px; color: #111; margin-bottom: 4px; }
.benefit-card p { font-size: 13px; color: #64748B; }

/* Section colors */
.bg-white { background: #fff; }
.bg-light-blue { background: #C1D5F2; }
.bg-teal { background: #9EC8B2; }
.bg-beige { background: #D1C1B5; }
.bg-purple { background: #6A6CC3; }
.bg-sky { background: #71A1C9; }
.bg-dark-teal { background: #005E70; color: #fff; }
.bg-dark-teal .section-title, .bg-dark-teal .section-desc { color: #fff; }
.bg-purple .section-title, .bg-purple .section-desc { color: #fff; }

/* Category page colors */
.cat-hero { padding: 50px 20px; text-align: center; color: #fff; }

/* Footer */
.site-footer { background: #1F4DB5; color: #fff; padding: 30px 20px 20px; text-align: center; margin-top: 60px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.6); }

/* WA Float */
.wa-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4); text-decoration: none;
  font-size: 26px; color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .section { padding: 40px 16px; }
  .hero { padding: 40px 16px; }
  .hero h1 { font-size: 22px; }
  .hero img { max-width: 200px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card img { height: 130px; }
  .section-title { font-size: 22px; }
}

@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .product-card h3 { font-size: 13px; }
  .product-card .price { font-size: 13px; }
}
