/* styles.css */
* {
  font-family: "Lacquer", cursive;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #f4f4f4;
  color: #2a2a2a;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: linear-gradient(to right, #f4f4f4, #ffffff);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease;
}

.logo {
  width: 30px;
  height: 30px;
}

nav {
  margin-top: 0.5rem;
}

.nav-list li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-list li a:hover,
.nav a.active,
.nav-list li a.active {
  color: #61537c;
  transform: scale(1.05);
}

.nav a:visited { 
  color: #333;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  color: #2a2a2a;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
  color: #444;
  transform: scale(1.05);
}

main {
  flex: 1;
  padding: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  margin-right: 100px;
  margin-left: 100px;
  padding-bottom: 20px;
}

.product {
  border: 1px solid #bbb;
  padding: 1rem;
  text-align: center;
  background: linear-gradient(145deg, #e0e0e0, #f9f9f9);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-right: 50px;
  cursor: pointer;
}

.product img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 6px;
}
.product_images { 
   max-width: 100%;
  height: 300px;
  display: block;
  object-fit: inherit;
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

footer {
  background: linear-gradient(to right, #d8d8d8, #c0c0c0);
  text-align: center;
  padding: 1rem;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
}

.social-icons { 
  padding:20px 10px 0px 0px;
}

.icons { 
  width: 30px;
  height: 10px;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.5rem;
  }

  nav a {
    font-size: 0.9rem;
  }

  main {
    padding: 1rem;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding: 10px;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: scale(1.02);
}

.product-card img {
  max-width: 100%;
}

.price {
  color: #a0522d;
  font-weight: bold;
}

.product-detail {
  display: flex;
  gap: 20px;
}

.product-detail img {
  max-width: 400px;
  border-radius: 8px;
}

.product-info {
  flex: 1;
}

form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

form label {
  margin-top: 10px;
}

form input {
  padding: 8px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  margin-top: 20px;
  padding: 10px;
  background-color: #2a2a2a;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.site-footer {
  background-color: #323232;
  color: #fff;
  padding: 30px;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 30px;
}

.newsletter form {
  display: flex;
  margin-top: 10px;
}

.newsletter input {
  padding: 10px;
  border: none;
  outline: none;
  flex: 1;
}

.newsletter button {
  color: #fff;
  background-color: #474747;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.footer-links {
  display: flex;
  gap: 50px;
}

.footer-links h4 {
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.community {
  margin: 20px 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.payment-icons img {
  height: 40px;
  margin: 0 5px;
}

.social-icons img {
  height: 30px;
  margin: 0 5px;
}

.pink-number { 
  color: #ff6699;
  text-decoration: none;
}

@media (max-width: 468px) {
  .footer-top {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}
