:root {
  --primary: #2ecc71;
  --secondary: #3498db;
  --accent: #e74c3c;
  --dark: #1a1a2e;
  --light: #f1f1f1;
  --ethio-green: #078C3F;
  --ethio-yellow: #FCDD09;
  --ethio-red: #DA121A;
  --ethio-black: #474242;
}

/* Reset */
* { box-sizing: border-box; margin:0; padding:0; }
body { font-family: 'Poppins', sans-serif; background:#f9fafb; color:#111; }
a { text-decoration:none; color:inherit; transition:0.3s ease; }

/* ================= NAVBAR ================= */
.navbar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  background: rgba(255,255,255,0.95);
  padding:0.75rem 1.5rem;
  position: sticky;
  top:0;
  z-index:999;
}
.logo { display:flex; align-items:center; }
.logo img { height:40px; width:40px; border-radius:50%; margin-right:0.5rem; }
.logo-text { font-family:'Orbitron',sans-serif; font-size:1.25rem; font-weight:700; color:var(--dark); }
.nav-links { display:flex; gap:2rem; align-items:center; }
.navbar a { color:var(--dark); padding:0.5rem 0.75rem; }
.navbar a:hover { background:var(--primary); border-radius:3px; color:var(--dark); }

/* Hamburger */
.hamburger { display:none; flex-direction:column; cursor:pointer; gap:5px; }
.hamburger div { width:25px; height:3px; background-color:var(--dark); transition:all 0.3s ease; }

/* ================= DROPDOWN ================= */
.dropdown { position:relative; }
.dropdown-content {
  position:absolute; top:100%; left:0;
  background:#fff; border-radius:6px; box-shadow:0 6px 20px rgba(0,0,0,0.2);
  display:none; flex-direction:column; min-width:200px; padding:0.25rem 0; z-index:100;
}
.dropdown-content a { padding:0.6rem 1rem; white-space:nowrap; }
.dropdown-content a:hover { background:#f1f5f9; }
.dropdown:hover>.dropdown-content { display:flex; }

/* Nested dropdown */
.nested-dropdown { position:relative; }
.nested-dropdown-content {
  position:absolute; top:0; left:100%; background:#fff; border-radius:6px;
  box-shadow:0 6px 20px rgba(0,0,0,0.2); display:none; flex-direction:column; min-width:220px; padding:0.25rem 0; z-index:200;
}
.nested-dropdown-content a:hover { background:#f1f5f9; }
.nested-dropdown:hover>.nested-dropdown-content { display:flex; }

/* HERO SECTION */
.hero { position:relative; width:100%; height:400px; overflow:hidden; }
.hero img { width:100%; height:100%; object-fit:cover; display:block; }
.hero-content {
  position:absolute; bottom:0; left:50%; transform:translateX(-50%);
  text-align:center; color:white; background:transparent; padding:20px; width:100%;
}
.hero-content h1 { font-size:36px; margin-bottom:10px; }
.hero-content p { font-size:18px; margin-bottom:15px; }

/* SHOP BUTTON */
.shop-btn { padding:14px 35px; background:#d4af37; color:black; border:none; font-size:16px; font-weight:bold; border-radius:6px; cursor:pointer; transition:all 0.3s ease; }

.dress-section { text-align:center; margin:50px 0; }
.dress-section h1 { font-size:32px; margin-bottom:20px; }

/* FLEX + GALLERY */
.flex-container { display:flex; gap:20px; max-width:1200px; margin:auto; flex-wrap:wrap; }
.coupon {
  border:5px dotted #bbb; border-radius:15px; width:40%; height:750px; max-width:400px; flex-shrink:0;
}
.coupon .container { padding:10px 16px; background-color:#f1f1f1; }
.coupon img { width:100%; display:block; }
.promo { background:#ccc; padding:3px; }
.expire { color:red; }

.gallery-wrapper { flex:1; display:flex; flex-wrap:wrap; gap:30px; }
.gallery-wrapper a { width:calc(30% - 12px); text-decoration:none; color:inherit; }
.gallery-wrapper img { width:100%; height:250px; object-fit:cover; border-radius:8px; cursor:pointer; transition:transform 0.3s ease; }
.gallery-wrapper img:hover { transform:scale(1.05); }
.caption { text-align:center; font-size:0.85rem; margin-top:4px; }

/* NEXT PAGE BUTTONS */
.next-page-container { display:flex; justify-content:center; max-width:300px; margin:30px auto; }
.next-page-btn { display:inline-block; padding:12px 20px; border:2px solid #333; background-color:transparent; color:#333; font-weight:600; text-decoration:none; min-width:120px; transition:0.3s; }
.next-page-btn:hover { background-color:#333; color:#fff; }

/* FOOTER */
footer { background: linear-gradient(135deg, #2ecc71, #3498db); color:#fff; padding:40px 20px 20px; font-family:'Poppins',sans-serif; }
.footer-container { display:flex; justify-content:space-between; flex-wrap:wrap; max-width:1200px; margin:auto; gap:30px; }
.footer-left, .footer-right { flex:1; min-width:280px; }
.footer-left h2, .footer-right h2 { font-size:1.8rem; margin-bottom:15px; }
.social-links { display:flex; gap:15px; margin-bottom:15px; }
.social-links a { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; background:rgba(255,255,255,0.2); border-radius:50%; color:#fff; font-size:1.2rem; transition:all 0.3s ease; }
.social-links a:hover { background:#fff; color:#3498db; transform:scale(1.1); }
.contact-info p { margin:5px 0; font-size:0.9rem; }
.contact-info a { color:#fff; text-decoration:underline; transition:color 0.3s; }
.contact-info a:hover { color:#2ecc71; }
.footer-bottom { text-align:center; padding:15px 0 0; border-top:1px solid rgba(255,255,255,0.3); font-size:0.9rem; }

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) { .gallery-wrapper a { width:calc(50% - 15px); } }
@media (max-width: 768px) {
  .flex-container { flex-direction:column; }
  .coupon, .gallery-wrapper a { width:100%; }
  .gallery-wrapper { gap:15px; }

  /* NAVBAR MOBILE */
  .nav-links { position:absolute; top:70px; left:0; background:#fff; width:100%; flex-direction:column; gap:0; display:none; padding:20px 0; border-top:1px solid #ccc; }
  .nav-links a { padding:10px 20px; border-bottom:1px solid #eee; }
  .nav-links.show { display:flex; }
  .hamburger { display:flex; }
}
.hr{
  background-color: white;
  border: #078C3F;
}
h4{
  color: green;
  font-size: 20px;
  position: center;
}
.main{
  background-color: #078C3F;
}
.next-page-container {
  display: flex;
  justify-content: center; /* center the buttons horizontally */
  max-width: 300px;
  margin: 30px auto; /* centered container */
}

.next-page-btn {
  display: inline-block;
  padding: 12px 20px;
  border: 2px solid #333; /* square border */
  background-color: transparent; /* transparent background */
  color: #333;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0; /* square corners */
  transition: background 0.3s, color 0.3s;
  text-align: center;
  min-width: 120px;
}

/* Remove the gap by collapsing borders if desired */
.next-page-btn:first-child {
  border-right: 3; /* remove border between buttons */
}

.next-page-btn:hover {
  background-color: #333; /* fill on hover */
  color: #fff;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px; /* distance from bottom */
  right: 20px;  /* distance from right */
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 10px rgba(0,0,0,0.4);
}
.floating-discount {
  position: fixed;
  bottom: 50%; /* vertically middle */
  left:0%;  /* distance from right */
  transform: translateY(50%); /* center vertically */
  background-color: var(--primary);
  color: white;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 10000;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-align: center;
  font-size: 16px;
  writing-mode: vertical-rl;  /* vertical, top to bottom, right to left */
  text-orientation: mixed; 
}

.floating-share {
  position: fixed;
  bottom: 20px;   
  left: 20px;     
  background-color: #25D366; 
  color: white;
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  text-align: center;
  font-size: 20px;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
@media (max-width: 768px) {
  .floating-share {
    left: 10%;
    bottom: 10px;
    transform: translateX(-50%);
    writing-mode: vertical-lr;
    text-orientation: initial;
    padding: 12px 18px;
    font-size: 20px;
    border-radius: 50%;
  }
}