/* ============================================================
   JESSE ENTERPRISES — Global Stylesheet  v2.0
   Single source of truth. Edit variables here → updates everywhere.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@400;500;700;800&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy:        #0b3c91;
  --navy-dark:   #072d6e;
  --navy-light:  #1a52b8;
  --lime:        #8dc63f;
  --lime-dark:   #6fa32e;
  --lime-light:  #aadd5a;
  --white:       #ffffff;
  --off:         #f4f6fb;
  --muted:       #6b7a99;
  --border:      #dde3f0;
  --text:        #0d1b3e;
  --red:         #e03535;
  --green:       #2ba44a;
  --amber:       #e07d10;
  --shadow:      0 4px 24px rgba(11,60,145,0.10);
  --radius:      14px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { font-family: 'DM Sans', sans-serif; background: var(--off); color: var(--text); line-height: 1.6; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.je-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  height: 80px;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 2000;
  border-bottom: 1px solid var(--border);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-links {
  display: flex;
  gap: 8px;
}

/* Hamburger */
.menu-toggle {
  display: none;
  position: absolute;
  width: 0; height: 0;
  opacity: 0;
  pointer-events: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 3001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger .bar {
  display: block;
  width: 28px; height: 3px;
  background: var(--navy);
  border-radius: 5px;
  transition: 0.3s ease;
}

/* Nav pill buttons */
.nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  background: var(--white);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Inactive */
.nav-btn {
  background: var(--white);  /* white */
}

/* Active */
.nav-btn.active {
  background: var(--white);   /* #8dc63f */
  border-color: var(--lime);
  color: var(--navy);
}

/* Hover */
.nav-btn:hover {
  background: var(--lime);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Cart pill */
.cart-pill-modern {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 800;
  transition: 0.3s;
  margin-left: 10px;
}

.cart-count-bubble {
  background: var(--lime);
  color: var(--navy);
  font-size: 11px;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   PAGE HEADER BANNER
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 48px 32px 40px;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141,198,63,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.page-banner-inner { max-width: 1040px; margin: 0 auto; }

.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.42); margin-bottom: 10px; }
.breadcrumb a { color: rgba(255,255,255,0.42); }

.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 36px;
  color: #fff;
  margin-bottom: 6px;
}

.page-banner p { color: rgba(255,255,255,0.65); font-size: 15px; }

/* Section helpers */
.section-wrap { max-width: 1040px; margin: 0 auto; padding: 52px 32px; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lime-dark);
  margin-bottom: 6px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 4px;
}

.section-sub { color: var(--muted); font-size: 14px; margin-bottom: 28px; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--lime);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  padding: 13px 26px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  transition: all .2s;
}
.btn-primary:hover { background: var(--lime-light); transform: translateY(-2px); }

.btn-navy {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 26px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  transition: background .2s;
}
.btn-navy:hover { background: var(--navy-light); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 10px;
  padding: 12px 26px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  transition: all .2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-wa {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
}
.btn-wa:hover { background: #1ebe5d; }

/* ============================================================
   PRODUCT GRID  (single canonical definition)
   ============================================================ */
.products-preview {
  padding: 48px 5% 64px;
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.product-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}


.je-product-card img,
.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26,35,126,0.08);
  border-color: var(--lime);
}

/* Image area */
.pc-image {
  height: 220px;
  background: #f8fafc;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .pc-image img { transform: scale(1.05); }

/* Card body */
.pc-content {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pc-category {
  font-size: 11px;
  font-weight: 800;
  color: var(--lime-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Badge (alias for pc-category — keep both working) */
.badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--lime-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pc-title {
  font-size: 15px;
  color: var(--navy);
  margin: 6px 0 0;
  font-weight: 700;
  line-height: 1.35;
  flex: 1;
  min-height: 42px;
}

.pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.pc-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

/* Add / Buy button (pill) */
.pc-add-btn,
.add-btn {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.pc-add-btn:hover:not(:disabled),
.add-btn:hover:not(:disabled) {
  background: var(--lime);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(141,198,63,0.30);
}

.pc-add-btn:disabled,
.add-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* ── Shop full-page wrapper ── */
.shop-page-container {
  padding: 0 0 64px;
  background: var(--off);
}

/* ============================================================
   GENERIC CARD
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
@keyframes hero-fade-up {
  0%   { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes badge-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes hero-img-in {
  0%   { opacity: 0; transform: scale(0.92) translateY(16px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes lime-shimmer {
  0%   { text-shadow: 0 0 0px rgba(141,198,63,0); }
  50%  { text-shadow: 0 0 18px rgba(141,198,63,0.5); }
  100% { text-shadow: 0 0 0px rgba(141,198,63,0); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.18; transform: scale(1); }
  50%       { opacity: 0.32; transform: scale(1.08); }
}

.hero {
  background: linear-gradient(135deg, #0b1a33 0%, #0b3c91 60%, #1a52b8 100%);
  padding: 72px 32px 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-glow { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hero-glow::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141,198,63,0.18) 0%, transparent 70%);
  top: -120px; right: -80px;
  animation: glow-pulse 5s ease-in-out infinite;
}

.hero-glow::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,60,145,0.35) 0%, transparent 70%);
  bottom: -80px; left: 10%;
  animation: glow-pulse 7s ease-in-out infinite 1.5s;
}

.hero-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-content { flex: 1; max-width: 520px; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  animation: hero-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) both;
}

.text-lime {
  color: var(--lime);
  display: inline-block;
  animation:
    hero-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s both,
    lime-shimmer 4s ease-in-out 1s infinite;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 32px;
  animation: hero-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: hero-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.35s both;
}

.hero-actions .btn-primary {
  background: var(--lime);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s ease, background 0.2s ease, box-shadow 0.25s ease;
}
.hero-actions .btn-primary:hover {
  background: var(--lime-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(141,198,63,0.35);
}
.hero-actions .btn-primary:active { transform: translateY(0) scale(0.97); }

.hero-actions .btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s ease, border-color 0.2s ease, background 0.2s ease;
}
.hero-actions .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}
.hero-actions .btn-outline:active { transform: translateY(0) scale(0.97); }

.hero-visual {
  flex: 0 0 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hero-img-in 0.9s cubic-bezier(0.22,1,0.36,1) 0.25s both;
}

.hero-img {
  width: 100%;
  max-width: 360px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(11,60,145,0.18);
  white-space: nowrap;
  z-index: 2;
}
.product-badge.top    { top: 16px; left: -24px; animation: badge-float 3.2s ease-in-out infinite; }
.product-badge.bottom { bottom: 24px; right: -16px; animation: badge-float 3.8s ease-in-out infinite 0.6s; }

/* ============================================================
   FOOTER
   ============================================================ */
.je-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 40px 32px 22px;
}
.je-footer-inner { max-width: 1040px; margin: 0 auto; }
.je-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 28px;
}
.je-footer h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.je-footer a { display: block; color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 7px; transition: color .15s; }
.je-footer a:hover { color: var(--lime); }
.je-footer p  { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); margin-top: 10px; }
.je-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.je-footer-bottom small { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,45,110,0.52);
  z-index: 500;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { display: block; }

.cart-sidebar {
  position: fixed;
  right: 0; top: 0; bottom: 0;
  width: 400px;
  max-width: 100vw;
  background: #fff;
  z-index: 501;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 48px rgba(11,60,145,0.18);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.cart-overlay.open .cart-sidebar { transform: translateX(0); }

.cart-head {
  background: var(--navy);
  color: #fff;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-head h3 { font-family: 'Playfair Display', serif; font-size: 20px; }

.close-btn {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.close-btn:hover { background: rgba(255,255,255,0.28); }

.cart-body { flex: 1; overflow-y: auto; padding: 14px; }

.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  background: var(--off);
}
.ci-emoji   { font-size: 26px; width: 44px; text-align: center; flex-shrink: 0; }
.ci-info    { flex: 1; min-width: 0; }
.ci-name    { font-size: 13px; font-weight: 500; margin-bottom: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ci-price   { font-size: 12px; color: var(--muted); }
.qty-ctrl   { display: flex; align-items: center; gap: 6px; }
.qty-btn    { width: 26px; height: 26px; border: 1.5px solid var(--border); background: #fff; border-radius: 6px; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: all .15s; }
.qty-btn:hover { border-color: var(--navy); color: var(--navy); }
.qty-n      { font-size: 13px; font-weight: 500; min-width: 20px; text-align: center; }

.cart-empty { text-align: center; padding: 48px 20px; color: var(--muted); }
.cart-empty .ico { font-size: 44px; margin-bottom: 12px; }

.cart-foot  { padding: 18px 22px; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 6px; }
.cart-total-row span { font-size: 13px; color: var(--muted); }
.cart-total-row.grand { margin-top: 10px; padding-top: 12px; border-top: 1px solid var(--border); margin-bottom: 16px; }
.cart-total-row.grand span:first-child { font-size: 14px; font-weight: 500; color: var(--text); }
.cart-total-row.grand span:last-child  { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--navy); }
.free-tag   { color: var(--green); font-size: 12px; font-weight: 500; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  top: 16px;
  right: 16px;
  left: auto;
  bottom: auto;
  transform: translateY(-18px);
  background: var(--navy);
  color: #fff;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: all .25s ease;
  max-width: min(92vw, 420px);
  width: max-content;
  white-space: normal;
  box-shadow: 0 8px 28px rgba(11,60,145,0.28);
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 600px) {
  .toast {
    top: 10px;
    right: 10px;
    max-width: calc(100vw - 20px);
    font-size: 12px;
    padding: 10px 12px;
  }
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 12px; font-weight: 500; color: var(--text); margin-bottom: 5px; }
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .15s;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-color: var(--navy); }
.fg textarea { resize: vertical; min-height: 72px; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,45,110,0.52);
  z-index: 600;
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }

.modal {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  width: 390px;
  max-width: calc(100vw - 32px);
  box-shadow: 0 20px 60px rgba(11,60,145,0.22);
}
.modal h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.modal p  { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.modal-btns { display: flex; gap: 10px; margin-top: 6px; }
.modal-btns .btn-cancel {
  flex: 0 0 80px;
  background: var(--off);
  color: var(--muted);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  cursor: pointer;
}

/* ============================================================
   RESPONSIVE — max 768px
   ============================================================ */
@media (max-width: 768px) {

  .je-nav { padding: 0 16px; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 80px; left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 2px solid var(--lime);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    transition: transform 0.4s ease-in-out;
    z-index: 999;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-btn { width: 100%; justify-content: flex-start; }

  .hamburger.open .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.open .bar:nth-child(2) { opacity: 0; }
  .hamburger.open .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .section-wrap  { padding: 36px 16px; }
  .page-banner   { padding: 36px 16px 30px; }
  .page-banner h1 { font-size: 28px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }

  .products-preview { padding: 36px 16px 48px; }

  /* 2-col grid on mobile */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .pc-image  { height: 160px; }
  .pc-title  { font-size: 13px; min-height: 36px; }
  .pc-price  { font-size: 14px; }

  .je-footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Hero mobile */
  .hero { padding: 52px 20px 48px; }
  .hero-inner { flex-direction: column; gap: 36px; text-align: center; }
  .hero-title { font-size: 34px; line-height: 1.1; }
  .hero-subtitle { font-size: 15px; max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-visual { flex: none; width: 100%; max-width: 320px; margin: 0 auto; }
  .product-badge.top    { left: 0; }
  .product-badge.bottom { right: 0; }
}