/* =========================
   GLOBAL BASE SAFETY
========================= */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #111;
  overflow-x: hidden;
}

/* =========================
   TOP BAR (TRANSPARENT ONLY)
========================= */

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  background: transparent !important;
  background-color: transparent !important;

  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  border-bottom: none !important;

  z-index: 9999;
  text-align: center;
  padding: 12px;
}

.top-bar a {
  text-decoration: none;
  color: #111827;
}

.top-bar div {
  font-size: 12px;
  font-weight: 600;
}

/* =========================
   LANGUAGE BUTTON
========================= */

.lang-btn {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 10000;
}

.lang-btn button {
  background: transparent !important;
  color: #000 !important;
  border: 1px solid rgba(0,0,0,0.25) !important;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 11px;
  cursor: pointer;
}

.lang-btn button:hover {
  background: rgba(0,0,0,0.05) !important;
}

/* =========================
   PRIME BUTTON SYSTEM
========================= */

button,
.btn,
.btn-premium,
.add-to-cart,
.add_to_cart,
.add-to-cart-button,
input[type="submit"],
input[type="button"] {
  background: #cc0000 !important;
  color: #ffffff !important;

  border: none !important;
  border-radius: 10px !important;

  padding: 12px 22px !important;

  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase;

  cursor: pointer !important;

  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  transition: all 0.25s ease !important;

  box-shadow: 0 4px 14px rgba(204,0,0,0.25);
}

button:hover,
.btn:hover,
.btn-premium:hover,
.add-to-cart:hover,
.add_to_cart:hover,
.add-to-cart-button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background: #ffcc00 !important;
  color: #000 !important;

  transform: translateY(-2px) scale(1.03);

  box-shadow: 0 8px 20px rgba(255,204,0,0.35);
}

button:active,
.btn:active,
.btn-premium:active,
.add-to-cart:active,
.add_to_cart:active,
.add-to-cart-button:active,
input[type="submit"]:active,
input[type="button"]:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* =========================
   SEARCH BUTTON FIX (CRITICAL)
========================= */

#search_button {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;

  width: 38px !important;
  height: 38px !important;

  padding: 0 !important;
  margin: 0 !important;

  display: inline-block !important;

  transform: none !important;
}

#search {
  display: flex !important;
  align-items: center !important;
}

#search input[type="text"] {
  height: 38px !important;
  line-height: 38px !important;
  padding: 0 10px !important;
}

/* =========================
   LAYOUT
========================= */

.page-wrap {
  padding-top: 90px;
}

.content {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* =========================
   FREEWEBSHOP CLEAN BLOCK
========================= */

a[href*="freewebstore.com"],
a[href*="utm_source"],
iframe[src*="freewebstore"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

footer {
  visibility: visible !important;
  display: block !important;
}




input[type="button"].btn,
input.btn,
button.btn {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;

  box-sizing: border-box !important;

  /* spacing */
  padding: 12px 22px !important;
  margin: 0 !important;

  /* size stability */
  height: auto !important;
  min-height: 42px !important;
  line-height: 1.2 !important;

  /* layout fix (prevents half-button / crop issues) */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  /* text safety */
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;

  /* visual stability */
  vertical-align: middle !important;

  /* prevent theme overrides */
  transform: none !important;
}





 /* =========================
   NAV BUTTON STYLE (RED + GOLD SYSTEM)
========================= */

.nav-link,
nav a,
.top-right a,
.header a,
.menu a {
  display: inline-block !important;
  padding: 8px 14px;
  margin: 2px;
  border-radius: 10px;

  background: #cc0000 !important;
  background-color: #cc0000 !important;
  color: #ffffff !important;
  border: none !important;

  font-weight: 700;
  font-size: 13px;
  text-decoration: none !important;
  text-transform: uppercase;

  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(204,0,0,0.25);
}

/* Gold hover: For all tabs on cursor hover */
.nav-link:hover,
nav a:hover,
.top-right a:hover,
.header a:hover,
.menu a:hover {
  background: #D4AF37 !important;
  background-color: #D4AF37 !important;
  color: #000 !important;
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
  transform: translateY(-2px);
}

/* Gold active/focus: For selected tab */
.nav-link:focus,
nav a:focus,
nav a:active,
.top-right a:active,
.header a:active,
.menu a.active,
.nav-link.active,
nav a.active {
  background: #D4AF37 !important;
  background-color: #D4AF37 !important;
  color: #000 !important;
  box-shadow: 0 4px 14px rgba(212,175,55,0.4);
  transform: translateY(0);
}
 
 
 
 
/* =========================
   NAV BUTTON STYLE (RED + GOLD SYSTEM)
========================= */

.nav-link,
nav a,
.top-right a,
.header a,
.menu a {
  display: inline-block !important;
  padding: 8px 14px;
  margin: 2px;
  border-radius: 10px;

  background: #cc0000 !important;
  background-color: #cc0000 !important;
  color: #ffffff !important;
  border: none !important;

  font-weight: 700;
  font-size: 13px;
  text-decoration: none !important;
  text-transform: uppercase;

  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(204,0,0,0.25);
}

/* Hover state */
.nav-link:hover,
nav a:hover,
.top-right a:hover,
.header a:hover,
.menu a:hover {
  background: #ffcc00 !important;
  background-color: #ffcc00 !important;
  color: #000 !important;
  box-shadow: 0 6px 20px rgba(255,204,0,0.4);
  transform: translateY(-2px);
}

/* Active/focus state */
.nav-link:focus,
nav a:focus,
nav a:active,
.top-right a:active,
.header a:active,
.menu a.active,
.nav-link.active,
nav a.active {
  background: #ffcc00 !important;
  background-color: #ffcc00 !important;
  color: #000 !important;
  box-shadow: 0 4px 14px rgba(255,204,0,0.4);
  transform: translateY(0);
} 
 
 




/* =========================
   CALL STRIP (TRANSPARENT HEADER ROW)
========================= */

.call-strip {
  position: fixed !important;
  top: 12px !important;  /* aligns with language button */
  left: 12px !important; /* moves to left side */

  z-index: 10001 !important;

  background: transparent !important;
  box-shadow: none !important;
  border: none !important;

  display: inline-block !important;
}

.call-strip a {
  color: #111 !important;
  text-decoration: none !important;

  font-weight: 700 !important;
  font-size: 12px !important;
  text-transform: uppercase;

  padding: 6px 10px;
  border-radius: 8px;

  background: rgba(255,255,255,0.65); /* subtle glass look */
  backdrop-filter: blur(8px);

  transition: all 0.25s ease;
}

/* GOLD HOVER UPDATE (Call Now) */
.call-strip a:hover {
  background: #ffcc00 !important;
  color: #000 !important;
}





/* =========================
   REMOVE HEADER BACKGROUND ARTIFACTS
========================= */

/* kill any background image/logo layer behind top area */
body::before,
body::after,
.top-bar::before,
.top-bar::after {
  background: transparent !important;
  background-image: none !important;
  content: "" !important;
}

/* ensure no hidden header branding layer shows through */
header,
.top-bar {
  background-image: none !important;
  background-color: rgba(255,255,255,0.95) !important;
}

/* remove possible Freewebstore injected watermark layers */
div[class*="branding"],
div[class*="logo"],
div[id*="branding"],
div[id*="logo"] {
  background: transparent !important;
  opacity: 0 !important;
  pointer-events: none !important;
}



#search_button {
  color: transparent !important;
  text-indent: -9999px !important;
  overflow: hidden !important;

  width: 38px !important;
  height: 38px !important;

  background: transparent !important;
  border: none !important;
}





.products_btn {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;

  width: 100% !important;

  margin: 0 auto !important;
  padding: 0 !important;

  text-align: center !important;
}



.access-panel {
  position: fixed;
  top: 55px; /* directly under translate button */
  right: 12px;
  z-index: 10001;

  display: flex;
  flex-direction: column;
  gap: 6px;
}

.access-panel button {
  background: #cc0000;
  color: #fff;

  border: none;
  border-radius: 10px;

  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;

  cursor: pointer;

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);

  transition: all 0.2s ease;
}

.access-panel button:hover {
  background: #ffcc00;
  color: #000;
  transform: translateY(-2px);
}







/* make call-strip the anchor */
.call-strip {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 10001;
}

/* place brand directly under it */
.coriodermina-brand {
  position: fixed;
  top: 42px;   /* sits right under call strip */
  left: 12px;  /* SAME LEFT = perfect alignment */

  padding: 4px 12px;
  border-radius: 999px;

  background: linear-gradient(135deg, #cc0000, #ffcc00);
  color: #fff;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;

  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;

  box-shadow: 0 3px 10px rgba(204,0,0,0.25);

  z-index: 10001;
  pointer-events: none;
}






/* =========================
   SECTION TITLE (PREMIUM)
========================= */
.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 900;

  background: linear-gradient(135deg, #cc0000, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin: 40px 0 40px;

  animation: fadeUp 0.8s ease forwards;
}

/* =========================
   GRID
========================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* =========================
   PRODUCT CARD (GLASS + HOVER)
========================= */
.product-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);

  border-radius: 18px;
  padding: 28px;

  text-align: center;

  border: 1px solid rgba(0,0,0,0.05);

  box-shadow: 0 8px 25px rgba(0,0,0,0.06);

  transition: all 0.35s ease;

  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

/* stagger animation */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

/* hover effect */
.product-card:hover {
  transform: translateY(-8px) scale(1.02);

  box-shadow:
    0 12px 35px rgba(0,0,0,0.12),
    0 0 0 1px rgba(255,204,0,0.3);
}

/* =========================
   PRODUCT TITLE
========================= */
.product-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

/* =========================
   DESCRIPTION
========================= */
.product-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}

/* =========================
   BUTTON (UPGRADE YOUR EXISTING)
========================= */
.btn-premium {
  background: linear-gradient(135deg, #cc0000, #ffcc00) !important;
  color: #fff !important;

  padding: 12px 20px;
  border-radius: 30px;

  font-weight: 700;
  letter-spacing: 0.4px;

  display: inline-block;

  transition: all 0.25s ease;
}

/* button hover */
.btn-premium:hover {
  transform: translateY(-2px) scale(1.05);

  box-shadow: 0 8px 20px rgba(255,204,0,0.4);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}