body{
    margin:0px;
    padding: 0px;
    background-color: yellow;
    background-image: url("img/bg_pattern.jpg");
    background-repeat: repeat;
    background-size: cover; /* make it cover the entire element */
}

* {
    box-sizing: border-box;     
    margin: 0;
    padding: 0;
}

.navbar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: red;
    position: relative;
    width:100%;
    border-bottom: 5px solid darkred;
}

.burger_logo{
   width: 60px;
   height: auto;
   z-index: 1000;
    
}
.cartIcon{
    width: 60px;
    height: auto;
    margin-top: 0;
    padding: 0;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease;
    position: relative;
    top: -3px;

}
.burgermenu{
        width: 40px;
        height: auto;
        cursor: pointer;
        z-index: 1000;
        transition: transform 0.3s ease;

    }
.burgermenu:hover {
      transform: scale(1.1);
    }
.options {
    position: absolute;
    top: 100%;        
    left: 0;
    right:0;
    background-color: red;
    list-style: none;
    display: none;
    flex-direction: column;
    color: white;
    display: none; /* hide by default */
    z-index: 999;
    
}
.options a:link{
  color:yellow;
  text-decoration: none;
}
.options a:visited{
  color:yellow
}
 .options.active {
      display: flex;
    }

.options li {
      border-bottom: 1px solid rgba(247, 244, 34, 0.995);
    }

   

.options li h2 {
      color: yellow;
      padding: 15px 20px;
      margin: 0;
      font-size: 18px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

.options li h2:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }
.popup{
    display: none;
    text-align: center;
    background-color: azure;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100vw;
}
.topic{
    margin: 10px auto; 
        width:50%;
        text-align: center;
        border-radius: 50px;
        background-color: yellow;  
        
  
}
.pricing-wrapper {
  border-radius: 10px;
  padding: 10px;               /* acts like the margin you wanted */
}
.pricing{
        display: grid;
        background-color: rgba(255,255,255,0.7) ;
        border-radius: 10px;
}

.pricing > div{
        margin: 0;
        padding: 5px;
        border: solid black 1px;
        text-align: center;
}
.pricing img{
    width:100%;
    max-width: 100%;
    height: auto;
    display: block;

}
.item{
    grid-column: 1 / -1;
}
.set{
    display: flex;
    flex-direction: column;
    border: none;
    border-radius: 5px;
    border-color: none;
}
.prices{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    margin: 0;
    padding: 0;
}
.prices > div{
    border-left: solid black 1px;
    margin: 0px;
    padding: 0px;
}
.prices > div:first-child {
    border-left: none;  /* remove for the first one */
}
.header{
    display: none;
}

/* Tablet styles (768px+) */
@media screen and (min-width: 768px) {
    .navbar {
    padding: 20px 30px;
    }

    .burger_logo {
    width: 80px;
    }

    .burgermenu {
    display: none; /* Hide hamburger menu on larger screens */
    }

    .options {
    position: static;
    display: flex !important;
    flex-direction: row;
    background-color: transparent;
    box-shadow: none;
    gap: 20px;
    }

    .options li {
    border-bottom: none;
    }

    .options li h2 {
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    }

    .options li h2:hover {
    background-color: rgba(255, 255, 255, 0.2);
    }
    

     .pricing {
        grid-template-columns: repeat(2, 1fr); /* item + prices side by side */
        font-size: 18px;
    }
    .item {
        grid-column: auto; /* default column in 2-column grid */
        display: grid;
        place-items: center; /* centers both horizontally and vertically */
        min-height: 50px;
    }
    
    .prices {
        grid-column: auto; /* default column in 2-column grid */
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* prices inside flow */
        
  }
      .prices > div {
        display: grid;
        place-items: center; /* centers both horizontally and vertically */
        min-height: 50px;
    }
    .header{
        display: grid;
    }
    .topic{
        width: 20%;
        margin-top: 20px;
        margin-bottom: 20px;
      }
    .set{
        display: flex;
        flex-direction: column;
        border: none;
        border-radius: 5px;
        border-color: none;
        align-content: center;
}
}

/* Desktop styles (1024px+) */
@media screen and (min-width: 1024px) {
    .navbar {
    padding: 25px 40px;
    }

    .burger_logo {
    width: 100px;
    }

    .options {
    gap: 30px;
    }

    .options li h2 {
    font-size: 18px;
    padding: 12px 20px;
    }

     .pricing {
        font-size: 20px;
    }
}

/* Large Desktop styles (1200px+) */
@media screen and (min-width: 1200px) {
    .navbar {
    padding: 30px 50px;
    }

    .options {
    gap: 40px;
    }

    .options li h2 {
    font-size: 20px;
    padding: 15px 25px;
    }

     .pricing {
        grid-template-columns: repeat(2, 1fr); /* item + prices side by side */
        font-size: 22px;
    }
}

    











