/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/


/****************************************************************
 
-------------------------- GENERAL ------------------------------
 
****************************************************************/ 



/* -- ***** Anti alias all the text 
 ---------------------------------------------------------------*/ 


* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



/****************************************************************
 
----------------------------- HEADER ----------------------------
 
***************************************************************/  


/* Floating Buttons */

/* Floating 2-button stack - left side */
.floating-stack {
    position: fixed;
    left: 15px;
    bottom: 19vh;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100000;
    pointer-events: none;
    max-width: 80px !important;
}

/* Normalize Elementor buttons or icons inside */
.floating-stack .elementor-button,
.floating-stack a,
.floating-stack button {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  pointer-events: auto; /* clickable */
  border: 0;
  text-decoration: none;
  line-height: 1;
}

/* WhatsApp style */
.floating-stack .btn-wa {}

/* Chat style - adjust to your brand */
.floating-stack .btn-chat {}

/* Icon size inside Elementor icon widget */
.floating-stack .elementor-icon,
.floating-stack i,
.floating-stack svg {
  font-size: 22px;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Hover and focus states */
.floating-stack .elementor-button:hover,
.floating-stack a:hover,
.floating-stack button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

.floating-stack .elementor-button:focus-visible,
.floating-stack a:focus-visible,
.floating-stack button:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}

/* Mobile adjustments - tuck closer to the edge and respect safe areas */
@media (max-width: 767px) {
  .floating-stack {
    left: 0px;
    bottom: 72px;
    gap: 10px;
  }
  .floating-stack .elementor-button,
  .floating-stack a,
  .floating-stack button {
    width: 52px;
    height: 52px;
  }
}

/* Optional - move the stack to the right by adding class is-right on the container */
.floating-stack.is-right {
  left: auto;
  right: 24px;
}




/****************************************************************
 
----------------------------- FOOTER ----------------------------
 
***************************************************************/  




/****************************************************************
 
------------------- General Componenets ------------------------
 
***************************************************************/  




/* FAQ */

/* --- FAQ Accordion RTL Styling --- */
.htmline-faq-accordion-wrapper {
    direction: rtl;
    padding: 40px 0;
}

/* Filter Buttons */
.faq-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    
    border: 2px solid #0099dd30;
    border-radius: 28px;
    padding: 12px !important;
    
}

.faq-filter-btn {
    background: #e6f4ff;
    border: none;
    padding: 10px 28px;
    border-radius: 35px;
    cursor: pointer;
    color: #0078c8;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 400 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.faq-filter-btn:hover,
.faq-filter-btn.active {
    background: #00a7e1;
    color: #fff;
    font-weight: bold !important;
    box-shadow: 0 4px 12px rgba(0, 167, 225, 0.4);
}



/* Items & separator */
.htmline-faq-accordion .faq-item {
    border-bottom: 1px solid #98ECFF; /* can be #d4f4fd */
    padding: 12px 0;
}

/* Question row (RTL, icon on the left) */
.faq-question {
    display: flex;
    justify-content: space-between;   /* title left, icon right when row-reverse */
    align-items: center;
    flex-direction: row;
    cursor: pointer;
    padding: 12px 0;
    font-weight: 700;
    font-size: 18px;
    color: #27437B;
    transition: color .2s ease;
    border: none !important;
}

.faq-question:hover,
.faq-item.active .faq-question { color: #27437B; }

/* Icon (uses your URLs) */
.faq-icon{
    width: 34px;
    height: 34px;
    margin-left: 12px;               /* space between title and icon */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

/* default = show more */
.faq-question .faq-icon{
    background-image:url('https://izoonim.co.il/wp-content/uploads/2025/08/show-more.svg');
}

/* active = show less */
.faq-question.active .faq-icon{
    background-image:url('https://izoonim.co.il/wp-content/uploads/2025/08/show-less.svg');
}

/* Answer */
.faq-answer{
    display:none;
    padding:10px 0 15px;
    color: #27437B;
    font-family: "Heebo", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4em;
    border: none !important;
}

/* show when item active */
.faq-item.active .faq-answer{ display:block; }


/****/




/* FAQ - make it look like the Category Navigator */

/* Outer wrapper - rounded card like the category nav */
.htmline-faq-accordion-wrapper {
  direction: rtl;
  padding: 24px 0;
}

.htmline-faq-accordion {
  width: 100%;
  margin: 24px 0;
  border: 2px solid #0099dd30;
  border-radius: 28px;
  padding: 12px;
  background: #fff;
}

/* Filter buttons - same pill style as .cn-category-btn */

/* Desktop - 4 in a row, 40px tall */
@media (min-width: 1024px) {
  .faq-filter-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 0 0 16px 0;
    padding: 0;
    align-items: stretch;
    justify-items: stretch;
  }

  .faq-filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;         /* same slim height */
    width: 100%;
    padding: 0 18px;
    border-radius: 9999px;
  }
}

/* Tablet - 3 in a row, 40px tall */
@media (min-width: 768px) and (max-width: 1023px) {
  .faq-filter-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0 0 16px 0;
    padding: 0;
    align-items: stretch;
    justify-items: stretch;
  }

  .faq-filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 100%;
    padding: 0 18px;
    border-radius: 9999px;
  }
}

/* Mobile - full width stacked */
@media (max-width: 767px) {
  .faq-filter-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0 0 12px 0;
    padding: 0;
  }

  .faq-filter-btn {
    display: block;
    width: 100%;
    min-height: 44px;     /* good tap target like the nav */
    padding: 10px 16px;
    border-radius: 9999px;
  }
}

/* Shared filter button styles - copied from the nav look */
.faq-filter-btn {
  background: #0ea5e9;
  color: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, box-shadow 120ms ease;
  box-shadow: 0 1px 1px rgba(0,0,0,0.04);
}

.faq-filter-btn:hover,
.faq-filter-btn.active {
  background: #0284c7;
}

.faq-filter-btn:focus {
  outline: 2px solid #94d3ff;
  outline-offset: 2px;
}

/* Accordion items - keep your RTL and colors, tighten to match the clean look */
.htmline-faq-accordion .faq-item {
  border-bottom: 1px solid #d4f4fd;
  padding: 12px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  cursor: pointer;
  padding: 12px 0;
  font-weight: 700;
  font-size: 18px;
  color: #27437B;
  transition: color .2s ease, background-color .2s ease;
  border: none !important;
  border-radius: 14px;
}

.faq-item.active .faq-question {
  background-color: rgba(14,165,233,0.08); /* subtle like button hover family */
}

.faq-icon {
  width: 34px;
  height: 34px;
  margin-left: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}

/* Keep your existing icon URLs */
.faq-question .faq-icon {
  background-image:url('https://izoonim.co.il/wp-content/uploads/2025/08/show-more.svg');
}
.faq-question.active .faq-icon {
  background-image:url('https://izoonim.co.il/wp-content/uploads/2025/08/show-less.svg');
}

/* Answer */
.faq-answer {
  display: none;
  padding: 10px 0 15px;
  color: #27437B;
  font-family: "Heebo", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4em;
  border: none !important;
}

.faq-item.active .faq-answer {
  display: block;
}




/***/

/* CF7 */

input[type=date], 
input[type=email], 
input[type=number], 
input[type=password], 
input[type=search], 
input[type=tel], 
input[type=text], 
input[type=url], 
select, 
textarea {
    border: 1px solid #0000000D;
    padding: 0.5rem 1rem;
    width: 100%;
    border-radius: 10px;
    border-width: 1px;
    height: 50px;
}


/* Default state: placeholder color */
select {
  color: #06212680;
}

/* Once a real option is selected: normal color */
select option {
  color: #062126;
}

select option:first-child {
  color: #06212680;
}

/* Force text color change when user picks something else */
select:not(:focus):not(:invalid) {
  color: ##06212680;
}


textarea {
    height: 100px;
    resize: vertical;
}

/* Inputs, selects, and textareas with placeholder color */
/* Modern browsers */
input[type=date]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=text]::placeholder,
input[type=url]::placeholder,
textarea::placeholder {
  color: #06212680;
}

/* Chrome, Safari, Opera */
input[type=date]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #06212680;
}

/* Firefox 19+ */
input[type=date]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder {
  color: #06212680;
}

/* IE 10-11 */
input[type=date]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #06212680;
}

/* Microsoft Edge */
input[type=date]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=number]::-ms-input-placeholder,
input[type=password]::-ms-input-placeholder,
input[type=search]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
input[type=text]::-ms-input-placeholder,
input[type=url]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #06212680;
}


input[type=submit] {
    border:none;
}

.btnSubmit {
    position: relative;
    background-image: url(/wp-content/themes/hello-theme-child/assets/images/frontend/button-send-icon.svg);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: 21px center;
    padding: 12px 30px 12px 45px;
}



/* Hide native inputs */
.wpcf7-form input[type="radio"] {
  display: none;
}

/* Default label style */
.wpcf7-form label {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  border: 2px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  color: #06212680;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-size: 14px;
}

/* Hover border color */
.wpcf7-form label:hover {
  border-color: #0099dd;
  color: #0099dd;
}


/* Fallback for browsers without :has() — target the span after the input */
.wpcf7-form input[type="radio"]:checked + .wpcf7-list-item-label {
  border-color: #0099dd;
  color: #0099dd;
}

/* Modern browsers — style the whole label directly */
@supports(selector(label:has(input:checked))) {
  .wpcf7-form label:has(input:checked) {
    border-color: #0099dd;
    color: #0099dd;
  }
}
  

@media (max-width: 767px) {

    .contact-method-col {
        flex-direction: column;
    }
    
    .submit-col p {
        text-align: center;
        margin: 0 auto;
        max-width: 235px;
    }
    
    .btnSubmit {
        width: 100%;
    }
    
    .privacy-col .wpcf7-list-item,
    .contact-method-col .wpcf7-list-item {
        margin: 0;
    }
    
    .privacy-col .wpcf7-list-item label {
        line-height: 1.2em;
    }
    
    
    
} /*767*/
  

.wpcf7-spinner {
    
    display: block;
    top: 6px;
}


.contact-method-col {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}


.contact-method-col p {
    margin-bottom: 0;

    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    color:#06212680;

}


.privacy-col .wpcf7-list-item label {
    border: none;
    width: 100%;
    display: inline-block;
    background: none;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    margin-top: 11px;
    font-size: 16px;
}


.privacy-col .wpcf7-list-item label a {
    text-decoration: underline;
}

.privacy-col .wpcf7-list-item label:hover {
    border-color: transparent;
    color: #06212680;
}


/*************************************************************
 
--------------------------- Utils ----------------------------
 
**************************************************************/  

/* CF7 Layout */
.cf-container {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -5px;
	margin-left: -5px;
}
.cf-col-1, .cf-col-2, .cf-col-3, .cf-col-4, .cf-col-5, .cf-col-6, .cf-col-7, .cf-col-8, .cf-col-9, .cf-col-10, .cf-col-11, .cf-col-12 {
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
}
@media ( min-width: 767px ) {
	.cf-col-1 {
		-ms-flex: 0 0 8.333333%;
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}
	.cf-push-1 { margin-left: 8.333333%; }
	.cf-col-2 {
		-ms-flex: 0 0 16.66667%;
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.cf-push-2 { margin-left: 16.66667%; }
	.cf-col-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
	.cf-push-3 { margin-left: 25%; }
	.cf-col-4 {
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.cf-push-4 { margin-left: 33.33333%; }
	.cf-col-5 {
		-ms-flex: 0 0 41.66667%;
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}
	.cf-push-5 { margin-left: 41.66667%; }
	.cf-col-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.cf-push-6 { margin-left: 50%; }
	.cf-col-7 {
		-ms-flex: 0 0 58.33333%;
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}
	.cf-push-7 { margin-left: 58.33333%; }
	.cf-col-8 {
		-ms-flex: 0 0 66.66667%;
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}
	.cf-push-8 { margin-left: 66.66667%; }
	.cf-col-9 {
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}
	.cf-push-9 { margin-left: 75%; }
	.cf-col-10 {
		-ms-flex: 0 0 83.33333%;
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}
	.cf-push-10 { margin-left: 83.33333%; }
	.cf-col-11 {
		-ms-flex: 0 0 91.66667%;
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}
	.cf-push-11 { margin-left: 91.66667%; }
	.cf-col-12 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}




/* Animations */

@-webkit-keyframes downAndUp {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@-moz-keyframes downAndUp {
  0% {
    -moz-transform: translateY(-10px);
         transform: translateY(-10px);
  }
  50% {
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
  100% {
    -moz-transform: translateY(-10px);
         transform: translateY(-10px);
  }
}

@-o-keyframes downAndUp {
  0% {
    -o-transform: translateY(-10px);
       transform: translateY(-10px);
  }
  50% {
    -o-transform: translateY(0);
       transform: translateY(0);
  }
  100% {
    -o-transform: translateY(-10px);
       transform: translateY(-10px);
  }
}

@keyframes downAndUp {
  0% {
    -webkit-transform: translateY(-10px);
       -moz-transform: translateY(-10px);
        -o-transform: translateY(-10px);
           transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -o-transform: translateY(0);
           transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
       -moz-transform: translateY(-10px);
        -o-transform: translateY(-10px);
           transform: translateY(-10px);
  }
}


@keyframes pulse-ring {
    0% {
        transform: scale(0.33);
        opacity: 1;
    }
    80%, 100% {
        transform: scale(0.9);
        opacity: 0;
    }
}



.hero-banner-arrow-anim {
  display: inline-block;
  -webkit-animation: downAndUp 2s infinite;
     -moz-animation: downAndUp 2s infinite;
      -o-animation: downAndUp 2s infinite;
         animation: downAndUp 2s infinite;
}





body:not('.elementor-editor-active') .disable-pointer-events {
    pointer-events: none;
}



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


.hide-br-desktop br {
	display:none;
}

@media (max-width: 767px) {


    .hide-mobile-br br {
        display:none;
    }
	
	.hide-br-desktop br {
		display:block;
	}
	
	.hide-on-mobile {
		display:none;
	}

    
} /*767*/



/* Branches */
/* ============ SEOC Store List ============ */


.seoc-store-list {
  --seoc-primary: #0ea5e9;
  --seoc-text: #0f172a;
  --seoc-muted: #64748b;
  --seoc-border: #e5e7eb;
  --seoc-bg: #ffffff;

  margin: 0 auto;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--seoc-text);
}

/* Filter */
.seoc-filter-container {
  margin: 1.25rem 0 1.75rem;
}

.seoc-city-filter {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--seoc-border);
  border-radius: 0.75rem;
  background: var(--seoc-bg);
  font-size: 1rem;
  line-height: 1.25rem;
  outline: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.seoc-city-filter::placeholder {
  color: var(--seoc-muted);
}
.seoc-city-filter:focus {
  border-color: var(--seoc-primary);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}

/* List layout - תמיד שורה מלאה */
.seoc-wpsl-stores .seoc-store-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr; /* עמודה אחת תמיד */
  gap: 16px;
}

/* Card */
.seoc-store-li {
  background: var(--seoc-bg);
  border: 1px solid var(--seoc-border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(2, 6, 23, 0.04);
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}
.seoc-store-li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.08);
  border-color: #dbe3ea;
}

/* Main line */
.seoc-store-main {
  margin: 0 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
}

.seoc-store-main strong a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--seoc-text);
  text-decoration: none;
}
.seoc-store-main strong a:hover {
  color: var(--seoc-primary);
}

/* Address and city */
.seoc-street {
  color: var(--seoc-muted);
  font-size: 0.95rem;
}

.city-field {
  display: inline-block;
  background: rgba(14,165,233,0.08);
  color: #075985;
  font-size: 0.85rem;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
}

/* Contact and extra info */
.seoc-contact-details,
.seoc-store-extra-info {
  margin: 6px 0;
  color: var(--seoc-text);
  font-size: 0.97rem;
}

.seoc-contact-details strong,
.seoc-store-extra-info strong {
  color: #111827;
  margin-right: 6px;
}

.seoc-contact-details a {
  color: var(--seoc-text);
  text-decoration: none;
  border-bottom: 1px dotted rgba(2,6,23,0.25);
}
.seoc-contact-details a:hover {
  color: var(--seoc-primary);
  border-bottom-color: rgba(14,165,233,0.5);
}

/* Read more */
a.seoc-store-details {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--seoc-primary);
  text-decoration: none;
}
a.seoc-store-details:hover {
  text-decoration: underline;
}

/* Empty state */
.seoc-store-li.seoc-empty {
  text-align: center;
  color: var(--seoc-muted);
  border-style: dashed;
}

/* RTL support */
html[dir="rtl"] .seoc-store-main {
  /*flex-direction: row-reverse;*/
}
html[dir="rtl"] .city-field {
  margin-left: 0;
  margin-right: 6px;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  .seoc-store-list {
    --seoc-text: #e5e7eb;
    --seoc-muted: #9aa4b2;
    --seoc-border: #2a2f3a;
    --seoc-bg: #0b1220;
  }
  .seoc-store-li:hover {
    border-color: #3a4250;
  }
  .city-field {
    background: rgba(14,165,233,0.18);
    color: #bfe6fb;
  }
  .seoc-contact-details a {
    border-bottom-color: rgba(229,231,235,0.25);
  }
}



.grecaptcha-badge { 
    visibility: hidden !important;
}


/* Accessibility */
body #acwp-toolbar-btn-wrap {
    bottom: 15px !important;
    left: 15px !important;
}


/* Hide TOC from excerpt */
.elementor-widget-posts .elementor-post__text #toc_container,
.elementor-widget-archive-posts .elementor-post__text #toc_container,
.elementor-widget-loop-grid .elementor-post__text #toc_container {
  display: none !important;
}


.single-post .elementor iframe, 
.single-post .elementor object, 
.single-post .elementor video,
.single-treatment .treatment-content iframe, 
.single-treatment .treatment-content object,
.single-treatment .treatment-content video {
    min-height: 550px;
}



@media (max-width: 767px) {

.single-post .elementor iframe, 
.single-post .elementor object, 
.single-post .elementor video,
.single-treatment .treatment-content iframe, 
.single-treatment .treatment-content object,
.single-treatment .treatment-content video {
    min-height: 300px;
    height: auto;
}

    
} /*767*/





/* BLOG Category Navigator */
.cn-category-nav {
  width: 100%;
  margin: 24px 0;
  border: 2px solid #0099dd30;
  border-radius: 28px;
  padding: 12px;
}

/* Desktop - 4 per row, same gaps, fixed 40px height */
@media (min-width: 1024px) {
  .cn-category-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);  /* 4 in a row */
    gap: 16px;                               /* keep the roomy gaps */
    padding: 0;
    margin: 0;
    align-items: stretch;
    justify-items: stretch;
    grid-auto-rows: 40px;                    /* all cells are 40px tall */
  }

  .cn-category-item {
    margin: 0;
    display: flex;
    align-items: stretch;
  }

  .cn-category-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;                            /* fill the 40px row */
    width: 100%;
    padding: 0 18px;                         /* horizontal only */
    text-align: center;
    white-space: nowrap;                     /* slim - no wrapping */
    overflow: hidden;                        /* prevent vertical spill */
    line-height: 1;                          /* tight line box */
    border-radius: 9999px;
  }
}

/* Tablet - 3 per row, same slim 40px */
@media (min-width: 768px) and (max-width: 1023px) {
  .cn-category-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0;
    margin: 0;
    align-items: stretch;
    justify-items: stretch;
    grid-auto-rows: 40px;
  }

  .cn-category-item {
    margin: 0;
    display: flex;
    align-items: stretch;
  }

  .cn-category-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 0 18px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    line-height: 1;
    border-radius: 9999px;
  }
}

/* Mobile - 100% width buttons, stacked */
@media (max-width: 767px) {
  .cn-category-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;   /* full width each row */
    gap: 12px;
    padding: 0;
    margin: 0;
  }

  .cn-category-item { margin: 0; }

  .cn-category-item a {
    display: block;
    width: 100%;
    min-height: 44px;             /* good tap target; set to 40px if you want it slimmer */
    text-align: center;
    padding: 10px 16px;
    line-height: 1;
    border-radius: 9999px;
  }
}

/* Shared button styles */
.cn-category-btn {
  background: #28427F;/*#0ea5e9;*/
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 120ms ease, background 120ms ease, box-shadow 120ms ease;
  box-shadow: 0 1px 1px rgba(0,0,0,0.04);
}

.cn-category-btn:hover,
.cn-category-item.is-active .cn-category-btn { background: #0284c7; }

.cn-category-btn:focus { outline: 2px solid #94d3ff; outline-offset: 2px; }


/* Blog Pgae */
.page-id-13119 .elementor-location-footer {
    background: #fff;
}

.page-id-13119  .elementor-pagination {
    margin-top: 30px;
} 

/* RTL */
html[dir="rtl"] .cn-category-list { justify-content: center; }

/* Ensure no previous limits keep them "fat" */
.cn-category-nav .cn-category-btn { max-height: none; max-width: none; }


/*
.acwp-footer {
	display:none !important;
}*/

#acwp-toolbar-btn-wrap {
    border: none !important;
}
