*{
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: Arial, sans-serif;
}
body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: white;
  margin: 0;
  padding: 0;
}
/* Header //////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.header {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo{
  margin-right: 30px;
}
.logo img {
  height: 128px;
  width: 128px;
}
.search-container {
  display: flex;
  flex: 1;
  margin: 0 15px;
  align-items: center;
  min-width: 200px;
}
.search-bar {
  flex: 1;
  padding: 8px;
  border-radius: 5px 0 0 5px;
  border: none;
}
.search-button {
  padding: 8px 15px;
  background-color: #444;
  color: white;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
.header-buttons {
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  align-items: center;
  gap: 40px;
}
/* Koszyk //////////////////////////////////////////////////////////////////////////////////////////////////////////*/
#cart {
  position: relative;
  cursor: pointer;
  height: 64px;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cart-count {
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 4px 8px;
  font-size: 0.8rem;
  position: absolute;
  top: -5px;
  right: -10px;
}
.cart-menu {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  background-color: #1a1a1a;
  color: white;
  width: 300px; 
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  padding: 15px;
  z-index: 100;
}
.cart-menu h3 {
  margin: 0;
  font-size: 1rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #444;
}
.cart-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #444;
}
.cart-item img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin-right: 10px;
}
.cart-item-info {
  flex: 1;
}
.cart-item-info p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: bold;
}
.cart-item-info span {
  font-size: 0.8rem;
  color: #bbb;
}
.cart-button {
  display: block;
  background-color: #16a34a; 
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  border: none;
}
.cart-button:hover {
  background-color: #12833c;
}
#cart:hover .cart-menu {
  display: block;
}
.cart-item img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin-right: 10px;
}
.delete-button{
  display: block;
  color: #ff0000; 
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 24px;
}
.delete-button:hover {
  color: #831212;
}
.cart-empty{
  text-align: center;
  padding: 10px;
}
#additional-info {
  margin-top: 20px;
  background: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
}
#additional-info h3 {
  text-align: center;
  font-size: 24px;
}
.additional-data{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.form-group input {
  width: 90%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #555;
  border-radius: 5px;
  background: #333;
  color: white;
  font-size: 16px;
}
.form-group input:focus {
  border-color: #888;
}
.form-group label{
  font-weight: bold;
}
.form-paymant{
  align-items: center;
  padding: 20px;
  font-size: 18px;
}
.form-paymant p, .form-paymant label{
  margin: 5px;
}
/* Konto         //////////////////////////////////////////////////////////////////////////////////////////////////// */
.account {
  position: relative;
  cursor: pointer;
  height: 64px;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.account-welcome {
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.account-menu {
  display: none;
  position: absolute;
  top: 50px;
  left: -110px;
  right: 0;
  background: #1a1a1a;
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  width: 250px;
  padding: 10px 15px;
  z-index: 100;
}
.account:hover .account-menu {
  display: block;
}
.account-login,
.account-register {
  display: block;
  width: 90%;
  padding: 10px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.account-login:hover,
.account-register:hover {
  background-color: #444;
}
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 10px 0;
  font-size: 0.9rem;
  color: #ccc;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
  margin: 0 10px;
}
.account-options {
  list-style: none;
  padding: 0;
  margin: 0;
}
.account-options li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  text-decoration: none;
}
.account-options a{
  text-decoration: none;
  color: white;
}
.account-options li i {
  font-size: 1.2rem;
}
.account-options li:hover {
  background-color: #333;
  border-radius: 5px;
  padding-left: 10px;
}
/* Navigation ////////////////////////////////////////////////////////////////////////////////////////////////////*/
.nav {
  background-color: #333;
  padding: 10px 20px;
  color: white;
}
.categories {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.category {
  position: relative;
  padding: 10px 15px;
}
.category a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  display: block;
}
.category:hover {
  background-color: #444;
  border-radius: 5px;
}
.subcategories {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a1a;
  list-style: none;
  padding: 10px;
  margin: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  min-width: 200px;
  z-index: 1000;
}
.category:hover .subcategories {
  display: block;
}
.subcategory {
  padding: 8px 15px;
}
.subcategory a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 5px;
}
.subcategory a:hover {
  background-color: #555;
  border-radius: 5px;
}
/* Baner ////////////////////////////////////////////////////////////////////////////////////////////////////*/
.banner {
  background: black;
  text-align: center;
  height: 400px;
}
/* Produkty ////////////////////////////////////////////////////////////////////////////////////////////////////*/
.products {
  background-color: #121212;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}
.recommended-section {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background-color: #1e1e1e;;
  border-radius: 12px;
}
.recommended-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.product-card {
  background-color: #2c2c2e;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
.product-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
.product-card .old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}
.product-card .description {
  font-size: 12px;
  color: #777;
}
.product-card .price {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
.product-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff4500;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 8px;
}
.add-to-cart {
  display: inline-block;
  bottom: 0;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background-color: #18c41b;
  color: white;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}
.add-to-cart:hover {
  background-color: #019403;
  transform: translateY(-2px);
}
.add-to-cart:active {
  background-color: #019403;
  transform: translateY(0);
}
.product-card {
  background-color: #2c2c2e;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.9);
}
/* Regulamin /////////////////////////////////////////////////////////////////////////////////////////////////*/
.regulamin {
  background-color: #121212;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
  padding: 20px;
  height: auto;
  text-align: center;
}
.regulamin h1 {
  font-size: xx-large;
}
.regulamin h1,.regulamin h2 {
  font-weight: bold;
  margin: 10px;
}
/* O-nas /////////////////////////////////////////////////////////////////////////////////////////////////*/
.tlo{
  background-color: #121212;
  color: white;
  padding: 20px;
}
.o-nas {
  background-color: #2c2c2e;
  color: #ffffff; 
  padding: 50px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.o-nas h2 {
  font-size: 2em;
  color: #00aaff; 
  margin-bottom: 20px;
}

.o-nas p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.o-nas ul li {
  font-size: 1.1em;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  margin: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.o-nas ul li::before {
  content: "✔";
  color: #00ffcc;
  font-weight: bold;
  margin-right: 10px;
}

.o-nas h3 {
  color: #ffaa00;
  margin-top: 30px;
}
.o-nas a{
  text-decoration: none;
  color: white;
}
.o-nas a:hover{
  color: #ffaa00;
}
/* Polityka prywatnosci /////////////////////////////////////////////////////////////////////////////////////////////////*/
.polityka-prywatnosci {
  background-color: #2c2c2e;
  color: #ffffff; /* Jasny tekst */
  padding: 50px;
  border-radius: 10px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  }
  
  .polityka-prywatnosci h1 {
  font-size: x-large;
  font-weight: bold;
  margin-bottom: 15px;
  color: #cccccc;
  }
  
  .polityka-prywatnosci h2 {
  font-size: large;
  font-weight: bold;
  margin-top: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #444;
  color: #bbbbbb;
  }
  
  .lista-danych, .lista-celow, .lista-prawna, .lista-prawa, .lista-kontakt {
  list-style: none;
  padding: 0;
  }
  
  .lista-danych li, .lista-celow li, .lista-prawna li, .lista-prawa li, .lista-kontakt li {
  background: rgba(255, 255, 255, 0.05);
  margin: 5px 0;
  padding: 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: start;
  }
  
  .lista-danych li::before, .lista-celow li::before, .lista-prawna li::before, .lista-prawa li::before {
  content: "●";
  color: #88cc88;
  font-weight: bold;
  margin-right: 8px;
  }
  
  .data {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9em;
  color: #aaaaaa;
  }
/* Kontakt ////////////////////////////////////////////////////////////////////////////////////////////////////*/
.kontakt {
  max-width: 1000px;
  margin: auto;
  background: #1e1e1e;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.tytul {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
}

.naglowek {
  font-size: 1.5em;
  margin-top: 20px;
  color: #88cc88;
}

.dane-kontaktowe {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
}

.info {
  flex: 1;
}

.map-container {
  flex: 1;
}

.lista-kontakt, .lista-godziny {
  list-style: none;
  padding: 0;
}

.lista-kontakt li, .lista-godziny li {
  margin: 10px 0;
  font-size: 1.1em;
}

.mapa {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  border: none;
}

.formularz-kontaktowy {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
}

.formularz-kontaktowy input, .formularz-kontaktowy textarea {
  width: 100%;
  max-width: 600px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #555;
  background: #2c2c2e;
  color: white;
  font-size: 1em;
}

.formularz-kontaktowy button {
  background: #88cc88;
  color: #1c1c1e;
  font-size: 1.2em;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.formularz-kontaktowy button:hover {
  background: #77bb77;
}

/* Zamównia ////////////////////////////////////////////////////////////////////////////////////////////////////*/
.zamowienia-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
  color: white;
}
.zamowienia-table {
  color: white;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;

}
.order-card {
  background-color: #222;
  display: flex;
  align-items: center;
  border-radius: 8px;
  width: 1000px;
  height: 150px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.order-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-direction: column;
  padding-left: 15px;
  width: 30%;
  background-color: #2c2c2c;
  height: 150px;
  border-radius: 8px 0 0 8px;
}
.order-additional{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  width: 50%;
  height: 150px;
  border-radius: 8px;
}
.order-status {
  font-weight: bold;
  color: #ffffff;
  margin-top: 20px;
  margin-left: 20px;
}
.order-date {
  font-size: 14px;
  color: #888;
  margin-left: 20px;
}
.order-price {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-left: 20px;
}
.order-details{
  color: #888;
}
.order-button{
  width: 20%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-button a{
  background: #00b600;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  display: block;
  width: 80px;
  text-align: center;
  text-decoration: none;

}
.order-button a:hover {
  background: #009900;
}
.product-image, .product-image img {
  width: 70px;
  height: 60px;
  background-color: #333;
  border-radius: 5px;
}
.product-image{
  margin: 10px;
}
/* Profil ////////////////////////////////////////////////////////////////////////////////////////////////////*/
.profile-container {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  background-color: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
}
.profile-container h2 {
  margin-bottom: 20px;
}
.profile-data, .profile-pass{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}
.profile-data div, .profile-pass div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
}
.profile-input {
  width: 50%;
  padding: 12px;
  margin: 10px auto;
  border: 1px solid #333;
  border-radius: 5px;
  background-color: #222;
  color: white;
  font-size: 16px;
}
.profile-input:focus, .profile-input:hover {
  border-color: #00b600;
  background-color: #444;
  transition: 0.2s;
}
.error {
  color: red;
  font-size: 0.9em;
}
.profile-button{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}
.apply-button {
  width: 50%;
  padding: 10px;
  background-color: #00b600;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.4s;
}
.apply-button:hover {
  background-color: #009900;
}
.delete-button {
  width: 50%;
  padding: 10px;
  background-color: #b60000;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.4s;
}
.delete-button:hover {
  background-color: #990000;
}
.alert {
  text-align: center;
  margin-bottom: 10px;
  color:red;
}
/* Wiadomości ////////////////////////////////////////////////////////////////////////////////////////////////////*/
.wiadomosci-table {
  color: white;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;

}
.wiadomosc {
  background-color: #222;
  display: flex;
  align-items: center;
  border-radius: 8px;
  width: 1000px;
  height: 150px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.wiadomosci-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-direction: column;
  padding-left: 15px;
  width: 30%;
  background-color: #2c2c2c;
  height: 150px;
  border-radius: 8px 0 0 8px;
}
.wiadomosci-tresc{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  width: 50%;
  height: 150px;
  border-radius: 8px;
  padding: 10px;
}
.wiadomosci-text{
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.wiadomosci-imie {
  font-weight: bold;
  color: #ffffff;
  margin-top: 20px;
  margin-left: 20px;
}
.wiadomosci-date {
  font-size: 14px;
  color: #888;
  margin-left: 20px;
}
.wiadomosci-email {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-left: 20px;
}
.wiadomosci-button{
  width: 20%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wiadomosci-button a{
  background: #00b600;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  display: block;
  width: 80px;
  text-align: center;
  text-decoration: none;

}
.wiadomosci-button a:hover {
  background: #009900;
}
/* zamówienia szczegóły ////////////////////////////////////////////////////////////////////////////////////////////////////*/
.kontener-zamowien {
  color: white;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
padding: 10px;
}
.karta-zamowienia {
background-color: #222;
display: flex;
align-items: center;
border-radius: 8px;
width: 1000px;
height: 150px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.informacje-zamowienia {
display: flex;
flex-direction: column;
justify-content: space-around;
padding-left: 15px;
width: 30%;
background-color: #2c2c2c;
height: 100%;
border-radius: 8px 0 0 8px;
color: white;
}
.status-zamowienia {
font-weight: bold;
}
.data-zamowienia, .id-zamowienia, .suma-zamowienia {
font-size: 14px;
color: #ccc;
}
.suma-zamowienia {
font-size: 18px;
font-weight: bold;
}
.produkty-zamowienia {
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
width: 50%;
height: 100%;
padding: 10px;
}
.obrazek-produktu {
width: 50px;
height: 50px;
border-radius: 8px;
margin: 0 5px;
}
.przycisk-szczegoly {
width: 20%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.przycisk-szczegoly a, .przycisk-szczegoly button {
background: #00b600;
color: white;
padding: 10px 15px;
border: none;
cursor: pointer;
font-size: 16px;
border-radius: 5px;
text-decoration: none;
text-align: center;
}
.przycisk-szczegoly a:hover, .przycisk-szczegoly button:hover {
background: #009900;
}
.produkty-zamowienia form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.produkty-zamowienia select {
  background-color: #2c2c2c;
  color: white;
  border: 1px solid #444;
  padding: 8px;
  border-radius: 5px;
  font-size: 16px;
}

.produkty-zamowienia select:focus {
  outline: none;
  border-color: #00b600;
}

.produkty-zamowienia button {
  background: #00b600;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: background 0.3s;
}

.produkty-zamowienia button:hover {
  background: #009900;
}
/* Edycja produktów ////////////////////////////////////////////////////////////////////////////////////////////////////*/
.produkty-edycja-data{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.produkty-edycja-input{
    padding: 12px
}
.produkty-edycja-inputy input, .produkty-edycja-inputy textarea{
  width: 90%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #555;
  border-radius: 5px;
  background: #333;
  color: white;
  font-size: 16px;
}
.produkty-edycja-inputy select {
  background-color: #2c2c2c;
  color: white;
  border: 1px solid #444;
  padding: 8px;
  border-radius: 5px;
  font-size: 16px;
}

.produkty-edycja-inputy select:focus {
  outline: none;
  border-color: #00b600;
}
.produkty-edycja-inputy input:focus {
  border-color: #888;
}
.produkty-edycja-inputy label{
  font-weight: bold;
}
#przycisk {
    background: #00b600;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}
#przycisk:hover {
    background: #009900;
}
/* Footer ////////////////////////////////////////////////////////////////////////////////////////////////////*/
.footer {
  background-color: #222222;;
  color: white;
  padding: 40px 20px;
}
.category2{
  max-width: 1250px;
  margin: 0 auto;

}
.category2 h2 {
  margin: 5px;
}
.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-column {
  margin: 10px;
}
.footer-column h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.footer-column h3 a{
  font-size: 16px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-column ul{
  list-style: none;
  margin: 0;
}
.footer-column ul li {
  margin-bottom: 8px;
}
.footer-column ul li a{
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}
.footer-column ul li a:hover, .footer-column h3 a:hover  {
  color: #0078ff;
}
#kol3{
  order: 3;
}
#kol7{
  order: 7;
}
.contact-icons{
  padding-top: 5px;
  padding-bottom: 5px;
}
.contact-icons li{
  display: block;
}
.social-icons li {
  display: inline-block;
  margin: 5px 8px;
}
.contact-icons li a,
.social-icons li a {
  color: #ccc;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px; 
}
.contact-icons li a:hover,
.social-icons li a:hover {
  color: #0078ff;
}
.social-icons li a {
  font-size: 18px;
}
.autor {
  text-align: center;
  margin-top: 20px;
}