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

@font-face {
  font-family: 'copper';
  src: url('Copperplate Gothic Bold.otf') format('opentype');
}

body, html {
  background: lightgrey;
  font-family: Arial, sans-serif;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background: lightgray;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-left i,
.nav-right i {
  font-size: 1.2rem;
  color: #01381C;
  margin: 0 0.5rem;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.log-img {
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(15%) sepia(99%) saturate(1128%) hue-rotate(95deg) brightness(93%) contrast(96%);
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  box-sizing: border-box;
}


.hero {
  flex: 1;
  background: url('model2.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 250px;
  position: relative;
}

.brand-name {
  font-size: 12vw;
  font-family: 'copper';
  color: white;
  width: 100%;
  text-align: center;
  margin: 0;
  position: relative;
  top: -90px;
}

.section-title {
  font-family: 'copper';
  color: #01381C;
  width: 100%;
  text-align: center;
  margin-top: 45px;
  font-size: 2rem;
}


.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: 2rem 1rem;
  background: lightgrey; 
}

.product {
  background: lightgrey; 
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: center;
  padding: 1rem;
  transition: transform 0.2s ease;
}

.product:hover {
  transform: scale(1.02);
}

.product img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.product h3 {
  font-size: 1.1rem;
  margin: 0.8rem 0 0.2rem;
}

.product p {
  color: #555;
  margin-bottom: 1rem;
}

@media (min-width: 900px) {
  .brand-name {
    font-size: 7rem;
  }
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}


.product-card.animate {
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp 0.6s ease forwards;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items:stretch;
  gap: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-left: 1px;
}

.product-card {
  background: white;
  border: 1px solid #ccc;
  border-radius: 0px;
  overflow: hidden;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.product-card img,
.product-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background-color: #f9f9f9;
}

.product-card button.add-to-cart {
  margin-top: 20px;
  padding: 10px 16px;
  background-color: #01381C;
  color: white;
  border: 1px solid black;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.product-card button.add-to-cart i {
  font-size: 16px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.product-card button.add-to-cart:hover {
  background-color: white;
  color: black;
}

.product-card h3 {
  font-size: 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 10px 0 5px;
}

.product-card p {
  font-size: 0.9rem;
  color: #666;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 10px;
}



.product-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  background-color: #f9f9f9;
}
.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-items: center;
  padding: 20px;
}


.single-product-page {
  background: lightgrey;
  font-family: Arial, sans-serif;
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.single-product-container {
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  max-width: 900px;
  width: 90%;
  padding: 30px;
  gap: 30px;
}

.main-product-image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  background-color: #f9f9f9;
}

.product-details h1 {
  font-family: 'copper';
  color: #01381C;
  font-size: 2rem;
  margin-bottom: 10px;
}

.product-details p.price {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.product-details p.description {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;

}

.add-to-cart-btn {
  padding: 12px 20px;
  background-color: #01381C;
  color: white;
  border: 1px solid black;
  font-size: 16px;
  font-family: 'Helvetica';
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.3s ease;
  width: 100%;
  
}

.add-to-cart-btn:hover {
  background-color: white;
  color: black;
  
}

.extra-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.extra-images img {
  width: 100px;
  height: 130px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #f1f1f1;
}

.product-detail-container {
  display: flex;
  justify-content: space-between;
  padding: 100px 40px 40px;
  gap: 60px;
  flex-wrap: wrap;
  
}

.left-column {
  flex: 1;
  min-width: 300px;
}

.right-column {
  flex: 1;
  min-width: 300px;
}

.main-product-image {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  border-radius: 0px;
}

.extra-images {
  display: flex;
  gap: 10px;
  border-radius: 0px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.extra-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid #ccc;
  cursor: pointer;
}

#product-name {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-price {
  font-size: 22px;
  font-weight: 500;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 15px;
  color: #333;
}

#product-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.add-to-cart {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #01381C;
  color: white;
  margin-top: 30px;
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  transition: background 0.3s;
}

.add-to-cart:hover {
  background-color: #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  background-color: lightgrey;
  color: white;
  padding: 0 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-left i,
.nav-right i {
  font-size: 22px;
  cursor: pointer;
}

.nav-center .logo img {
  height: 36px;
}

.sidebar {
margin-top: 50px;
  position: fixed;
  top: 0;
  left: -240px;
  width: 240px;
  height: 100%;
  background-color: lightgray;
  color: white;
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 999;
}

.sidebar a {
  display: block;
  margin: 10px 0;
  color: #01381C;

  text-decoration: none;
  font-size: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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


.product-card.animate {
  opacity: 1;
  transform: translateY(0);
}

#hamburger-product {
  font-size: 22px;
  cursor: pointer;
  color: #01381C;
  margin-left: 8px;
  z-index: 1001;
}

#sidebar-product {
  position: fixed;
  top: 10px; 
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: lightgrey;
  padding-top: 20px;
  transition: 0.3s;

  z-index: 1000;
  overflow-y: auto;
}

#sidebar-product.active {
  left: 0;
}

#sidebar-product ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#sidebar-product ul li {
  padding: 10px 20px;
}

#sidebar-product ul li a {
  display: block;
  margin: 10px 0;
  color: #01381C;
  margin-top: -10px;
  
  margin-left: -20px;
  text-decoration: none;
  font-size: 20px;
  font-family: 'Segoe UI',
}


#sidebar-product ul li a:hover {
  background-color: #575757;
  border-radius: 4px;
}

.product-card {
  display: block;
  opacity: 1;
  visibility: visible;
}
.close-btn {
  font-size: 25px;
  color: #01381C;
  cursor: pointer;
  display: block;
  text-align: left;
  
}
