* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.content-wrapper {
  width: 80%;
  max-width: 4600px;  /* lub więcej, jak chcesz */
  margin: 0 auto;
  padding: 0 20px;
}
/* Górny pasek */
.top-bar {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0 20px;
}

.logo a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: black;
}

.logo .highlight {
  color: red;
}

.top-nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

.top-nav a {
  text-decoration: none;
  color: black;
}

.search-and-icons {
  display: flex;
  gap: 10px;
}

.search-and-icons input {
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.search-and-icons .icon {
  font-size: 1.2rem;
}

/* Menu kategorii */
.category-menu {
  background-color: black;
  color: white;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .category-menu .menu {
    list-style: none;

  }
}
@media (min-width: 768px) {
  .category-menu .menu {
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 15px;
  }
}

.category-menu .menu a {
  text-decoration: none;
  color: black;
  font-size: 0.9rem;
  font-weight: 500;
  /*padding: 10px 15px;*/
  display: block;
}
.category-menu .megamenu a:hover {
  text-decoration: underline;
}

.logo a {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
}
.logo img {
  max-height: 50px;
}
.top-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-nav ul li {
  margin: 0 15px;
}

.top-nav ul li a {
  color: black;
  text-decoration: none;
  font-size: 1rem;
}

.search-and-icons {
  display: flex;
  align-items: center;
}

.search-form {
  margin-right: 20px;
}

.search-form input {
  padding: 5px;
  border: none;
  border-radius: 4px;
}

.search-form button {
  padding: 5px 10px;
  background-color: #444;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.icons a {
  margin-left: 10px;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
}

.category-menu .menu {
  position: relative;
}

.category-menu .megamenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  z-index: 1000;
}

.category-menu .menu li:hover .megamenu {
  display: block;
}

.category-menu .megamenu .content-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
}

.megamenu h4 {
  margin-bottom: 10px;
  font-weight: bold;
}

.megamenu ul {
  list-style: none;
  padding: 0;
}

.megamenu li {
  margin: 5px 0;
}


@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-and-icons {
    margin-top: 10px;
  }

  .category-menu {
    display: none; /* Ukryj menu kategorii na małych ekranach */
  }
}
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: black;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }

  .category-menu {
    display: none;
  }

  .category-menu.open {
    display: block;
  }
}

.breadcrumb {
  padding-top: 10px;
  padding-bottom: 20px;
  font-size: 14px;
}

nav[aria-label="Breadcrumb"] ul {
  list-style: none;
  padding: 0;
}

nav[aria-label="Breadcrumb"] li {
  display: inline;
  margin-right: 10px;
}

nav[aria-label="Breadcrumb"] a {
  color: #252525;
  text-decoration: none;
}

nav[aria-label="Breadcrumb"] li:after {
  content: ">";
  margin-left: 10px;
}

nav[aria-label="Breadcrumb"] li:last-child:after {
  content: "";
}
.footer {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 40px;
  background-color: #000;
  color: #fff;
  gap: 20px;
}

.footer div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer h4 {
  font-size: 1.2em;
  margin: 0 0 10px;
}

.footer input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
}

.footer button {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.footer a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .social-icons {
  display: inline;
}

.footer .social-icons a {
  font-size: 1.5em;
}

.footer .copyright {
  grid-column: span 5;
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
  border-top: 1px solid #444;
  padding-top: 20px;
}

@media (max-width: 1024px) {
  .footer {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }

  .footer .copyright {
    grid-column: span 2;
  }
}

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

  .footer .copyright {
    grid-column: span 1;
  }
}
.red-section {
  display: flex;
  color: #ed6b84;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.red-section h1{
  display: flex;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.red-section .red-bar{
  background-color: #ed6b84;
  width: 20px;
  height: 40px;
  margin-right: 20px;
  border-radius: 5px;
}

.center-block {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 50px;
}
.product-related-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    background-color: white;
    display: block;
}

.cart-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  width: 320px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cart-dropdown.show {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.cart-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 10px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.cart-item-details {
  font-size: 0.8rem;
  color: #666;
}

.cart-item-actions {
  display: flex;
  gap: 2px;
}

.cart-item-actions button {
  background: black;
  color: white;
  border: none;
  padding: 2px 6px;
  font-size: 0.8rem;
  border-radius: 4px;
  cursor: pointer;
}

.cart-item-actions button:hover {
  background: #d54b6c;
}

.cart-checkout {
  text-align: center;
  margin-top: 15px;
}

.cart-checkout a {
  background: black;
  color: white;
  padding: 8px 15px;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
}

.cart-checkout a:hover {
  background: #333;
}
.brand-logo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-green { background-color: green; }
.dot-yellow { background-color: orange; }
.dot-red { background-color: red; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
ul {
    margin-bottom: 0 !important;
}
/* Ukryj tekst w dropdownie, zostawiając flagę */
  .choices__item--selectable {
    font-size: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .choices__item--selectable .flag-icon {
    font-size: 20px;
  }

  .choices__inner {
    padding: 0.3rem;
  }

  .flag-icon {
    display: inline-block;
    width: 1.6em;
    height: 1.2em;
    background-size: cover;
  }