/* --------------------------------------------------------------------------
   6. AUTHENTICATION & CUSTOMER ACCOUNT LUXURY STYLES
   -------------------------------------------------------------------------- */
.ash-auth-page-container {
  max-width: 560px;
  margin: 50px auto 80px auto;
  padding: 0 20px;
}

.ash-auth-card {
  background-color: var(--ash-bg-card);
  border: 1px solid var(--ash-border);
  border-radius: 4px;
  padding: 45px 40px;
  box-shadow: 0 10px 30px rgba(13, 27, 22, 0.04);
}

.ash-auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--ash-border);
  margin-bottom: 30px;
}

.ash-auth-tab {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--ash-text-muted);
  text-transform: uppercase;
  text-decoration: none !important;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.ash-auth-tab.active, .ash-auth-tab:hover {
  color: var(--ash-dark-green);
  border-bottom-color: var(--ash-gold);
}

.ash-auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.ash-auth-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--ash-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ash-gold);
  font-size: 18px;
  margin-bottom: 15px;
}

.ash-auth-title {
  font-family: var(--font-heading) !important;
  font-size: 32px !important;
  font-weight: 500 !important;
  color: var(--ash-dark-green) !important;
  margin-bottom: 8px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ash-auth-subtitle {
  font-size: 13px;
  color: var(--ash-text-muted);
  line-height: 1.5;
  margin: 0 auto 10px auto;
  max-width: 400px;
}

/* Form Controls Inside Auth Card */
.ash-auth-card .form-group, .ash-auth-card .form-control-comment {
  margin-bottom: 20px;
}

.ash-auth-card label, .ash-auth-card .form-control-label {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  color: var(--ash-dark-green) !important;
  text-transform: uppercase !important;
  display: block;
  margin-bottom: 8px;
}

.ash-auth-card input[type="text"],
.ash-auth-card input[type="email"],
.ash-auth-card input[type="password"],
.ash-auth-card select,
.ash-auth-card .form-control {
  width: 100% !important;
  height: 48px !important;
  background-color: #FFFFFF !important;
  border: 1px solid var(--ash-border) !important;
  border-radius: 2px !important;
  padding: 0 16px !important;
  font-size: 14px !important;
  font-family: var(--font-body) !important;
  color: var(--ash-text-dark) !important;
  transition: all 0.25s ease !important;
  box-shadow: none !important;
}

.ash-auth-card input:focus,
.ash-auth-card select:focus,
.ash-auth-card .form-control:focus {
  border-color: var(--ash-gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15) !important;
}

/* Checkbox & Radio Styles */
.ash-auth-card input[type="checkbox"],
.ash-auth-card input[type="radio"] {
  accent-color: var(--ash-gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.ash-auth-card .forgot-password {
  text-align: right;
  margin-top: 8px;
  margin-bottom: 20px;
}

.ash-auth-card .forgot-password a,
.ash-auth-card a {
  color: var(--ash-text-muted);
  font-size: 12px;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.ash-auth-card .forgot-password a:hover,
.ash-auth-card a:hover {
  color: var(--ash-gold);
}

/* Submit Buttons */
.ash-auth-card button[type="submit"],
.ash-auth-card .btn-primary,
#submit-login {
  width: 100% !important;
  height: 50px !important;
  background-color: var(--ash-dark-green) !important;
  color: #FFFFFF !important;
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  border: 1px solid var(--ash-dark-green) !important;
  border-radius: 2px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 15px !important;
}

.ash-auth-card button[type="submit"]:hover,
.ash-auth-card .btn-primary:hover,
#submit-login:hover {
  background-color: var(--ash-gold) !important;
  border-color: var(--ash-gold) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3) !important;
}

/* Footer Link / Switcher */
.ash-auth-footer-prompt {
  text-align: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px dashed var(--ash-border);
  font-size: 13px;
  color: var(--ash-text-muted);
}

.ash-auth-footer-prompt a {
  color: var(--ash-dark-green);
  font-weight: 600;
  margin-left: 5px;
}

/* MY ACCOUNT LUXURY DASHBOARD */
.ash-account-page-container {
  max-width: 1100px;
  margin: 50px auto 80px auto;
  padding: 0 20px;
}

.ash-account-header {
  text-align: center;
  margin-bottom: 45px;
}

.ash-account-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.ash-account-card {
  background-color: var(--ash-bg-card);
  border: 1px solid var(--ash-border);
  border-radius: 4px;
  padding: 30px 25px;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ash-account-card:hover {
  transform: translateY(-5px);
  border-color: var(--ash-gold);
  box-shadow: 0 10px 25px rgba(13, 27, 22, 0.08);
}

.ash-acc-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--ash-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ash-gold);
  font-size: 20px;
}

.ash-acc-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--ash-dark-green);
}

.ash-acc-desc {
  font-size: 12px;
  color: var(--ash-text-muted);
}

@media (max-width: 768px) {
  .ash-auth-card {
    padding: 30px 20px;
  }
  .ash-account-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   LUXURY DROPDOWN MEGA MENU STYLES
   -------------------------------------------------------------------------- */
.ash-nav-menu li.has-dropdown {
  position: relative;
}

.ash-nav-menu li.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ash-caret {
  font-size: 9px;
  color: var(--ash-gold);
  transition: transform 0.25s ease;
}

.ash-nav-menu li.has-dropdown:hover > a .ash-caret {
  transform: rotate(180deg);
}

.ash-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background-color: #F9F7F2 !important;
  border: 1px solid var(--ash-border, #EAE4D8) !important;
  border-radius: 4px;
  padding: 10px 0;
  box-shadow: 0 14px 35px rgba(13, 27, 22, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 99999;
  list-style: none;
  margin: 0;
  text-align: left;
}

.ash-nav-menu li.has-dropdown:hover .ash-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ash-dropdown-menu li {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

.ash-dropdown-menu li a {
  display: block !important;
  padding: 10px 22px !important;
  font-family: var(--font-body, 'Montserrat', sans-serif) !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  color: var(--ash-text-dark, #1C1C1C) !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: 0.3px !important;
  transition: all 0.2s ease !important;
  border-bottom: 1px solid rgba(234, 228, 216, 0.5);
}

.ash-dropdown-menu li:last-child a {
  border-bottom: none;
}

.ash-dropdown-menu li a:hover {
  background-color: rgba(197, 160, 89, 0.14) !important;
  color: var(--ash-dark-green, #0D1B16) !important;
  padding-left: 26px !important;
}

/* ==========================================================================
   EBRU TAYLAN / ASHLESHA LUXURY CMS, CONTACT & FOOTER ENHANCEMENTS
   ========================================================================== */

/* CMS & Page Main Wrapper Reset */
.page-cms #content, #cms #content, .cms-id-1 #content, .cms-id-4 #content, .cms-id-5 #content {
  background-color: var(--ash-bg-main) !important;
  padding: 40px 20px !important;
}

/* Shipping & Returns Page Styling */
.ash-cms-shipping-box {
  background-color: #FFFFFF !important;
  border: 1px solid var(--ash-border, #EAE4D8) !important;
  border-radius: 8px !important;
  padding: 45px 50px !important;
  box-shadow: 0 10px 30px rgba(13, 27, 22, 0.04) !important;
  max-width: 920px !important;
  margin: 0 auto !important;
}

.ash-cms-shipping-box h2 {
  font-family: var(--font-heading) !important;
  font-size: 26px !important;
  color: var(--ash-dark-green) !important;
  letter-spacing: 0.5px !important;
  border-bottom: 2px solid var(--ash-gold) !important;
  padding-bottom: 10px !important;
  margin-bottom: 20px !important;
}

/* FAQ Page Styling */
.ash-cms-faq-container {
  background-color: #FFFFFF !important;
  border: 1px solid var(--ash-border, #EAE4D8) !important;
  border-radius: 8px !important;
  padding: 45px 50px !important;
  box-shadow: 0 10px 30px rgba(13, 27, 22, 0.04) !important;
  max-width: 920px !important;
  margin: 0 auto !important;
}

.ash-faq-item h3 {
  font-family: var(--font-heading) !important;
  font-size: 22px !important;
  color: var(--ash-dark-green) !important;
  letter-spacing: 0.3px !important;
}

.ash-faq-cta {
  background: var(--ash-bg-card, #F0ECE3) !important;
  border: 1px solid var(--ash-border, #EAE4D8) !important;
  border-radius: 6px !important;
  padding: 35px !important;
  box-shadow: inset 0 0 15px rgba(195, 160, 89, 0.08) !important;
}

/* Contact Page Styling */
.ash-contact-page-section {
  max-width: 960px !important;
  margin: 0 auto !important;
  padding: 20px 20px 60px 20px !important;
}

.ash-contact-info-card {
  background: var(--ash-bg-card, #F0ECE3) !important;
  border: 1px solid var(--ash-border, #EAE4D8) !important;
  border-left: 5px solid var(--ash-gold, #C5A059) !important;
  border-radius: 6px !important;
  padding: 35px 40px !important;
  box-shadow: 0 8px 25px rgba(13, 27, 22, 0.03) !important;
}

.ash-contact-form {
  background-color: #FFFFFF !important;
  border: 1px solid var(--ash-border, #EAE4D8) !important;
  border-radius: 8px !important;
  padding: 40px 45px !important;
  box-shadow: 0 12px 35px rgba(13, 27, 22, 0.05) !important;
}

.ash-contact-form input[type="text"],
.ash-contact-form input[type="email"],
.ash-contact-form input[type="tel"],
.ash-contact-form select,
.ash-contact-form textarea {
  background-color: var(--ash-bg-main, #F5F2EB) !important;
  border: 1px solid var(--ash-border, #EAE4D8) !important;
  border-radius: 4px !important;
  color: var(--ash-text-dark, #1C1C1C) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  transition: all 0.25s ease !important;
}

.ash-contact-form input:focus,
.ash-contact-form select:focus,
.ash-contact-form textarea:focus {
  outline: none !important;
  border-color: var(--ash-gold, #C5A059) !important;
  background-color: #FFFFFF !important;
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.18) !important;
}

.ash-contact-form button[type="submit"] {
  background: var(--ash-dark-green, #0D1B16) !important;
  color: var(--ash-gold, #C5A059) !important;
  border: 1px solid var(--ash-gold, #C5A059) !important;
  border-radius: 4px !important;
  padding: 14px 45px !important;
  font-family: var(--font-heading) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.ash-contact-form button[type="submit"]:hover {
  background: var(--ash-gold, #C5A059) !important;
  color: var(--ash-dark-green, #0D1B16) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.35) !important;
}



/* ==========================================================================
   KARGO & Ä°ADE SÃœRECÄ° LUXURY DESIGN ENHANCEMENTS
   ========================================================================== */

.ash-shipping-page-wrapper {
  max-width: 1020px !important;
  margin: 0 auto !important;
  padding: 10px 0 60px 0 !important;
  font-family: var(--font-body, 'Montserrat', sans-serif) !important;
}

.ash-shipping-hero {
  text-align: center !important;
  margin-bottom: 40px !important;
}

.ash-shipping-badge {
  display: inline-block !important;
  background-color: var(--ash-bg-card, #F0ECE3) !important;
  color: var(--ash-gold, #C5A059) !important;
  font-family: var(--font-heading) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  padding: 6px 18px !important;
  border-radius: 30px !important;
  border: 1px solid var(--ash-border, #EAE4D8) !important;
  margin-bottom: 15px !important;
}

.ash-shipping-hero h1 {
  font-family: var(--font-heading, 'Cormorant Garamond', serif) !important;
  font-size: 40px !important;
  font-weight: 600 !important;
  color: var(--ash-dark-green, #0D1B16) !important;
  margin-bottom: 12px !important;
  letter-spacing: 1px !important;
}

.ash-shipping-intro {
  font-size: 16px !important;
  color: var(--ash-text-muted, #555555) !important;
  max-width: 650px !important;
  margin: 0 auto !important;
  line-height: 1.7 !important;
  font-style: italic !important;
}

.ash-shipping-divider {
  width: 60px !important;
  height: 2px !important;
  background-color: var(--ash-gold, #C5A059) !important;
  margin: 20px auto 0 auto !important;
}

.ash-shipping-section-card {
  background: #FFFFFF !important;
  border: 1px solid var(--ash-border, #EAE4D8) !important;
  border-radius: 12px !important;
  padding: 40px !important;
  box-shadow: 0 10px 30px rgba(13, 27, 22, 0.04) !important;
}

.ash-shipping-card-header {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  margin-bottom: 30px !important;
  padding-bottom: 15px !important;
  border-bottom: 1px solid var(--ash-border, #EAE4D8) !important;
}

.ash-shipping-icon-box {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: var(--ash-bg-card, #F0ECE3) !important;
  color: var(--ash-gold, #C5A059) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  flex-shrink: 0 !important;
}

.ash-shipping-card-header h2 {
  font-family: var(--font-heading, 'Cormorant Garamond', serif) !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  color: var(--ash-dark-green, #0D1B16) !important;
  margin: 0 !important;
}

.ash-shipping-features-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 25px !important;
}

@media (max-width: 850px) {
  .ash-shipping-features-grid {
    grid-template-columns: 1fr !important;
  }
}

.ash-shipping-feat-box {
  background: var(--ash-bg-main, #F5F2EB) !important;
  border: 1px solid var(--ash-border, #EAE4D8) !important;
  border-radius: 8px !important;
  padding: 28px 22px !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
}

.ash-shipping-feat-box:hover {
  transform: translateY(-4px) !important;
  border-color: var(--ash-gold, #C5A059) !important;
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.15) !important;
  background: #FFFFFF !important;
}

.ash-feat-icon {
  width: 42px !important;
  height: 42px !important;
  margin: 0 auto 14px auto !important;
  border-radius: 50% !important;
  background: #FFFFFF !important;
  color: var(--ash-dark-green, #0D1B16) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  border: 1px solid var(--ash-gold, #C5A059) !important;
}

.ash-shipping-feat-box h3 {
  font-family: var(--font-heading, 'Cormorant Garamond', serif) !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: var(--ash-dark-green, #0D1B16) !important;
  margin-bottom: 10px !important;
}

.ash-shipping-feat-box p {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--ash-text-dark, #1C1C1C) !important;
  margin: 0 !important;
}

.highlight-box {
  border-color: var(--ash-gold, #C5A059) !important;
  background: #FAF6ED !important;
}

.ash-shipping-cta-banner {
  background: var(--ash-dark-green, #0D1B16) !important;
  color: #FFFFFF !important;
  border-radius: 12px !important;
  padding: 35px 45px !important;
  margin-top: 40px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  box-shadow: 0 12px 35px rgba(13, 27, 22, 0.15) !important;
}

.ash-cta-text h3 {
  font-family: var(--font-heading, 'Cormorant Garamond', serif) !important;
  font-size: 26px !important;
  color: var(--ash-gold, #C5A059) !important;
  margin-bottom: 6px !important;
}

.ash-cta-text p {
  font-size: 15px !important;
  color: #E0E0E0 !important;
  margin: 0 !important;
}

.ash-shipping-cta-btn {
  background: var(--ash-gold, #C5A059) !important;
  color: var(--ash-dark-green, #0D1B16) !important;
  font-family: var(--font-heading, 'Cormorant Garamond', serif) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  padding: 14px 35px !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
}

.ash-shipping-cta-btn:hover {
  background: #FFFFFF !important;
  color: var(--ash-dark-green, #0D1B16) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3) !important;
}

/* ==========================================================================
