
body {
    background: #f0faff;
    margin: 0;
    padding: 0;
    /* background-image: url(images/pexels-darya-grey_owl-132130036-12304752.jpg)  ;  */
    background-color: #202020;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  /* nav, */
  nav {
  border-radius: 6px;
  background-image: linear-gradient(
    rgb(48, 48, 48) 13%,
    rgb(30, 30, 30) 40%,
    #0c0d11 86%
  );
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 -2px 0 black;
  cursor: pointer;
  box-shadow: 1px 2px 4px rgb(20, 20, 20), 0 4px 12px rgb(10, 10, 10);

  display: flex; /* Важна добавка: всички директни деца да са на линия */
  align-items: center; /* Вертикално подравняване */
  gap: 10px; /* разстояние между елементите */
  flex-wrap: wrap; /* ако няма място - да пренася на нов ред */
}

.nav-item {
  display: flex;
  flex-direction: row-reverse;
  font-size: 0.8999rem;
  min-width: 120px;
  justify-content: space-between;
  transition: all 80ms ease;

  &:not(.active):hover {
    color: rgba(255, 255, 255, 0.87);
  }

  &:hover > .icon .subicon {
    height: 32px;
    width: 32px;
    border-radius: 32px;
    top: -16px;
    right: -16px;
    border-color: white;
  }

  &:not(:first-of-type) {
    border-left: 1px solid rgb(60, 60, 60);
  }
  &:not(:last-of-type) {
    border-right: 0.1rem solid black;
  }

  a {
    color: inherit;
    text-decoration: none;
    padding: 1ch;
  }

  .icon {
    padding: 1ch;
    position: relative;

    .subicon {
      text-shadow: none;
      transition: all 40ms ease;
      position: absolute;
      top: -3px;
      right: -3px;
      background: red;
      color: white;
      box-shadow: 0 0 4px rgba(41, 41, 41, 0.405);
      width: 18px;
      height: 18px;
      border-radius: 14px;
      font-size: 0.7em;
      font-weight: 700;
      display: inline-grid;
      place-items: center;
      border: 2px solid white; /* Променено за браузърска съвместимост */
    }
  }

  .icon > svg {
    max-width: 16px;
  }
}

/* Стил за меню бутона */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5a623;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  text-align: center;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  
  flex-shrink: 0; /* Не позволявай да се свива */
  min-width: 100px; /* фиксирай ширина ако искаш */
}

/* Добави ховър ефекти ако искаш */
.menu-toggle:hover {
  background-color: #d18e1b;
}

.menu-toggle:active {
  background-color: #b37a17;
}

 .navigaciq {
  margin-right: 10px;
  margin-left: 10px;
  border: none;
  width: 100%;
  margin-top: 10px;
}

/* Контейнер за търсачката */
.search-container {
  position: relative;
  /* Може да добавиш max-width за по-добър контрол */
  max-width: 100%;
}

/* Поле за търсене */
.search-container input {
  width: 350px;
  max-width: 100%;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  transition: width 0.4s ease-in-out;
}

/* При фокус разширява търсачката, но максимум до 100% от родителя */
.search-container input:focus {
  width: 550px;
  max-width: 100%;
}

/* Икона на търсене вътре в полето */
.search-container i {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #555;
  cursor: pointer;
  pointer-events: auto;
}

/* Бокс със заглавие на независим сътрудник */
#nzv-s {
  border: 1px solid snow;
  border-radius: 5px;
  display: flex;
  align-items: center;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
  padding: 10px;
  margin-top: 10px; /* за малко разстояние от другите елементи */
}

/* Празно място в навигацията */
.mqsto-nav {
  width: 200px;
}

/* Фон и контейнери на навигацията */
.nav-background {
  display: flex;
  align-items: center;
  border-radius: 50px;
  border: none;
  width: 100%;
  height: 200px; /* увеличена височина */
  /* Премахваме статичния фон и добавяме анимиран градиент */
  background: linear-gradient(-45deg, #0c0d11, #1a1a1a, #0c0d11, #1a1a1a);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Дефиниция на анимацията за преливане */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


@media screen and (max-width: 768px) {
  .menu-toggle {
      display: flex;
      align-content: center;
      justify-content: center;
      color: white;
      background-color: transparent;
      font-size: 40px;
      margin-right: 150px;
      padding: 25px;
      border-radius: 30px;
      
  }

  #nav {
      display: none;
      flex-direction: column;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
      z-index: 999;
  }

  #nav.active {
      display: flex;
  }

  #nav a {
      font-size: 24px;
      padding: 10px;
  }

   
  .close-menu {
      cursor: pointer;
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 20px;
      color: white;
      padding: 5px 10px;
      border-radius: 5px;
      z-index: 999;
  }
}
  
  /*
  nav,
  .nav-item {
    display: flex;
  }
  
  nav {
    border-radius: 6px;
    background-image: linear-gradient(
      rgb(48, 48, 48) 13%,
      rgb(30, 30, 30) 40%,
      #0c0d11 86%
    );
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 -2px 0 black;
    cursor: pointer;
    box-shadow: 1px 2px 4px rgb(20, 20, 20), 0 4px 12px rgb(10, 10, 10);
    
  }
  
  .nav-item {
    flex-direction: row-reverse;
    font-size: 0.8999rem;
    min-width: 120px;
    justify-content: space-between;
    transition: all 80ms ease;
  
    
    &:not(.active):hover {
      color: rgba(255, 255, 255, 0.87);
    }
  
    &:hover > .icon .subicon {
      height: 32px;
      width: 32px;
      border-radius: 32px;
      top: -16px;
      right: -16px;
      border-color: white;
    }
  
    &:not(:first-of-type) {
      border-left: 1px solid rgb(60, 60, 60);
    }
    &:not(:last-of-type) {
      border-right: 0.1rem solid black;
    }
  
    a {
      color: inherit;
      text-decoration: none;
      padding: 1ch;
    }
  
    .icon {
      padding: 1ch;
      position: relative;
  
      .subicon {
        text-shadow: none;
        transition: all 40ms ease;
        position: absolute;
        top: -3px;
        right: -3px;
        background: red;
        color: white;
        box-shadow: 0 0 4px rgba(41, 41, 41, 0.405);
        width: 18px;
        height: 18px;
        border-radius: 14px;
        font-size: 0.7em;
        font-weight: 700;
        display: inline-grid;
        place-items: center;
        border: 2px solid mix(white, red);
      }
    }
  
    .icon > svg {
      max-width: 16px;
    }
  }
  .navigaciq{
   
  
  margin-right: 10px;
  margin-left: 10px;
   border: none;
   width: 100%;
  margin-top: 10px;
  
  }
  .search-container{
    position: relative;
  }
  .search-container input{
    width: 350px;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    box-shadow: 0px 2px 5px rgb(0, 0, 0, 0.2);
    transition: 0.4s ease-in-out;
  }
  .search-container input:focus{
    width: 550px;
  }
  .search-container i{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #555;
    cursor: pointer;
  }
  #nzv-s{
    border: snow 1px solid; 
    border-radius: 5px;
    display: flex;
    align-items: center;
    text-shadow: 0 4px 10px ;
    padding: 10px;
  }
  .mqsto-nav{
    width: 200px;
  }
.nav-background{
  display: flex;
  align-items: center;
  border-radius: 50px;
  border: none;
  width: 100%;
  height: 150px;
  background-image: url(images/nav-background.webp);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 2); 
}

/* nav end */
/* HEADER */
.header {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  position: relative;
  text-align: center;
  margin-top: 30px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.header .text-overlay {
  background: rgba(255,255,255,0.7);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: inline-block;
}
.header .dobre-doshli {
  font-size: 2.2rem;
  color: #1e1e2f;
  margin-bottom: 10px;
}
.header-buttons {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  justify-content: center;
}
.buton1, .buton2 {
  background: #ffcc00;
  color: #222;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px #ffcc0033;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.buton1:hover, .buton2:hover {
  background: #ddb800;
  color: #111;
  transform: translateY(-2px) scale(1.04);
}
.location-btn-container {
  display: flex;
  justify-content: center;
  margin: 30px 0 10px 0;
}
.buton3 {
  background: #1e88e5;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px #1e88e533;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.buton3:hover {
  background: #1565c0;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* FEATURED PRODUCTS */
.featured-products {
  margin: 40px 0 0 0;
}

/* СЕТОВЕ */
.sets-section {
  margin: 60px 0 0 0;
  padding: 0 0 40px 0;
}
.sets-title {
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px #00000055;
}
.content4 h2 {
  font-size: 1.4rem;
  color: #222;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
.promo-note {
  font-weight: bold;
  color: #fff;           /* бял цвят за по-добра видимост */
  font-size: 18px;       /* леко по-голям размер */
  margin: 15px 0;        /* вертикални отстояния */
  text-align: center;    /* центриране на текста */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7); /* лек сенчест ефект за контраст */
}
.price {
  font-size: 1.2rem;
  text-align: center;
  margin: 5px 0 15px;
}
.price del {
  color: #888;
  margin-right: 8px;
}
.discounted-price {
  color: #d81b60;
  font-weight: bold;
}
.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}
.btn-details img,
.btn-buy img {
  width: 120px;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}
.btn-details img:hover,
.btn-buy img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* RESPONSIVE */
@media screen and (max-width: 900px) {
  .header .text-overlay {
    padding: 18px 8px;
  }
  .sets-title {
    font-size: 2.1rem;
  }
  .header .dobre-doshli {
    font-size: 1.3rem;
  }
  .buton1, .buton2, .buton3 {
    font-size: 1rem;
    padding: 10px 18px;
  }
}
@media screen and (max-width: 600px) {
  .header {
    min-height: 180px;
    margin-top: 10px;
  }
  .header .text-overlay {
    padding: 8px 2px;
  }
  .sets-title {
    font-size: 1.2rem;
  }
  .header-buttons {
    flex-direction: column;
    gap: 8px;
  }
  .location-btn-container {
    margin: 18px 0 8px 0;
  }
}
  .header img {
    width: 100%;
    height: 600px; /* Примерна височина, може да се коригира */
   object-fit: cover; /* Запазва пропорциите на изображението */
  }
  
  .header .text-overlay {
    position: absolute;
    top: 50%;
    left: 23%;
    transform: translate(-50%, -50%);
    font-size: 26px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  }
  .header .text-overlay p{
    position: relative;
    top: 50px;
    left: 55%;
    transform: translate(-50%, -50%);
    font-size: 18px;
  }
  .content1 {
    max-width: 1300px; /* Adjust the width as needed */
    margin: 0 auto;
    background: transparent; /* To make the content distinct */
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow for effect */
  }
  .snimka6{
    border-radius: 10%;
  }
  .buton1{
    background-color: white;
    width: 600px;
    position: absolute;
    margin-top: 100px;
  left: 30px;
    padding: 45px;
    align-items: left;
    background-color: transparent;
    background-image:  url(images/top-oferti.png);
  }
  .buton2{
    background-color: white;
    width: 600px;
    position: absolute;
    margin-top: 100px;
    left: 650px;
    padding: 45px;
    background-color: transparent;
    background-image:  url(images/outlet.png);
  }
  
  .buton3{
    background-color: white;
    width: 1100px;
    padding: 50px;
    position: absolute;
    margin-left: 380px;
    background: url(images/nashitemagazini.png);
    border-width: 3px;
    border-color: none;
  }
  /* Контент roll с прдукти */
  
  .wrapper2 {
    display: grid; /* Use grid layout */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Automatically adjust columns */
    gap: 20px; /* Space between the products */
    padding: 20px;
    margin: 0 50px; /* Adjust margin for better spacing */
}

.produkt {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}

.produkt:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}


.zaglavie {
    font-size: 22px;
    line-height: 28px;
    color: mediumaquamarine;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    padding: 10px;
    font-weight: bold;
}

.produkt-align {
    margin-top: 10px;
    
}

.parfumi {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.parfumi:hover {
    transform: scale(1.05);
}
.tekst {
  margin-left: 5px;
  color: #4a4a4a; /* Slightly darker text for better contrast */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Modern font */
  font-size: 16px; /* Increased font size */
  line-height: 1.6;
  padding: 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f8f9fa, #e0e0e0); /* Light gradient background */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow */
  transition: all 0.3s ease; /* Smooth transition for hover effect */
}

.tekst:hover {
  background: linear-gradient(135deg, #fff, #f1f1f1); /* Change gradient on hover */
  transform: scale(1.02); /* Slightly enlarge on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.tekst p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 10px 0;
}

.tekst span {
  color: #e83e8c; /* Add a different color to emphasize key words */
  font-weight: bold;
  
  
}

@media screen and (max-width: 989px) {
    .wrapper2 {
        grid-template-columns: 1fr; /* Stack products on smaller screens */
        margin: 0 20px;
    }
}
.wrapper3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-left: 10px; /* Reduced margin for mobile */
  margin-right: 10px; /* Reduced margin for mobile */
}

.content4 {
  width: 400px;
  margin: 10px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 2px;
  box-shadow: 0 0px 5px rgba(255, 254, 254, 0.5);
  /* Премахваме background-color от тук */
  background-color: transparent;
}

.text-container {
  background-color: #202020;
  padding: 10px;
  border-radius: 0 0 2px 2px; /* заобляне само в долната част */
  color: white;
}

.price {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}

#zaglavie1 {
  font-size: 33px;
  text-align: center;
}

#podzaglavie1 {
  font-size: 16px;
  text-align: center;
  color: blueviolet;
}

#cena {
  font-size: 33px;
  text-align: center;
  color: gray;
}

.buton4 {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

#strike {
  text-decoration: line-through red;
}

.buton-align {
  margin-top: 10px;
  margin-left: 60px;
}

#align-cacaotan {
  margin-top: 40px;
}

.buton-alignkupi {
  margin-left: 90px;
  margin-top: 7px;
}

/* Media Queries for responsiveness */
@media screen and (max-width: 989px) {
  .wrapper3 {
      flex-direction: column; /* Stack items vertically */
      margin-left: 0;
      margin-right: 0;
  }

  .content4 {
      width: 75%; /* Make content take up full width on mobile */
      height: auto; /* Allow content height to adjust */
      margin: 10px 0; /* Space out items on mobile */
  }

  #zaglavie1 {
      font-size: 26px; /* Adjust title size on mobile */
  }

  #podzaglavie1 {
      font-size: 14px; /* Adjust subtitle size */
  }

  #cena {
      font-size: 26px; /* Adjust price size */
  }

  

  .buton4 {
      flex-direction: column; /* Stack buttons vertically on mobile */
      justify-content: center;
      align-items: center;
      width: 125px;
      margin-left: 80px;
  }
  .buton-align {
    flex-direction: column; /* Stack buttons vertically on mobile */
    width: 150px;  
  }
  

  /* Ensure images scale correctly on mobile */
  .content4 img {
      width: 100%; /* Make images responsive */
      height: auto; /* Maintain aspect ratio */
  }
}
.content3 {
  max-width: 1200px;
  background-color: #f4f4f4;
  height: 115vh;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
  padding: 20px;
  border-radius: 10px;
}

.wrapper1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
  
}

.box1, .box2 {
  background-color: transparent;
  width: 500px;
  height: 300px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}

.box1:hover, .box2:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.media-item {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

@media screen and (max-width: 989px) {
  .wrapper1 {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .box1, .box2 {
    width: 100%;
    height: auto;
    max-width: 600px;
  }
  .content3 {
    background-color: transparent;
  }
}


     
  

  
/*MOBILE 

@media screen and (max-width: 989px) {
  .nav-background {
    flex-direction: column;
    height: auto;
    padding: 10px;
  }

  .navigaciq {
    width: 100%;
  }

  .menu {
    flex-direction: column;
    align-items: center;
    display: none; 
    width: 100%;
  }

  .menu.active {
    display: flex; 
  }

  .nav-item {
    width: 100%;
    justify-content: center;
    border: none;
    padding: 10px;
  }

  .search-container input {
    width: 100%;
    font-size: 16px;
  }

  .search-container input:focus {
    width: 100%;
  }

  
  .menu-toggle {
    display: block;
    background: #333;
    color: white;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    font-size: 20px;
    width: 100%;
  }
}

@media screen and (min-width: 979px) {
  .menu-toggle {
    display: none;
  }
}
/*nav end*/






@media screen and (max-width: 989px) {

  
  .header .text-overlay .dobre-doshli {
    font-size: 25px;
  }
  .header .text-overlay p{
    position: relative;
    top: 25px;
    left: 85%;
    font-size: 18px;
  }
  
  .buton1{
    background-color: white;
    width: 20em;
    position: absolute;
    margin-top: 0px;
  left: 75px;
    padding: 45px;
    align-items: left;
    background-color: transparent;
    background-image:  url(images/top-oferti.png);
  }
  .buton2{
    background-color: white;
    width: 20em;
    position: absolute;
    margin-top: 100px;
    left: 75px;
    padding: 45px;
    background-color: transparent;
    background-image:  url(images/outlet.png);
  }
  .buton3{
    background-color: white;
    width: 28em;
    padding: 50px;
    position: absolute;
    margin-left: 0px;
    background: url(images/nashitemagazini.png);
    border-width: 3px;
    border-color: none;
  }
  .snimka6 {
    width: 100%;
  }
}
  @media screen and (max-width: 989px) {
    .wrapper2 {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Adjust for tablet screens */
        margin: 0 30px;
    }

    .tekst {
        font-size: 14px;
        padding: 15px;
    }

    .zaglavie {
        font-size: 20px; /* Slightly smaller title for tablet */
    }
}

.menu-toggle {
  display: inline-block;
  background-color: #ffffff; /* топъл оранжев цвят */
  color: #000000;
  /* font-weight: bold; */
  font-size: 1.2rem;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: cell;
  user-select: center;
  text-align: center;
  /* transition: background-color 0.3s ease; */
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.2); */
  /* margin-top: 15px; */
  width: fit-content;
}

.menu-toggle:hover {
  background-color: #d18e1b; /* по-тъмен оранжев при hover */
}

.menu-toggle:active {
  background-color: #b37a17; /* още по-тъмен при натискане */
}

.no-underline {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.nav-magazini-btn {
  padding: 0 8px !important;
  /* font-size: 0.92rem !important; */
  background: #fffbe7 !important;
  /* border-radius: 999px !important; */
  /* border: 1px solid #ffe082 !important; */
  margin-left: 8px;
  margin-right: 8px;
  height: 32px;
  /* display: flex; */
  align-items: center;
  /* box-shadow: 0 1px 4px #ffecb366; */
}
 .nav-magazini-btn a {
  /* color: #b8860b !important; */
  /* font-weight: 600; */
  /* text-decoration: none; */
  /* display: flex; */
  /* align-items: center; */
  /* font-size: 0.95em; */
  /* border-radius: 999px !important; */
} 
.nav-magazini-btn:hover, .nav-magazini-btn a:hover {
  background: #fff3c0 !important; 
  color: #b8860b !important;
  /* border-radius: 999px !important; */
}
/* .nav-magazini-btn .magazini-text {
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color 0.2s, transform 0.2s;
} */
/* .nav-magazini-btn:hover .magazini-text {
  color: #ffe082 !important;
  /* ransform: translateY(-2px) scale(1.04); */
/* } */ */
.nav-magazini-btn img {
  height: 18px;
  margin-right: 4px;
  /* border-radius: 50% !important; */
  /* filter: drop-shadow(0 0 2px #b8860b); */
}
@media screen and (max-width: 900px) {
  /* .nav-magazini-btn {
    font-size: 0.85rem !important;
    padding: 0 6px !important;
    height: 28px;
    border-radius: 999px !important;
  }
  .nav-magazini-btn img {
    height: 15px;
    border-radius: 50% !important; */
  /* } */
}

/* @media screen and (max-width: 989px) {
    .wrapper2 {
        grid-template-columns: 1fr; /* Stack products on smaller screens */
        /* margin: 0 20px;
    }

    .tekst {
        font-size: 13px; /* Smaller text for mobile */
        /* padding: 10px;
    } */

    /* .zaglavie {
        font-size: 18px; /* Adjust title size for mobile */
    /* } */ */

    /* .parfumi {
        width: 80%; /* Smaller images on mobile for better fitting */
    /* } */
/* } */ */ */ */


