@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300..800&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Karla:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --ep-bg: #FDFBF7;
  --ep-bg-secondary: #F6F4EB;
  --ep-text: #212121;
  --ep-text-light: #636262;
  --ep-border: #e2e1df;
  --ep-accent: #ab8c52;
  
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-alt: 'Karla', sans-serif;
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  font-family: var(--font-body) !important;
  background-color: var(--ep-bg) !important;
  color: var(--ep-text) !important;
}

* {
  font-family: var(--font-body);
}

.ep-letter-grid span {
  font-family: 'Fredoka One', cursive !important;
}

h1, h2, h3, h4, h5, h6, .ep-hero-title, .ep-product-title a, .ep-section-title {
  font-family: var(--font-heading) !important;
  color: var(--ep-text);
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* Announcement Bar */
.ep-announcement-bar {
  background-color: var(--ep-text);
  color: white;
  text-align: center;
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Header */
/* Default header state (Solid white background, dark text) */
.ep-header {
  background: var(--ep-bg);
  border-bottom: 1px solid var(--ep-border);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.ep-header .ep-logo-text,
.ep-header .ep-mega-menu-trigger,
.ep-header .ep-nav-link-simple,
.ep-header .ep-header-icon {
  color: var(--ep-text) !important;
}

/* Transparent state (Only when it has header-transparent class AND is not scrolled) */
.ep-header.header-transparent:not(.scrolled) {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.ep-header.header-transparent:not(.scrolled) .ep-logo-text,
.ep-header.header-transparent:not(.scrolled) .ep-mega-menu-trigger,
.ep-header.header-transparent:not(.scrolled) .ep-nav-link-simple,
.ep-header.header-transparent:not(.scrolled) .ep-header-icon {
  color: white !important;
}

.ep-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 5px 20px;
  position: relative;
}

.ep-header-left, .ep-header-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.ep-header-right {
  justify-content: flex-end;
  gap: 20px;
}

.ep-header-center {
  flex: 0 0 auto;
}

.ep-header-center .logo {
  height: 35px;
  object-fit: contain;
}

.ep-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.ep-nav a.ep-nav-link-simple {
  text-decoration: none;
  color: var(--ep-text);
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 5px;
}

/* Mega Menu */
.ep-mega-menu-wrapper {
  position: static;
}

.ep-mega-menu-trigger {
  text-decoration: none;
  color: var(--ep-text);
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.ep-mega-menu-wrapper:hover .ep-mega-menu-trigger {
  border-color: var(--ep-border);
}

.ep-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border-top: 1px solid var(--ep-border);
  border-bottom: 1px solid var(--ep-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 40px 20px 50px 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.ep-mega-menu-wrapper:hover .ep-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ep-mega-menu-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.ep-mega-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ep-mega-heading {
  font-family: var(--font-heading) !important;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--ep-text);
  text-decoration: none;
  line-height: 1.3;
}
.ep-mega-heading sup {
  font-size: 10px;
  color: var(--ep-text-light);
  font-family: var(--font-body);
}

.ep-mega-subheading {
  font-family: var(--font-heading) !important;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ep-text);
  margin-bottom: 5px;
}

.ep-mega-link {
  font-size: 13px;
  color: var(--ep-text);
  text-decoration: none;
  transition: opacity 0.3s;
}
.ep-mega-link:hover {
  opacity: 0.6;
}

.ep-mega-images {
  flex-direction: row;
  gap: 15px;
}
.ep-mega-img-card {
  position: relative;
  width: 220px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  display: block;
}
.ep-mega-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ep-mega-img-card:hover img {
  transform: scale(1.05);
}
.ep-mega-img-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.7);
  color: white;
  padding: 6px 12px;
  font-size: 9px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
}

.ep-header-icon {
  color: var(--ep-text);
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
  background: none;
  border: none;
  padding: 0;
}

.ep-header-icon:hover {
  color: var(--ep-accent);
}

/* Buttons */
.ep-btn {
  display: inline-block;
  background-color: var(--ep-text) !important;
  color: white !important;
  border: 1px solid var(--ep-text) !important;
  padding: 12px 25px !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  text-decoration: none !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  border-radius: 0 !important;
}

.ep-btn:hover {
  background-color: white !important;
  color: var(--ep-text) !important;
}

.ep-btn-outline {
  background-color: transparent !important;
  color: var(--ep-text) !important;
}
.ep-btn-outline:hover {
  background-color: var(--ep-text) !important;
  color: white !important;
}

/* Footer */
.ep-footer {
  background-color: var(--ep-bg-secondary);
  padding: 60px 0 30px;
  border-top: 1px solid var(--ep-border);
  margin-top: 60px;
}
.ep-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.ep-footer-widget {
  flex: 1;
  min-width: 200px;
}
.ep-footer-widget h4 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.ep-footer-widget a {
  display: block;
  color: var(--ep-text-light);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 14px;
  transition: color 0.3s;
}
.ep-footer-widget a:hover {
  color: var(--ep-accent);
}
.ep-footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--ep-border);
  color: var(--ep-text-light);
  font-size: 13px;
}

/* Products */
.ep-product-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f7f7f7;
  margin-bottom: 0;
}

.ep-card-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.ep-card-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ep-card-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.ep-secondary-img {
  opacity: 0;
}

.ep-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}



.ep-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}

.ep-swatch {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #e8c93a;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.2);
  margin-bottom: 5px;
}

.ep-card-title {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  margin: 0 0 3px !important;
  color: var(--ep-text) !important;
  transition: color 0.4s ease;
}

.ep-card-price {
  font-size: 11px;
  color: var(--ep-text-light);
  margin-bottom: 3px;
  transition: color 0.4s ease;
}

.ep-card-rating {
  font-size: 10px;
  color: var(--ep-text);
}
.ep-card-rating i {
  color: var(--ep-text);
  transition: color 0.4s ease;
}

.ep-cart-icon {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.ep-cart-icon i {
  font-size: 16px;
  color: var(--ep-text);
  transition: color 0.4s ease;
}



/* Form inputs */
.ep-input {
  border: 1px solid var(--ep-border);
  padding: 10px 15px;
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
  border-radius: 0;
  background: transparent;
}
.ep-input:focus {
  outline: none;
  border-color: var(--ep-text);
}

/* Hero Section */
.ep-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--ep-bg-secondary);
}
.ep-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.ep-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 40px;
  max-width: 800px;
}
.ep-hero-content.light-text {
  color: white;
}
.ep-hero-content.dark-text {
  color: var(--ep-text);
}
.ep-hero-subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  margin-bottom: 20px;
  display: block;
}
.ep-hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .ep-hero-title {
    font-size: 2.5rem;
  }
}

  .ep-header:not(.scrolled) .ep-logo-text,
 .ep-header:not(.scrolled) .ep-mega-menu-trigger,
 .ep-header:not(.scrolled) .ep-nav-link-simple,
 .ep-header:not(.scrolled) .ep-header-icon {
         color: white !important;
 }

/* Mobile Menu Refactor */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

.ep-mobile-menu {
  background: white;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  width: 100% !important; /* Full screen width */
  max-width: 100% !important;
}

.ep-mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  margin-bottom: 40px;
}

.ul-sidebar-closer {
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: none;
  border: none;
  padding: 0;
  color: #111;
  cursor: pointer;
}

.ep-mobile-menu-logo {
  font-family: 'Playfair Display', serif !important;
  font-size: 2.2rem;
  color: #111;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.ep-mobile-menu-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.ep-mobile-search-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #111;
  text-decoration: none;
  margin-bottom: 40px;
}
.ep-mobile-search-btn i {
  font-size: 16px;
}

.ep-mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ep-mobile-nav-item {
  font-family: 'Playfair Display', serif !important;
  font-size: 2.2rem;
  color: #111;
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 1;
}

.ep-mobile-nav-item sup {
  font-family: var(--font-body);
  font-size: 10px;
  margin-left: 5px;
  top: -1em;
}

.ep-mobile-nav-item span {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
}

.ep-mobile-nav-item.sale-item {
  color: #c95d5d;
}

.ep-mobile-menu-footer {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ep-mobile-menu-footer a {
  font-family: var(--font-body);
  font-size: 10px;
  color: #111;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.ep-mobile-watermark {
  position: absolute;
  bottom: -20px;
  left: -10px;
  font-family: 'Playfair Display', serif !important;
  font-size: 30vw;
  color: rgba(0,0,0,0.03);
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}