body{
  margin:0;
  padding-top:90px; /* navbar height */
  background:#efe0c3;
  font-family:"Inter","Segoe UI",Arial,sans-serif;
  color:#726249;
  scroll-behavior:smooth;
}

/* NAV */
nav{
  position:fixed;
  top:0;
  width:100%;
  background:#fff9ed;
  backdrop-filter: blur(22px);
  padding:12px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow:0 12px 35px rgba(0,0,0,0.06);
  z-index:9999;

}

.logo{ height:42px; }

/* MENU + LANG */
.menu button,
.lang button{
  background:rgba(255,255,255,0.65);
  border:none;
  padding:8px 20px;
  margin:4px;
  border-radius:999px;
  cursor:pointer;
  font-size:15px;
  color:#726249;
  backdrop-filter: blur(10px);
  transition:0.25s;
  margin-left: 30px;
  margin-right: 5px;
}

.menu button:hover,
.lang button:hover{
  background:#cfb88a;
}

/* HERO */
.hero{
  padding:120px 20px 70px;
  text-align:center;
}

.hero h1{
  font-size:40px;
  max-width:720px;
  margin:auto;
  font-weight:500;
}

.hero p{
  max-width:620px;
  margin:22px auto 0;
  font-size:17px;
  line-height:1.6;
}

/* SHOP */
.shop{
  padding:60px 20px;
  background:#fff9ed;
  border-radius:48px 48px 0 0;
}

.shop h2{
  text-align:center;
  margin-bottom:40px;
}

.products{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:28px;
  max-width:960px;
  margin:auto;
}

.card{
  background:rgba(255,255,255,0.75);
  padding:20px;
  border-radius:32px;
  text-align:center;
  backdrop-filter: blur(18px);
  box-shadow:0 18px 45px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.card:hover{
  transform: translateY(-6px);
}

.card .img{
  height:150px;
  background:#cfb88a;
  border-radius:28px;
  margin-bottom:14px;
}

/* CONTACT */
.contact{
  padding:80px 20px;
}

.contact h2{
  text-align:center;
  margin-bottom:30px;
}

.contact-box{
  max-width:520px;
  margin:auto;
  background:rgba(255,249,237,0.75);
  padding:36px;
  border-radius:36px;
  text-align:center;
  backdrop-filter: blur(18px);
  box-shadow:0 16px 38px rgba(0,0,0,0.05);
}

.contact-line{
  margin:10px 0;
  font-size:15px;
}

.phone{
  display:block;
  margin:16px 0 8px;
  text-decoration:none;
  font-weight:500;
  color:#726249;
}

.insta-btn{
  display:inline-block;
  margin-top:12px;
  padding:10px 24px;
  background:#726249;
  color:white;
  border-radius:999px;
  text-decoration:none;
  font-size:15px;
  transition:0.25s;
}

.insta-btn:hover{
  background:#5f523c;
}

/* FOOTER */
footer{
  text-align:center;
  font-size:13px;
  opacity:0.65;
  padding:20px 0 30px;
}

.nova{ font-weight:600; }
.nova-insta{
  margin-left:6px;
  font-size:12px;
  text-decoration:none;
  color:#726249;
}
.insta-line a.insta-link{
  color:#726249;
  text-decoration:none;
  font-weight:500;
}

.insta-line a.insta-link:hover{
  text-decoration:underline;
}
.products {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.card {
  width: 200px; /* adjust if needed */
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: #fff;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.product-img {
  width: 100%;
  height: 150px; /* fixed height, can use auto */
  object-fit: cover;
  display: block;
  border-radius:20px ;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 10px 0;
}
#frl{
  direction: ltr;
}