* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #444444;
	margin: 0px;
	height: 200px;
	margin-top: 15px;
}
.product-content-f{
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: space-evenly;
	width: 300px;
	color: #F1F1F1;
	flex-wrap: wrap;
	font-weight: 300;
	font-size: 15px;
}
.f-container{
	display: flex;
	flex-direction: row;
	height: 200px;
	width: 100%;
	margin-top: auto;
	margin-bottom: auto;
	align-content: center;
	justify-content: space-evenly;

}
.about-content{
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: space-evenly;
	width: 300px;
	color: #F1F1F1;
	flex-wrap: wrap;
	font-weight: 300;
	font-size: 15px;
}
.product-content{
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: space-evenly;
	width: 300px;
	color: #F1F1F1;
	flex-wrap: wrap;
	font-weight: 300;
	font-size: 15px;
}
.contact-content{
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: space-evenly;
	width: 300px;
	color: #F1F1F1;
	flex-wrap: wrap;
	font-weight: 300;
	font-size: 15px;
}
.about{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	width: 300px;
	color: #F1F1F1;
	font-weight: 500;
	font-size: 20px;
}
.filters {
  background-color: #202020;
  color: #ffffff;
  padding: 15px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  font-family: helvetica, sans-serif;
  margin-top: 20px;
  width: 90%;
  justify-self: center;
}
.filters select,
.filters button {
  background-color: #303030;
  color: #ffffff;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  cursor: pointer;
}
.filters select:hover,
.filters button:hover {
  background-color: #404040;
}
.filters label {
  margin-top: auto;
  margin-bottom: auto;
}
.products{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	width: 300px;
	color: #F1F1F1;
	font-weight: 500;
	font-size: 20px;
}
.contact{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	width: 300px;
	color: #F1F1F1;
	font-weight: 500;
	font-size: 20px;
}

.footer a:link {
  	text-decoration: none;
  	color: #F1F1F1;
	padding-top: 5px;
	padding-bottom: 5px;
}

.footer a:visited {
  	text-decoration: none;
	color: #F1F1F1;
}
.socials-container ul {
	display: flex;
	flex-direction: row;
	gap: 20px;
}
.socials-container li {
	list-style: none;
	--color: #4a08c4;
}
.socials-container a {
	display: flex;
	width: 100px;
	height: 100px;
	background: #18191f;
	border-radius: 15px;
	box-shadow: -2px -2px 3px #ffffff0d, 3px 3px 3px #00000033;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}
.bar {
	display: block;
	height: 3px;
	width: 100%;
	position: absolute;
	background: linear-gradient(-45deg, #b62020, #cb2424, #fe2e2e, #fe5757, #fe8181);
	background-size: 400% 400%;
	animation: gradient 7s ease infinite;
}
.head-container {
	gap: 200px;
	margin-top: 0px;
	display: flex;
	flex-direction: row;
	position: relative;
	background-color: #000;
	width: 100%;
	align-items: center;
	flex-wrap: wrap;
	height: 110px;
	justify-content: center;
}
.header-links {
	display: flex;
	flex-direction: row;
	width: 500px;
	height: 50px;
	align-items: center;
	justify-content: space-evenly;
}
.header-links a {
	color: #F1F1F1;
	font-family: helvetica, sans-serif;
	font-size: 23px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.3s;
}
.header-links a:hover {
	color: #dc2430;
}
.head-container .head-logoBx {
	position: relative;
	width: 400px;
	height: 50px;
	z-index: 1;
	justify-items: center;
	align-items: center;
}
.head-container .head-logoBx img {
	position: relative;
	max-width: 100%;
	max-height: 100%;
	border-radius: 5px;
	object-fit: contain;
}
body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a; 
    color: #fff;
}

.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px;
}

.product {
    background-color: #333;
    border: 2px solid #800707;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product h3 {
    margin-top: 10px;
    font-size: 1.5rem;
    color: #fff;
}

.product .description {
    font-size: 1rem;
    color: #bbb;
    margin: 10px 0;
}

.product .price {
    font-size: 1.2rem;
    color: #e53935; 
    margin: 10px 0;
}

.product button {
    background-color: #e53935; 
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.product button:hover {
    background-color: #c62828; 
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
}

.modal-content {
  background-color: #1a1a1a; 
  margin: auto;
  padding: 0;
  border: 2px solid #ff2e2e;
  width: 80%;
  max-width: 900px;
  border-radius: 8px;
  color: #fff;
}

.modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  padding: 10px;
  cursor: pointer;
}
.modal-close:hover {
  color: #ff2e2e;
}

.modal-body {
  display: flex;
  gap: 20px;
  padding: 20px;
}
.modal-left {
  flex: 1;
}
.modal-left img {
  width: 100%;
  border-radius: 6px;
}
.modal-right {
  flex: 1;
}

.modal-right h3 {
  margin-top: 10px;
  color: #ff2e2e;
}

.color-options button {
  background-color: #333;
  color: #fff;
  border: 1px solid #666;
  padding: 5px 10px;
  margin: 5px;
  cursor: pointer;
  border-radius: 4px;
}
.color-options button:hover {
  border-color: #ff2e2e;
}

.extra-options label {
  display: block;
  margin-bottom: 5px;
}
.extra-options input {
  margin-right: 5px;
}

#modal-specs li {
  border-bottom: 1px solid #333;
  padding: 3px 0;
}
.color-options {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}
.color-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.color-circle:hover {
  transform: scale(1.1);
}
.color-circle.selected {
  border-color: #ff2e2e; 
}

.extra-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #222;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #444;
  cursor: pointer;
  margin-bottom: 6px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.extra-options label:hover {
  border-color: #ff2e2e;
  background-color: #2a2a2a;
}
.extra-options input[type="checkbox"] {
  accent-color: #ff2e2e; 
  transform: scale(1.2);
}


@media only screen and (max-width: 768px) {
.head-container{
flex-direction: column;
align-items: center;
justify-items: center;
gap: 0px;
  }
  .head-container .header-links {
	  width: 100%;
  }
  .head-container .head-logoBx {
	display: flex;
	flex-direction: row;
	justify-content: center;
	position: relative;
	width: 400px;
	height: 50px;
	justify-items: center;
	padding-bottom: 5px;
  }
  .head-container .head-logoBx a{
		height: 100%;
	}
  .head-container .head-logoBx .logo-link {
	height:100%
  }
  .footer{
	padding-bottom: 40px;
	height: auto;
  }
  .f-container{
	flex-direction: column;
	height: auto;
	width: 100%;
	margin-top: auto;
	margin-bottom: auto;
	align-content: center;
	justify-content: center;
  }
  .about, .contact, .products, .about-content, .product-content-f, .contact-content{
	align-content: flex-start;
  }
  .about, .contact, .products{
	padding-left: 20px;
  }
.filters {
	margin-left: 10px;
}
}

.filters {
	margin-left: 10px;
}
}
