body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
}

.topbar {
  background-color: #008080;
  color: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

.hamburger {
  font-size: 24px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
  margin-right: 20px;
}

.sidebar {
  width: 220px;
  background-color: #f1f1f1;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -220px;
  transition: left 0.3s ease;
  padding-top: 60px;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.sidebar.active {
  left: 0;
}

.sidebar .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.sidebar ul li {
  padding: 15px 20px;
  border-bottom: 1px solid #ccc;
}

.sidebar ul li a {
  text-decoration: none;
  color: #333;
}

.main-content {
  margin-left: 20px;
  padding: 50px;
  text-align: center;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 128, 128, 0.1);
  width: 260px;
  padding: 20px;
  cursor: pointer;
  transition: transform 0.2s ease;
  border-left: 6px solid #00b894;
}

.card:hover {
  transform: translateY(-5px);
  background-color: #eafdfc;
}

.card h3 {
  color: #008080;
  margin-bottom: 10px;
}

.card p {
  color: #444;
  font-size: 14px;
}
/* ✅ HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1100;
  padding: 0 15px;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-logo img {
  height: 35px;
  display: block;
}

/* ✅ Shop Exclusive Button */
.exclusive-btn {
  background: linear-gradient(90deg, #ff6a00, #ff9800);
  color: #fff;
  padding: 6px 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px 0 0 30px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  animation: slideIn 1.8s ease forwards;
  opacity: 0;
}

.exclusive-btn:hover {
  background: linear-gradient(90deg, #ff9800, #ff6a00);
  transform: scale(1.05);
  transition: 0.3s ease;
}

@keyframes slideIn {
  0% { transform: translateX(120%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* ✅ Countdown Banner (Matches Home Page) */
.countdown-banner {
  position: fixed;
  top: 55px;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #28a745, #32cd32);
  color: white;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 10px;
  z-index: 1050;
  border-bottom: 1px solid #1e7d32;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.countdown-content {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.countdown-icon {
  font-size: 18px;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.6; }
}
/* ================================
   AFFILIATE FOOTER
=================================== */
.affiliate-footer {
  margin-top: 50px;
  padding: 20px 10px;
  background: #f5f5f5;
  text-align: center;
  border-top: 1px solid #ddd;
}

.affiliate-footer p {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.affiliate-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  justify-content: center;
  padding: 10px;
  scroll-behavior: smooth;
}

.affiliate-slider::-webkit-scrollbar {
  display: none;
}

.affiliate-slider img {
  height: 36px;
  transition: transform 0.3s ease;
  filter: grayscale(0.2);
}

.affiliate-slider img:hover {
  transform: scale(1.1);
  filter: none;
}