/** Shopify CDN: Minification failed

Line 27:0 All "@import" rules must come first

**/
/* =========================================
   1. VARIABLES & SETUP
   ========================================= */
:root {
  /* Brand Colors */
  --cora-purple: #310148;
  --cora-pink: #d4006e;
  --cora-pink-hover: #a80057;
  --cora-pink-light: #fff0f7;
  --cora-text-main: #1a1a1a;
  --cora-text-muted: #666;
  --cora-border: #eee;
  --cora-bg-light: #f7f7f7;
  
  /* Dimensions & Spacing */
  --sidebar-width: 28%;
  --gap-size: 60px;
  --radius: 8px;
}

/* Import Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* Global Reset for Cora Components */
.cora-wrapper {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--cora-text-main);
  box-sizing: border-box;
}

.cora-wrapper *, 
.cora-wrapper *:before, 
.cora-wrapper *:after {
  box-sizing: inherit;
}

/* Ensure form elements inherit font styles naturally */
.cora-wrapper input, 
.cora-wrapper select, 
.cora-wrapper button, 
.cora-wrapper textarea {
  font-family: inherit;
}

/* =========================================
   2. MAIN LAYOUT
   ========================================= */
.cora-container {
  display: flex;
  flex-direction: row;
  gap: var(--gap-size);
  align-items: flex-start; /* Required for sticky sidebar */
  position: relative;
}

.cora-content-area {
  width: 72%; /* 100% - sidebar width - gap ideally, but simplified here */
  flex: 1;
}

/* =========================================
   3. SIDEBAR NAVIGATION (Desktop Sticky)
   ========================================= */
.cora-sidebar {
  width: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  gap: 8px;

  /* Sticky Behavior */
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  z-index: 1;
  max-height: 80vh;
  overflow-y: auto;
}

/* Tab Links */
.cora-tab-link {
  background: transparent;
  border: none;
  text-align: left;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  color: var(--cora-text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.cora-tab-link:hover {
  background-color: var(--cora-bg-light);
}

.cora-tab-link.active {
  background-color: #C34A46;
  color: #ffffff;
  font-weight: 700;
}

/* Icon Toggling Logic */
.icon-state-normal { display: inline-block; }
.icon-state-active { display: none; }

.cora-tab-link.active .icon-state-normal { display: none; }
.cora-tab-link.active .icon-state-active { display: inline-block; }

.cora-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(95, 38, 117, 0);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
}

/* Sub-Navigation (The Pink Links) */
.cora-sub-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
  padding-left: 10px;
}

/* Logic: Show sub-nav if parent tab is active */
.cora-tab-link.active + .cora-sub-nav {
  display: flex;
}

.cora-sub-nav:empty {
  display: none !important;
}

.clara-toc-link {
  display: block;
  text-decoration: none;
  padding: 10px 15px;
  font-size: 14px;
  color: #555;
  border-radius: 6px;
  transition: all 0.2s;
  font-weight: 500;
  cursor: pointer;
  line-height: 1.4;
}

.clara-toc-link:hover {
  background-color:rgba(199, 85, 81, 0.17);
  color: #C34A46;
}

.clara-toc-link.active {
  background-color: #C34A46; 
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(212, 0, 110, 0.2);
}

/* =========================================
   4. CONTENT & ACCORDION
   ========================================= */
.cora-tab-content {
  display: none;
  animation: coraFadeIn 0.4s ease-in-out;
}

.cora-tab-content.active {
  display: block;
}

.cora-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.1;
  color: #000;
  text-align: center;
}

.page-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: 0;
}

.last-updated {
  text-align: center;
  color: var(--cora-text-muted);
  margin-bottom: 40px;
  font-size: 14px;
}

/* Accordion Trigger Button */
.drop-down-info {
  font-size: 20px;
  width: 100%;
  background-color: #C34A46;
  color: #fff;
  border: none;
  padding: 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  margin-top: 15px;
  cursor: pointer;
  transition: background .3s;
}

.drop-down-info:hover {
  opacity: 0.9;
}

.drop-down-info.active {
  border-radius: 8px; /* Flatten bottom corners when open */
  background-color: #d9e0c9 !important;
  border: 0 !important;
  color: #000000;
}

.drop-down-info.active h2 {
  color: #000000;
}
.drop-down-info h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: white;
  pointer-events: none;
}

.drop-down-info svg {
  display: none;
}

/* Accordion Content Panel */
.interior {
  display: block; /* We use max-height for animation, so block is safer */
  padding: 0 20px; /* Collapse padding initially */
  background: #fdfdfd;
  border-radius: 0 0 8px 8px;
  margin-bottom: 0;
  
  /* Animation Setup */
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease, margin 0.35s ease;
}

.interior.active {
  /* max-height: 2000px; */
    max-height:fit-content;

  opacity: 1;
  padding: 20px; /* Restore padding */
  margin-bottom: 20px; /* Restore margin */
}

/* Standard HTML Elements inside Accordion */
.interior ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.interior li {
  margin-bottom: 8px;
}

/* Table Styling */
.interior table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.interior th, .interior td {
  padding: 12px;
  border: 1px solid var(--cora-border);
  text-align: left;
}

.interior th {
  background-color: #f9f9f9;
  font-weight: 600;
}

/* =========================================
   5. FORMS
   ========================================= */
.cora-form-wrapper { 
  max-width: 800px; 
}

.cora-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.cora-form-header h1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  white-space: nowrap;
}

.cora-lang-select {
  margin-left: auto;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #555;
  font-size: 14px;
  cursor: pointer;
}

.cora-custom-form { margin-top: 30px; }
.cora-form-group { margin-bottom: 24px; }
.cora-form-row { display: flex; gap: 20px; }
.cora-form-group.half { width: 50%; }

.cora-form-group label { 
  display: block; 
  margin-bottom: 10px; 
   color: var(--cora-text-main); 
  font-size: 15px; 
  font-style: normal;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 2;
    text-transform: none;
}
.cora-form-intro p{
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0;
    font-size:16px;
}

.cora-form-footer p{
      font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0;
    font-size:16px;
}

.cora-form-footer p a{
   color: #4a6fa5;
}

.cora-form-group input, 
.cora-form-group select { 
  width: 100%; 
  padding: 14px; 
  border: 1px solid #e0e0e0; 
  border-radius: 6px; 
  box-shadow:none;
  background-color: #fcfcfc; 
  font-size: 15px; 
   font-style: normal;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 2;
    text-transform: none;
  color: #333; 
}

.cora-form-group input:focus, 
.cora-form-group select:focus { 
  outline: none; 
  border-color: #000000;; 
  background-color: #fff; 
}

.cora-submit-btn { 
  background-color: #a596aa; /* Muted Purple as requested */
  color: white; 
  border: none; 
  padding: 14px 30px; 
  border-radius: 6px; 
  cursor: pointer; 
  font-weight: 600; 
  letter-spacing: 0.5px; 
  margin-top: 10px; 
  text-transform: uppercase; 
  transition: background 0.3s; 
}

.cora-submit-btn:hover { 
  background-color: var(--cora-purple); 
}

/* Opt-out Multi-step Form */
.cora-optout-wrapper {
  max-width: 700px;
  padding-bottom: 40px;
}

/* Headings */
.cora-optout-title {
  font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0;
  margin-bottom: 15px;
  color: #000;
}


.cora-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  cursor: pointer;
}

.cora-checkbox-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--cora-purple);
  cursor: pointer;
  margin-top: 3px;
}

.cora-hidden-fields, 
.cora-hidden-toggle, 
.cora-hidden-section,
.cora-request-type {
  display: none;
  animation: coraFadeIn 0.3s ease-in-out;
}

.cora-hidden-fields.visible,
.cora-hidden-section.visible,
.cora-request-type.visible {
  display: block;
}

.cora-hidden-toggle.visible {
  display: flex;
  margin-left:2rem;
}

/* Info Box */
.cora-info-box {
  background-color: #f0f4ff;
  border-radius: 6px;
  padding: 20px;
  margin-top: 25px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.cora-info-icon {
  background: #5ba4e5;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  font-family: serif;
  font-style: italic;
  flex-shrink: 0;
}

.cora-info-text {
  color: #4a6fa5;
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

/* =========================================
   6. PRIVACY TOGGLE SWITCH
   ========================================= */
.cora-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--cora-border);
}
.cora-optout-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
  color: black;
  text-align: left;
}
.cora-optout-desc p{
    line-height:1.4;
}
.cora-optout-desc p a{
   color: #4a6fa5;
}
.cora-toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.cora-toggle-switch input { opacity: 0; width: 0; height: 0; }

.cora-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.cora-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .cora-slider { background-color: var(--cora-pink); }
input:checked + .cora-slider:before { transform: translateX(22px); }

/* =========================================
   7. UTILITIES & ANIMATIONS
   ========================================= */
.cora-footer-links { 
  margin-top: 50px; 
  border-top: 1px solid var(--cora-border); 
  padding-top: 30px; 
}

@keyframes coraFadeIn { 
  from { opacity: 0; transform: translateY(5px); } 
  to { opacity: 1; transform: translateY(0); } 
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   8. MOBILE RESPONSIVENESS (CONSOLIDATED)
   ========================================= */

/* Mobile Toggle Button (Visible only on mobile) */
.cora-mobile-toggle {
  display: none; /* Hidden on desktop */
  width: 100%;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid var(--cora-border);
  border-radius: 8px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 20px;
  color: #333;
}

/* Close Button (Inside Drawer) */
.cora-close-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 10px;
  align-self: flex-end;
  margin-bottom: 10px;
}

/* Overlay */
.cora-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s;
}

.cora-overlay.active {
  display: block;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  /* Layout Changes */
  .cora-container { 
    flex-direction: column; 
    gap: 30px; 
  }
  
  .interior.active {
    /* max-height: 2000px;   */
    max-height:fit-content;
    opacity: 1;
    padding: 0; /* Restore padding */
    margin-bottom: 20px; /* Restore margin */
  }
  .cora-content-area { 
    width: 100%; 
  }
  
  /* Form Layout Changes */
  .cora-form-row { 
    flex-direction: column; 
  }
  
  .cora-form-group.half { 
    width: 100%; 
  }

  /* Form Header Mobile Layout */
  .cora-form-header {
    flex-direction: column-reverse;
    gap: 15px;
    margin-bottom: 20px;
  }

  .cora-form-header h1 {
    position: static;
    transform: none;
  }

  .cora-lang-select {
    margin-left: 0;
    align-self: flex-end;
  }

  /* Sidebar transforms into Mobile Drawer */
  .cora-sidebar {
    position: fixed;
    top: 0;
    left: -100%; /* Hide off-screen */
    width: 85%;
    max-width: 350px;
    height: 100vh;
    max-height: none;
    background: #fff;
    z-index: 100;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s ease-in-out;
  }

  .cora-sidebar.active {
    left: 0;
  }

  /* Controls Visibility */
  .cora-mobile-toggle {
    display: flex;
  }

  .cora-close-btn {
    display: block;
  }
}



/* ===============================
   Privacy Request – Form Helpers
================================ */

/* Hidden by default */
.cora-hidden-section {
  display: none;
}

/* Visible state */
.cora-hidden-section.visible {
  display: block;
}

/* Improve spacing consistency */
.cora-form-group {
  margin-bottom: 24px;
}

/* Two-column rows */
.cora-form-row {
  display: flex;
  gap: 24px;
}

.cora-form-group.half {
  flex: 1;
}

/* Submit button alignment */
.cora-submit-btn {
  margin-top: 16px;
}

/* Success message */
.cora-success-box {
  background: #eaffea;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-weight: 600;
  color: #1f7a3d;
}

/* Mobile fixes */
@media (max-width: 768px) {
  .cora-form-row {
    flex-direction: column;
    gap: 0;
  }
}

 /* === CLARA ACCORDION OVERRIDES === */
/* 1. Force the Headers (Pink Bars) to be visible */
.clara-text .drop-down-info {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  cursor: pointer;
}

/* 2. Control the Content Panels */
.clara-text .interior {
  display: none; /* Hidden by default */
  padding: 15px 0;
}

/* 3. Show Content when Active */
.clara-text .interior.active {
  display: block !important;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
/* === CLARA ACCORDION STYLES === */

/* 1. Toggle Button (Expand/Collapse) */
.clara-toggle-wrapper {
  text-align: right; margin-bottom: 15px; display: flex; justify-content: flex-end;     top: 16rem;
    position: relative;
}
.clara-toggle-btn {
  background: none; border: none; padding: 0; color: #333; 
  text-decoration: underline; cursor: pointer; font-size: 14px; font-weight: 600;
  transition: color 0.2s;
}
.clara-toggle-btn:hover { color: #d4006e; }

/* 2. Accordion Header (Pink Bar) */
.clara-text .drop-down-info {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  justify-content: space-between; /* Pushes text left, icon right */
  align-items: center;
  cursor: pointer;
  /* Ensure existing padding/color styles are preserved or defined here if needed */
}

/* 3. The Chevron Icon */
.clara-chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-left: 15px;
  transition: transform 0.3s ease; /* Smooth rotation */
  stroke: currentColor; /* Inherits text color (White) */
}

/* 4. Rotation State (Standard: Down -> Up) */
.clara-text .drop-down-info.active .clara-chevron {
  transform: rotate(180deg);
}

/* 5. Content Panels */
.clara-text .interior { display: none; padding: 15px 0; }
.clara-text .interior.active { display: block !important; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* === TABLE STYLES === */
.clara-text table {
  width: 100%;
  border-collapse: collapse; /* Merges borders for a clean single-line look */
  border: 1px solid #e1e1e1; /* Outer border */
  margin-bottom: 20px;
}

.clara-text table th, 
.clara-text table td {
  border: 1px solid #e1e1e1; /* Inner grid lines */
  padding: 12px;
  text-align: left;
  overflow:hidden;
  vertical-align: top;
}

/* Optional: Make the header row stand out slightly */
.clara-text table th {
  background-color: #f7f7f7;
  font-weight: 700;
}

/* === DESKTOP VS MOBILE UTILITIES === */
/* === DESKTOP VS MOBILE UTILITIES (RENAMED) === */
@media (max-width: 768px) {
  /* Hide Desktop elements on Mobile */
  .claracora-desktop-only { display: none !important; }
}

@media (min-width: 769px) {
  /* Hide Mobile elements on Desktop */
  .claracora-mobile-only { display: none !important; }
}