/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
  overflow-x: hidden;
}

/* ===== HEADER (copied from styles.css) ===== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
}

.header-left,
.header-center,
.header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-left {
  justify-content: flex-start;
}

.header-right {
  justify-content: flex-end;
}

.logo {
  max-height: 55px;
}

.icon {
  max-height: 45px;
  cursor: pointer;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: fixed;
  top: 70px; /* height of header */
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95); /* deep black overlay */
  z-index: 999;
  padding: 20px 0;
  animation: slideDown 0.3s ease forwards;
}

/* Menu Layout */
.dropdown-menu ul {
  display: flex;
  justify-content: center;
  gap: 60px; /* space between links */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Links */
.dropdown-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.2s ease;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/*dropdown effect*/
/* Force cart + menu icons to match header */
.header-right img,
.header-left img,
.icon {
  height: 45px !important;  /* force exact height */
  width: auto !important;   /* keep natural aspect ratio */
  cursor: pointer;
}

/* Slide Down Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-header.active {
  background: rgba(0,0,0,0.95);
  transition: background 0.3s ease;
}

.dropdown-menu.open {
  display: block;
  animation: slideDown 0.25s ease forwards;
}

/* ===== SHOP PAGE CONTENT ===== */

/* Banner */
.shop-banner {
  width: 100%;
  max-height: 500px; /* keeps it from stretching taller */
  overflow: hidden;  /* crops anything extra */
}

.shop-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px; /* keeps consistent with container */
}

.shop-selector {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px auto;
  padding: 15px 20px;
  border-bottom: 2px solid #eee;
  max-width: 900px;
}

.selector-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.selector-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

.selector-link:hover {
  color: #000;
}

.selector-link:hover::after {
  width: 100%;
}

                            

/* Product Grid */
/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* exactly 4 per row */
  gap: 40px;
  padding: 50px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Each Product Card */
.product-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
}

/* Product Images */
.product-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

/* Gradient overlay for text */
.product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
  color: #fff;
}

.product-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
}

.product-info p {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 12px;
  opacity: 0.9;
}

/* Floating Button */
.product-info button {
  width: auto;
  padding: 10px 18px;
  background-color: #fff;
  color: #003049;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-info button:hover {
  background-color: #003049;
  color: #fff;
}




/* Footer */
.site-footer {
  background: #111;
  color: #fff;
  padding: 60px 5% 30px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand img {
  width: 140px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.6;
  max-width: 250px;
}

/* Links */
.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  font-weight: 600;
}

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

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #bbb;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #fff;
}

/* Social */
.footer-social h4 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  font-weight: 600;
}

.social-icons a {
  margin-right: 12px;
}

.social-icons img {
  width: 26px;
  height: 26px;
  filter: invert(1); /* makes icons white */
  transition: opacity 0.3s ease;
}

.social-icons img:hover {
  opacity: 0.7;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #777;
}

/* Mobile */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-brand {
    grid-column: span 2;
    margin-bottom: 20px;
  }
}

/* --- Footer: keep desktop layout */
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr 1fr; /* same as desktop */
    gap: 40px;
    text-align: left;
  }

  .footer-brand {
    grid-column: auto;
    margin-bottom: 0;
  }
  html, body {
  overflow-x: hidden;
}


/* ===================== MOBILE DROPDOWN FULLSCREEN ===================== */
@media (max-width: 900px) {
  .dropdown-menu {
    position: fixed;
    top: 70px; /* below header */
    left: 0;
    width: 100%;
    height: calc(100vh - 70px); /* full screen minus header */
    background: rgba(0, 0, 0, 0.95); /* overlay */
    display: none; /* hidden by default */
    flex-direction: column; /* stack links vertically */
    justify-content: center; /* vertically center the whole menu */
    align-items: center; /* horizontally center links */
    padding: 0; /* remove extra spacing */
    overflow-y: auto;
    text-align: center; /* ensure text in links is centered */
  }

  .dropdown-menu ul {
    display: flex;
    flex-direction: column; /* vertical stack */
    gap: 30px; /* space between links */
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .dropdown-menu li {
    width: 100%;
    display: flex;
    justify-content: center; /* center each link horizontally */
  }

  .dropdown-menu li a {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center; /* center text inside the link */
  }
}
/* ===================== MOBILE PRODUCT GRID ===================== */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 products per row */
    gap: 20px; /* slightly smaller gap for mobile */
    padding: 30px 20px; /* reduce side padding */
  }

  .product-card img {
    height: 250px; /* adjust image height to fit mobile better */
  }

  .product-info h3 {
    font-size: 1rem;
  }

  .product-info p {
    font-size: 0.9rem;
  }

  .product-info button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}
@media (max-width: 900px) {
  /* Banner top margin */
  .shop-banner {
    margin-top: 60px; /* adjust as needed */
  }

  /* Selector layout */
  .shop-selector {
    display: flex;
    flex-wrap: wrap; /* allow items to wrap */
    gap: 10px;       /* space between items */
    justify-content: space-between; /* make 2 per row align left/right */
    padding: 10px 15px;
    margin: 20px auto;
    max-width: 400px; /* optional: keep container narrow on small screens */
  }

  /* Each selector takes half the row */
  .shop-selector .selector-link {
    display: block;       /* make links block-level */
    width: 48%;           /* 2 per row */
    text-align: center;   /* center text inside link */
    margin-bottom: 10px;  /* space between rows */
  }
}

/* ================ MOBILE FOOTER 2x2 ALIGNED ================ */
@media (max-width: 900px) {
  .site-footer {
    padding: 25px 15px 20px;
  }

  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    grid-template-rows: auto auto; /* 2 rows */
    gap: 15px 20px; /* vertical / horizontal spacing */
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    align-items: start; /* align items at top of each cell */
  }

  /* Top-left: Logo / About */
  .footer-brand {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .footer-brand img {
    width: 100px; /* smaller logo */
    margin-bottom: 8px;
  }

  .footer-brand p {
    font-size: 0.9rem;
    max-width: 100%;
    margin: 0;
  }

  /* Top-right: Shop Links */
  .footer-links:nth-of-type(1) {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* Bottom-left: Company Links */
  .footer-links:nth-of-type(2) {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* Bottom-right: Socials */
  .footer-social {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* Headings smaller */
  .footer-links h4,
  .footer-social h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .footer-links ul li a {
    font-size: 0.9rem;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icons img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
  }

  /* Footer bottom bar */
  .footer-bottom {
    grid-column: 1 / 3; /* span both columns */
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
  }

  .footer-bottom p {
    font-size: 0.8rem;
    color: #777;
  }
}



