body {
  background-image: url();
  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a, a:link, a:visited {
  color: inherit;
}


/* Hamburger button - hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 21px;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}

/* Show hamburger on small screens */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  header nav {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 60px; /* adjust based on header height */
    right: 0;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }

  header nav.active {
    display: flex;
  }

body {
  min-height: 100vh;
  min-height: 100svh;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea, select {
  font: inherit;
}

button {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font: inherit;
}


/* ========== PAGE LAYOUT ========== */

body{
  background:#f3f3f3;
}


/* ---------- HEADER ---------- */

header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:white;
  height:90px;
  position:relative;
}

/* left blue banner */

.header-left{
  background:#1565b3;
  height:100%;
  width:35%;
  clip-path:polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
}

/* right magenta banner */

.header-right{
  background:#b01674;
  height:100%;
  width:35%;
  clip-path:polygon(15% 0, 100% 0, 100% 100%, 15% 100%, 0 50%);
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding-right:40px;
  color:white;
}

/* logo area */

.logo{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  text-align:center;
}

.logo img{
  /*height:100px;*/
}


/* ---------- NAV ---------- */

nav ul{
  list-style:none;
  display:flex;
  gap:25px;
  font-size:14px;
}


/* ---------- HERO SECTION ---------- */

.hero{
  background:#a9bfd6;
  height:300px;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero img{
  max-width:420px;
}



.page-title{
  text-align:center;
  margin:40px 0;
  font-size:24px;
}

.detail-layout{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:40px;
  padding:0 80px 60px 80px;
}


/* ---------- SIDEBAR ---------- */

.sidebar{
  background:#e3c3d6;
  padding:20px;
}

.sidebar ul{
  list-style:none;
}

.sidebar li{
  margin-bottom:12px;
  font-size:14px;
}


/* ---------- PRODUCT GRID ---------- */

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



@media (max-width:1200px) {
  .product-grid {
   grid-template-columns:1fr;
}
}

.product{
  background:#a9bfd6;
  padding:20px;
  text-align:center;
  min-width: 200px;
}

.product img{
  width:120px;
  margin-bottom:10px;
}

.product p{
  font-size:12px;
  
  
}


/* placeholder boxes */

.placeholder{
  height:170px;


.placeholder{
  height:170px;