/* Basic reset */
ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, body, html, div.paragraph, blockquote, fieldset, input { margin: 0; padding: 0; }
a img { border: 0; }

html { height: 100%; }
body {
  min-height: 100%;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  color: #515151;
  background: #E8EFF1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #0f4f3d;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: #1bc99c;
}

.body-wrap {
  max-width: none;
  margin: 0 auto;
  background: #ffffff;
}

.bg-wrapper {
  background: #ffffff;
}

.page-section {
  padding: 40px 0;
}

/* Page section variants */
.page-section--home {
  padding: 24px 0 40px 0;
}

.page-section--tight-top {
  padding-top: 10px;
}

.page-section--no-bottom {
  padding-bottom: 0;
}

.page-section--small-top {
  padding-top: 10px;
}

@media (max-width: 768px) {
  .page-section {
    padding: 28px 0;
  }
}

/* Header */

#header {
  padding: 32px 24px 18px;
}

@media (max-width: 768px) {
  #header {
    padding: 32px 20px 18px;
  }
}

#sitename {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 10px;
}

#lang-switch {
  margin-left: auto;
  font-size: 13px;
}

.lang-switch-fixed {
  position: absolute;
  top: 10px;
  right: 10px;
}

.lang-toggle-strong {
  font-weight: 600;
}

.wsite-logo a {
  font-family: 'Saginaw', cursive;
  font-size: 32px;
  letter-spacing: 2px;
  color: #0f4f3d;
  text-transform: none;
}

.wsite-logo a:hover {
  color: #0f4f3d;
}

/* Navigation approximating Wix top menu */

#navigation {
  display: flex;
  align-items: center;
}

#navigation ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

#navigation li {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: none;
}

#navigation a {
  color: #20303c;
  font-weight: 500;
  letter-spacing: 0.16em;
}

#navigation li a:hover {
  color: #0f4f3d;
}

/* Dropdown submenu under Services de thérapie */

.has-submenu > .nav-toggle {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.has-submenu .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 240px;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.has-submenu .submenu[hidden] {
  display: none;
}

.has-submenu .submenu li {
  font-size: 12px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.has-submenu .submenu a {
  display: block;
  padding: 6px 16px;
}

.has-submenu .submenu a:hover {
  color: #0f4f3d;
}

/* Ensure hidden submenus stay hidden even though
   #navigation ul sets display:flex on all <ul>. */
#navigation .submenu[hidden] {
  display: none !important;
}

/* Mobile main menu toggle */
.nav-main-toggle {
  display: none;
  background: none;
  border: 1px solid #20303c;
  padding: 6px 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 768px) {
  #navigation {
    flex-wrap: wrap;
    gap: 8px;
  }

  .nav-main-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  #navigation .wsite-menu-default {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
  }

  #navigation.nav-open .wsite-menu-default {
    display: flex;
  }
}

/* Home layout cards */
.home-services-grid {
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0px;
}

.home-card {
  background: #FDF1EC;
  border-radius: 0px;
  padding: 44px 30px;
}

.home-card--individuel { background: #ccc6c6; }
.home-card--couple { background: #f0eded; }
.home-card--adolescents { background: #fadcd6; }
.home-card--guidance { background: #E5C7B5; }
.home-card--span2 {
  grid-column: span 2;
  background: #f7f6f6;
}
.home-card--apropos { background: #ccc6c6; }

.home-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #20303c;
  margin-bottom: 8px;
}

.home-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.home-card--image {
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.home-card--image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0px;
}

@media (max-width: 960px) {
  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-card--span2 {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .home-services-grid {
    grid-template-columns: 1fr;
  }
  .home-card--span2 {
    grid-column: span 1;
  }
}

/* Common content blocks */
.hero-intro {
  text-align: center;
  max-width: none;
  margin: 0 auto 20px;
  background-color: #e8eff2;
}

.hero-intro--home {
  max-width: none;
  margin: 0 auto 0px;
  padding: 40px 24px 40px 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  color: #20303c;
}

.hero-title--large {
  font-size: 34px;
  margin-bottom: 16px;
}

.hero-title--medium {
  font-size: 28px;
  line-height: 1.4;
}

.hero-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.section-wrapper {
  max-width: none;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  align-items: flex-start;
}

.section-wrapper--psych-indiv {
  align-items: stretch;
  border-top: 10px solid #d0d0d0;
  border-bottom: 10px solid #d0d0d0;
}

.section-wrapper--psych-indiv .section-column:last-child {
  display: flex;
}

.section-wrapper--psych-indiv .section-column:first-child {
  padding: 32px 40px;
}

.section-wrapper--couple .section-column:first-child {
  flex: 2 1 0;
}

.section-wrapper--couple .section-column:last-child {
  flex: 1 1 0;
  padding: 32px 40px;
  background-color: #fff6f6;
  display: block;
}

.section-wrapper--guidance .section-column:first-child {
  flex: 2 1 0;
}

.section-wrapper--guidance .section-column:last-child {
  flex: 1 1 0;
  padding: 32px 40px;
  display: block;
}

.section-wrapper--ado .section-column {
  flex: 1 1 0;
}

.section-wrapper--ado .ado-text-column {
  flex: 1 1 0;
  padding: 32px 40px;
}

.ado-image-column {
  display: flex;
}

.section-wrapper--faq .faq-text-column {
  padding: 32px 40px;
}

.section-wrapper--faq .faq-image-column {
  display: flex;
}

.page-section--faq-hero {
  padding: 0;
}

.page-section--policy {
  background-color: #f3f3f3;
}

.page-section--policy .container {
  padding-left: 10%;
  padding-right: 10%;
}

.page-section--policy .hero-title--large {
  text-align: center;
  max-width: 900px;
  margin-left: 0;
  margin-right: 0;
}

.page-section--policy h3 {
  max-width: 900px;
  margin: 20px 0 0;
}

.page-section--policy .body-paragraph {
  margin-left: 0;
  margin-right: 0;
}

.faq-hero {
  position: relative;
  width: 100%;
}

.faq-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.faq-hero-text {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translateY(-50%);
  max-width: 520px;
  background: rgba(255, 255, 255, 0.92);
  padding: 24px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.faq-hero-text .hero-title {
  margin-bottom: 12px;
}

.faq-hero-questions {
  column-count: 2;
  column-gap: 32px;
}

@media (max-width: 900px) {
  .faq-hero-text {
    position: static;
    transform: none;
    max-width: none;
    margin: 16px auto 0;
  }

  .faq-hero-questions {
    column-count: 1;
  }
}

.psych-indiv-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
}

.section-column {
  flex: 1 1 260px;
  min-width: 260px;
  background-color: #fff5f0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #20303c;
  margin-bottom: 10px;
}

.section-text {
  font-size: 15px;
  line-height: 1.4em;
  color: #555;
}

.section-text + .section-text {
  margin-top: 8px;
}

.centered-paragraph-block {
  max-width: 900px;
  margin: 0 auto;
}

.centered-paragraph-block + .centered-paragraph-block {
  margin-top: 16px;
}

.body-paragraph {
  max-width: 900px;
  margin: 0 auto;
}

.body-paragraph + .body-paragraph {
  margin-top: 12px;
}

.body-paragraph ul {
  padding-left: 24px;
  margin: 12px 0;
  line-height: 1.7;
}

.body-paragraph li {
  margin-bottom: 6px;
}

.body-paragraph--spaced {
  margin: 12px auto 0;
}

.footer-opening-hours {
  margin-top: 6px;
}

.footer-form-status {
  margin-top: 8px;
  display: none;
}

.page-section--contact-cta {
  padding-top: 10px;
}

.contact-cta {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.contact-cta-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}

/* À propos layout */
.page-section--about {
  padding: 40px 24px 60px;
}

.about-wrapper {
  max-width: 960px;
  margin: 0 auto;
  background: #f7f6f6;
  border-radius: 16px;
  padding: 40px 32px;
  box-sizing: border-box;
}

.about-header {
  text-align: center;
  margin-bottom: 24px;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #20303c;
}

.about-layout {
  /* wrapper for potential future extensions; currently single block */
}

.about-main {
}

.about-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.about-text + .about-text {
  margin-top: 16px;
}

.about-aside {
  display: none;
}

.about-photo {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  padding-top: 40px;
}

@media (max-width: 768px) {
  .about-wrapper {
    padding: 28px 20px;
  }
}

@media (min-width: 900px) {
  .about-columns {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    align-items: flex-start;
  }

  .about-column {
    flex: 1 1 0;
    min-width: 0;
  }
}

/* Footer */

#footer {
  border-top: 1px solid #f1f1f1;
  padding: 32px 24px 40px;
  font-size: 14px;
  color: #555;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.footer-block {
  flex: 1 1 260px;
  min-width: 240px;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #20303c;
  margin-bottom: 8px;
}

.footer-text {
  line-height: 1.6;
}

.footer-contact-form .wsite-form-input,
.footer-contact-form textarea {
  width: 100%;
  padding: 8px 10px;
  box-sizing: border-box;
}

.footer-contact-form label {
  display: block;
  margin-top: 8px;
  margin-bottom: 4px;
}

.footer-contact-form button {
  margin-top: 12px;
}

.footer-social a {
  margin-right: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.text-center {
  text-align: center;
}

@media (max-width: 640px) {
  #footer {
    padding: 24px 16px 32px;
  }
}
 .wsite-menu { list-style-type: none; margin-left: 25px; }
 #wsite-menus .wsite-menu li a { background-color: #f6f6f6; border: none; color: #484848; }
 #wsite-menus .wsite-menu li a:hover { background-color: #e8e8e8; color: #484848; }
 .wsite-menu-arrow { font-size: 0; margin-left: 10px; }
 .wsite-menu-arrow:before { display: inline-block; content: '\203A'; vertical-align: bottom; font-size: 20px; }
 .wsite-button, .wsite-button .wsite-button-inner, .wsite-editor .wsite-button, .wsite-editor .wsite-button .wsite-button-inner { color: white; background-image: none !important; background-color: #5199a8; }
 .wsite-button, .wsite-editor .wsite-button { padding: 8px 20px !important; }
 .wsite-button-large, .wsite-editor .wsite-button-large { padding: 10px 25px !important; }
 .wsite-button .wsite-button-inner, .wsite-editor .wsite-button .wsite-button-inner { background-color: inherit; height: auto !important; line-height: 1.25 !important; padding: 0 !important; }
 .wsite-button-highlight, .wsite-editor .wsite-button-highlight { background-color: #5199a8; }
 .wsite-button-highlight:hover, .wsite-editor .wsite-button-highlight:hover { background-color: #5cb0c2; }
 .wsite-button-highlight:active, .wsite-editor .wsite-button-highlight:active { background-color: #44818e; }
 .wsite-button-normal, .wsite-editor .wsite-button-normal { background-color: #484848; }
 .wsite-button-normal:hover, .wsite-editor.wsite-button-normal:hover { background-color: #616161; }
 .wsite-button-normal:active, .wsite-editor .wsite-button-normal:active { background-color: #303030; }
 .galleryCaptionHover .galleryCaptionHolder { height: 100%; opacity: 0; -webkit-transition: opacity 0.2s ease-in-out; -moz-transition: opacity 0.2s ease-in-out; -o-transition: opacity 0.2s ease-in-out; transition: opacity 0.2s ease-in-out; -webkit-backface-visibility: hidden; }
 .partialImageGalleryCaption.galleryCaptionHolder { height: auto; }
 .galleryCaptionHover.galleryImageHolder:hover .galleryCaptionHolder { opacity: 1; }
 .galleryCaptionHolderInner { display: table; height: 100%; }
 .galleryCaptionInnerTextHolder { display: table-cell; vertical-align: middle; }
 #content-wrapper .container .galleryImageBorder { border-color: #d0d0d0; }
 #content-wrapper .wsite-image-border-hairline a img, #content-wrapper .wsite-image-border-thin a img, #content-wrapper .wsite-image-border-medium a img, #content-wrapper .wsite-image-border-thick a img { border-color: #d0d0d0; }
body.no-header #navigation { padding-bottom: 0; }
 .wsite-input, .wsite-form-input, .wsite-form-field select { border: solid 1px #d0d0d0; border-radius: 0; margin: 8px 0; background-image: none; min-height: 35px !important; padding: 8px !important; font-size: 13px; box-sizing: border-box; }
 .wsite-input:focus, .wsite-form-input:focus, .wsite-form-input--focus, .wsite-form-field select:focus { border-color: #5199a8; }
 .wsite-form-phone-separator { margin: 8px 0; }
 .wsite-form-label { font-weight: normal; }
 .wsite-form-field select { font-family: 'Raleway', sans-serif; -webkit-appearance: none; -moz-appearance: none; appearance: none; text-indent: .01px; text-overflow: ''; padding-left: 8px; padding-top: 2px; padding-bottom: 2px; background: url(theme/images/downarrow.png%3F1743622557) no-repeat 97% 13px; background-color: white; }
 .blog-sidebar { padding-left: 60px; }
 .column-blog { width: 100%; }
 .blog-sidebar-separator { padding: 0; }
 .blogCommentText div.paragraph, #secondlist .blogCommentText div.paragraph, .blog-date span { font: inherit !important; color: #8e8e8e !important; }
 .blogCommentText p, #secondlist .blogCommentText p, .blog-date span { font: inherit !important; color: #8e8e8e !important; }
 .blogCommentHeading .blogCommentHeadingInner, .blogCommentWrap, .blogCommentHeading, .blogCommentHeading .blogCommentAuthor { background: none !important; }
 .blogCommentHeading .blogCommentAuthor span.name, .blogCommentHeading .blogCommentAuthor a.name, .blogCommentHeading .blogCommentDate { color: #8e8e8e !important; font: inherit !important; text-shadow: none !important; }
 .blogCommentReplyWrapper iframe { height: 460px !important; }
 #wsite-com-product-gen { padding: 0 !important; }
 #wsite-com-heirarchy { font-size: 15px; font-family: 'Raleway', sans-serif; }
 #wsite-com-hierarchy .wsite-link-unselected { color: inherit; }
 #wsite-com-hierarchy .wsite-selected, #wsite-com-hierarchy .wsite-com-link:hover { color: #5199a8; }
 #wsite-com-store #wsite-com-hierarchy ul li { line-height: 1; text-transform: uppercase; font-size: 15px; font-family: 'Raleway', sans-serif; }
 #wsite-com-store #wsite-com-hierarchy ul .wsite-com-link-text { margin-bottom: 1em; }
 .wsite-com-category-product-group .wsite-com-category-product-wrap, .wsite-com-category-product-featured-group .wsite-com-category-product-wrap, .wsite-com-category-product-featured-group .wsite-com-category-product-featured-wrap, .wsite-com-category-subcategory-group .wsite-com-category-subcategory-wrap { margin: 0 10px 20px; }
 .wsite-com-category-subcategory-name { top: 0; }
 .wsite-com-category-subcategory-name-text { position: relative; display: table; width: 100%; height: 100%; padding: 0; }
 .wsite-com-category-subcategory-name-text span { display: table-cell; vertical-align: middle; }
 .wsite-com-category-subcategory-name-bg { -webkit-transition: opacity 0.3s ease-in-out !important; -moz-transition: opacity 0.3s ease-in-out !important; -o-transition: opacity 0.3s ease-in-out !important; -ms-transition: opacity 0.3s ease-in-out !important; transition: opacity 0.3s ease-in-out !important; }
 .wsite-com-category-subcategory-link:hover .wsite-com-category-subcategory-name-bg { opacity: .3; }
 .wsite-social { white-space: normal; }
 .wsite-social-item { font-size: 1.35em; display: inline-block; margin: 0 8px 10px; color: #b9b9b9; }
 .wsite-social-item:hover { color: #5199a8; }
 #wsite-mini-cart { bottom: 0; top: auto !important; opacity: 1 !important; position: fixed !important; margin: 0; border-radius: 0; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; }
 #wsite-mini-cart.full { display: block !important; }
 .wsite-product-list li { display: none !important; }
 #wsite-mini-cart.arrow-top-left:after, #wsite-mini-cart.arrow-top-left:before { border: none; }
 h2.wsite-checkout-header { padding-bottom: 5px; }
 #wsite-mini-cart .wsite-product-image { padding: 10px; }
 body.menu-open #wsite-mini-cart { bottom: -70px; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; }
 .wsite-product-list { display: none !important; }
 #wsite-search-form-container { float: none; }
 #wsite-search-query { font-size: 1.25em; }
 #wsite-search-sidebar { display: none; }
 #wsite-search-results, #wsite-search-product-results .wsite-search-product-result { width: 100%; }
 .wsite-input { height: 40px; padding: 2px 10px; }
 .wsite-com-column-group.wsite-com-category-product-featured-group .wsite-com-column, #wsite-com-store .wsite-com-category-product-group .wsite-com-column { width: 50% !important; }
 }
 @media (min-width: 768px) {
 #wsite-com-store #close { display: none !important; }
 }
 @media (max-width: 767px) {
 .wsite-section-elements { overflow: hidden; }
 #navmobile ul { width: 100% !important; }
 .wsite-logo a { font-size: 1.25em; }
 .wsite-multicol-col { max-width: 100% !important; display: block; width: auto !important; margin: 0 auto 1em !important; }
 .wsite-section { height: auto !important; }
 #banner h2 { font-size: 2em !important; }
 .banner-wrap .button-wrap > div:before { padding-top: 30px; }
 #wsite-com-product-info { margin: 0; }
 #blogTable > tbody > tr > td { display: block !important; width: 100% !important; margin: 0 auto; padding: 0 !important; }
 .blog-body { float: none !important; }
 .blog-header { text-align: left; }
 .blog-sidebar .column-blog { width: 100%; float: none; padding-top: 3em; border-top: 1px solid ; }
 .galleryCaptionHolder { top: 0; }
 .imageGallery .galleryCaptionInnerText div.paragraph, .imageGallery .galleryCaptionInnerText { font-size: 1.2em; line-height: 19px; font-weight: 200; }
 .imageGallery .galleryCaptionInnerText p, .imageGallery .galleryCaptionInnerText { font-size: 1.2em; line-height: 19px; font-weight: 200; }
 .galleryCaptionHolder { display: none; }
 .fullwidth-mobile .galleryCaptionHolder { display: block; }
 .fullwidth-mobile { width: 100% !important; }
 .fullwidth-mobile > div { margin: 5px 0 !important; }
 .fancybox-overlay { background: #f9f9f9 !important; }
 .fancybox-opened .fancybox-skin { box-shadow: none; height: 100% !important; padding: 0 0 10% !important; background: transparent; }
 div.fancybox-wrap.fancybox-mobile.fancybox-type-image.fancybox-opened { height: 100% !important; padding-top: 50px; }
 a.fancybox-item.fancybox-close { display: none; }
 .fancybox-overlay:after, .fancybox-overlay:before, .fancybox-overlay-fixed.fancybox-overlay:after, .fancybox-overlay-fixed.fancybox-overlay:before, .fancybox-overlay:before, .fancybox-overlay:after { content: ''; width: 25px; height: 3px; position: fixed; top: 21px; right: 10px; background: #415161; z-index: 11; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); }
 .fancybox-overlay-fixed.fancybox-overlay:before, .fancybox-overlay:before { -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg); }
 .fancybox-wrap { top: 0 !important; position: fixed !important; display: table !important; }
 .fancybox-wrap > div { display: table-cell !important; vertical-align: middle !important; padding-top: 60px !important; text-align: center; border-radius: 0; }
 .fancybox-inner { margin: 0 auto; width: 100% !important; height: auto !important; }
 .fancybox-nav, .fancybox-nav:active, .fancybox-nav:focus { right: 0px !important; display: none !important; }
 .fancybox-close { top: 10px; right: 10px; }
 .fancybox-opened ~ #wsite-mini-cart { display: none; }
 #fancybox-thumbs.bottom { bottom: 0; background: #f9f9f9; padding: 10px 0; }
 .wsite-name-field .wsite-form-input-first-name, .wsite-name-field .wsite-form-input-last-name { width: 100%; }
 #wsite-com-product-images { width: 100%; padding-bottom: 15px; }
 #wsite-com-product-info { margin-left: 0; }
 #wsite-com-product-images a div { padding-right: 0px; }
 #wsite-com-store .wsite-com-category-subcategory-group .wsite-com-column, #wsite-com-store .wsite-com-category-product-featured-group .wsite-com-column, #wsite-com-store .wsite-com-category-product-group .wsite-com-column { width: 50% !important; }
 .wsite-com-content { width: 100%; margin-left: 0; }
 .wsite-com-category-subcategory-name-text { font-size: 0.85em; }
 .wsite-com-category-subcategory-name { top: 0; }
 #wsite-com-product-list { padding-top: 20px; }
 #wsite-com-store .wsite-com-sidebar { width: 100%; float: none !important; padding: 0 !important; text-align: center; position: relative; z-index: 10; margin: 0 auto 15px; cursor: pointer; min-height: 40px; background: #5199a8; }
 #wsite-com-store .wsite-com-sidebar:before { content: 'VIEW ALL CATEGORIES \25be'; padding: 0; text-align: center; font-weight: 900 !important; text-transform: uppercase; color: white; padding: 10px 18px; display: block; }
 #wsite-com-store .sidebar-expanded.wsite-com-sidebar:before { content: 'CLOSE \25b4'; }
 #wsite-com-store .sidebar-expanded { cursor: pointer; }
 #wsite-com-store .wsite-com-content-with-sidebar { margin-left: 0 !important; padding: 0 !important; }
 #wsite-com-store .wsite-com-sidebar #wsite-com-hierarchy > ul { width: 100%; padding: 1.5em 0 !important; }
#wsite-com-store .wsite-com-sidebar #wsite-com-hierarchy { width: 100%; max-height: 0px; overflow: hidden; margin: 0 auto; display: block; -webkit-transition: max-height 350ms linear; -moz-transition: max-height 350ms linear; -o-transition: max-height 350ms linear; -ms-transition: max-height 350ms linear; transition: max-height 350ms linear; }
 #wsite-com-store .sidebar-expanded #wsite-com-hierarchy { max-height: 8000px !important; margin: 0 auto .25em; }
 #wsite-com-store .wsite-com-sidebar #wsite-com-hierarchy a, #wsite-com-store .wsite-com-sidebar #wsite-com-hierarchy { color: white; }
 #wsite-com-hierarchy .wsite-selected { font-weight: bold; color: #fff; }
 .wsite-com-checkout-payment-column, .wsite-com-checkout-summary-column { display: block !important; width: auto !important; max-width: 100% !important; margin: 0 auto 1em !important; }
 #wsite-com-checkout-list .wsite-coupon-input, #wsite-com-checkout-summary-list .wsite-coupon-input { width: 120px; margin: 0; }
 #wsite-com-checkout-cart-footer { text-align: center; }
 .wsite-com-continue-shopping { display: block; margin: 0 auto 5px; }
 #wsite-com-checkout-cart-footer form { float: none !important; }
 .wsite-com-continue-shopping .caret { vertical-align: middle; }
 #wsite-com-checkout-payment-order { margin-left: 0; }
 }

div.paragraph ul, div.paragraph ol { padding-left: 3em !important; margin: 5px 0 !important; }
div.paragraph li { padding-left: 5px !important; margin: 3px 0 0 !important; }
div.paragraph ul, div.paragraph ul li { list-style: disc outside !important; }
div.paragraph ol, div.paragraph ol li { list-style: decimal outside !important; }
/* Logo title tweaks */
#wsite-title {
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  font-family: didot-w01-italic, didot-w05-italic, serif !important;
  text-transform: none !important;
}

/* Global layout & background, closer to Wix card layout */
body.full-width-off .body-wrap {
  max-width: 1100px;
  margin: 40px auto 60px;
  top: 0;
  border-radius: 16px;
}

/* Header & navigation refinements */
#navigation {
  padding-bottom: 18px;
  border-top: none;
  border-bottom: none;
}

#navigation li:hover,
#navigation li#active {
  background-color: transparent;
}

#navigation li#active a {
  color: #3387a2;
  position: relative;
}

#navigation li#active a:after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -6px;
  height: 2px;
  background: #3387a2;
  border-radius: 999px;
}
