/*
	Custom CSS
	Please make sure your CSS rules are 
	more particular / have higher priority
	then other page styles
*/
 #events h3   {
	/* add your css rule here */
}


 #events p.duration, #events div.duration   {
	/* add your css rule here */
}


 #events p.description, #events div.description   {
	/* add your css rule here */
}


 #events .selectedEvent   {
	/* add your css rule here */
}


 #events input.reserve_time_btn   {
	/* add your css rule here */
}


 #events input.select_another_btn   {
	/* add your css rule here */
}


 #eventForm #start_date-block-container h3, #eventForm #timeline-container h3   {
	/* add your css rule here */
}


 #eventForm #save_button   {
	/* add your css rule here */
}


 div.ui-widget-content   {
	/* add your css rule here */
}


 div.ui-widget-header   {
	/* add your css rule here */
}


 #timeline-container table.timeline   {
	/* add your css rule here */
}


 .timeline td.not_worked_time   {
	/* add your css rule here */
}


 .timeline td.free_time   {
	/* add your css rule here */
}


 .timeline td.selected_time   {
	/* add your css rule here */
}


 .timeline td.reserved_time   {
	/* add your css rule here */
}


 div#loading   {
	/* add your css rule here */
}


 #start_date-block-container .zend_form dt, start_date-block-container .zend_form dt b, start_date-block-container .zend_form dd label   {
	/* add your css rule here */
}

/* .homepage-gallery{display: none;} */

.custom-page{ 
h1 { text-align: center; margin-bottom: 1.5em; } .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5em; max-width: 1000px; margin: 0 auto; } .product { text-align: center; border: 1px solid #ddd; border-radius: 8px; padding: 16px; background: #fafafa; box-shadow: 0 2px 5px rgba(0,0,0,0.05); transition: transform 0.2s ease; } .product:hover { transform: translateY(-3px); } .product img { max-width: 180px; border-radius: 6px; margin-bottom: 10px; max-height: 180px; background-color: #FFF; } .product a { display: inline-block; background-color: #ff9900; color: white; padding: 8px 12px; border-radius: 4px; text-decoration: none; font-weight: bold; transition: background 0.2s ease; } .product a:hover { background-color: #e68a00; } .size-label { font-weight: bold; margin-bottom: 8px; display: block; } footer { text-align: center; margin-top: 2em; font-size: 0.85em; color: #666; }
}

/* Fix: contact email/website getting cut off */
#contacts .info li .links a {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  word-break: break-word;
  display: inline-block;
}

/* Fix: give the social icon row in the About section consistent color + hover */
.social-icons .social-icons__icon svg {
  fill: #49306b;
  transition: fill 0.2s ease;
}

.social-icons .social-icons__icon:hover svg {
  fill: #c98e5a;
}

.social-icons .social-icons__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Lesson Options as cards */
.lesson-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}

.lesson-card {
  flex: 1 1 220px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  background: #fafafa;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.lesson-card.featured {
  border: 2px solid #49306b;
  background: #f5f2fa;
  position: relative;
}

.lesson-card-badge {
  display: inline-block;
  background: #49306b;
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.lesson-card h4 {
  margin: 0 0 8px;
  color: #49306b;
}

.lesson-card p {
  margin: 0;
  font-size: 14px;
  color: #0c3942;
}

.lesson-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.lesson-card:hover h4 {
  color: #c98e5a;
}

/* Better spacing + header hierarchy throughout the About section */
.default-mode-flex .block-2 .txt h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #c98e5a;
  padding-bottom: 6px;
}

.default-mode-flex .block-2 .txt h2:first-of-type {
  margin-top: 0;
}

.default-mode-flex .block-2 .txt p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.default-mode-flex {
  gap: 32px;
}

.default-mode-flex .block-1,
.default-mode-flex .block-3 {
  padding-top: 8px;
}

.testimonial-highlight {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0 28px;
}

.testimonial-card {
  flex: 1 1 220px;
  background: #f5f2fa;
  border-left: 3px solid #c98e5a;
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
}

.testimonial-card .stars {
  color: #c98e5a;
  font-size: 14px;
  margin-bottom: 6px;
}

.testimonial-card p {
  font-size: 14px;
  font-style: italic;
  margin: 0 0 6px;
}

.testimonial-author {
  font-size: 12px;
  color: #666;
}