/* ==========================================================================
   ASHLESHA JEWELLERY - COMPLETE UNIFIED LUXURY THEME STYLES (01, 02, 03, 04)
   FULL RESPONSIVE DESIGN FOR ALL SCREENS (DESKTOP, 13" MACBOOK, TABLET, MOBILE)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --ash-bg-main: #F5F2EB;
  --ash-bg-card: #F0ECE3;
  --ash-dark-green: #0D1B16;
  --ash-gold: #C5A059;
  --ash-gold-light: #D5B675;
  --ash-text-dark: #1C1C1C;
  --ash-text-muted: #555555;
  --ash-border: #EAE4D8;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;
}

/* --------------------------------------------------------------------------
   0. OVERRIDE PRESTASHOP DEFAULT MARGINS & CONTAINER CONSTRAINTS
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box !important;
}

html,
body {
  background-color: var(--ash-bg-main) !important;
  color: var(--ash-text-dark) !important;
  font-family: var(--font-body) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
}

/* Kill Bootstrap reboot focus ring on mouse clicks, keep it for keyboard users */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
.btn:focus:not(:focus-visible),
[tabindex]:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none !important;
  box-shadow: none !important;
}

#page,
#wrapper,
#main,
#content,
.container,
.container-fluid,
#content-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background-color: transparent !important;
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading) !important;
  font-weight: 500 !important;
  color: var(--ash-text-dark);
  letter-spacing: 0.5px;
}

/* Hide PrestaShop Default Left/Right Columns & Breadcrumbs */
#left-column,
#right-column,
.block-categories,
#search_filters,
.search-filters,
#js-product-list-top,
.breadcrumb,
nav.breadcrumb,
#wrapper .breadcrumb {
  display: none !important;
}

/* --------------------------------------------------------------------------
   1. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
#header {
  width: 100% !important;
  background-color: var(--ash-bg-main) !important;
  border-bottom: 1px solid var(--ash-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.ash-header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px max(14px, 2.5vw);
  max-width: 1600px;
  margin: 0 auto;
}

.ash-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  flex-shrink: 0;
}

.ash-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ash-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ash-gold);
  font-size: 16px;
}

.ash-logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--ash-dark-green);
  text-transform: uppercase;
  line-height: 1;
}

.ash-logo-subtext {
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--ash-gold);
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}

.ash-nav-menu {
  display: flex;
  gap: clamp(18px, 2.5vw, 45px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.ash-nav-menu a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: var(--ash-text-dark);
  text-decoration: none !important;
  text-transform: uppercase;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.ash-nav-menu a:hover {
  color: var(--ash-gold);
}

.ash-header-right-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ash-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ash-text-dark);
  font-size: 17px;
  flex-shrink: 0;
}

.ash-header-actions a {
  color: var(--ash-text-dark);
  transition: color 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
}

.ash-header-actions a:hover {
  color: var(--ash-gold);
}

/* Hamburger Button (Mobile / Tablet Only) */
.ash-hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--ash-dark-green);
  cursor: pointer;
  padding: 5px;
  transition: color 0.2s ease;
}

.ash-hamburger-btn:hover {
  color: var(--ash-gold);
}

@media (max-width: 991px) {
  .ash-hamburger-btn {
    display: block !important;
  }

  .ash-nav-menu,
  .ash-header-actions {
    display: none !important;
  }
}

.ash-cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--ash-gold);
  color: #FFF;
  font-size: 9px;
  font-weight: 700;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.ash-btn-primary {
  display: inline-block;
  background-color: var(--ash-dark-green);
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--ash-dark-green);
  text-decoration: none !important;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 1px;
}

.ash-btn-primary:hover {
  background-color: var(--ash-gold);
  border-color: var(--ash-gold);
  color: #FFFFFF !important;
}

.ash-btn-gold {
  display: inline-block;
  background-color: var(--ash-gold) !important;
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--ash-gold);
  text-decoration: none !important;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 1px;
}

.ash-btn-gold:hover {
  background-color: var(--ash-dark-green) !important;
  border-color: var(--ash-dark-green) !important;
}

/* --------------------------------------------------------------------------
   2. TRUST BADGES ROW (FULL WIDTH)
   -------------------------------------------------------------------------- */
.ash-trust-wrapper {
  width: 100% !important;
  background-color: #EFEBE1;
  border-top: 1px solid var(--ash-border);
  border-bottom: 1px solid var(--ash-border);
  padding: 25px max(20px, 4vw);
  margin-bottom: 0;
}

.ash-trust-row {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ash-trust-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ash-trust-box i {
  font-size: 22px;
  color: var(--ash-text-dark);
}

.ash-trust-box strong {
  display: block;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ash-text-dark);
  font-weight: 700;
}

.ash-trust-box span {
  display: block;
  font-size: 11px;
  color: var(--ash-text-muted);
}


/* ==========================================================================
   NATIVE MOBILE MENU (replaces custom JS drawer)
   ========================================================================== */
#mobile_top_menu_wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 340px);
  margin: 0;
  padding: 0;
  background: var(--ash-bg-main);
  border-left: 1px solid var(--ash-border);
  z-index: 10000;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
  flex-direction: column;
}

#mobile_top_menu_wrapper .js-top-menu .top-menu {
  flex-direction: column;
  align-items: stretch;
}

#mobile_top_menu_wrapper .js-top-menu .sub-menu {
  position: static;
  box-shadow: none;
}

.ash-mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  border-bottom: 1px solid var(--ash-border);
  position: sticky;
  top: 0;
  background: var(--ash-bg-main);
  z-index: 2;
}

.ash-mobile-drawer-title {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--ash-dark-green);
}

.ash-mobile-drawer-close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--ash-text-muted);
  cursor: pointer;
  padding: 5px 8px;
  line-height: 1;
  transition: color 0.2s ease;
}

.ash-mobile-drawer-close:hover {
  color: var(--ash-gold);
}

.ash-mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 5px 25px 20px;
}

.ash-mobile-menu-group {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px solid var(--ash-border);
}

.ash-mobile-menu-group:last-child {
  border-bottom: none;
}

.ash-mobile-menu-parent {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ash-dark-green);
  text-decoration: none;
  padding: 4px 0 8px;
}

.ash-cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--ash-gold);
  color: #FFF;
  font-size: 9px;
  font-weight: 700;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.ash-btn-primary {
  display: inline-block;
  background-color: var(--ash-dark-green);
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--ash-dark-green);
  text-decoration: none !important;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 1px;
}

.ash-btn-primary:hover {
  background-color: var(--ash-gold);
  border-color: var(--ash-gold);
  color: #FFFFFF !important;
}

.ash-btn-gold {
  display: inline-block;
  background-color: var(--ash-gold) !important;
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--ash-gold);
  text-decoration: none !important;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 1px;
}

.ash-btn-gold:hover {
  background-color: var(--ash-dark-green) !important;
  border-color: var(--ash-dark-green) !important;
}

/* --------------------------------------------------------------------------
   2. TRUST BADGES ROW (FULL WIDTH)
   -------------------------------------------------------------------------- */
.ash-trust-wrapper {
  width: 100% !important;
  background-color: #EFEBE1;
  border-top: 1px solid var(--ash-border);
  border-bottom: 1px solid var(--ash-border);
  padding: 25px max(20px, 4vw);
  margin-bottom: 0;
}

.ash-trust-row {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ash-trust-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ash-trust-box i {
  font-size: 22px;
  color: var(--ash-text-dark);
}

.ash-trust-box strong {
  display: block;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ash-text-dark);
  font-weight: 700;
}

.ash-trust-box span {
  display: block;
  font-size: 11px;
  color: var(--ash-text-muted);
}


/* ==========================================================================
   NATIVE MOBILE MENU (replaces custom JS drawer)
   ========================================================================== */
#mobile_top_menu_wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 340px);
  margin: 0;
  padding: 0;
  background: var(--ash-bg-main);
  border-left: 1px solid var(--ash-border);
  z-index: 10000;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
  flex-direction: column;
}

#mobile_top_menu_wrapper .js-top-menu .top-menu {
  flex-direction: column;
  align-items: stretch;
}

#mobile_top_menu_wrapper .js-top-menu .sub-menu {
  position: static;
  box-shadow: none;
}

.ash-mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  border-bottom: 1px solid var(--ash-border);
  position: sticky;
  top: 0;
  background: var(--ash-bg-main);
  z-index: 2;
}

.ash-mobile-drawer-title {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--ash-dark-green);
}

.ash-mobile-drawer-close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--ash-text-muted);
  cursor: pointer;
  padding: 5px 8px;
  line-height: 1;
  transition: color 0.2s ease;
}

.ash-mobile-drawer-close:hover {
  color: var(--ash-gold);
}

.ash-mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 5px 25px 20px;
}

.ash-mobile-menu-group {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px solid var(--ash-border);
}

.ash-mobile-menu-group:last-child {
  border-bottom: none;
}

.ash-mobile-menu-parent {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ash-dark-green);
  text-decoration: none;
  padding: 4px 0 8px;
}

.ash-mobile-menu-child {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--ash-text-muted);
  text-decoration: none;
  padding: 4px 0 4px 14px;
}

.ash-mobile-menu-parent:hover,
.ash-mobile-menu-child:hover {
  color: var(--ash-gold);
}

.ash-mobile-menu-actions {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 12px;
  padding: 12px 15px;
  margin: 15px 25px 15px 25px;
  background-color: var(--ash-bg-card);
  border-radius: 4px;
  border: 1px solid var(--ash-border);
}

.ash-mobile-menu-actions a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--ash-dark-green);
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ash-mobile-menu-actions a:hover {
  color: var(--ash-gold);
}

.ash-nav-menu>.ash-nav-item>a {
  font-size: 10px;
  letter-spacing: 1.1px;
}

.ash-nav-item {
  position: relative;
}

.ash-nav-item .ash-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 215px;
  background: var(--ash-bg-card, #F0ECE3);
  border: 1px solid var(--ash-border, #EAE4D8);
  border-top: 2px solid var(--ash-gold, #C5A059);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  display: none;
  z-index: 120;
}

.ash-nav-item:hover .ash-dropdown,
.ash-nav-item:focus-within .ash-dropdown {
  display: block;
}

.ash-nav-item .ash-dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.1px;
  text-transform: none;
  color: var(--ash-text-dark, #1C1C1C);
}

.ash-nav-item .ash-dropdown a:hover {
  color: var(--ash-gold, #C5A059);
  background: rgba(197, 160, 89, 0.08);
}