/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #000;
}

/* HIDDEN SEO CONTENT – visible only to search engines */
.seo {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* NAVIGATION */
nav {
  width: 100%;
  text-align: center;
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}

nav a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  text-align: center;
  line-height: 1.1;
}

nav span {
  display: block;
  font-size: 10px;
  opacity: 0.6;
  margin-top: 2px;
}

/* Highlight REEL */
nav a:nth-child(7) {
  color: #e83e8c;
}

/* MAIN IMAGE AREA */
.hero {
  position: relative;
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

.hero a {
  display: block;           /* makes the whole image clickable */
  line-height: 0;           /* removes extra space under image */
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* TEXT BELOW IMAGE – flush with the image */
.text {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
}

/* FLAG – exactly 75x75, directly under the text */
.flag {
  text-align: center;
  line-height: 0;
}

.flag img {
  width: 75px;
  height: auto;
  display: inline-block;
}

/* FOOTER */
.footer {
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
  opacity: 0.6;
}



/* ---------- SHOP PAGE STYLES ---------- */
.shop-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.shop-title img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.shop-subtitle {
  font-size: 20px;
  margin: 20px 0 30px;
  line-height: 1.4;
}

.shop-subtitle a {
  color: #e83e8c;                /* same pink as REEL */
  text-decoration: none;
  font-weight: bold;
}

.shop-subtitle a:hover {
  text-decoration: underline;
}

/* Product grid – responsive with equal cells */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: start;
  margin-top: 20px;
}

.product-item {
  width: 100%;
  max-width: 400px;               /* prevents items from becoming too wide */
  text-align: center;
}

.product-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;        /* portrait: width 4, height 5 (e.g., 640×800) */
  object-fit: cover;           /* fills container, may crop slightly if ratios vary */
  display: block;
}

.product-caption {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* Mobile adjustment */
@media (max-width: 700px) {
  .shop-subtitle {
    font-size: 18px;
  }
  .product-grid {
    gap: 20px;
  }
  .product-caption {
    font-size: 14px;
  }
}


/* MOBILE ADJUSTMENTS */
@media (max-width: 700px) {
  .text {
    font-size: 15px;
    padding: 0 15px;
  }

  .flag img {
    width: 60px;
  }

  nav {
    gap: 14px;
  }
}