/* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #111;
  min-height: 100vh;

  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.6), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.4), transparent 40%),
    url("../IMG/background.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

a {
  text-decoration: none;
  color: #111;
}

.container {
  width: min(1100px, 90%);
  margin: auto;
}

/* ================= HEADER ================= */
.header {
  height: 90px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

/* ================= HAMBURGER ================= */
.menu-btn {
  width: 46px;
  height: 46px;
  border: 1.5px solid #111;
  border-radius: 18px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.menu-btn span {
  width: 20px;
  height: 1.5px;
  background: #111;
}

/* ================= MENU ================= */
.menu {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.menu.active {
  display: flex;
}

.menu-content {
  background: #fff;
  padding: 50px 40px;
  border-radius: 28px;
  width: min(400px, 90%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.menu-content a {
  padding: 14px 20px;
  border: 1.5px solid #111;
  border-radius: 20px;
  text-align: center;
  font-size: 17px;
  transition: 0.3s;
}

.menu-content a:hover {
  background: #111;
  color: #fff;
}

.close-menu {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  border: 1.5px solid #111;
  border-radius: 14px;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

/* ================= SHOP SECTION ================= */

.shop-wrapper {
  padding: 150px 0;
  text-align: center;
}

.shop-title {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  letter-spacing: 4px;
  margin-bottom: 60px;
}

.shop-btn {
  display: inline-block;
  padding: 16px 60px;
  border-radius: 40px;
  border: 1.5px solid #c9a55c;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.4s ease;
  margin-bottom: 70px;
}

.shop-btn:hover {
  background: #c9a55c;
  color: #fff;
}

.shop-info {
  border: 1.5px solid #111;
  border-radius: 32px;
  padding: 40px;
  max-width: 700px;
  margin: auto;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  font-size: 17px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 900px) {
  .shop-title {
    font-size: 38px;
  }

  .shop-wrapper {
    padding: 100px 20px;
  }
}
