/* ============================================================
   ECNARGARF — FINAL STABLE CSS v10.0
   ============================================================ */

/* ---------- Core ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter+Tight:wght@400;500;600&display=swap');

:root {
  --navy: #0a1624;
  --navy-dark: #050d17;
  --gold: #d7b86c;
  --ivory: #f8f6f1;
  --gray: #a1a1a1;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter Tight', sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box}
html{font-size:87%;scroll-behavior:smooth}
body{
  background:var(--navy-dark);
  color:var(--ivory);
  font-family:var(--font-body);
  line-height:1.65;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  background:linear-gradient(to bottom,var(--navy),#0d2034);
  border-bottom:1px solid rgba(255,255,255,0.05);
  text-align:center;
  padding:1rem 0 .6rem;
  position:sticky;
  top:0;
  z-index:1000;
}
.logo img{height:60px;margin:0 auto .6rem;display:block}
.main-nav{display:flex;justify-content:center}
.main-menu{list-style:none;display:flex;flex-wrap:wrap;gap:1.8rem;padding:.5rem 0}
.main-menu li a{
  font-family:var(--font-heading);
  font-size:.9rem;
  text-transform:uppercase;
  color:var(--ivory);
  letter-spacing:.05em;
  position:relative;
  transition:color .3s;
}
.main-menu li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:1px;
  background:var(--gold);
  transition:width .3s ease;
}
.main-menu li a:hover{color:var(--gold)}
.main-menu li a:hover::after{width:100%}
.menu-toggle{display:none;font-size:1.6rem;color:var(--gold);cursor:pointer}
@media(max-width:991px){
  .menu-toggle{display:block}
  .main-nav{display:none;flex-direction:column}
  .main-nav.active{display:flex}
  .main-menu{flex-direction:column;gap:1rem}
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  background:linear-gradient(135deg,var(--navy-dark),var(--navy),var(--gold));
  background-size:400% 400%;
  animation:shimmer 14s ease-in-out infinite;
  min-height:75vh;
  display:flex;align-items:center;justify-content:center;text-align:center;
}
@keyframes shimmer{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
.hero-content h1{
  font-family:var(--font-heading);
  font-size:3rem;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.07em;
}
.hero-content p{max-width:600px;margin:1rem auto 1.5rem;font-size:1rem}
.btn{
  display:inline-block;
  border:1px solid var(--gold);
  color:var(--gold);
  padding:.6rem 1.8rem;
  border-radius:2rem;
  font-weight:600;
  transition:all .3s;
}
.btn:hover{background:var(--gold);color:var(--navy)}

/* ============================================================
   GENERIC SECTIONS
   ============================================================ */
section{padding:4rem 2rem;text-align:center}
h1,h2{font-family:var(--font-heading);color:var(--gold)}
h1{font-size:2rem}h2{font-size:1.4rem}
p{color:var(--gray)}

/* ============================================================
   SIGNATURE COLLECTION
   ============================================================ */
.signature-section{
  background:var(--navy-dark);
  text-align:center;
  padding:5rem 1.5rem 4rem;
}
.signature-section h2{
  font-size:1.6rem;
  text-transform:uppercase;
  margin-bottom:2rem;
}
.signature-collections{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  justify-items:center;
  gap:2rem;
  max-width:1200px;
  margin:0 auto;
}
.signature-item img{
  width:160px;
  height:160px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid var(--gold);
  background:var(--navy-dark);
  box-shadow:0 0 6px rgba(215,184,108,.25);
  margin-bottom:.4rem;
  transition:transform .3s,box-shadow .3s;
}
.signature-item img:hover{
  transform:translateY(-4px);
  box-shadow:0 0 12px rgba(215,184,108,.5);
}
.signature-item h3{
  font-size:.85rem;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.03em;
}
@media(max-width:1100px){
  .signature-collections{grid-template-columns:repeat(4,1fr);gap:1.4rem}
  .signature-item img{width:130px;height:130px}
}
@media(max-width:768px){
  .signature-collections{grid-template-columns:repeat(3,1fr);gap:.8rem;max-width:95%}
  .signature-item img{width:90px;height:90px}
  .signature-item h3{font-size:.65rem}
}
@media(max-width:480px){
  .signature-collections{grid-template-columns:repeat(2,1fr)}
  .signature-item img{width:80px;height:80px}
  .signature-item h3{font-size:.6rem}
}

/* ============================================================
   CATEGORY / PRODUCTS
   ============================================================ */
.category-page{padding-bottom:5rem}
.category-hero{
  background:linear-gradient(145deg,var(--navy),#0d2034);
  padding:4rem 2rem 2rem;
}
.category-layout{
  display:grid;
  grid-template-columns:240px 1fr;
  gap:2rem;
  max-width:1200px;
  margin:0 auto;
  padding:3rem 2rem;
}
.category-sidebar{
  background:none;
  border:none;
  padding:0;
  text-align:left;
}
.category-sidebar h3{
  font-family:var(--font-heading);
  font-size:1.2rem;
  color:var(--gold);
  margin-bottom:1rem;
  text-transform:uppercase;
}
.category-sidebar ul{
  list-style:none;
  padding:0;
}
.category-sidebar li{margin-bottom:.5rem}
.category-sidebar a{
  color:var(--ivory);
  text-decoration:none;
  font-size:.95rem;
  transition:color .3s;
}
.category-sidebar a:hover{color:var(--gold)}

.category-products{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:1.6rem;
}
.product-card{
  background:linear-gradient(145deg,#101d30,#1b2b44);
  border:1px solid rgba(215,184,108,.25);
  border-radius:1rem;
  padding:1rem;
  text-align:center;
  transition:transform .3s,box-shadow .3s;
}
.product-card:hover{
  transform:translateY(-5px);
  box-shadow:0 0 15px rgba(215,184,108,.3);
}
.product-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:.6rem;
  margin-bottom:1rem;
}
.product-card h3{
  font-family:var(--font-heading);
  color:var(--gold);
  font-size:.95rem;
  margin-top:.3rem;
}
.product-card p{color:var(--ivory);font-size:.9rem;margin-bottom:.6rem}
.product-card button{
  background:linear-gradient(145deg,#d7b86c,#b89a54);
  color:var(--navy);
  border:none;
  padding:.55rem 1.4rem;
  border-radius:2rem;
  font-weight:600;
  transition:all .3s;
}
.product-card button:hover{
  background:var(--ivory);
  color:var(--navy);
  box-shadow:0 0 12px rgba(215,184,108,.4);
}
@media(max-width:768px){
  .category-layout{grid-template-columns:1fr}
  .category-sidebar{text-align:center;margin-bottom:1.5rem}
  .category-products{grid-template-columns:repeat(auto-fit,minmax(160px,1fr))}
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page{
  background:var(--navy-dark);
  padding:4rem 2rem;
}
.contact-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
  max-width:1100px;
  margin:0 auto;
  align-items:start;
}
.contact-left{text-align:left}
.contact-left h2,
.contact-right h2{
  color:var(--gold);
  font-family:var(--font-heading);
  margin-bottom:1rem;
}
.contact-grid{
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.contact-card{
  background:linear-gradient(145deg,#101d30,#1b2b44);
  border:1px solid rgba(215,184,108,.25);
  border-radius:1rem;
  padding:1rem;
  display:flex;
  align-items:center;
  gap:1rem;
}
.contact-card i{color:var(--gold);font-size:1.2rem}
.contact-card h3{color:var(--gold);font-size:1rem}
.contact-card p{font-size:.9rem;color:var(--gray)}
.contact-right .contact-form{
  background:linear-gradient(145deg,#0e1b2e,#1b2a44);
  border:1px solid rgba(215,184,108,.25);
  border-radius:1rem;
  padding:1.4rem;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:.7rem 1rem;
  border-radius:.6rem;
  border:1px solid rgba(215,184,108,.3);
  background:transparent;
  color:var(--ivory);
  margin-bottom:.9rem;
}
.contact-form button{
  border:1px solid var(--gold);
  color:var(--gold);
  background:transparent;
  padding:.65rem 1.4rem;
  border-radius:2rem;
  font-weight:600;
}
.contact-form button:hover{
  background:var(--gold);
  color:var(--navy);
}
.contact-map{
  max-width:1100px;
  margin:2rem auto 0;
}
.contact-map iframe{
  width:100%;
  height:350px;
  border:none;
  border-radius:1rem;
}
@media(max-width:900px){
  .contact-layout{grid-template-columns:1fr}
  .contact-left,.contact-right{text-align:center}
  .contact-map iframe{height:260px}
}

/* ============================================================
   FOOTER
   ============================================================ */
.centered-footer{
  background:var(--navy);
  color:var(--ivory);
  text-align:center;
  padding:3.5rem 1rem 2rem;
  border-top:1px solid rgba(255,255,255,.08);
}
.newsletter-bar{margin-bottom:2rem}
.newsletter-text{font-size:.95rem;color:var(--gray);margin-bottom:.8rem}
.newsletter input{
  width:280px;padding:.6rem 1rem;border-radius:2rem;
  border:1px solid var(--gold);background:transparent;color:var(--ivory);
  margin-bottom:.6rem;
}
.newsletter button{
  background:var(--gold);color:var(--navy);
  border:none;padding:.5rem 1.4rem;border-radius:2rem;font-weight:600;
}
.newsletter button:hover{background:var(--ivory);color:var(--navy)}
.social-row{margin:1.5rem 0}
.social-links{list-style:none;display:flex;justify-content:center;flex-wrap:wrap;gap:1rem}
.social-links a{color:var(--ivory);font-size:1.2rem;transition:color .3s}
.social-links a:hover{color:var(--gold)}
.footer-links{margin:.8rem auto;max-width:1100px}
.footer-menu{list-style:none;display:flex;justify-content:center;flex-wrap:wrap;font-size:.85rem;line-height:1.5}
.footer-menu li:not(:last-child)::after{content:"|";color:var(--gold);margin:0 .3rem}
.footer-payment{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-top:1rem;
}
.footer-payment img{
  height:26px;
  filter:brightness(0) invert(1);
  opacity:.85;
  transition:opacity .3s;
}
.footer-payment img:hover{opacity:1}
.footer-base{font-size:.8rem;color:var(--gray);margin-top:1rem}
@media(max-width:768px){.footer-menu{font-size:.78rem}}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner{
  position:fixed;bottom:0;left:0;right:0;
  background:rgba(10,22,36,.97);color:var(--ivory);
  display:flex;justify-content:space-between;align-items:center;
  padding:.8rem 1rem;font-size:.85rem;border-top:1px solid rgba(215,184,108,.25);
  z-index:2000;
}
.cookie-buttons{display:flex;gap:.5rem}
.cookie-buttons button{
  background:var(--gold);border:none;color:var(--navy);
  padding:.4rem 1rem;border-radius:2rem;font-weight:600;
}

/* ============================================================
   REVEAL
   ============================================================ */
@keyframes fadeUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
.reveal{opacity:0;transform:translateY(40px);transition:all .8s ease-out}
.reveal.active{opacity:1;transform:translateY(0)}

/* ============================================================
   RESPONSIVE SCALE
   ============================================================ */
@media(max-width:768px){
  html{font-size:80%}
  h1{font-size:1.7rem}h2{font-size:1.2rem}
  p,li,a,button,input,label{font-size:.9rem}
}
/* ============================================================
   FINAL PATCH — REMOVE UNDERLINES / UNDERSCORES (Header + Footer)
   ============================================================ */

/* ----- HEADER MENU LINKS ----- */
.site-header .main-menu a {
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  position: relative;
}
.site-header .main-menu a::before,
.site-header .main-menu a::after {
  text-decoration: none !important;
  border: none !important;
}

/* Keep shimmer underline only on hover */
.site-header .main-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.site-header .main-menu a:hover::after {
  width: 100%;
}

/* ----- FOOTER LINKS ----- */
.footer-menu a,
.footer-menu li a {
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
}
.footer-menu li::before,
.footer-menu li::after {
  text-decoration: none !important;
  border: none !important;
}
.footer-menu a:hover {
  color: var(--gold);
  text-shadow: 0 0 6px rgba(215,184,108,0.4);
}
/* ============================================================
   CONTACT PAGE — LINK COLOR FIX (Email & WhatsApp)
   ============================================================ */

.contact-page a,
.contact-page a:visited {
  color: var(--ivory) !important;      /* default color */
  text-decoration: none !important;
  transition: color 0.25s ease;
}

.contact-page a:hover {
  color: var(--gold) !important;       /* hover shimmer */
  text-shadow: 0 0 6px rgba(215,184,108,0.4);
}