.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* ============================================
   JANAN APPAREL — SHARED STYLE SYSTEM
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --blush: #FCEEF1;
  --blush-soft: #FAF5F3;
  --rose: #E8A0AF;
  --rose-dark: #C97A8C;
  --ink: #2E2326;
  --ink-soft: #6B5C5F;
  --cream: #FFFCFA;
  --gold: #C9A267;
  --line: #F0E2E5;
  --green: #7BA88A;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,252,250,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 42px;
  width: auto;
}

.logo-text {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rose-dark);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rose-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush);
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}

.icon-btn:hover { background: var(--rose); }
.icon-btn svg { width: 18px; height: 18px; stroke: var(--rose-dark); }
.icon-btn:hover svg { stroke: #fff; }

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    width: 100%;
    padding: 14px 24px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a.active::after { display: none; }
  .mobile-toggle { display: flex; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light:hover { background: var(--blush); }

/* ============ PRODUCT CARD ============ */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(46,35,38,0.04), 0 12px 28px -8px rgba(201,122,140,0.18);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
  border: 1px solid var(--line);
  position: relative;
  display: block;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1px 2px rgba(46,35,38,0.04), 0 20px 36px -10px rgba(201,122,140,0.28);
}
.product-card .img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--blush) 0%, #fff 100%);
  overflow: hidden;
}
.product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.04); }

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  color: var(--rose-dark);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.organic-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(4px);
  padding: 7px 14px;
  font-size: 10.5px;
  color: var(--ink-soft);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.organic-strip svg { width: 12px; height: 12px; stroke: var(--green); flex-shrink: 0; }

.card-content { padding: 18px 18px 20px; }

.card-tag {
  font-size: 10.5px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 7px;
  display: block;
}

.card-content h3 {
  font-size: 18px;
  margin-bottom: 7px;
  line-height: 1.3;
}

.card-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 14px;
}

.card-divider { height: 1px; background: var(--line); margin-bottom: 14px; }

.card-row { display: flex; align-items: center; justify-content: space-between; }

.card-price { font-size: 19px; font-weight: 700; color: var(--ink); font-family: 'Inter', sans-serif; }

.add-btn {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.add-btn:hover { background: var(--rose-dark); transform: translateY(-1px); }
.add-btn svg { width: 14px; height: 14px; stroke: #fff; }

/* ============ SECTION HELPERS ============ */
.section { padding: 80px 0; }
.section-tight { padding: 50px 0; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 10px;
  display: block;
}

.section-head { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.section-head h2 { font-size: 34px; margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 15.5px; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: #f0e6e8;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p {
  margin-top: 14px;
  font-size: 13.5px;
  color: #c9b8bb;
  line-height: 1.6;
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--rose); }
.footer-social svg { width: 16px; height: 16px; stroke: #fff; }

.footer-col h4 {
  color: #fff;
  font-size: 14.5px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a {
  font-size: 13.5px;
  color: #c9b8bb;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--rose); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #c9b8bb;
}
.footer-contact svg { width: 15px; height: 15px; stroke: var(--rose); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding: 22px 24px;
  text-align: center;
  font-size: 12.5px;
  color: #9a8a8d;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ WHATSAPP FLOATING BUTTON ============ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  z-index: 200;
  transition: transform 0.2s ease;
  animation: wa-pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

@keyframes wa-pulse {
  0% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
  background: var(--blush-soft);
  padding: 16px 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}
.breadcrumb-inner a { color: var(--ink-soft); }
.breadcrumb-inner a:hover { color: var(--rose-dark); }
.breadcrumb-inner .current { color: var(--rose-dark); font-weight: 600; }

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .section-head h2 { font-size: 26px; }
}/* End custom CSS */