

/* Logo */
.logo img {
  height: 45px;
  display: block;
}

/* Navigation Menu */
.menu {
  display: flex;
  gap: 20px;
}
.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}
.menu a:hover {
  color: #ffd700; /* gold hover */
}

/* Hamburger Menu (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding:30px;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Responsive: show hamburger, hide menu */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background: #46a5b8;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  .menu.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}


    /* Push content down so it’s not hidden under header */
    .content {
      margin-top: 15px; /* same as header height */
      padding: 20px;
    }

    h2 {
      text-align: center;
      margin-bottom: 28px;
    }

    /* Product Grid */
    .grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      justify-content: center;
    }

    /* Responsive Breakpoints */
    @media (max-width: 576px) {
      .grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 577px) and (max-width: 992px) {
      .grid { grid-template-columns: repeat(3, 1fr); }
    }

    /* Product Card */
    .card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .card:hover { transform: translateY(-5px); }

    /* Product Image */
    .card img {
      width: 100%;
      object-fit: cover;
      background: #eee;
    }

    /* Card Body */
    .card-body {
      padding: 12px;
      text-align: center;
    }

    .card-body h2 {
      font-size: 14px;
      margin: 6px 0;
      font-weight: bold;
      color: #333;
    }

    .price {
      font-size: 18px;
      font-weight: bold;
      color: #333;
    }
    .old-price {
      text-decoration: line-through;
      font-size: 15px;
      color: #999;
      margin-left: 5px;
    }

    /* Card Footer */
    .card-footer {
      text-align: center;
      padding: 12px;
      border-top: 1px solid #eee;
    }
    .inquiry-btn {
      display: inline-block;
      padding: 8px 16px;
      background: #46a5b8;
      color: #fff;
      text-decoration: none;
      border-radius: 6px;
      font-size: 16px;
      transition: background 0.3s;
    }
    .inquiry-btn:hover { background: #0056b3; }
	
	  /* add to your stylesheet */
.variant-buttons {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap; /* wraps on small screens */
}

.btn {
  font-size: 13px;          /* small text */
  padding: 6px 10px;       /* compact pill */
  border-radius: 999px;    /* pill shape */
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #111;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: transform .08s ease, box-shadow .08s ease;
}

.btn:active { transform: translateY(1px); }
.btn:focus { outline: 2px solid #ffd54f; outline-offset: 2px; }

/* make the primary / selected look (optional) */
.btn.active {
  background: #ffd54f;     /* yellow highlight */
  border-color: #f0c040;
  color: #111;
}

/* sold out / light color style */
.btn.soldout {
  color: #a7a7a7;          /* light text */
  border-color: #f2f2f2;
  background: #fafafa;
  cursor: default;
  opacity: 0.85;
  pointer-events: none;    /* optional: prevents clicks */
}

/* responsive tweak for very small widths */
@media (max-width: 420px) {
  .btn { font-size: 12px; padding: 5px 8px; }
}

	