:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dark: #9A7A30;
    --black: #0A0A0A;
    --dark: #111111;
    --dark2: #1A1A1A;
    --dark3: #232323;
    --white: #FAFAF8;
    --cream: #F5EDD8;
    --text-muted: #999;
    --green: #25D366;
  }
 
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  html { scroll-behavior: smooth; }
 
  /* body {
   background: var(--black);
    color: var(--white);
    font-family: 'Josefin Sans', sans-serif;
    overflow-x: hidden;
  }*/
  /* ─── custom ─── */
.container-bottom-a, .container-bottom-b, .container-top-a, .container-top-b {
    background: var(--black);
    padding: 0 2rem;
}
.container-bottom-b {
    margin-bottom: -1rem;
}
.header-overlay {
    color: #fff;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top,50%;
    background-size: cover;
}
.header-overlay .overlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 2.84rem 2rem 2.42rem;
    background-color: #080821b5;
    min-height:380px;
  	align-items: center;
}
.copyright {
  font-size: small;
  opacity: .5;
  background: #00000070;
  padding: .5rem;
  width: 100%;
  margin: 0;
}
.easystore-price-current, .easystore-price-original {
    display: none;
    position: relative;
}
.easystore-product-single .easystore-btn-add-to-cart {
    display: none;
}
.easystore-btn-add-to-cart {
    display: none!important;
}
  /* ─── FLOATING ACTION BUTTONS ─── */
  .fab-stack {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
  }
  .fab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 50px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 6px 30px rgba(0,0,0,0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
  }
  .fab:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(0,0,0,0.6); }
  .fab-wa { background: var(--green); color: #fff; }
  .fab-call { background: var(--gold); color: var(--black); }
  .fab svg { width: 20px; height: 20px; flex-shrink: 0; }
 
  /* ─── HEADER / NAV ─── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
 
  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }
  .logo-icon {
    width: 46px;
    height: 46px;
  }
  .logo-text { line-height: 1.15; }
  .logo-text .brand { font-family: 'Josefin Sans', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: 3px; }
  .logo-text .brand span { color: var(--gold); }
  .logo-text .sub { font-size: 9px; letter-spacing: 3px; color: var(--text-muted); }
 
  nav { display: flex; gap: 32px; align-items: center; }
  nav a { color: var(--text-muted); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; transition: color 0.2s; }
  nav a:hover { color: var(--gold); }
 
  .nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 10px 22px;
    border-radius: 3px;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    transition: background 0.2s, transform 0.2s !important;
  }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
 
  .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
  .hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: all 0.3s; }
 
  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 40px 80px;
    text-align: center;
  }
 
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,168,76,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 20% 20%, rgba(201,168,76,0.06) 0%, transparent 50%);
  }
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }
 
  .hero-content { position: relative; z-index: 2; max-width: 900px; }
  .hero-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 4px;
    padding: 7px 20px;
    margin-bottom: 36px;
    text-transform: uppercase;
    animation: fadeUp 0.8s ease both;
  }
 
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 8vw, 110px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -1px;
    margin-bottom: 10px;
    animation: fadeUp 0.8s 0.15s ease both;
  }
  .hero h1 .gold { color: var(--gold); font-style: italic; }
  .hero-tagline {
    font-size: clamp(11px, 1.5vw, 14px);
    letter-spacing: 5px;
    color: var(--text-muted);
    margin: 24px 0 48px;
    animation: fadeUp 0.8s 0.3s ease both;
  }
 
  .hero-pills {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.45s ease both;
  }
  .pill {
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 2px;
    padding: 9px 18px;
    border-radius: 2px;
  }
 
  .hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.6s ease both;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 16px 40px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 16px 40px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
 
  /* ─── STATS BAR ─── */
  .stats-bar {
    background: var(--dark2);
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 36px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label { font-size: 10px; letter-spacing: 2.5px; color: var(--text-muted); margin-top: 6px; text-transform: uppercase; }
 
  /* ─── SECTION BASE ─── */
  section { padding: 100px 40px; }
  .section-label { font-size: 10px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 20px;
    color: var(--white);
  }
  .section-title em { color: var(--gold); font-style: italic; }
  .section-sub { font-size: 13px; color: var(--text-muted); letter-spacing: 0.5px; line-height: 1.8; max-width: 560px; }
  .divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px 0;
  }
 
  /* ─── CATEGORIES ─── */
  .categories { background: var(--dark); }
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
  }
  .cat-card {
    background: var(--dark2);
    padding: 44px 36px;
    border: 1px solid rgba(201,168,76,0.08);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, background 0.3s;
    cursor: pointer;
  }
  .cat-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .cat-card:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.04); }
  .cat-card:hover::before { transform: scaleX(1); }
 
  .cat-icon {
    width: 56px;
    height: 56px;
    background: rgba(201,168,76,0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  .cat-icon svg { width: 28px; height: 28px; color: var(--gold); }
  .cat-card h3 { font-size: 18px; letter-spacing: 1.5px; margin-bottom: 14px; font-weight: 600; }
  .cat-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .cat-card ul li { font-size: 12px; color: var(--text-muted); letter-spacing: 0.5px; display: flex; align-items: center; gap: 8px; }
  .cat-card ul li::before { content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
 
  /* ─── ABOUT ─── */
  .about {
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-visual {
    position: relative;
  }
  .about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 90px;
    color: rgba(201,168,76,0.2);
    overflow: hidden;
  }
  .about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--black);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 12px 40px rgba(201,168,76,0.4);
  }
  .about-badge-float .num { font-family: 'Cormorant Garamond', serif; font-size: 36px; line-height: 1; }
  .about-badge-float .txt { font-size: 9px; letter-spacing: 1.5px; margin-top: 2px; }
 
  .features-list { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
  .feature-row { display: flex; gap: 16px; align-items: flex-start; }
  .feature-dot { width: 40px; height: 40px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); border-radius: 4px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
  .feature-dot svg { width: 18px; height: 18px; color: var(--gold); }
  .feature-text h4 { font-size: 13px; letter-spacing: 1.5px; margin-bottom: 4px; }
  .feature-text p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
 
  /* ─── PRODUCTS DETAIL ─── */
  .products-detail { background: var(--dark); }
  .products-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }
  .tab-btn {
    background: transparent;
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--text-muted);
    padding: 10px 24px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
  }
  .tab-btn:hover, .tab-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); font-weight: 700; }
 
  .products-grid { display: none; grid-template-columns: repeat(4, 1fr); gap: 2px; }
  .products-grid.active { display: grid; }
 
  .product-card {
    background: var(--dark2);
    padding: 30px 24px;
    border: 1px solid rgba(201,168,76,0.08);
    transition: border-color 0.3s, transform 0.2s;
    position: relative;
  }
  .product-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
  .product-icon { font-size: 36px; margin-bottom: 16px; }
  .product-card h4 { font-size: 14px; letter-spacing: 1px; margin-bottom: 8px; font-weight: 600; }
  .product-card p { font-size: 11px; color: var(--text-muted); line-height: 1.7; }
  .product-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 4px 10px;
    text-transform: uppercase;
  }
 
  /* ─── WHY CHOOSE ─── */
  .why { background: var(--black); }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
  .why-card {
    background: var(--dark2);
    padding: 50px 36px;
    border: 1px solid rgba(201,168,76,0.08);
    text-align: center;
    transition: background 0.3s;
  }
  .why-card:hover { background: rgba(201,168,76,0.04); }
  .why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    color: rgba(201,168,76,0.72);
    line-height: 1;
    margin-bottom: 20px;
  }
  .why-card h3 { font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; text-transform: uppercase; }
  .why-card p { font-size: 12px; color: var(--text-muted); line-height: 1.8; }
 
  /* ─── CONTACT ─── */
  
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 60px; }
  .contact-info { display: flex; flex-direction: column; gap: 32px; }
  .contact-item { display: flex; gap: 20px; align-items: flex-start; }
  .contact-item-icon {
    width: 48px; height: 48px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .contact-item-icon svg { width: 22px; height: 22px; color: var(--gold); }
  .contact-item h4 { font-size: 10px; letter-spacing: 3px; color: var(--gold); margin-bottom: 6px; text-transform: uppercase; }
  .contact-item a, .contact-item p { font-size: 15px; color: var(--white); text-decoration: none; display: block; line-height: 1.6; }
  .contact-item a:hover { color: var(--gold); }
 
  .contact-actions { display: flex; flex-direction: column; gap: 16px; }
  .contact-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .contact-btn:hover { transform: translateX(6px); }
  .contact-btn-wa { background: var(--green); color: #fff; box-shadow: 0 6px 30px rgba(37,211,102,0.25); }
  .contact-btn-call { background: var(--gold); color: var(--black); box-shadow: 0 6px 30px rgba(201,168,76,0.3); }
  .contact-btn-call2 { background: var(--dark3); color: var(--white); border: 1px solid rgba(201,168,76,0.3); }
  .contact-btn-email { background: var(--dark3); color: var(--white); border: 1px solid rgba(255,255,255,0.1); }
  .contact-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
  .contact-btn .btn-sub { font-size: 10px; font-weight: 400; opacity: 0.75; display: block; margin-top: 2px; }
 
  /* ─── FOOTER ─── */
  footer {
    background: var(--black);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 60px 40px 30px;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 50px; }
  .footer-brand { }
  .footer-logo { font-family: 'Josefin Sans', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: 3px; color: var(--white); margin-bottom: 6px; }
  .footer-logo span { color: var(--gold); }
  .footer-domain { font-size: 10px; letter-spacing: 2px; color: var(--gold-dark); margin-bottom: 16px; }
  .footer-brand p { font-size: 12px; color: var(--text-muted); line-height: 1.8; }
 
  .footer-col h5 { font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: 12px; color: var(--text-muted); text-decoration: none; letter-spacing: 0.5px; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--white); }
 
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
  }
  .footer-bottom a { color: var(--gold); text-decoration: none; }
 
  /* ─── TICKER ─── */
  .ticker {
    background: var(--gold);
    color: var(--black);
    overflow: hidden;
    padding: 12px 0;
    white-space: nowrap;
  }
  .ticker-inner {
    display: inline-block;
    animation: ticker 28s linear infinite;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
  }
  .ticker-inner span { margin: 0 40px; }
  .ticker-inner span::before { content: '◆ '; }
 
  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
 
  /* ─── MOBILE NAV ─── */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(12px);
    padding: 30px 40px;
    z-index: 850;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { color: var(--white); font-size: 14px; letter-spacing: 2px; text-decoration: none; text-transform: uppercase; }
 
  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
  }
 
  @media (max-width: 768px) {
    header { padding: 0 20px; }
    nav { display: none; }
    .hamburger { display: flex; }
 
    section { padding: 70px 20px; }
    .hero { padding: 100px 20px 60px; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 30px 20px; }
    .about { grid-template-columns: 1fr; gap: 40px; padding: 70px 20px; }
    .about-visual { display: none; }
    .cat-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .fab-stack { bottom: 20px; right: 16px; }
    .fab span.fab-label { display: none; }
    .fab { padding: 14px; border-radius: 50%; }
    .fab svg { width: 24px; height: 24px; }
  }
 
  @media (max-width: 480px) {
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 52px; }
    .hero-actions { flex-direction: column; align-items: center; }
  }