body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
  color: #111;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
header {
  display: block;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem 1.2rem;
  gap: 1.5rem;
}
.logo-and-title {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: #111;
  display: block;
}
.brand-text h1 {
  font-size: 1.25rem;
  margin: 0 0 0.2rem 0;
  letter-spacing: 0.03em;
}
.brand-text .subtitle {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}
nav {
  margin: 0;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: border 0.2s;
  font-size: 1rem;
  padding: 0.2rem 0;
}
nav a:hover {
  border-bottom: 2px solid #111;
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.product-category {
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  padding: 1.5rem 1rem;
  text-align: center;
}
.product-category h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.product-category .placeholder-img {
  width: 100%;
  height: 150px;
  background: #eaeaea;
  border-radius: 8px;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 1.1rem;
}
.placeholder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0 1rem 0;
}
.links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff;
  background: #111;
  padding: 0.7rem 1.3rem;
  border-radius: 24px;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.2s;
}
.links a:hover {
  background: #333;
}
.instagram-section {
  max-width: 500px;
  margin: 2rem auto 2.5rem auto;
  text-align: center;
}
.instagram-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.instagram-iframe {
  width: 100%;
  min-height: 400px;
  border: none;
  border-radius: 12px;
  background: #fafafa;
}
@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.7rem 0.5rem;
  }
  nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.7rem;
  }
  .logo-img {
    width: 44px;
    height: 44px;
  }
  .brand-text h1 {
    font-size: 1rem;
  }
  .brand-text .subtitle {
    font-size: 0.85rem;
  }
}
.announcement-section {
  background: #fafafa;
  padding: 2rem 0 1.5rem 0;
}
.announcement-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 400px;
  overflow: hidden;
  margin: 0 auto;
}
.announcement-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.announcement-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  text-align: center;
}
.announcement-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.announcement-main {
  color: #fff;
  font-size: 1.35rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.announcement-big {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.announcement-big .al {
  color: #ffe066;
  font-size: 2.7rem;
  font-weight: 700;
}
.announcement-big .ode {
  color: #fff;
  font-size: 2.7rem;
  font-weight: 700;
}
.announcement-btn {
  display: inline-block;
  margin-top: 0.7rem;
  background: #ffe066;
  color: #111;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.7rem 2.1rem;
  border-radius: 28px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.2s, color 0.2s;
}
.announcement-btn:hover {
  background: #ffd700;
  color: #000;
}
@media (max-width: 700px) {
  .announcement-main {
    font-size: 1rem;
  }
  .announcement-big {
    font-size: 1.5rem;
  }
  .announcement-big .al,
  .announcement-big .ode {
    font-size: 1.5rem;
  }
  .announcement-btn {
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem;
  }
}
@media (max-width: 1150px) {
  .announcement-image-wrapper {
    max-width: 98vw;
  }
}
@media (max-width: 700px) {
  .announcement-image-wrapper {
    height: 180px;
    max-width: 99vw;
  }
  .announcement-overlay h2 {
    font-size: 1.1rem;
  }
}
.announcement-bar {
  width: 100%;
  background: #111;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  padding: 0.35rem 0.5rem;
  letter-spacing: 0.02em;
}
@media (max-width: 700px) {
  .announcement-bar {
    font-size: 0.92rem;
    padding: 0.28rem 0.3rem;
  }
}
.site-footer {
  width: 100%;
  background: #f7f7f7;
  color: #444;
  text-align: center;
  font-size: 1rem;
  padding: 1.1rem 0 1.2rem 0;
  margin-top: 2.5rem;
  border-top: 1px solid #e0e0e0;
  letter-spacing: 0.01em;
}
@media (max-width: 700px) {
  .site-footer {
    font-size: 0.92rem;
    padding: 0.8rem 0 1rem 0;
  }
}
.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-link h2,
.product-link p {
  text-decoration: none;
}
.product-link .product-category {
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.15s;
}
.product-link .product-category:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  transform: translateY(-2px) scale(1.02);
} 